diff --git a/2-Learning NLP/1-Introduction_to_NLP.md b/1-Introduction_to_NLP.md
similarity index 100%
rename from 2-Learning NLP/1-Introduction_to_NLP.md
rename to 1-Introduction_to_NLP.md
diff --git a/2-Learning NLP/2-learnin_NLP.md b/2-learnin_NLP.md
similarity index 100%
rename from 2-Learning NLP/2-learnin_NLP.md
rename to 2-learnin_NLP.md
diff --git a/3-NLP_services/.gitignore b/3-NLP_services/.gitignore
deleted file mode 100644
index d06d869..0000000
--- a/3-NLP_services/.gitignore
+++ /dev/null
@@ -1,228 +0,0 @@
-### JetBrains template
-# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider
-# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
-
-
-
-
-# User-specific stuff
-.idea/**/workspace.xml
-.idea/**/tasks.xml
-.idea/**/usage.statistics.xml
-.idea/**/dictionaries
-.idea/**/shelf
-
-# Generated files
-.idea/**/contentModel.xml
-
-*.jsonl
-*.7zip
-*.7z
-.idea/
-fastapi_flair/idea/
-
-# Sensitive or high-churn files
-.idea/**/dataSources/
-.idea/**/dataSources.ids
-.idea/**/dataSources.local.xml
-.idea/**/sqlDataSources.xml
-.idea/**/dynamic.xml
-.idea/**/uiDesigner.xml
-.idea/**/dbnavigator.xml
-
-# Gradle
-.idea/**/gradle.xml
-.idea/**/libraries
-
-# Gradle and Maven with auto-import
-# When using Gradle or Maven with auto-import, you should exclude module files,
-# since they will be recreated, and may cause churn. Uncomment if using
-# auto-import.
-# .idea/artifacts
-# .idea/compiler.xml
-# .idea/jarRepositories.xml
-# .idea/modules.xml
-# .idea/*.iml
-# .idea/modules
-# *.iml
-# *.ipr
-
-# CMake
-cmake-build-*/
-
-# Mongo Explorer plugin
-.idea/**/mongoSettings.xml
-
-# File-based project format
-*.iws
-
-# IntelliJ
-out/
-
-# mpeltonen/sbt-idea plugin
-.idea_modules/
-
-# JIRA plugin
-atlassian-ide-plugin.xml
-
-# Cursive Clojure plugin
-.idea/replstate.xml
-
-# Crashlytics plugin (for Android Studio and IntelliJ)
-com_crashlytics_export_strings.xml
-crashlytics.properties
-crashlytics-build.properties
-fabric.properties
-
-# Editor-based Rest Client
-.idea/httpRequests
-
-# Android studio 3.1+ serialized cache file
-.idea/caches/build_file_checksums.ser
-
-### Python template
-# Byte-compiled / optimized / DLL files
-__pycache__/
-*.py[cod]
-*$py.class
-
-# C extensions
-*.so
-
-# Distribution / packaging
-.Python
-build/
-develop-eggs/
-dist/
-downloads/
-eggs/
-.eggs/
-lib/
-lib64/
-parts/
-sdist/
-var/
-wheels/
-share/python-wheels/
-*.egg-info/
-.installed.cfg
-*.egg
-MANIFEST
-
-# PyInstaller
-# Usually these files are written by a python script from a template
-# before PyInstaller builds the exe, so as to inject date/other infos into it.
-*.manifest
-*.spec
-
-# Installer logs
-pip-log.txt
-pip-delete-this-directory.txt
-
-# Unit test / coverage reports
-htmlcov/
-.tox/
-.nox/
-.coverage
-.coverage.*
-.cache
-nosetests.xml
-coverage.xml
-*.cover
-*.py,cover
-.hypothesis/
-.pytest_cache/
-cover/
-
-# Translations
-*.mo
-*.pot
-
-# Django stuff:
-*.log
-local_settings.py
-db.sqlite3
-db.sqlite3-journal
-
-# Flask stuff:
-instance/
-.webassets-cache
-
-# Scrapy stuff:
-.scrapy
-
-# Sphinx documentation
-docs/_build/
-
-# PyBuilder
-.pybuilder/
-target/
-
-# Jupyter Notebook
-.ipynb_checkpoints
-
-# IPython
-profile_default/
-ipython_config.py
-
-# pyenv
-# For a library or package, you might want to ignore these files since the code is
-# intended to run in multiple environments; otherwise, check them in:
-# .python-version
-
-# pipenv
-# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
-# However, in case of collaboration, if having platform-specific dependencies or dependencies
-# having no cross-platform support, pipenv may install dependencies that don't work, or not
-# install all needed dependencies.
-#Pipfile.lock
-
-# PEP 582; used by e.g. github.com/David-OConnor/pyflow
-__pypackages__/
-
-# Celery stuff
-celerybeat-schedule
-celerybeat.pid
-
-# SageMath parsed files
-*.sage.py
-
-# Environments
-.env
-.venv
-env/
-venv/
-ENV/
-env.bak/
-venv.bak/
-
-# Spyder project settings
-.spyderproject
-.spyproject
-
-# Rope project settings
-.ropeproject
-
-# mkdocs documentation
-/site
-
-# mypy
-.mypy_cache/
-.dmypy.json
-dmypy.json
-
-# Pyre type checker
-.pyre/
-
-# pytype static type analyzer
-.pytype/
-
-# Cython debug symbols
-cython_debug/
-
-data/ARMAN-MSR-persian-base-PN-summary
-data/mT5_multilingual_XLSum
-data/ner-model.pt
-data/pos-model.pt
-data/pos-model.7z
-
diff --git a/3-NLP_services/Dockerfile b/3-NLP_services/Dockerfile
deleted file mode 100644
index 1d0bd4c..0000000
--- a/3-NLP_services/Dockerfile
+++ /dev/null
@@ -1,34 +0,0 @@
-FROM python:3.9-slim
-
-# Maintainer info
-LABEL maintainer="khaledihkh@gmail.com"
-
-# Make working directories
-RUN mkdir -p /service
-WORKDIR /service
-
-# Upgrade pip with no cache
-RUN pip install --no-cache-dir -U pip
-
-# Copy application requirements file to the created working directory
-COPY requirements.txt .
-
-# Install application dependencies from the requirements file
-RUN pip install -r requirements.txt
-
-# Copy every file in the source folder to the created working directory
-COPY . .
-RUN pip install ./src/piraye
-RUN pip install transformers[sentencepiece]
-
-
-ENV NER_MODEL_NAME ""
-ENV NORMALIZE "False"
-ENV SHORT_MODEL_NAME ""
-ENV LONG_MODEL_NAME ""
-ENV POS_MODEL_NAME ""
-ENV BATCH_SIZE "4"
-ENV DEVICE "gpu"
-
-EXPOSE 80
-CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "80"]
\ No newline at end of file
diff --git a/3-NLP_services/README.md b/3-NLP_services/README.md
deleted file mode 100644
index 5de9dc5..0000000
--- a/3-NLP_services/README.md
+++ /dev/null
@@ -1,18 +0,0 @@
-# Services
-## Requirements
-````shell
-pip install -r requirements.txt
-````
-## Download Models
-download models and place in data folder
-https://www.mediafire.com/folder/tz3t9c9rpf6fo/models
-
-## Getting started
-
-````shell
-cd fastapi_flair
-uvicorn main:app --reload
-````
-
-## Documentation
-[Open Documentations](./docs/docs.md)
\ No newline at end of file
diff --git a/3-NLP_services/data/users.json b/3-NLP_services/data/users.json
deleted file mode 100644
index 78975cd..0000000
--- a/3-NLP_services/data/users.json
+++ /dev/null
@@ -1,10 +0,0 @@
-[
-{
-"client-id":"hassan",
-"client-password":"1234"
-},
-{
-"client-id":"ali",
-"client-password":"12345"
-}
-]
\ No newline at end of file
diff --git a/3-NLP_services/docker-compose.yml b/3-NLP_services/docker-compose.yml
deleted file mode 100644
index e1755ca..0000000
--- a/3-NLP_services/docker-compose.yml
+++ /dev/null
@@ -1,8 +0,0 @@
-version: '3.0'
-
-services:
- web:
- image: "services"
- command: uvicorn main:app --host 0.0.0.0
- ports:
- - 8008:8000
diff --git a/3-NLP_services/docs/docs.md b/3-NLP_services/docs/docs.md
deleted file mode 100644
index c8256ad..0000000
--- a/3-NLP_services/docs/docs.md
+++ /dev/null
@@ -1,10 +0,0 @@
-### Libraries:
-
-1. Uvicorn: Uvicorn is an ASGI (The Asynchronous Server Gateway Interface is a calling convention for web servers to forward requests to asynchronous-capable Python programming language frameworks, and applications. It is built as a successor to the Web Server Gateway Interface.) web server implementation for Python. Until recently Python has lacked a minimal low-level server/application interface for async frameworks. The ASGI specification fills this gap, and means we're now able to start building a common set of tooling usable across all async frameworks.
-2. FastAPI: FastAPI framework, high performance, easy to learn, fast to code, ready for production
-FastAPI is a modern, fast (high-performance), web framework for building APIs with Python 3.7+ based on standard Python type hints.
-3. NLTK: NLTK is a leading platform for building Python programs to work with human language data. It provides easy-to-use interfaces to over 50 corpora and lexical resources such as WordNet, along with a suite of text processing libraries for classification, tokenization, stemming, tagging, parsing, and semantic reasoning, wrappers for industrial-strength NLP libraries, and an active discussion forum.
-4. Piraye: NLP Utils, A utility for normalizing persian, arabic and english texts
-5. ...
-
-
diff --git a/3-NLP_services/main.py b/3-NLP_services/main.py
deleted file mode 100644
index b5db4b3..0000000
--- a/3-NLP_services/main.py
+++ /dev/null
@@ -1,199 +0,0 @@
-from __future__ import annotations
-import uvicorn
-import torch
-from fastapi import FastAPI, HTTPException, Request
-from starlette.status import HTTP_201_CREATED
-
-from src.database_handler import Database
-from src.requests_data import Requests
-from model.request_models import InputNerType, InputSummaryType, InputNREType
-from model.response_models import BaseResponse, ResponseNerModel, ResponseSummaryModel, ResponseOIEModel, \
- ResponseNREModel
-from src.response_ner import NerResponse, ResponsesNer
-from fastapi import BackgroundTasks
-
-from src.response_nre import NREResponse, ResponsesNRE
-from src.response_oie import OIEResponse, ResponsesOIE
-from src.response_summary import ShortResponse, LongResponse, ResponsesSummary, NormalizerTexts
-
-print("torch version : ", torch.__version__)
-app = FastAPI()
-# ner_model_name = os.getenv("NER_MODEL_NAME")
-# normalize = os.getenv("NORMALIZE")
-# short_model_name = os.getenv("SHORT_MODEL_NAME")
-# long_model_name = os.getenv("LONG_MODEL_NAME")
-# pos_model_name = os.getenv("POS_MODEL_NAME")
-# batch_size = int(os.getenv("BATCH_SIZE"))
-# device = os.getenv("DEVICE")
-#
-# print(ner_model_name, normalize, short_model_name, long_model_name, pos_model_name, batch_size, device)
-
-# initial docker parameters
-pos_model_name = "./data/pos-model.pt"
-ner_model_name = "./data/ner-model.pt"
-short_model_name = "csebuetnlp/mT5_multilingual_XLSum"
-long_model_name = "alireza7/ARMAN-MSR-persian-base-PN-summary"
-# oie_model_name = "default"
-oie_model_name = ""
-ner_model_name = "default"
-pos_model_name = "default"
-nre_model_name = ""
-
-bert_oie = './data/mbert-base-parsinlu-entailment'
-short_model_name = ""
-long_model_name = ""
-normalize = "False"
-batch_size = 4
-device = "cpu"
-
-if ner_model_name == "":
- ner_response = None
-else:
- if ner_model_name.lower() == "default":
- ner_model_name = "./data/ner-model.pt"
- ner_response = NerResponse(ner_model_name, batch_size=batch_size, device=device)
-
-if oie_model_name == "":
- oie_response = None
-else:
- if oie_model_name.lower() == "default":
- oie_model_name = "./data/mbertEntail-2GBEn.bin"
- oie_response = OIEResponse(oie_model_name, BERT=bert_oie, batch_size=batch_size, device=device)
-
-if nre_model_name == "":
- nre_response = None
-else:
- if nre_model_name.lower() == "default":
- nre_model_name = "./data/model.ckpt.pth.tar"
- nre_response = NREResponse(nre_model_name)
-
-if normalize.lower() == "false" or pos_model_name == "":
- short_response = ShortResponse(normalizer_input=None, device=device)
- long_response = LongResponse(normalizer_input=None, device=device)
-else:
- if pos_model_name.lower() == "default":
- pos_model_name = "./data/pos-model.pt"
- normalizer_pos = NormalizerTexts(pos_model_name)
- short_response = ShortResponse(normalizer_input=normalizer_pos, device=device)
- long_response = LongResponse(normalizer_input=normalizer_pos, device=device)
-if short_model_name != "":
- short_response.load_model(short_model_name)
-if long_model_name != "":
- long_response.load_model(long_model_name)
-
-requests: Requests = Requests()
-database: Database = Database()
-
-
-@app.get("/")
-async def root():
- return {"message": "Hello World"}
-
-
-@app.get("/ner/{item_id}", response_model=ResponseNerModel)
-async def read_item(item_id, request: Request) -> ResponseNerModel:
- if database.check_client(client_id=request.headers.get('Client-Id'),
- client_password=request.headers.get('Client-Password')) and ner_response:
- if not ResponsesNer.check_id(int(item_id)):
- raise HTTPException(status_code=404, detail="Item not found")
- return ResponsesNer.get_response(int(item_id))
- else:
- raise HTTPException(status_code=403, detail="you are not allowed")
-
-
-@app.get("/oie/{item_id}", response_model=ResponseOIEModel)
-async def read_item(item_id, request: Request) -> ResponseOIEModel:
- if database.check_client(client_id=request.headers.get('Client-Id'),
- client_password=request.headers.get('Client-Password')) and oie_response:
- if not ResponsesOIE.check_id(int(item_id)):
- raise HTTPException(status_code=404, detail="Item not found")
- return ResponsesOIE.get_response(int(item_id))
- else:
- raise HTTPException(status_code=403, detail="you are not allowed")
-
-
-@app.get("/nre/{item_id}", response_model=ResponseNREModel)
-async def read_item(item_id, request: Request) -> ResponseNREModel:
- if database.check_client(client_id=request.headers.get('Client-Id'),
- client_password=request.headers.get('Client-Password')) and nre_response:
- if not ResponsesNRE.check_id(int(item_id)):
- raise HTTPException(status_code=404, detail="Item not found")
- return ResponsesNRE.get_response(int(item_id))
- else:
- raise HTTPException(status_code=403, detail="you are not allowed")
-
-
-@app.get("/summary/{item_id}", response_model=ResponseSummaryModel)
-async def read_item(item_id, request: Request) -> ResponseSummaryModel:
- if database.check_client(client_id=request.headers.get('Client-Id'),
- client_password=request.headers.get('Client-Password')):
- if not ResponsesSummary.check_id(int(item_id)):
- raise HTTPException(status_code=404, detail="Item not found")
- return ResponsesSummary.get_response(int(item_id))
- else:
- raise HTTPException(status_code=403, detail="you are not allowed")
-
-
-@app.post("/ner", response_model=BaseResponse, status_code=HTTP_201_CREATED)
-async def ner(input_json: InputNerType, background_tasks: BackgroundTasks, request: Request) -> BaseResponse:
- if database.check_client(client_id=request.headers.get('Client-Id'),
- client_password=request.headers.get('Client-Password')) and ner_model_name != "":
- request_id = requests.add_request_ner(input_json)
- background_tasks.add_task(ner_response.predict_json, input_json, request_id)
- return BaseResponse(status="input received successfully", id=request_id)
- else:
- raise HTTPException(status_code=403, detail="you are not allowed")
- # return ner_response.predict_json(input_json)
-
-
-@app.post("/oie", response_model=BaseResponse, status_code=HTTP_201_CREATED)
-async def oie(input_json: InputNerType, background_tasks: BackgroundTasks, request: Request) -> BaseResponse:
- if database.check_client(client_id=request.headers.get('Client-Id'),
- client_password=request.headers.get('Client-Password')) and oie_model_name != "":
- request_id = requests.add_request_oie(input_json)
- background_tasks.add_task(oie_response.predict_json, input_json, request_id)
- return BaseResponse(status="input received successfully", id=request_id)
- else:
- raise HTTPException(status_code=403, detail="you are not allowed")
- # return ner_response.predict_json(input_json)
-
-
-@app.post("/nre", response_model=BaseResponse, status_code=HTTP_201_CREATED)
-async def oie(input_json: InputNREType, background_tasks: BackgroundTasks, request: Request) -> BaseResponse:
- if database.check_client(client_id=request.headers.get('Client-Id'),
- client_password=request.headers.get('Client-Password')) and nre_model_name != "":
- request_id = requests.add_request_nre(input_json)
- background_tasks.add_task(nre_response.predict_json, input_json, request_id)
- return BaseResponse(status="input received successfully", id=request_id)
- else:
- raise HTTPException(status_code=403, detail="you are not allowed")
- # return ner_response.predict_json(input_json)
-
-
-@app.post("/summary/short", response_model=BaseResponse, status_code=HTTP_201_CREATED)
-async def short_summary(input_json: InputSummaryType, background_tasks: BackgroundTasks,
- request: Request) -> BaseResponse:
- if database.check_client(client_id=request.headers.get('Client-Id'),
- client_password=request.headers.get('Client-Password')) and short_model_name != "":
- request_id = requests.add_request_summary(input_json)
- background_tasks.add_task(short_response.get_result, input_json, request_id)
- return BaseResponse(status="input received successfully", id=request_id)
- else:
- raise HTTPException(status_code=403, detail="you are not allowed")
- # return ner_response.predict_json(input_json)
-
-
-@app.post("/summary/long", response_model=BaseResponse, status_code=HTTP_201_CREATED)
-async def long_summary(input_json: InputSummaryType, background_tasks: BackgroundTasks,
- request: Request) -> BaseResponse:
- if database.check_client(client_id=request.headers.get('Client-Id'),
- client_password=request.headers.get('Client-Password')) and long_model_name != "":
- request_id = requests.add_request_summary(input_json)
- background_tasks.add_task(long_response.get_result, input_json, request_id)
- return BaseResponse(status="input received successfully", id=request_id)
- else:
- raise HTTPException(status_code=403, detail="you are not allowed")
-
-
-if __name__ == "__main__":
- uvicorn.run(app, host="0.0.0.0", port=8000)
diff --git a/3-NLP_services/model/__init__.py b/3-NLP_services/model/__init__.py
deleted file mode 100644
index e69de29..0000000
diff --git a/3-NLP_services/model/request_models.py b/3-NLP_services/model/request_models.py
deleted file mode 100644
index cb62fd7..0000000
--- a/3-NLP_services/model/request_models.py
+++ /dev/null
@@ -1,28 +0,0 @@
-from typing import List, Dict, Tuple
-from pydantic import BaseModel
-
-
-class InputElement(BaseModel):
- lang: str
- text: str
-
-
-class NREHType(BaseModel):
- pos: str
-
-
-class NRETType(BaseModel):
- pos: str
-
-
-class InputElementNRE(BaseModel):
- text: str
- h: NREHType
- t: NRETType
-
-
-InputNerType = List[InputElement]
-InputOIEType = List[InputElement]
-InputNREType = List[InputElementNRE]
-
-InputSummaryType = List[str]
diff --git a/3-NLP_services/model/response_models.py b/3-NLP_services/model/response_models.py
deleted file mode 100644
index e8a2072..0000000
--- a/3-NLP_services/model/response_models.py
+++ /dev/null
@@ -1,43 +0,0 @@
-from typing import List, Optional, Tuple
-
-from pydantic import BaseModel
-
-
-class EntityNerResponseModel(BaseModel):
- entity_group: str
- word: str
- start: int
- end: int
- score: float
-
-
-class EntityOIEResponseModel(BaseModel):
- score: str
- relation: str
- arg1: str
- arg2: str
-
-
-class BaseResponse(BaseModel):
- id: int
- status: str
-
-
-class ResponseNerModel(BaseModel):
- progression: str
- result: Optional[List[List[EntityNerResponseModel]]]
-
-
-class ResponseSummaryModel(BaseModel):
- progression: str
- result: Optional[List[str]]
-
-
-class ResponseOIEModel(BaseModel):
- progression: str
- result: Optional[List[EntityOIEResponseModel]]
-
-
-class ResponseNREModel(BaseModel):
- progression: str
- result: Optional[List[Tuple[str, float]]]
diff --git a/3-NLP_services/openapi.json b/3-NLP_services/openapi.json
deleted file mode 100644
index f5c4ce6..0000000
--- a/3-NLP_services/openapi.json
+++ /dev/null
@@ -1,672 +0,0 @@
-{
- "openapi": "3.0.2",
- "info": {
- "title": "FastAPI",
- "version": "0.1.0"
- },
- "paths": {
- "/": {
- "get": {
- "summary": "Root",
- "operationId": "root__get",
- "responses": {
- "200": {
- "description": "Successful Response",
- "content": {
- "application/json": {
- "schema": {}
- }
- }
- }
- }
- }
- },
- "/ner/{item_id}": {
- "get": {
- "summary": "Read Item",
- "operationId": "read_item_ner__item_id__get",
- "parameters": [
- {
- "required": true,
- "schema": {
- "title": "Item Id"
- },
- "name": "item_id",
- "in": "path"
- }
- ],
- "responses": {
- "200": {
- "description": "Successful Response",
- "content": {
- "application/json": {
- "schema": {
- "$ref": "#/components/schemas/ResponseNerModel"
- }
- }
- }
- },
- "422": {
- "description": "Validation Error",
- "content": {
- "application/json": {
- "schema": {
- "$ref": "#/components/schemas/HTTPValidationError"
- }
- }
- }
- }
- }
- }
- },
- "/oie/{item_id}": {
- "get": {
- "summary": "Read Item",
- "operationId": "read_item_oie__item_id__get",
- "parameters": [
- {
- "required": true,
- "schema": {
- "title": "Item Id"
- },
- "name": "item_id",
- "in": "path"
- }
- ],
- "responses": {
- "200": {
- "description": "Successful Response",
- "content": {
- "application/json": {
- "schema": {
- "$ref": "#/components/schemas/ResponseOIEModel"
- }
- }
- }
- },
- "422": {
- "description": "Validation Error",
- "content": {
- "application/json": {
- "schema": {
- "$ref": "#/components/schemas/HTTPValidationError"
- }
- }
- }
- }
- }
- }
- },
- "/nre/{item_id}": {
- "get": {
- "summary": "Read Item",
- "operationId": "read_item_nre__item_id__get",
- "parameters": [
- {
- "required": true,
- "schema": {
- "title": "Item Id"
- },
- "name": "item_id",
- "in": "path"
- }
- ],
- "responses": {
- "200": {
- "description": "Successful Response",
- "content": {
- "application/json": {
- "schema": {
- "$ref": "#/components/schemas/ResponseNREModel"
- }
- }
- }
- },
- "422": {
- "description": "Validation Error",
- "content": {
- "application/json": {
- "schema": {
- "$ref": "#/components/schemas/HTTPValidationError"
- }
- }
- }
- }
- }
- }
- },
- "/summary/{item_id}": {
- "get": {
- "summary": "Read Item",
- "operationId": "read_item_summary__item_id__get",
- "parameters": [
- {
- "required": true,
- "schema": {
- "title": "Item Id"
- },
- "name": "item_id",
- "in": "path"
- }
- ],
- "responses": {
- "200": {
- "description": "Successful Response",
- "content": {
- "application/json": {
- "schema": {
- "$ref": "#/components/schemas/ResponseSummaryModel"
- }
- }
- }
- },
- "422": {
- "description": "Validation Error",
- "content": {
- "application/json": {
- "schema": {
- "$ref": "#/components/schemas/HTTPValidationError"
- }
- }
- }
- }
- }
- }
- },
- "/ner": {
- "post": {
- "summary": "Ner",
- "operationId": "ner_ner_post",
- "requestBody": {
- "content": {
- "application/json": {
- "schema": {
- "title": "Input Json",
- "type": "array",
- "items": {
- "$ref": "#/components/schemas/InputElement"
- }
- }
- }
- },
- "required": true
- },
- "responses": {
- "201": {
- "description": "Successful Response",
- "content": {
- "application/json": {
- "schema": {
- "$ref": "#/components/schemas/BaseResponse"
- }
- }
- }
- },
- "422": {
- "description": "Validation Error",
- "content": {
- "application/json": {
- "schema": {
- "$ref": "#/components/schemas/HTTPValidationError"
- }
- }
- }
- }
- }
- }
- },
- "/oie": {
- "post": {
- "summary": "Oie",
- "operationId": "oie_oie_post",
- "requestBody": {
- "content": {
- "application/json": {
- "schema": {
- "title": "Input Json",
- "type": "array",
- "items": {
- "$ref": "#/components/schemas/InputElement"
- }
- }
- }
- },
- "required": true
- },
- "responses": {
- "201": {
- "description": "Successful Response",
- "content": {
- "application/json": {
- "schema": {
- "$ref": "#/components/schemas/BaseResponse"
- }
- }
- }
- },
- "422": {
- "description": "Validation Error",
- "content": {
- "application/json": {
- "schema": {
- "$ref": "#/components/schemas/HTTPValidationError"
- }
- }
- }
- }
- }
- }
- },
- "/nre": {
- "post": {
- "summary": "Oie",
- "operationId": "oie_nre_post",
- "requestBody": {
- "content": {
- "application/json": {
- "schema": {
- "title": "Input Json",
- "type": "array",
- "items": {
- "$ref": "#/components/schemas/InputElementNRE"
- }
- }
- }
- },
- "required": true
- },
- "responses": {
- "201": {
- "description": "Successful Response",
- "content": {
- "application/json": {
- "schema": {
- "$ref": "#/components/schemas/BaseResponse"
- }
- }
- }
- },
- "422": {
- "description": "Validation Error",
- "content": {
- "application/json": {
- "schema": {
- "$ref": "#/components/schemas/HTTPValidationError"
- }
- }
- }
- }
- }
- }
- },
- "/summary/short": {
- "post": {
- "summary": "Short Summary",
- "operationId": "short_summary_summary_short_post",
- "requestBody": {
- "content": {
- "application/json": {
- "schema": {
- "title": "Input Json",
- "type": "array",
- "items": {
- "type": "string"
- }
- }
- }
- },
- "required": true
- },
- "responses": {
- "201": {
- "description": "Successful Response",
- "content": {
- "application/json": {
- "schema": {
- "$ref": "#/components/schemas/BaseResponse"
- }
- }
- }
- },
- "422": {
- "description": "Validation Error",
- "content": {
- "application/json": {
- "schema": {
- "$ref": "#/components/schemas/HTTPValidationError"
- }
- }
- }
- }
- }
- }
- },
- "/summary/long": {
- "post": {
- "summary": "Long Summary",
- "operationId": "long_summary_summary_long_post",
- "requestBody": {
- "content": {
- "application/json": {
- "schema": {
- "title": "Input Json",
- "type": "array",
- "items": {
- "type": "string"
- }
- }
- }
- },
- "required": true
- },
- "responses": {
- "201": {
- "description": "Successful Response",
- "content": {
- "application/json": {
- "schema": {
- "$ref": "#/components/schemas/BaseResponse"
- }
- }
- }
- },
- "422": {
- "description": "Validation Error",
- "content": {
- "application/json": {
- "schema": {
- "$ref": "#/components/schemas/HTTPValidationError"
- }
- }
- }
- }
- }
- }
- }
- },
- "components": {
- "schemas": {
- "BaseResponse": {
- "title": "BaseResponse",
- "required": [
- "id",
- "status"
- ],
- "type": "object",
- "properties": {
- "id": {
- "title": "Id",
- "type": "integer"
- },
- "status": {
- "title": "Status",
- "type": "string"
- }
- }
- },
- "EntityNerResponseModel": {
- "title": "EntityNerResponseModel",
- "required": [
- "entity_group",
- "word",
- "start",
- "end",
- "score"
- ],
- "type": "object",
- "properties": {
- "entity_group": {
- "title": "Entity Group",
- "type": "string"
- },
- "word": {
- "title": "Word",
- "type": "string"
- },
- "start": {
- "title": "Start",
- "type": "integer"
- },
- "end": {
- "title": "End",
- "type": "integer"
- },
- "score": {
- "title": "Score",
- "type": "number"
- }
- }
- },
- "EntityOIEResponseModel": {
- "title": "EntityOIEResponseModel",
- "required": [
- "score",
- "relation",
- "arg1",
- "arg2"
- ],
- "type": "object",
- "properties": {
- "score": {
- "title": "Score",
- "type": "string"
- },
- "relation": {
- "title": "Relation",
- "type": "string"
- },
- "arg1": {
- "title": "Arg1",
- "type": "string"
- },
- "arg2": {
- "title": "Arg2",
- "type": "string"
- }
- }
- },
- "HTTPValidationError": {
- "title": "HTTPValidationError",
- "type": "object",
- "properties": {
- "detail": {
- "title": "Detail",
- "type": "array",
- "items": {
- "$ref": "#/components/schemas/ValidationError"
- }
- }
- }
- },
- "InputElement": {
- "title": "InputElement",
- "required": [
- "lang",
- "text"
- ],
- "type": "object",
- "properties": {
- "lang": {
- "title": "Lang",
- "type": "string"
- },
- "text": {
- "title": "Text",
- "type": "string"
- }
- }
- },
- "InputElementNRE": {
- "title": "InputElementNRE",
- "required": [
- "text",
- "h",
- "t"
- ],
- "type": "object",
- "properties": {
- "text": {
- "title": "Text",
- "type": "string"
- },
- "h": {
- "$ref": "#/components/schemas/NREHType"
- },
- "t": {
- "$ref": "#/components/schemas/NRETType"
- }
- }
- },
- "NREHType": {
- "title": "NREHType",
- "required": [
- "pos"
- ],
- "type": "object",
- "properties": {
- "pos": {
- "title": "Pos",
- "type": "string"
- }
- }
- },
- "NRETType": {
- "title": "NRETType",
- "required": [
- "pos"
- ],
- "type": "object",
- "properties": {
- "pos": {
- "title": "Pos",
- "type": "string"
- }
- }
- },
- "ResponseNREModel": {
- "title": "ResponseNREModel",
- "required": [
- "progression"
- ],
- "type": "object",
- "properties": {
- "progression": {
- "title": "Progression",
- "type": "string"
- },
- "result": {
- "title": "Result",
- "type": "array",
- "items": {
- "type": "array",
- "items": [
- {
- "type": "string"
- },
- {
- "type": "number"
- }
- ]
- }
- }
- }
- },
- "ResponseNerModel": {
- "title": "ResponseNerModel",
- "required": [
- "progression"
- ],
- "type": "object",
- "properties": {
- "progression": {
- "title": "Progression",
- "type": "string"
- },
- "result": {
- "title": "Result",
- "type": "array",
- "items": {
- "type": "array",
- "items": {
- "$ref": "#/components/schemas/EntityNerResponseModel"
- }
- }
- }
- }
- },
- "ResponseOIEModel": {
- "title": "ResponseOIEModel",
- "required": [
- "progression"
- ],
- "type": "object",
- "properties": {
- "progression": {
- "title": "Progression",
- "type": "string"
- },
- "result": {
- "title": "Result",
- "type": "array",
- "items": {
- "$ref": "#/components/schemas/EntityOIEResponseModel"
- }
- }
- }
- },
- "ResponseSummaryModel": {
- "title": "ResponseSummaryModel",
- "required": [
- "progression"
- ],
- "type": "object",
- "properties": {
- "progression": {
- "title": "Progression",
- "type": "string"
- },
- "result": {
- "title": "Result",
- "type": "array",
- "items": {
- "type": "string"
- }
- }
- }
- },
- "ValidationError": {
- "title": "ValidationError",
- "required": [
- "loc",
- "msg",
- "type"
- ],
- "type": "object",
- "properties": {
- "loc": {
- "title": "Location",
- "type": "array",
- "items": {
- "anyOf": [
- {
- "type": "string"
- },
- {
- "type": "integer"
- }
- ]
- }
- },
- "msg": {
- "title": "Message",
- "type": "string"
- },
- "type": {
- "title": "Error Type",
- "type": "string"
- }
- }
- }
- }
- }
-}
\ No newline at end of file
diff --git a/3-NLP_services/procfile b/3-NLP_services/procfile
deleted file mode 100644
index beae49d..0000000
--- a/3-NLP_services/procfile
+++ /dev/null
@@ -1 +0,0 @@
-web : gunicorn -w 4 -k uvicorn.workers.UvicornWorker main:app
\ No newline at end of file
diff --git a/3-NLP_services/requirements.txt b/3-NLP_services/requirements.txt
deleted file mode 100644
index b3c3ef4..0000000
--- a/3-NLP_services/requirements.txt
+++ /dev/null
@@ -1,14 +0,0 @@
-requests==2.28.0
-flair==0.10
-langdetect==1.0.9
-transformers
-pydantic==1.8.2
-uvicorn==0.17.6
-torch>=1.12.1+cu116
-fastapi==0.78.0
-protobuf==3.20.0
-sacremoses
-nltk>=3.3
-tqdm>=4.64.0
-setuptools>=62.6.0
-starlette>=0.19.1
\ No newline at end of file
diff --git a/3-NLP_services/src/Multi2OIE/LICENSE b/3-NLP_services/src/Multi2OIE/LICENSE
deleted file mode 100644
index a7d728f..0000000
--- a/3-NLP_services/src/Multi2OIE/LICENSE
+++ /dev/null
@@ -1,21 +0,0 @@
-MIT License
-
-Copyright (c) 2020 Youngbin Ro
-
-Permission is hereby granted, free of charge, to any person obtaining a copy
-of this software and associated documentation files (the "Software"), to deal
-in the Software without restriction, including without limitation the rights
-to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
-copies of the Software, and to permit persons to whom the Software is
-furnished to do so, subject to the following conditions:
-
-The above copyright notice and this permission notice shall be included in all
-copies or substantial portions of the Software.
-
-THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
-IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
-FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
-AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
-LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
-OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
-SOFTWARE.
diff --git a/3-NLP_services/src/Multi2OIE/OIE.py b/3-NLP_services/src/Multi2OIE/OIE.py
deleted file mode 100644
index e0b8985..0000000
--- a/3-NLP_services/src/Multi2OIE/OIE.py
+++ /dev/null
@@ -1,372 +0,0 @@
-import torch
-import torch
-import torch.nn as nn
-import torch.nn.functional as F
-from transformers import BertModel
-
-from torch.nn.modules.container import ModuleList
-import copy
-
-# from dataset import load_data
-from transformers import BertTokenizer
-
-from torch.utils.data import DataLoader
-from torch.utils.data import Dataset
-
-from tqdm import tqdm
-import numpy as np
-import src.Multi2OIE.utils.bio as bio
-
-
-# from extract import extract
-
-def _get_clones(module, n):
- return ModuleList([copy.deepcopy(module) for _ in range(n)])
-
-
-def _get_position_idxs(pred_mask, input_ids):
- position_idxs = torch.zeros(pred_mask.shape, dtype=int, device=pred_mask.device)
- for mask_idx, cur_mask in enumerate(pred_mask):
- position_idxs[mask_idx, :] += 2
- cur_nonzero = (cur_mask == 0).nonzero()
- start = torch.min(cur_nonzero).item()
- end = torch.max(cur_nonzero).item()
- position_idxs[mask_idx, start:end + 1] = 1
- pad_start = max(input_ids[mask_idx].nonzero()).item() + 1
- position_idxs[mask_idx, pad_start:] = 0
- return position_idxs
-
-
-def _get_pred_feature(pred_hidden, pred_mask):
- B, L, D = pred_hidden.shape
- pred_features = torch.zeros((B, L, D), device=pred_mask.device)
- for mask_idx, cur_mask in enumerate(pred_mask):
- pred_position = (cur_mask == 0).nonzero().flatten()
- pred_feature = torch.mean(pred_hidden[mask_idx, pred_position], dim=0)
- pred_feature = torch.cat(L * [pred_feature.unsqueeze(0)])
- pred_features[mask_idx, :, :] = pred_feature
- return pred_features
-
-
-def _get_activation_fn(activation):
- if activation == "relu":
- return F.relu
- elif activation == "gelu":
- return F.gelu
- else:
- raise RuntimeError("activation should be relu/gelu, not %s." % activation)
-
-
-class ArgExtractorLayer(nn.Module):
- def __init__(self,
- d_model=768,
- n_heads=8,
- d_feedforward=2048,
- dropout=0.1,
- activation='relu'):
- """
- A layer similar to Transformer decoder without decoder self-attention.
- (only encoder-decoder multi-head attention followed by feed-forward layers)
-
- :param d_model: model dimensionality (default=768 from BERT-base)
- :param n_heads: number of heads in multi-head attention layer
- :param d_feedforward: dimensionality of point-wise feed-forward layer
- :param dropout: drop rate of all layers
- :param activation: activation function after first feed-forward layer
- """
- super(ArgExtractorLayer, self).__init__()
- self.multihead_attn = nn.MultiheadAttention(d_model, n_heads, dropout=dropout)
- self.linear1 = nn.Linear(d_model, d_feedforward)
- self.dropout1 = nn.Dropout(dropout)
- self.linear2 = nn.Linear(d_feedforward, d_model)
-
- self.norm1 = nn.LayerNorm(d_model)
- self.norm2 = nn.LayerNorm(d_model)
- self.dropout2 = nn.Dropout(dropout)
- self.dropout3 = nn.Dropout(dropout)
- self.activation = _get_activation_fn(activation)
-
- def forward(self, target, source, key_mask=None):
- """
- Single Transformer Decoder layer without self-attention
-
- :param target: a tensor which takes a role as a query
- :param source: a tensor which takes a role as a key & value
- :param key_mask: key mask tensor with the shape of (batch_size, sequence_length)
- """
- # Multi-head attention layer (+ add & norm)
- attended = self.multihead_attn(
- target, source, source,
- key_padding_mask=key_mask)[0]
- skipped = target + self.dropout1(attended)
- normed = self.norm1(skipped)
-
- # Point-wise feed-forward layer (+ add & norm)
- projected = self.linear2(self.dropout2(self.activation(self.linear1(normed))))
- skipped = normed + self.dropout1(projected)
- normed = self.norm2(skipped)
- return normed
-
-
-class ArgModule(nn.Module):
- def __init__(self, arg_layer, n_layers):
- """
- Module for extracting arguments based on given encoder output and predicates.
- It uses ArgExtractorLayer as a base block and repeat the block N('n_layers') times
-
- :param arg_layer: an instance of the ArgExtractorLayer() class (required)
- :param n_layers: the number of sub-layers in the ArgModule (required).
- """
- super(ArgModule, self).__init__()
- self.layers = _get_clones(arg_layer, n_layers)
- self.n_layers = n_layers
-
- def forward(self, encoded, predicate, pred_mask=None):
- """
- :param encoded: output from sentence encoder with the shape of (L, B, D),
- where L is the sequence length, B is the batch size, D is the embedding dimension
- :param predicate: output from predicate module with the shape of (L, B, D)
- :param pred_mask: mask that prevents attention to tokens which are not predicates
- with the shape of (B, L)
- :return: tensor like Transformer Decoder Layer Output
- """
- output = encoded
- for layer_idx in range(self.n_layers):
- output = self.layers[layer_idx](
- target=output, source=predicate, key_mask=pred_mask)
- return output
-
-
-class Multi2OIE(nn.Module):
- def __init__(self,
- bert_config,
- mh_dropout=0.1,
- pred_clf_dropout=0.,
- arg_clf_dropout=0.3,
- n_arg_heads=8,
- n_arg_layers=4,
- pos_emb_dim=64,
- pred_n_labels=3,
- arg_n_labels=9):
- super(Multi2OIE, self).__init__()
- self.pred_n_labels = pred_n_labels
- self.arg_n_labels = arg_n_labels
-
- self.bert = BertModel.from_pretrained(
- bert_config,
- output_hidden_states=True)
- d_model = self.bert.config.hidden_size
- self.pred_dropout = nn.Dropout(pred_clf_dropout)
- self.pred_classifier = nn.Linear(d_model, self.pred_n_labels)
-
- self.position_emb = nn.Embedding(3, pos_emb_dim, padding_idx=0)
- d_model += (d_model + pos_emb_dim)
- arg_layer = ArgExtractorLayer(
- d_model=d_model,
- n_heads=n_arg_heads,
- dropout=mh_dropout)
- self.arg_module = ArgModule(arg_layer, n_arg_layers)
- self.arg_dropout = nn.Dropout(arg_clf_dropout)
- self.arg_classifier = nn.Linear(d_model, arg_n_labels)
-
- def forward(self,
- input_ids,
- attention_mask,
- predicate_mask=None,
- predicate_hidden=None,
- total_pred_labels=None,
- arg_labels=None):
-
- # predicate extraction
- bert_hidden = self.bert(input_ids, attention_mask)[0]
- pred_logit = self.pred_classifier(self.pred_dropout(bert_hidden))
-
- # predicate loss
- if total_pred_labels is not None:
- loss_fct = nn.CrossEntropyLoss()
- active_loss = attention_mask.view(-1) == 1
- active_logits = pred_logit.view(-1, self.pred_n_labels)
- active_labels = torch.where(
- active_loss, total_pred_labels.view(-1),
- torch.tensor(loss_fct.ignore_index).type_as(total_pred_labels))
- pred_loss = loss_fct(active_logits, active_labels)
-
- # inputs for argument extraction
- pred_feature = _get_pred_feature(bert_hidden, predicate_mask)
- position_vectors = self.position_emb(_get_position_idxs(predicate_mask, input_ids))
- bert_hidden = torch.cat([bert_hidden, pred_feature, position_vectors], dim=2)
- bert_hidden = bert_hidden.transpose(0, 1)
-
- # argument extraction
- arg_hidden = self.arg_module(bert_hidden, bert_hidden, predicate_mask)
- arg_hidden = arg_hidden.transpose(0, 1)
- arg_logit = self.arg_classifier(self.arg_dropout(arg_hidden))
-
- # argument loss
- if arg_labels is not None:
- loss_fct = nn.CrossEntropyLoss()
- active_loss = attention_mask.view(-1) == 1
- active_logits = arg_logit.view(-1, self.arg_n_labels)
- active_labels = torch.where(
- active_loss, arg_labels.view(-1),
- torch.tensor(loss_fct.ignore_index).type_as(arg_labels))
- arg_loss = loss_fct(active_logits, active_labels)
-
- # total loss
- batch_loss = pred_loss + arg_loss
- outputs = (batch_loss, pred_loss, arg_loss)
- return outputs
-
- def extract_predicate(self,
- input_ids,
- attention_mask):
- bert_hidden = self.bert(input_ids, attention_mask)[0]
- pred_logit = self.pred_classifier(bert_hidden)
- return pred_logit, bert_hidden
-
- def extract_argument(self,
- input_ids,
- predicate_hidden,
- predicate_mask):
- pred_feature = _get_pred_feature(predicate_hidden, predicate_mask)
- position_vectors = self.position_emb(_get_position_idxs(predicate_mask, input_ids))
- arg_input = torch.cat([predicate_hidden, pred_feature, position_vectors], dim=2)
- arg_input = arg_input.transpose(0, 1)
- arg_hidden = self.arg_module(arg_input, arg_input, predicate_mask)
- arg_hidden = arg_hidden.transpose(0, 1)
- return self.arg_classifier(arg_hidden)
-
-
-class OieEvalDataset(Dataset):
- def __init__(self, sentences, max_len, tokenizer_config):
- self.sentences = sentences
- self.tokenizer = BertTokenizer.from_pretrained(tokenizer_config)
- self.vocab = self.tokenizer.vocab
- self.max_len = max_len
-
- self.pad_idx = self.vocab['[PAD]']
- self.cls_idx = self.vocab['[CLS]']
- self.sep_idx = self.vocab['[SEP]']
- self.mask_idx = self.vocab['[MASK]']
-
- def add_pad(self, token_ids):
- diff = self.max_len - len(token_ids)
- if diff > 0:
- token_ids += [self.pad_idx] * diff
- else:
- token_ids = token_ids[:self.max_len - 1] + [self.sep_idx]
- return token_ids
-
- def idx2mask(self, token_ids):
- return [token_id != self.pad_idx for token_id in token_ids]
-
- def __len__(self):
- return len(self.sentences)
-
- def __getitem__(self, idx):
- token_ids = self.add_pad(self.tokenizer.encode(self.sentences[idx]))
- att_mask = self.idx2mask(token_ids)
- token_strs = self.tokenizer.convert_ids_to_tokens(token_ids)
- sentence = self.sentences[idx]
-
- assert len(token_ids) == self.max_len
- assert len(att_mask) == self.max_len
- assert len(token_strs) == self.max_len
- batch = [
- torch.tensor(token_ids),
- torch.tensor(att_mask),
- token_strs,
- sentence
- ]
- return batch
-
-
-def extract(model, loader, device, tokenizer):
-
- # model.eval()
- result = []
- for step, batch in tqdm(enumerate(loader), desc='eval_steps', total=len(loader)):
- token_strs = [[word for word in sent] for sent in np.asarray(batch[-2]).T]
- sentences = batch[-1]
- print(sentences)
- token_ids, att_mask = map(lambda x: x.to(device), batch[:-2])
-
- with torch.no_grad():
- """
- We will iterate B(batch_size) times
- because there are more than one predicate in one batch.
- In feeding to argument extractor, # of predicates takes a role as batch size.
-
- pred_logit: (B, L, 3)
- pred_hidden: (B, L, D)
- pred_tags: (B, P, L) ~ list of tensors, where P is # of predicate in each batch
- """
- pred_logit, pred_hidden = model.extract_predicate(
- input_ids=token_ids, attention_mask=att_mask)
- pred_tags = torch.argmax(pred_logit, 2)
- pred_tags = bio.filter_pred_tags(pred_tags, token_strs)
- pred_tags = bio.get_single_predicate_idxs(pred_tags)
- pred_probs = torch.nn.Softmax(2)(pred_logit)
-
- # iterate B times (one iteration means extraction for one sentence)
- for cur_pred_tags, cur_pred_hidden, cur_att_mask, cur_token_id, cur_pred_probs, token_str, sentence \
- in zip(pred_tags, pred_hidden, att_mask, token_ids, pred_probs, token_strs, sentences):
-
- # generate temporary batch for this sentence and feed to argument module
- cur_pred_masks = bio.get_pred_mask(cur_pred_tags).to(device)
- n_predicates = cur_pred_masks.shape[0]
- if n_predicates == 0:
- continue # if there is no predicate, we cannot extract.
- cur_pred_hidden = torch.cat(n_predicates * [cur_pred_hidden.unsqueeze(0)])
- cur_token_id = torch.cat(n_predicates * [cur_token_id.unsqueeze(0)])
- cur_arg_logit = model.extract_argument(
- input_ids=cur_token_id,
- predicate_hidden=cur_pred_hidden,
- predicate_mask=cur_pred_masks)
-
- # filter and get argument tags with highest probability
- cur_arg_tags = torch.argmax(cur_arg_logit, 2)
- cur_arg_probs = torch.nn.Softmax(2)(cur_arg_logit)
- cur_arg_tags = bio.filter_arg_tags(cur_arg_tags, cur_pred_tags, token_str)
-
- # get string tuples and write results
- cur_extractions, cur_extraction_idxs = bio.get_tuple(sentence, cur_pred_tags, cur_arg_tags, tokenizer)
- cur_confidences = bio.get_confidence_score(cur_pred_probs, cur_arg_probs, cur_extraction_idxs)
- for extraction, confidence in zip(cur_extractions, cur_confidences):
- # print('\n')
- # print("\t".join([sentence] + [str(1.0)] + extraction[:3]))
- res_dict = {
- 'score': str(confidence),
- 'relation': extraction[0],
- 'arg1': extraction[1],
- 'arg2': extraction[2]
- }
- result.append(res_dict)
- # print("\nExtraction Done.\n")
- return result
-
-
-class OIE:
- def __init__(self, model_path, BERT, batch_size):
- if torch.cuda.is_available():
- self.device = torch.device("cuda")
- else:
- self.device = torch.device("cpu")
- self.model = Multi2OIE(bert_config=BERT).to(self.device)
- model_weights = torch.load(model_path, map_location=torch.device(self.device))
- self.model.load_state_dict(model_weights)
- self.max_len = 64
- self.batch_size = batch_size
- self.tokenizer_config = BERT
- self.tokenizer = BertTokenizer.from_pretrained(BERT)
-
- def predict(self, sentences):
- loader = DataLoader(
- dataset=OieEvalDataset(
- sentences,
- self.max_len,
- self.tokenizer_config),
- batch_size=self.batch_size,
- num_workers=4,
- pin_memory=True)
- return extract(model=self.model, loader=loader, tokenizer=self.tokenizer, device=self.device)
diff --git a/3-NLP_services/src/Multi2OIE/README.md b/3-NLP_services/src/Multi2OIE/README.md
deleted file mode 100644
index 42a3e5f..0000000
--- a/3-NLP_services/src/Multi2OIE/README.md
+++ /dev/null
@@ -1,182 +0,0 @@
-# Multi^2OIE: Multilingual Open Information Extraction Based on Multi-Head Attention with BERT
-
-> Source code for learning Multi^2OIE for (multilingual) open information extraction.
-
-## Paper
-[**Multi^2OIE: Multilingual Open Information Extraction Based on Multi-Head Attention with BERT**](https://arxiv.org/abs/2009.08128)
-[Youngbin Ro](https://github.com/youngbin-ro), [Yukyung Lee](https://github.com/yukyunglee), and [Pilsung Kang](https://github.com/pilsung-kang)*
-Accepted to Findings of ACL: EMNLP 2020. (*corresponding author)
-
-
-
-## Overview
-### What is Open Information Extraction (Open IE)?
-[Niklaus et al. (2018)](https://www.aclweb.org/anthology/C18-1326/) describes Open IE as follows:
-
-> Information extraction (IE) **turns the unstructured information expressed in natural language text into a structured representation** in the form of relational tuples consisting of a set of arguments and a phrase denoting a semantic relation between them: . (...) Unlike traditional IE methods, Open IE is **not limited to a small set of target relations** known in advance, but rather extracts all types of relations found in a text.
-
-
-
-#### Note
-- Systems adopting sequence generation scheme ([Cui et al., 2018](https://www.aclweb.org/anthology/P18-2065/); [Kolluru et al., 2020](https://www.aclweb.org/anthology/2020.acl-main.521/)) can extract (actually generate) relations outside of given texts.
-- Multi^2OIE, however, is adopting sequence labeling scheme ([Stanovsky et al., 2018](https://www.aclweb.org/anthology/N18-1081/)) for computational efficiency and multilingual ability
-
-
-
-### Our Approach
-
-
-
-#### Step 1: Extract predicates (relations) from the input sentence using BERT
-- Conduct token-level classification on the BERT output sequence
- - Use BIO Tagging for representing arguments and predicates
-
-#### Step 2: Extract arguments using multi-head attention blocks
-- Concatenate BERT whole hidden sequence, average vector of hidden sequence at predicate position, and binary embedding vector indicating the token is included in predicate span.
-- Apply multi-head attention operation over N times
- - Query: whole hidden sequence
- - Key-Value pairs: hidden states of predicate positions
-- Conduct token-level classification on the multi-head attention output sequence
-
-#### Multilingual Extraction
-
-- Replace English BERT to Multilingual BERT
-- Train the model only with English data
-- Test the model in three difference languages (English, Spanish, and Portuguese) in zero-shot manner.
-
-
-
-
-## Usage
-
-### Prerequisites
-
-- Python 3.7
-
-- CUDA 10.0 or above
-
-### Environmental Setup
-
-#### Install
-##### using 'conda' command,
-~~~~
-# this makes a new conda environment
-conda env create -f environment.yml
-conda activate multi2oie
-~~~~
-
-##### using 'pip' command,
-~~~~
-pip install -r requirements.txt
-~~~~
-
-#### NLTK setup
-```
-python -c "import nltk; nltk.download('stopwords')"
-```
-
-### Datasets
-
-#### Dataset Released
-- `openie4_train.pkl`: https://drive.google.com/file/d/1DrWj1CjLFIno-UBfLI3_uIratN4QY6Y3/view?usp=sharing
-
-#### Do-it-yourself
-Original data file (bootstrapped sample from OpenIE4; used in SpanOIE) can be downloaded from [here](https://drive.google.com/file/d/1AEfwbh3BQnsv2VM977cS4tEoldrayKB6/view).
-Following download, put the downloaded data in './datasets' and use preprocess.py to convert the data into the format suitable for Multi^2OIE.
-
-~~~~
-cd utils
-python preprocess.py \
- --mode 'train' \
- --data '../datasets/structured_data.json' \
- --save_path '../datasets/openie4_train.pkl' \
- --bert_config 'bert-base-cased' \
- --max_len 64
-~~~~
-
-For multilingual training data, set **'bert_config'** as **'bert-base-multilingual-cased'**.
-
-
-
-
-### Run the Code
-
-#### Model Released
-- English Model: https://drive.google.com/file/d/11BaLuGjMVVB16WHcyaHWLgL6dg0_9xHQ/view?usp=sharing
-- Multilingual Model: https://drive.google.com/file/d/1lHQeetbacFOqvyPQ3ZzVUGPgn-zwTRA_/view?usp=sharing
-
-We used TITAN RTX GPU for training, and the use of other GPU can make the final performance different.
-
-##### for training,
-
-~~~~
-python main.py [--FLAGS]
-~~~~
-
-##### for testing,
-
-~~~~
-python test.py [--FLAGS]
-~~~~
-
-
-
-## Model Configurations
-
-### # of Parameters
-
-- Original BERT: 110M
-- \+ Multi-Head Attention Blocks: 66M
-
-
-
-### Hyper-parameters {& searching bounds}
-
-- epochs: 1 {**1**, 2, 3}
-- dropout rate for multi-head attention blocks: 0.2 {0.0, 0.1, **0.2**}
-- dropout rate for argument classifier: 0.2 {0.0, 0.1, **0.2**, 0.3}
-- batch size: 128 {64, **128**, 256, 512}
-- learning rate: 3e-5 {2e-5, **3e-5**, 5e-5}
-- number of multi-head attention heads: 8 {4, **8**}
-- number of multi-head attention blocks: 4 {2, **4**, 8}
-- position embedding dimension: 64 {**64**, 128, 256}
-- gradient clipping norm: 1.0 (not tuned)
-- learning rate warm-up steps: 10% of total steps (not tuned)
-- for other unspecified parameters, the default values can be used.
-
-
-## Expected Results
-
-### Development set
-
-#### OIE2016
-
-- F1: 71.7
-- AUC: 55.4
-
-#### CaRB
-
-- F1: 54.3
-- AUC: 34.8
-
-
-
-### Testing set
-
-#### Re-OIE2016
-
-- F1: 83.9
-- AUC: 74.6
-
-#### CaRB
-
-- F1: 52.3
-- AUC: 32.6
-
-
-
-## References
-
-- https://github.com/gabrielStanovsky/oie-benchmark
-- https://github.com/dair-iitd/CaRB
-- https://github.com/zhanjunlang/Span_OIE
diff --git a/3-NLP_services/src/Multi2OIE/__init__.py b/3-NLP_services/src/Multi2OIE/__init__.py
deleted file mode 100644
index e69de29..0000000
diff --git a/3-NLP_services/src/Multi2OIE/carb/CaRB_dev.tsv b/3-NLP_services/src/Multi2OIE/carb/CaRB_dev.tsv
deleted file mode 100644
index f71b3d1..0000000
--- a/3-NLP_services/src/Multi2OIE/carb/CaRB_dev.tsv
+++ /dev/null
@@ -1,2548 +0,0 @@
-Earlier this year , President Bush made a final `` take - it - or - leave it '' offer on the minimum wage : an increase to $ 4.25 an hour over three years , and only if accompanied by a lower wage for the first six months of a job . made a final `` take - it - or - leave it '' offer on President Bush the minimum wage Earlier this year
-Earlier this year , President Bush made a final `` take - it - or - leave it '' offer on the minimum wage : an increase to $ 4.25 an hour over three years , and only if accompanied by a lower wage for the first six months of a job . is Bush President
-Earlier this year , President Bush made a final `` take - it - or - leave it '' offer on the minimum wage : an increase to $ 4.25 an hour over three years , and only if accompanied by a lower wage for the first six months of a job . was an increase to President Bush's final `` take - it - or - leave it '' offer on the minimum wage $ 4.25 an hour over three years
-Earlier this year , President Bush made a final `` take - it - or - leave it '' offer on the minimum wage : an increase to $ 4.25 an hour over three years , and only if accompanied by a lower wage for the first six months of a job . was an increase only if accompanied by President Bush's final `` take - it - or - leave it '' offer on the minimum wage a lower wage for the first six months of a job
-Earlier this year , President Bush made a final `` take - it - or - leave it '' offer on the minimum wage : an increase to $ 4.25 an hour over three years , and only if accompanied by a lower wage for the first six months of a job . will be for a lower wage a job in the first six months
-This finding indicated that organic compounds could carry current . indicated that This finding organic compounds could carry current
-Blagoja ` Billy ' Celeski is an Australian footballer who plays as a midfielder for the Newcastle Jets . is Blagoja ` Billy ' Celeski an Australian footballer
-Blagoja ` Billy ' Celeski is an Australian footballer who plays as a midfielder for the Newcastle Jets . plays Blagoja ` Billy ' Celeski as a midfielder
-Blagoja ` Billy ' Celeski is an Australian footballer who plays as a midfielder for the Newcastle Jets . plays Blagoja ` Billy ' Celeski for the Newcastle Jets
-Blagoja ` Billy ' Celeski is an Australian footballer who plays as a midfielder for the Newcastle Jets . have the Newcastle Jets midfielder
-Mr. Baker found an opening under the house that led to a fume - filled coal mine . found Mr. Baker an opening under the house
-Mr. Baker found an opening under the house that led to a fume - filled coal mine . led to an opening a fume - filled coal mine under the house
-Mr. Baker found an opening under the house that led to a fume - filled coal mine . was a coal mine fume - filled
-Tom Bradley joined the London , Midland and Scottish Railway Company as a junior clerk in the Goods Depot at Kettering in 1941 . joined Tom Bradley the London , Midland and Scottish Railway Company as a junior clerk in the Goods Depot at Kettering in 1941
-Tom Bradley joined the London , Midland and Scottish Railway Company as a junior clerk in the Goods Depot at Kettering in 1941 . joined the London , Midland and Scottish Railway Company Tom Bradley as a junior clerk in the Goods Depot at Kettering in 1941
-Tom Bradley joined the London , Midland and Scottish Railway Company as a junior clerk in the Goods Depot at Kettering in 1941 . exists a Goods Depot in Kettering in 1941
-Tom Bradley joined the London , Midland and Scottish Railway Company as a junior clerk in the Goods Depot at Kettering in 1941 . exists the London , Midland and Scottish Railway Company at Kettering in 1941
-Tom Bradley joined the London , Midland and Scottish Railway Company as a junior clerk in the Goods Depot at Kettering in 1941 . exists Tom Bradley in 1941
-Tom Bradley joined the London , Midland and Scottish Railway Company as a junior clerk in the Goods Depot at Kettering in 1941 . is Tom Bradley a junior clerk in the Goods Depot at Kettering in 1941
-However , Jesus is not accepted as the son by Muslims , who strictly maintain that he was a human being who was loved by God and exalted by God to ranks of the most righteous . is not accepted by Muslims as Jesus the son
-However , Jesus is not accepted as the son by Muslims , who strictly maintain that he was a human being who was loved by God and exalted by God to ranks of the most righteous . strictly maintain that Jesus was Muslims a human being
-However , Jesus is not accepted as the son by Muslims , who strictly maintain that he was a human being who was loved by God and exalted by God to ranks of the most righteous . strictly maintain that Jesus was loved by Muslims God
-However , Jesus is not accepted as the son by Muslims , who strictly maintain that he was a human being who was loved by God and exalted by God to ranks of the most righteous . strictly maintain that Jesus was exalted to ranks of the most righteous by Muslims God
-From 1970 to 1985 , Gideon Rodan taught at the University of Connecticut School of Dental Medicine until he switched over to Merck . taught at Gideon Rodan the University of Connecticut School of Dental Medicine From 1970
-From 1970 to 1985 , Gideon Rodan taught at the University of Connecticut School of Dental Medicine until he switched over to Merck . taught at Gideon Rodan the University of Connecticut School of Dental Medicine to 1985
-From 1970 to 1985 , Gideon Rodan taught at the University of Connecticut School of Dental Medicine until he switched over to Merck . taught at Gideon Rodan the University of Connecticut School of Dental Medicine until he switched over to Merck
-From 1970 to 1985 , Gideon Rodan taught at the University of Connecticut School of Dental Medicine until he switched over to Merck . switched over to Gideon Rodan Merck
-From 1970 to 1985 , Gideon Rodan taught at the University of Connecticut School of Dental Medicine until he switched over to Merck . has the University of Connecticut a School of Dental Medicine
-After a short absence Keibler began a short feud with the evil Jillian Hall , which led to the two having a match on `` Velocity '' , which Keibler lost . began Keibler a short feud with the evil Jillian Hall after a short absence
-After a short absence Keibler began a short feud with the evil Jillian Hall , which led to the two having a match on `` Velocity '' , which Keibler lost . led to a short feud with the evil Jillian Hall the two having a match on `` Velocity ''
-After a short absence Keibler began a short feud with the evil Jillian Hall , which led to the two having a match on `` Velocity '' , which Keibler lost . lost Keibler a match on `` Velocity ''
-Walcott was brought on one knee in the third round and the fight ended with hardly a scratch on Langford . was brought on one knee Walcott in the fight in the third round
-Walcott was brought on one knee in the third round and the fight ended with hardly a scratch on Langford . hardly a scratch on in the fight Langford
-Walcott was brought on one knee in the third round and the fight ended with hardly a scratch on Langford . ended with hardly a scratch on the fight Langford
-On 12 July 2006 , Hezbollah launched a series of rocket attacks and raids into Israeli territory , where they killed three Israeli soldiers and captured a further two . launched Hezbollah a series of rocket attacks into Israeli territory On 12 July 2006
-On 12 July 2006 , Hezbollah launched a series of rocket attacks and raids into Israeli territory , where they killed three Israeli soldiers and captured a further two . launched Hezbollah a series of raids into Israeli territory On 12 July 2006
-On 12 July 2006 , Hezbollah launched a series of rocket attacks and raids into Israeli territory , where they killed three Israeli soldiers and captured a further two . killed a series of rocket attacks and raids three Israeli soldiers in Israeli territory On 12 July 2006
-On 12 July 2006 , Hezbollah launched a series of rocket attacks and raids into Israeli territory , where they killed three Israeli soldiers and captured a further two . captured a series of rocket attacks and raids a further two Israeli soldiers in Israeli territory On 12 July 2006
-On 12 July 2006 , Hezbollah launched a series of rocket attacks and raids into Israeli territory , where they killed three Israeli soldiers and captured a further two . killed Hezbollah three Israeli soldiers in Israeli territory On 12 July 2006
-On 12 July 2006 , Hezbollah launched a series of rocket attacks and raids into Israeli territory , where they killed three Israeli soldiers and captured a further two . captured Hezbollah a further two Israeli soldiers in Israeli territory On 12 July 2006
-Courtelary is first mentioned in 968 as `` Curtis Alerici '' in a list of the properties of Moutier-Grandval Abbey . is first mentioned as Courtelary `` Curtis Alerici '' in a list of the properties of Moutier-Grandval Abbey in 968
-Courtelary is first mentioned in 968 as `` Curtis Alerici '' in a list of the properties of Moutier-Grandval Abbey . has Moutier-Grandval Abbey properties
-Courtelary is first mentioned in 968 as `` Curtis Alerici '' in a list of the properties of Moutier-Grandval Abbey . is of a list the properties of Moutier-Grandval Abbey
-The strike obtained political support from the Political Affairs Committee , and the workers were addressed at numerous public meetings by Dr. Cheddi Jagan , Janet Jagan and leaders of the GIWU . addressed Dr. Cheddi Jagan , Janet Jagan and leaders of the GIWU the workers at numerous public meetings
-The strike obtained political support from the Political Affairs Committee , and the workers were addressed at numerous public meetings by Dr. Cheddi Jagan , Janet Jagan and leaders of the GIWU . obtained The strike political support from the Political Affairs Committee
-The strike obtained political support from the Political Affairs Committee , and the workers were addressed at numerous public meetings by Dr. Cheddi Jagan , Janet Jagan and leaders of the GIWU . were addressed the workers by Dr. Cheddi Jagan , Janet Jagan and leaders of the GIWU
-The strike obtained political support from the Political Affairs Committee , and the workers were addressed at numerous public meetings by Dr. Cheddi Jagan , Janet Jagan and leaders of the GIWU . had a the workers strike
-The strike obtained political support from the Political Affairs Committee , and the workers were addressed at numerous public meetings by Dr. Cheddi Jagan , Janet Jagan and leaders of the GIWU . had The strike numerous public meetings
-The strike obtained political support from the Political Affairs Committee , and the workers were addressed at numerous public meetings by Dr. Cheddi Jagan , Janet Jagan and leaders of the GIWU . obtained The strike political support from Dr. Cheddi Jagan , Janet Jagan and leaders of the GIWU
-US 258 and NC 122 parallel the river north before the two routes diverge northeast of Tarboro . parallel US 258 and NC 122 the river north before the two routes diverge northeast of Tarboro
-US 258 and NC 122 parallel the river north before the two routes diverge northeast of Tarboro . parallel US 258 the river north before diverge northeast of Tarboro
-US 258 and NC 122 parallel the river north before the two routes diverge northeast of Tarboro . parallel NC 122 the river north before diverge northeast of Tarboro
-US 258 and NC 122 parallel the river north before the two routes diverge northeast of Tarboro . diverge the two routes northeast of Tarboro
-US 258 and NC 122 parallel the river north before the two routes diverge northeast of Tarboro . diverge US 258 and NC 122 northeast of Tarboro
-A number of rare and endemic plants are adapted to the unique limestone soils of the mountains , including the cliffdweller , bristlecone cryptantha , and Inyo rock daisy . are adapted to A number of rare and endemic the unique limestone limestone of the mountains
-A number of rare and endemic plants are adapted to the unique limestone soils of the mountains , including the cliffdweller , bristlecone cryptantha , and Inyo rock daisy . are the limestone soils of the mountains unique
-A number of rare and endemic plants are adapted to the unique limestone soils of the mountains , including the cliffdweller , bristlecone cryptantha , and Inyo rock daisy . is adapted to the cliffdweller the unique limestone soils of the mountains
-A number of rare and endemic plants are adapted to the unique limestone soils of the mountains , including the cliffdweller , bristlecone cryptantha , and Inyo rock daisy . is adapted to the bristlecone cryptantha the unique limestone soils of the mountains
-A number of rare and endemic plants are adapted to the unique limestone soils of the mountains , including the cliffdweller , bristlecone cryptantha , and Inyo rock daisy . is adapted to Inyo rock daisy the unique limestone soils of the mountains
-A number of rare and endemic plants are adapted to the unique limestone soils of the mountains , including the cliffdweller , bristlecone cryptantha , and Inyo rock daisy . is cliffdweller rare and endemic
-A number of rare and endemic plants are adapted to the unique limestone soils of the mountains , including the cliffdweller , bristlecone cryptantha , and Inyo rock daisy . is bristlecone cryptantha rare and endemic
-A number of rare and endemic plants are adapted to the unique limestone soils of the mountains , including the cliffdweller , bristlecone cryptantha , and Inyo rock daisy . is Inyo rock daisy rare and endemic
-These include any Assistant to the President , Deputy Assistant to the President , and Special Assistant to the President . include These any Assistant to the President
-These include any Assistant to the President , Deputy Assistant to the President , and Special Assistant to the President . include These any Deputy Assistant to the President
-These include any Assistant to the President , Deputy Assistant to the President , and Special Assistant to the President . include These any Special Assistant to the President
-He was awarded the Queen 's Police Medal in the 1957 New Year Honours . was awarded He the Queen 's Police Medal New Year Honours in 1957
-He was awarded the Queen 's Police Medal in the 1957 New Year Honours . has He the Queen 's Police Medal
-Competition in the sale of complete bikes is heating up too . is heating up too Competition in the sale of complete bikes
-Competition in the sale of complete bikes is heating up too . is in Competition the sale of complete bikes
-with a .535 slugging percentage , and the Astros , where he batted .260 in 64 games , primarily at second base . batted he .260 in 64 games , primarily at second base in the Astros
-with a .535 slugging percentage , and the Astros , where he batted .260 in 64 games , primarily at second base . primarily batted at he second base in the Astros
-with a .535 slugging percentage , and the Astros , where he batted .260 in 64 games , primarily at second base . has he .535 slugging percentage
-with a .535 slugging percentage , and the Astros , where he batted .260 in 64 games , primarily at second base . is in he the Astros , where he batted .260 in 64 games , primarily at second base
-with a .535 slugging percentage , and the Astros , where he batted .260 in 64 games , primarily at second base . batted .260 in 64 games , with a .535 slugging percentage he primarily at second base in the Astros
-They are also known in Japan as `` Northern Territories '' . are also known as They `` Northern Territories '' in Japan
-She resigns after the events of `` The Last Precinct '' and relocates to Florida to become a private forensic consultant . resigns She after the events of `` The Last Precinct ''
-She resigns after the events of `` The Last Precinct '' and relocates to Florida to become a private forensic consultant . relocates to She Florida
-She resigns after the events of `` The Last Precinct '' and relocates to Florida to become a private forensic consultant . becomes She a private forensic consultant in Florida
-She resigns after the events of `` The Last Precinct '' and relocates to Florida to become a private forensic consultant . had `` The Last Precinct '' events
-Upon exiting Davidson Township , Sullivan County , Muncy Creek enters Lycoming County and flows along the border between Shrewsbury Township and Penn Township for several miles . enters Muncy Creek Lycoming County
-Upon exiting Davidson Township , Sullivan County , Muncy Creek enters Lycoming County and flows along the border between Shrewsbury Township and Penn Township for several miles . exits Muncy Creek Davidson Township , Sullivan County
-Upon exiting Davidson Township , Sullivan County , Muncy Creek enters Lycoming County and flows along the border between Shrewsbury Township and Penn Township for several miles . is in Davidson Township Sullivan County
-Upon exiting Davidson Township , Sullivan County , Muncy Creek enters Lycoming County and flows along the border between Shrewsbury Township and Penn Township for several miles . flows along for several miles Muncy Creek the border between Shrewsbury Township and Penn Township
-Upon exiting Davidson Township , Sullivan County , Muncy Creek enters Lycoming County and flows along the border between Shrewsbury Township and Penn Township for several miles . is between the border Shrewsbury Township and Penn Township
-Although the villages were located close to industrial sites , they were generally physically separated from them and generally consisted of relatively high quality housing , with integrated community amenities and attractive physical environments . were located close to the villages industrial sites
-Although the villages were located close to industrial sites , they were generally physically separated from them and generally consisted of relatively high quality housing , with integrated community amenities and attractive physical environments . were generally physically separated from the villages the industrial sites
-Although the villages were located close to industrial sites , they were generally physically separated from them and generally consisted of relatively high quality housing , with integrated community amenities and attractive physical environments . generally consisted of the villages relatively high quality housing
-The RSNO 's base is at Henry Wood Hall in Glasgow and is also used as its recording venue ; a new base is being constructed within the Royal Concert Hall , Buchanan Street . has The RSNO a base at Henry Wood Hall in Glasgow
-The RSNO 's base is at Henry Wood Hall in Glasgow and is also used as its recording venue ; a new base is being constructed within the Royal Concert Hall , Buchanan Street . is in Henry Wood Hall Glasgow
-The RSNO 's base is at Henry Wood Hall in Glasgow and is also used as its recording venue ; a new base is being constructed within the Royal Concert Hall , Buchanan Street . is also used as The RSNO 's base its recording venue
-The RSNO 's base is at Henry Wood Hall in Glasgow and is also used as its recording venue ; a new base is being constructed within the Royal Concert Hall , Buchanan Street . is being constructed a new base within the Royal Concert Hall , Buchanan Street
-The RSNO 's base is at Henry Wood Hall in Glasgow and is also used as its recording venue ; a new base is being constructed within the Royal Concert Hall , Buchanan Street . is on the Royal Concert Hall Buchanan Street
-Dripping can be clarified by adding a sliced raw potato and cooking until potato turns brown . can be clarified Dripping by adding a sliced raw potato and cooking until potato turns brown
-In recent years , Nissan has instituted flex - time work schedules and allowed employees to dress casually , even in blue jeans . has instituted Nissan flex - time work schedules In recent years
-In recent years , Nissan has instituted flex - time work schedules and allowed employees to dress casually , even in blue jeans . has allowed to dress casually Nissan employees In recent years
-In recent years , Nissan has instituted flex - time work schedules and allowed employees to dress casually , even in blue jeans . has allowed to dress even in blue jeans Nissan employees In recent years
-A character notes some practical difficulties with such a map and states that `` we now use the country itself , as its own map , and I assure you it does nearly as well . '' has A character a map
-A character notes some practical difficulties with such a map and states that `` we now use the country itself , as its own map , and I assure you it does nearly as well . '' notes A character some practical difficulties
-In stock - index arbitrage , traders buy and sell large amounts of stocks with offsetting trades in stock - index futures and options . buy traders large amounts of stocks In stock - index arbitrage
-In stock - index arbitrage , traders buy and sell large amounts of stocks with offsetting trades in stock - index futures and options . sell traders large amounts of stocks In stock - index arbitrage
-In stock - index arbitrage , traders buy and sell large amounts of stocks with offsetting trades in stock - index futures and options . have offsetting trades in traders stock - index futures In stock - index arbitrage
-In stock - index arbitrage , traders buy and sell large amounts of stocks with offsetting trades in stock - index futures and options . have offsetting trades in traders stock - index options In stock - index arbitrage
-In stock - index arbitrage , traders buy and sell large amounts of stocks with offsetting trades in stock - index futures and options . has stock - index arbitrage
-Having returned to the Second Division at the first attempt , they gained promotion to the First Division in 1974 . gained they promotion to the First Division in 1974
-Having returned to the Second Division at the first attempt , they gained promotion to the First Division in 1974 . returned to they the Second Division at the first attempt
-He stayed for less than a year before being appointed Chief Constable of Kent in July 1946 . stayed He for less than a year
-He stayed for less than a year before being appointed Chief Constable of Kent in July 1946 . was appointed He Chief Constable of Kent in July 1946
-In many of her writings , King often refers to the comical contradictions between the material reality of her upbringing and the snobbish behavior of her grandmother . has King many writings
-In many of her writings , King often refers to the comical contradictions between the material reality of her upbringing and the snobbish behavior of her grandmother . has King a grandmother
-In many of her writings , King often refers to the comical contradictions between the material reality of her upbringing and the snobbish behavior of her grandmother . often refers to King the comical contradictions between the material reality of her upbringing and the snobbish behavior of her grandmother In many of her writings
-In many of her writings , King often refers to the comical contradictions between the material reality of her upbringing and the snobbish behavior of her grandmother . has King's grandmother snobbish behavior
-In many of her writings , King often refers to the comical contradictions between the material reality of her upbringing and the snobbish behavior of her grandmother . are contradictions comical
-In many of her writings , King often refers to the comical contradictions between the material reality of her upbringing and the snobbish behavior of her grandmother . has King's upbringing material reality
-McLay also suggests that the songs negate what many consider to be a `` heretical '' ending for a comedy . also suggests that the songs negate McLay what many consider to be a `` heretical '' ending for a comedy
-McLay also suggests that the songs negate what many consider to be a `` heretical '' ending for a comedy . consider a comedy ending many `` heretical ''
-Byrom Street Cutting became a runaway catch point for runaway trains in the tunnel . became Byrom Street Cutting a runaway catch point for runaway trains in the tunnel
-Byrom Street Cutting became a runaway catch point for runaway trains in the tunnel . is Byrom Street Cutting a runaway catch point for runaway trains in the tunnel
-The division maintained defensive positions until the offensive of 23 May , when it broke out of the beachhead , took Cisterna , and raced to Civitavecchia and Rome . maintained The division defensive positions until the offensive of 23 May
-The division maintained defensive positions until the offensive of 23 May , when it broke out of the beachhead , took Cisterna , and raced to Civitavecchia and Rome . was on the offensive 23 May
-The division maintained defensive positions until the offensive of 23 May , when it broke out of the beachhead , took Cisterna , and raced to Civitavecchia and Rome . broke out of The division the beachhead on 23 May
-The division maintained defensive positions until the offensive of 23 May , when it broke out of the beachhead , took Cisterna , and raced to Civitavecchia and Rome . took The division Cisterna on 23 May
-The division maintained defensive positions until the offensive of 23 May , when it broke out of the beachhead , took Cisterna , and raced to Civitavecchia and Rome . raced to The division Civitavecchia on 23 May
-The division maintained defensive positions until the offensive of 23 May , when it broke out of the beachhead , took Cisterna , and raced to Civitavecchia and Rome . raced to The division Rome on 23 May
-The novel follows Cashel Byron , a world champion prizefighter , as he tries to woo wealthy aristocrat Lydia Carew without revealing his illegal profession . follows The novel Cashel Byron
-The novel follows Cashel Byron , a world champion prizefighter , as he tries to woo wealthy aristocrat Lydia Carew without revealing his illegal profession . is Cashel Byron a world champion prizefighter
-The novel follows Cashel Byron , a world champion prizefighter , as he tries to woo wealthy aristocrat Lydia Carew without revealing his illegal profession . tries to woo Cashel Byron wealthy aristocrat Lydia Carew
-The novel follows Cashel Byron , a world champion prizefighter , as he tries to woo wealthy aristocrat Lydia Carew without revealing his illegal profession . is Lydia Carew wealthy
-The novel follows Cashel Byron , a world champion prizefighter , as he tries to woo wealthy aristocrat Lydia Carew without revealing his illegal profession . is Lydia Carew an aristocrat
-The novel follows Cashel Byron , a world champion prizefighter , as he tries to woo wealthy aristocrat Lydia Carew without revealing his illegal profession . has Cashel Byron an illegal profession
-The novel follows Cashel Byron , a world champion prizefighter , as he tries to woo wealthy aristocrat Lydia Carew without revealing his illegal profession . tries to woo without revealing Cashel Byron his illegal profession
-A different judge then ordered the case reviewed by a higher court . ordered A different judge the case reviewed by a higher court
-A different judge then ordered the case reviewed by a higher court . was reviewed the case by a higher court
-In 1717 Lady Mary Wortley Montagu observed the practice in Istanbul and attempted to popularize it in Britain , but encountered considerable resistance . observed Lady Mary Wortley Montagu the practice in Istanbul In 1717
-In 1717 Lady Mary Wortley Montagu observed the practice in Istanbul and attempted to popularize it in Britain , but encountered considerable resistance . attempted to popularize Lady Mary Wortley Montagu the practice in Britain In 1717
-In 1717 Lady Mary Wortley Montagu observed the practice in Istanbul and attempted to popularize it in Britain , but encountered considerable resistance . encountered Lady Mary Wortley Montagu considerable resistance in Britain In 1717
-In 1717 Lady Mary Wortley Montagu observed the practice in Istanbul and attempted to popularize it in Britain , but encountered considerable resistance . was to popularize considerable resistance the practice in Britain In 1717
-In 1717 Lady Mary Wortley Montagu observed the practice in Istanbul and attempted to popularize it in Britain , but encountered considerable resistance . was Mary Wortley Montagu a Lady
-Wallonia is also home to about 80 % of the population of the French Community of Belgium , a political level responsible for matters related mainly to culture and education , with the remainder living in Brussels . is home to about 80 % of the Wallonia population of the French Community of Belgium
-Wallonia is also home to about 80 % of the population of the French Community of Belgium , a political level responsible for matters related mainly to culture and education , with the remainder living in Brussels . is home to 80 % of the population of the French Community of Wallonia Belgium
-Wallonia is also home to about 80 % of the population of the French Community of Belgium , a political level responsible for matters related mainly to culture and education , with the remainder living in Brussels . is home to 80 % of the population with the remainder living in Wallonia Brussels
-For liquid-packed vessels , thermal relief valves are generally characterized by the relatively small size of the valve necessary to provide protection from excess pressure caused by thermal expansion . have liquid-packed vessels thermal relief valves
-For liquid-packed vessels , thermal relief valves are generally characterized by the relatively small size of the valve necessary to provide protection from excess pressure caused by thermal expansion . are generally characterized by thermal relief valves the relatively small size of the valve necessary to provide protection from excess pressure caused by thermal expansion in liquid-packed vessels
-For liquid-packed vessels , thermal relief valves are generally characterized by the relatively small size of the valve necessary to provide protection from excess pressure caused by thermal expansion . is caused by excess pressure thermal expansion in liquid-packed vessels
-For liquid-packed vessels , thermal relief valves are generally characterized by the relatively small size of the valve necessary to provide protection from excess pressure caused by thermal expansion . provides protection from the valve excess pressure caused by thermal expansion in liquid-packed vessels
-For liquid-packed vessels , thermal relief valves are generally characterized by the relatively small size of the valve necessary to provide protection from excess pressure caused by thermal expansion . generally have liquid-packed vessels relatively small thermal relief valves
-The Original Celtics were a barnstorming professional basketball team in the 1920s . were The Original Celtics a barnstorming professional basketball team in the 1920s
-As the student of Torah ascends through the thought of the Pardes system , as the interpretations become more inward and spiritual , it becomes progressively understood that God desires man 's observance of the Jewish precepts , so to speak . ascends through the student of Torah the thought of the Pardes system
-As the student of Torah ascends through the thought of the Pardes system , as the interpretations become more inward and spiritual , it becomes progressively understood that God desires man 's observance of the Jewish precepts , so to speak . become more the interpretations inward
-As the student of Torah ascends through the thought of the Pardes system , as the interpretations become more inward and spiritual , it becomes progressively understood that God desires man 's observance of the Jewish precepts , so to speak . become more the interpretations spiritual
-As the student of Torah ascends through the thought of the Pardes system , as the interpretations become more inward and spiritual , it becomes progressively understood that God desires man 's observance of the Jewish precepts , so to speak . becomes it progressively understood that God desires man 's observance of the Jewish precepts
-As the student of Torah ascends through the thought of the Pardes system , as the interpretations become more inward and spiritual , it becomes progressively understood that God desires man 's observance of the Jewish precepts , so to speak . desires God man 's observance of the Jewish precepts
-All these vehicles have sharply improved Nissan 's morale and image -- but have n't done much for its market share . have sharply improved All these vehicles Nissan 's morale
-All these vehicles have sharply improved Nissan 's morale and image -- but have n't done much for its market share . have sharply improved All these vehicles Nissan 's image
-All these vehicles have sharply improved Nissan 's morale and image -- but have n't done much for its market share . have n't done much for All these vehicles Nissan 's market share
-Just above seen is a replica of a Shiva lingam . is seen a replica of a Shiva lingam Just above
-Around the `` triangle area , '' which includes Quanzhou , Xiamen and Zhangzhou , locals all speak Minnan languages . includes the triangle area Quanzhou
-Around the `` triangle area , '' which includes Quanzhou , Xiamen and Zhangzhou , locals all speak Minnan languages . includes the triangle area Xiamen
-Around the `` triangle area , '' which includes Quanzhou , Xiamen and Zhangzhou , locals all speak Minnan languages . includes the triangle area Zhangzhou
-Around the `` triangle area , '' which includes Quanzhou , Xiamen and Zhangzhou , locals all speak Minnan languages . speak locals Minnan languages around the triangle area
-Chrysler has had to temporarily close the St. Louis and Toledo plants recently because of excess inventories of vehicles built there . has had to close Chrysler the plants in St. Louis temporarily
-Chrysler has had to temporarily close the St. Louis and Toledo plants recently because of excess inventories of vehicles built there . has had to close Chrysler the plants in Toledo temporarily
-This used the section of the C&HP line from Buxton as far as Parsley Hay , from where a single line ran south to Ashbourne , where it connected with the North Staffordshire Railway . used This the section of the C&HP line from Buxton
-This used the section of the C&HP line from Buxton as far as Parsley Hay , from where a single line ran south to Ashbourne , where it connected with the North Staffordshire Railway . used This the section of the C&HP line as far as Parsley Hay
-This used the section of the C&HP line from Buxton as far as Parsley Hay , from where a single line ran south to Ashbourne , where it connected with the North Staffordshire Railway . ran a single line south to Ashbourne from Parsley Hay
-This used the section of the C&HP line from Buxton as far as Parsley Hay , from where a single line ran south to Ashbourne , where it connected with the North Staffordshire Railway . connected with a single line the North Staffordshire Railway in Ashbourne
-Though this form of violence is often portrayed as an issue within the context of heterosexual relationships , it also occurs in lesbian relationships , daughter-mother relationships , roommate relationships and other domestic relationships involving two women . is often portrayed as this form of violence an issue within the context of heterosexual relationships
-Though this form of violence is often portrayed as an issue within the context of heterosexual relationships , it also occurs in lesbian relationships , daughter-mother relationships , roommate relationships and other domestic relationships involving two women . occurs in this form of violence lesbian relationships
-Though this form of violence is often portrayed as an issue within the context of heterosexual relationships , it also occurs in lesbian relationships , daughter-mother relationships , roommate relationships and other domestic relationships involving two women . occurs in this form of violence daughter-mother relationships
-Though this form of violence is often portrayed as an issue within the context of heterosexual relationships , it also occurs in lesbian relationships , daughter-mother relationships , roommate relationships and other domestic relationships involving two women . occurs in this form of violence roommate relationships
-Though this form of violence is often portrayed as an issue within the context of heterosexual relationships , it also occurs in lesbian relationships , daughter-mother relationships , roommate relationships and other domestic relationships involving two women . this form of violence occurs in domestic relationships involving two women
-Although the villages were located close to industrial sites , they were generally physically separated from them and generally consisted of relatively high quality housing , with integrated community amenities and attractive physical environments . had the high quality housing integrated community amenities
-Although the villages were located close to industrial sites , they were generally physically separated from them and generally consisted of relatively high quality housing , with integrated community amenities and attractive physical environments . had the high quality housing attractive physical environments
-I worry more about things becoming so unraveled on the other side that they might become unable to negotiate . worry more about things becoming so unraveled on I the other side that they might become unable to negotiate
-I worry more about things becoming so unraveled on the other side that they might become unable to negotiate . becoming so unraveled on the I worry more about things other side that they might become unable to negotiate
-The second session , taking place on November 12 , 1960 , produced Joe Primrose 's `` St. James Infirmary '' and the sad and mood `` I 've Just Got to Forget You '' . produced The second session Joe Primrose 's `` St. James Infirmary '' and the sad and mood `` I 've Just Got to Forget You '' on November 12 , 1960
-The second session , taking place on November 12 , 1960 , produced Joe Primrose 's `` St. James Infirmary '' and the sad and mood `` I 've Just Got to Forget You '' . was `` I 've Just Got to Forget You '' sad and mood
-The second session , taking place on November 12 , 1960 , produced Joe Primrose 's `` St. James Infirmary '' and the sad and mood `` I 've Just Got to Forget You '' . was taking place The second session on November 12 , 1960
-The second session , taking place on November 12 , 1960 , produced Joe Primrose 's `` St. James Infirmary '' and the sad and mood `` I 've Just Got to Forget You '' . was `` St. James Infirmary '' Joe Primrose 's
-The second session , taking place on November 12 , 1960 , produced Joe Primrose 's `` St. James Infirmary '' and the sad and mood `` I 've Just Got to Forget You '' . were produced `` St. James Infirmary '' and the sad and mood `` I 've Just Got to Forget You '' on November 12 , 1960
-The second session , taking place on November 12 , 1960 , produced Joe Primrose 's `` St. James Infirmary '' and the sad and mood `` I 've Just Got to Forget You '' . `` I 've Just Got to Forget You '' was Joe Primrose 's
-23.8 % of all households were made up of individuals and 13.0 % had someone living alone who was 65 years of age or older . made up of 23.8 % of all households individuals
-23.8 % of all households were made up of individuals and 13.0 % had someone living alone who was 65 years of age or older . have 13.0 % of all households someone living alone who 65 years or older;
-He held the post as Attorney-General until 1834 ; he was readmitted in 1841 and after serving for a year , became Master of the Rolls in Ireland . held He the post as Attorney-General until 1834
-He held the post as Attorney-General until 1834 ; he was readmitted in 1841 and after serving for a year , became Master of the Rolls in Ireland . was readmitted He in 1841
-He held the post as Attorney-General until 1834 ; he was readmitted in 1841 and after serving for a year , became Master of the Rolls in Ireland . became He Master of the Rolls in Ireland after serving for a year
-Great Northern Nekoosa soared $ 20.125 a share , to $ 62.875 , substantially above the $ 58 a share Georgia - Pacific is offering . soared Great Northern Nekoosa $ 20.125 a share
-Great Northern Nekoosa soared $ 20.125 a share , to $ 62.875 , substantially above the $ 58 a share Georgia - Pacific is offering . soared to Great Northern Nekoosa $ 62.875 a share
-Great Northern Nekoosa soared $ 20.125 a share , to $ 62.875 , substantially above the $ 58 a share Georgia - Pacific is offering . is substantially above Great Northern Nekoosa's $ 62.875 a share the $ 58 a share Georgia - Pacific is offering
-Great Northern Nekoosa soared $ 20.125 a share , to $ 62.875 , substantially above the $ 58 a share Georgia - Pacific is offering . is offering Georgia - Pacific $ 58 a share
-Mr. Moon 's support for a Watergate - beleaguered Richard Nixon , the Koreagate scandal , and his prison sentence for income - tax evasion did not help the church 's recruitment efforts . support Mr. Moon 's for a Watergate - beleaguered Richard Nixon , the Koreagate scandal , and his prison sentence for income - tax evasion did not help the church 's efforts
-The latest research pact bolsters Du Pont 's growing portfolio of investments in superconductors . bolsters Du Pont 's The latest research pact bolsters portfolio of investments in superconductors
-The latest research pact bolsters Du Pont 's growing portfolio of investments in superconductors . are in Du Pont 's growing portfolio of investments superconductors
-The latest research pact bolsters Du Pont 's growing portfolio of investments in superconductors . has Du Pont a growing of investments
-She began her film career in 1947 in the film `` A New Oath '' . began She her film career in 1947
-She began her film career in 1947 in the film `` A New Oath '' . is `` A New Oath '' a film in 1947
-She began her film career in 1947 in the film `` A New Oath '' . was in She the film `` A New Oath '' in 1947
-She began her film career in 1947 in the film `` A New Oath '' . was in her career film
-Continuing duties specified for freed slaves in manumission agreements became more common into the Hellenistic era , and they may have been customary earlier . became Continuing duties specified for freed slaves more common in manumission agreements into the Hellenistic era
-Continuing duties specified for freed slaves in manumission agreements became more common into the Hellenistic era , and they may have been customary earlier . may have been Continuing duties specified for freed slaves customary in manumission agreements earlier
-Continuing duties specified for freed slaves in manumission agreements became more common into the Hellenistic era , and they may have been customary earlier . were specified for Continuing duties freed slaves in manumission agreements
-He returned to Cleveland , working in clubs as a singer , dancer , and comedian , often appearing in character as Prince DuMarr . returned to He Cleveland
-He returned to Cleveland , working in clubs as a singer , dancer , and comedian , often appearing in character as Prince DuMarr . working in clubs as a He returned to Cleveland singer
-He returned to Cleveland , working in clubs as a singer , dancer , and comedian , often appearing in character as Prince DuMarr . working in clubs as a He returned to Cleveland dancer
-He returned to Cleveland , working in clubs as a singer , dancer , and comedian , often appearing in character as Prince DuMarr . working in clubs as a He returned to Cleveland comedian
-He returned to Cleveland , working in clubs as a singer , dancer , and comedian , often appearing in character as Prince DuMarr . often appeared in character as He Prince DuMarr
-The Israeli controlled sector was captured by Israel in the Six-Day War of June 1967 . was captured by The Israeli controlled sector Israel in the Six-Day War of June 1967
-The Israeli controlled sector was captured by Israel in the Six-Day War of June 1967 . was The sector Israeli controlled
-A company spokesman did n't know Mr. Wakeman 's age . did n't know A company spokesman Mr. Wakeman 's age
-Voyslava has killed Mlada , Yaromir 's bride , to have him for herself . has killed Voyslava Yaromir 's bride
-Voyslava has killed Mlada , Yaromir 's bride , to have him for herself . has killed Voyslava Mlada
-Voyslava has killed Mlada , Yaromir 's bride , to have him for herself . is bride of Mlada Yaromir
-Mr. Ackerman contended that it was a direct response to his efforts to gain control of Datapoint . contended that Mr. Ackerman it was a direct response to his efforts to gain control of Datapoint
-Mr. Ackerman contended that it was a direct response to his efforts to gain control of Datapoint . had efforts to gain control of Mr. Ackerman Datapoint
-Newport Electronics Inc. named a new slate of officers , a move that follows replacement of the company 's five incumbent directors last week . named Newport Electronics Inc. a new slate of officers
-Newport Electronics Inc. named a new slate of officers , a move that follows replacement of the company 's five incumbent directors last week . is a move that follows Newport Electronics Inc. naming a new slate of officers replacement of the company 's five incumbent directors last week
-Newport Electronics Inc. named a new slate of officers , a move that follows replacement of the company 's five incumbent directors last week . had a replacement the company 's five incumbent directors last week
-Newport Electronics Inc. named a new slate of officers , a move that follows replacement of the company 's five incumbent directors last week . had Newport Electronics Inc. five incumbent directors
-Newport Electronics Inc. named a new slate of officers , a move that follows replacement of the company 's five incumbent directors last week . were five directors incumbent at Newport Electronics Inc.
-Newport Electronics Inc. named a new slate of officers , a move that follows replacement of the company 's five incumbent directors last week . is Newport Electronics Inc. the company
-Here , equality between the two vectors in homogeneous coordinates means that the numbers on the right side are equal to the numbers on the left side up to some common scaling factor formula_8 . is between equality the two vectors in homogeneous coordinates
-Here , equality between the two vectors in homogeneous coordinates means that the numbers on the right side are equal to the numbers on the left side up to some common scaling factor formula_8 . means that equality between the two vectors in homogeneous coordinates the numbers on the right side are equal to the numbers on the left side Here
-Here , equality between the two vectors in homogeneous coordinates means that the numbers on the right side are equal to the numbers on the left side up to some common scaling factor formula_8 . are numbers on the right side
-Here , equality between the two vectors in homogeneous coordinates means that the numbers on the right side are equal to the numbers on the left side up to some common scaling factor formula_8 . are numbers on the left side
-Here , equality between the two vectors in homogeneous coordinates means that the numbers on the right side are equal to the numbers on the left side up to some common scaling factor formula_8 . are equal to the numbers on the right side the numbers on the left side
-Here , equality between the two vectors in homogeneous coordinates means that the numbers on the right side are equal to the numbers on the left side up to some common scaling factor formula_8 . are equal up to the numbers on the right side and the numbers on the left side some common scaling factor formula_8
-Here , equality between the two vectors in homogeneous coordinates means that the numbers on the right side are equal to the numbers on the left side up to some common scaling factor formula_8 . is formula_8 some common scaling factor
-Many lodge members , youth and adult , are active staff members of both Scout and Cub Scout camps . are Many lodge members active staff members of Scout camps
-Many lodge members , youth and adult , are active staff members of both Scout and Cub Scout camps . are youth lodge members active staff members of Scout camps
-Many lodge members , youth and adult , are active staff members of both Scout and Cub Scout camps . are adult lodge members active staff members of Cub Scout camps
-Many lodge members , youth and adult , are active staff members of both Scout and Cub Scout camps . are adult lodge members active staff members of Scout camps
-Many lodge members , youth and adult , are active staff members of both Scout and Cub Scout camps . are youth lodge members active staff members of Cub Scout camps
-Many lodge members , youth and adult , are active staff members of both Scout and Cub Scout camps . are Many lodge members active staff members of Cub Scout camps
-Many lodge members , youth and adult , are active staff members of both Scout and Cub Scout camps . are Many lodge members active staff members of both Scout and Cub Scout camps
-Many lodge members , youth and adult , are active staff members of both Scout and Cub Scout camps . are youth lodge members active staff members of both Scout and Cub Scout camps
-Many lodge members , youth and adult , are active staff members of both Scout and Cub Scout camps . are youth lodge members active staff members of both Scout and Cub Scout camps
-These tracks have subsequently been included on CD reissues of the album `` The Plan '' . have been included on These tracks CD reissues of the album `` The Plan '' subsequently
-These tracks have subsequently been included on CD reissues of the album `` The Plan '' . has the album `` The Plan '' CD reissues
-The Institut Constant de Rebecque is a Swiss free-market , classical liberal and libertarian think tank founded in January 2005 in Lausanne , named after writer and political philosopher Benjamin Constant . is The Institut Constant de Rebecque a free-market think tank
-The Institut Constant de Rebecque is a Swiss free-market , classical liberal and libertarian think tank founded in January 2005 in Lausanne , named after writer and political philosopher Benjamin Constant . is The Institut Constant de Rebecque a Swiss think tank
-The Institut Constant de Rebecque is a Swiss free-market , classical liberal and libertarian think tank founded in January 2005 in Lausanne , named after writer and political philosopher Benjamin Constant . is The Institut Constant de Rebecque a classical liberal think tank
-The Institut Constant de Rebecque is a Swiss free-market , classical liberal and libertarian think tank founded in January 2005 in Lausanne , named after writer and political philosopher Benjamin Constant . is The Institut Constant de Rebecque a classical libertarian think tank
-The Institut Constant de Rebecque is a Swiss free-market , classical liberal and libertarian think tank founded in January 2005 in Lausanne , named after writer and political philosopher Benjamin Constant . was founded The Institut Constant de Rebecque in Lausanne in January 2005
-The Institut Constant de Rebecque is a Swiss free-market , classical liberal and libertarian think tank founded in January 2005 in Lausanne , named after writer and political philosopher Benjamin Constant . was named after The Institut Constant de Rebecque writer and political philosopher Benjamin Constant
-The Institut Constant de Rebecque is a Swiss free-market , classical liberal and libertarian think tank founded in January 2005 in Lausanne , named after writer and political philosopher Benjamin Constant . is Benjamin Constant a writer
-The Institut Constant de Rebecque is a Swiss free-market , classical liberal and libertarian think tank founded in January 2005 in Lausanne , named after writer and political philosopher Benjamin Constant . is Benjamin Constant a political philosopher
-Owen and the French socialist Henri de Saint-Simon were the fathers of the utopian socialist movement ; they believed that the ills of industrial work relations could be removed by the establishment of small cooperative communities . were the fathers of Owen and the French socialist Henri de Saint-Simon the utopian socialist movement
-Owen and the French socialist Henri de Saint-Simon were the fathers of the utopian socialist movement ; they believed that the ills of industrial work relations could be removed by the establishment of small cooperative communities . was Henri de Saint-Simon a French socialist
-Owen and the French socialist Henri de Saint-Simon were the fathers of the utopian socialist movement ; they believed that the ills of industrial work relations could be removed by the establishment of small cooperative communities . believed that Owen and Henri de Saint-Simon the ills of industrial work relations could be removed
-Owen and the French socialist Henri de Saint-Simon were the fathers of the utopian socialist movement ; they believed that the ills of industrial work relations could be removed by the establishment of small cooperative communities . could be removed by the establishment of the ills of industrial work relations small cooperative communities
-Mr. Achenbaum 's move follows the announcement last month that his consulting partner , Stanley Canter , 66 , would retire . had Mr. Achenbaum a move
-Mr. Achenbaum 's move follows the announcement last month that his consulting partner , Stanley Canter , 66 , would retire . follows Mr. Achenbaum 's move the announcement that his consulting partner , Stanley Canter , would retire
-Mr. Achenbaum 's move follows the announcement last month that his consulting partner , Stanley Canter , 66 , would retire . is Mr. Achenbaum 's consulting partner Stanley Canter
-Mr. Achenbaum 's move follows the announcement last month that his consulting partner , Stanley Canter , 66 , would retire . was the announcement that his consulting partner , Stanley Canter , would retire last month
-Mr. Achenbaum 's move follows the announcement last month that his consulting partner , Stanley Canter , 66 , would retire . is Stanley Canter 66 66
-It finally closed to all traffic in July 1985 , when it was deemed too expensive to make extensive repairs to keep Latchford viaduct operational . finally closed to Latchford viaduct all traffic in July 1985
-It finally closed to all traffic in July 1985 , when it was deemed too expensive to make extensive repairs to keep Latchford viaduct operational . was deemed Latchford viaduct too expensive to make extensive repairs to keep operational in July 1985
-It finally closed to all traffic in July 1985 , when it was deemed too expensive to make extensive repairs to keep Latchford viaduct operational . is at the viaduct Latchford
-FEDERAL NATIONAL MORTGAGE ASSOCIATION ( Fannie Mae ) : Posted yields on 30 year mortgage commitments for delivery within 30 days ( priced at par ) 9.75 % , standard conventional fixed - rate mortgages ; 8.75 % , 6\/2 rate capped one - year adjustable rate mortgages . is Fannie Mae the FEDERAL NATIONAL MORTGAGE ASSOCIATION
-FEDERAL NATIONAL MORTGAGE ASSOCIATION ( Fannie Mae ) : Posted yields on 30 year mortgage commitments for delivery within 30 days ( priced at par ) 9.75 % , standard conventional fixed - rate mortgages ; 8.75 % , 6\/2 rate capped one - year adjustable rate mortgages . are FEDERAL NATIONAL MORTGAGE ASSOCIATION Posted yields on 30 year mortgage commitments for delivery within 30 days ( priced at par ) 9.75 %
-FEDERAL NATIONAL MORTGAGE ASSOCIATION ( Fannie Mae ) : Posted yields on 30 year mortgage commitments for delivery within 30 days ( priced at par ) 9.75 % , standard conventional fixed - rate mortgages ; 8.75 % , 6\/2 rate capped one - year adjustable rate mortgages . are FEDERAL NATIONAL MORTGAGE ASSOCIATION Posted yields on standard conventional fixed - rate mortgages 8.75 %
-FEDERAL NATIONAL MORTGAGE ASSOCIATION ( Fannie Mae ) : Posted yields on 30 year mortgage commitments for delivery within 30 days ( priced at par ) 9.75 % , standard conventional fixed - rate mortgages ; 8.75 % , 6\/2 rate capped one - year adjustable rate mortgages . are on Posted yields 30 year mortgage commitments for delivery within 30 days
-FEDERAL NATIONAL MORTGAGE ASSOCIATION ( Fannie Mae ) : Posted yields on 30 year mortgage commitments for delivery within 30 days ( priced at par ) 9.75 % , standard conventional fixed - rate mortgages ; 8.75 % , 6\/2 rate capped one - year adjustable rate mortgages . are on Posted yields standard conventional fixed - rate mortgages
-FEDERAL NATIONAL MORTGAGE ASSOCIATION ( Fannie Mae ) : Posted yields on 30 year mortgage commitments for delivery within 30 days ( priced at par ) 9.75 % , standard conventional fixed - rate mortgages ; 8.75 % , 6\/2 rate capped one - year adjustable rate mortgages . are on Posted yields 6\/2 rate capped one - year adjustable rate mortgages
-FEDERAL NATIONAL MORTGAGE ASSOCIATION ( Fannie Mae ) : Posted yields on 30 year mortgage commitments for delivery within 30 days ( priced at par ) 9.75 % , standard conventional fixed - rate mortgages ; 8.75 % , 6\/2 rate capped one - year adjustable rate mortgages . are for delivery within 30 year mortgage commitments 30 days
-FEDERAL NATIONAL MORTGAGE ASSOCIATION ( Fannie Mae ) : Posted yields on 30 year mortgage commitments for delivery within 30 days ( priced at par ) 9.75 % , standard conventional fixed - rate mortgages ; 8.75 % , 6\/2 rate capped one - year adjustable rate mortgages . are mortgage commitments for delivery within 30 days 30 year
-FEDERAL NATIONAL MORTGAGE ASSOCIATION ( Fannie Mae ) : Posted yields on 30 year mortgage commitments for delivery within 30 days ( priced at par ) 9.75 % , standard conventional fixed - rate mortgages ; 8.75 % , 6\/2 rate capped one - year adjustable rate mortgages . are 6\/2 rate capped adjustable rate mortgages one - year
-The previous champions in 2005 were Kilmacud Crokes , who were knocked out of the 2006 competition at the semi-final stage . were Kilmacud Crokes The previous champions in 2005
-The previous champions in 2005 were Kilmacud Crokes , who were knocked out of the 2006 competition at the semi-final stage . were knocked out of Kilmacud Crokes the competition in 2006 semi-final stage
-The previous champions in 2005 were Kilmacud Crokes , who were knocked out of the 2006 competition at the semi-final stage . were knocked out of Kilmacud Crokes the competition at the semi-final stage in 2006
-The previous champions in 2005 were Kilmacud Crokes , who were knocked out of the 2006 competition at the semi-final stage . were knocked out of The previous champions the competition in 2006
-That night , 300 soldiers of the 1st SS Battalion were able to reinforce the hotel and defeat several attacks on the building . were able to reinforce 300 soldiers of the 1st SS Battalion the hotel That night
-That night , 300 soldiers of the 1st SS Battalion were able to reinforce the hotel and defeat several attacks on the building . were able to defeat 300 soldiers of the 1st SS Battalion several attacks on the building That night
-That night , 300 soldiers of the 1st SS Battalion were able to reinforce the hotel and defeat several attacks on the building . were on several attacks the building That night
-That night , 300 soldiers of the 1st SS Battalion were able to reinforce the hotel and defeat several attacks on the building . were of 300 soldiers the 1st SS Battalion
-That would be a formula for ensuring even more FHA red ink . would be a formula for ensuring That even more FHA red ink
-He develops significance both as a recurrent character in the series and friend to Dream , appearing in a total of seven issues spanning six hundred years . develops significance as He a recurrent character in the series
-He develops significance both as a recurrent character in the series and friend to Dream , appearing in a total of seven issues spanning six hundred years . develops significance as He a friend to Dream
-He develops significance both as a recurrent character in the series and friend to Dream , appearing in a total of seven issues spanning six hundred years . is appearing in He a total of seven issues
-He develops significance both as a recurrent character in the series and friend to Dream , appearing in a total of seven issues spanning six hundred years . are spanning a total of seven issues six hundred years
-The company is expected to spend about $ 30 million a year on its two - year corporate campaign , created by WPP Group 's Ogilvy & Mather unit in New York . was created by The company's two - year corporate campaign WPP Group 's Ogilvy & Mather unit
-The company is expected to spend about $ 30 million a year on its two - year corporate campaign , created by WPP Group 's Ogilvy & Mather unit in New York . has WPP Group Ogilvy & Mather unit
-The company is expected to spend about $ 30 million a year on its two - year corporate campaign , created by WPP Group 's Ogilvy & Mather unit in New York . is in Ogilvy & Mather unit New York
-The company is expected to spend about $ 30 million a year on its two - year corporate campaign , created by WPP Group 's Ogilvy & Mather unit in New York . is expected to spend on its two - year corporate campaign The company about $ 30 million a year
-The company is expected to spend about $ 30 million a year on its two - year corporate campaign , created by WPP Group 's Ogilvy & Mather unit in New York . is The company's corporate campaign two - year
-From 1953 till 1957 Speranskaya worked as chief artist in Kazan Dolls Theatre , since 1957 she worked as stage-artist director in Kazan theatres , also she was invited to other cities of Russian Federation . worked as Speranskaya chief artist in Kazan Dolls Theatre From 1953 till 1957
-From 1953 till 1957 Speranskaya worked as chief artist in Kazan Dolls Theatre , since 1957 she worked as stage-artist director in Kazan theatres , also she was invited to other cities of Russian Federation . worked as Speranskaya stage-artist director in Kazan theatres since 1957
-From 1953 till 1957 Speranskaya worked as chief artist in Kazan Dolls Theatre , since 1957 she worked as stage-artist director in Kazan theatres , also she was invited to other cities of Russian Federation . was invited to Speranskaya other cities of Russian Federation since 1957
-On April 13 , 1987 , the Iowa Terminal Railroad was sold to Dave Johnson and renamed to Iowa Traction Railroad . was sold to the Iowa Terminal Railroad Dave Johnson On April 13 , 1987
-On April 13 , 1987 , the Iowa Terminal Railroad was sold to Dave Johnson and renamed to Iowa Traction Railroad . was renamed to the Iowa Terminal Railroad Iowa Traction Railroad On April 13 , 1987
-On April 13 , 1987 , the Iowa Terminal Railroad was sold to Dave Johnson and renamed to Iowa Traction Railroad . is in the Terminal Railroad Iowa
-His works span a wide range of topics from the occult to natural history , literary criticism , biology , cartography , and iconography . span a wide range of His works topics
-His works span a wide range of topics from the occult to natural history , literary criticism , biology , cartography , and iconography . are in His works the occult
-His works span a wide range of topics from the occult to natural history , literary criticism , biology , cartography , and iconography . are in His works natural history
-His works span a wide range of topics from the occult to natural history , literary criticism , biology , cartography , and iconography . are in His works literary criticism
-His works span a wide range of topics from the occult to natural history , literary criticism , biology , cartography , and iconography . are in His works biology
-His works span a wide range of topics from the occult to natural history , literary criticism , biology , cartography , and iconography . are in His works cartography
-His works span a wide range of topics from the occult to natural history , literary criticism , biology , cartography , and iconography . are in His works iconography
-In 1981 , when staying in New York State , the pair developed the idea of running workshops for professional artists , which became the Triangle Arts Trust . developed the pair the idea of running workshops for professional artists in New York State In 1981
-In 1981 , when staying in New York State , the pair developed the idea of running workshops for professional artists , which became the Triangle Arts Trust . became the idea of running workshops for professional artists the Triangle Arts Trust
-In 1981 , when staying in New York State , the pair developed the idea of running workshops for professional artists , which became the Triangle Arts Trust . were staying the pair in New York State In 1981
-This currently sees the club ranked sixth in terms of premierships won . is ranked sixth in terms of the club premierships won currently
-This currently sees the club ranked sixth in terms of premierships won . sees This the club ranked sixth in terms of premierships won currently
-Arrangements were made for mid-August performances in 1944 , but , following the 20 July plot to assassinate Hitler , Joseph Goebbels declared `` total war '' and closed all theatres within the Third Reich , resulting in the work not being allowed a public staging . were made for Arrangements mid-August performances in 1944
-Arrangements were made for mid-August performances in 1944 , but , following the 20 July plot to assassinate Hitler , Joseph Goebbels declared `` total war '' and closed all theatres within the Third Reich , resulting in the work not being allowed a public staging . plot was to assassinate Hitler the 20 July
-Arrangements were made for mid-August performances in 1944 , but , following the 20 July plot to assassinate Hitler , Joseph Goebbels declared `` total war '' and closed all theatres within the Third Reich , resulting in the work not being allowed a public staging . declared Joseph Goebbels total war following the 20 July plot to assassinate Hitler
-Arrangements were made for mid-August performances in 1944 , but , following the 20 July plot to assassinate Hitler , Joseph Goebbels declared `` total war '' and closed all theatres within the Third Reich , resulting in the work not being allowed a public staging . closed Joseph Goebbels all theatres within the Third Reich
-Arrangements were made for mid-August performances in 1944 , but , following the 20 July plot to assassinate Hitler , Joseph Goebbels declared `` total war '' and closed all theatres within the Third Reich , resulting in the work not being allowed a public staging . was not allowed the work a public staging
-Fishing boats and cargo ships typically have one or more cargo holds . typically have Fishing boats one or more cargo holds
-Fishing boats and cargo ships typically have one or more cargo holds . typically have cargo ships one or more cargo holds
-After the GASB was founded in 1984 , 11 years after the FASB , the government - owned entities were supposed to follow FASB rules unless the GASB superceded them . was founded in the GASB 1984
-After the GASB was founded in 1984 , 11 years after the FASB , the government - owned entities were supposed to follow FASB rules unless the GASB superceded them . was founded the GASB 11 years after the FASB
-After the GASB was founded in 1984 , 11 years after the FASB , the government - owned entities were supposed to follow FASB rules unless the GASB superceded them . was 1984 11 years after the FASB was founded
-After the GASB was founded in 1984 , 11 years after the FASB , the government - owned entities were supposed to follow FASB rules unless the GASB superceded them . were supposed to follow unless the GASB superceded them the government - owned entities FASB rules After 1984
-Premark International Inc. , for example , peddles the M8.7sp Electronic Cycling Simulator , a $ 2,000 stationary cycle . peddles Premark International Inc. the M8.7sp Electronic Cycling Simulator
-Premark International Inc. , for example , peddles the M8.7sp Electronic Cycling Simulator , a $ 2,000 stationary cycle . is the M8.7sp Electronic Cycling Simulator a stationary cycle
-Premark International Inc. , for example , peddles the M8.7sp Electronic Cycling Simulator , a $ 2,000 stationary cycle . is the M8.7sp Electronic Cycling Simulator $ 2,000
-Premark International Inc. , for example , peddles the M8.7sp Electronic Cycling Simulator , a $ 2,000 stationary cycle . peddles Premark International Inc. a $ 2,000 stationary cycle
-Furious at being passed over again , Michael secures another job with a rival company and plans on leaving his family behind for good . was Furious at Michael being passed over again
-Furious at being passed over again , Michael secures another job with a rival company and plans on leaving his family behind for good . was passed over Michael again
-Furious at being passed over again , Michael secures another job with a rival company and plans on leaving his family behind for good . secures Michael another job
-Furious at being passed over again , Michael secures another job with a rival company and plans on leaving his family behind for good . is with another job a rival company
-Furious at being passed over again , Michael secures another job with a rival company and plans on leaving his family behind for good . plans on leaving behind for good Michael his family
-In October 2008 , Bond apologized to former U.S. Attorney Todd Graves , after a U.S. Justice Department report cited Bond for forcing Graves out over a disagreement with Representative Sam Graves . apologized to Bond former U.S. Attorney Todd Graves In October 2008
-In October 2008 , Bond apologized to former U.S. Attorney Todd Graves , after a U.S. Justice Department report cited Bond for forcing Graves out over a disagreement with Representative Sam Graves . is Todd Graves a former U.S. Attorney
-In October 2008 , Bond apologized to former U.S. Attorney Todd Graves , after a U.S. Justice Department report cited Bond for forcing Graves out over a disagreement with Representative Sam Graves . was Todd Graves Attorney of U.S. formerly
-In October 2008 , Bond apologized to former U.S. Attorney Todd Graves , after a U.S. Justice Department report cited Bond for forcing Graves out over a disagreement with Representative Sam Graves . cited Bond for forcing Graves out over a U.S. Justice Department report a disagreement with Representative Sam Graves
-In October 2008 , Bond apologized to former U.S. Attorney Todd Graves , after a U.S. Justice Department report cited Bond for forcing Graves out over a disagreement with Representative Sam Graves . forced out over a disagreement Bond Graves
-In October 2008 , Bond apologized to former U.S. Attorney Todd Graves , after a U.S. Justice Department report cited Bond for forcing Graves out over a disagreement with Representative Sam Graves . had a disagreement with Graves Representative Sam Graves
-In October 2008 , Bond apologized to former U.S. Attorney Todd Graves , after a U.S. Justice Department report cited Bond for forcing Graves out over a disagreement with Representative Sam Graves . is Sam Graves a Representative
-In October 2008 , Bond apologized to former U.S. Attorney Todd Graves , after a U.S. Justice Department report cited Bond for forcing Graves out over a disagreement with Representative Sam Graves . apologized Bond a U.S. Justice Department report cited Bond for forcing Graves out over a disagreement with Representative Sam Graves after
-He toured extensively throughout the world , and earned the marketing nickname `` the Pavarotti of the Organ '' . toured extensively He throughout the world
-He toured extensively throughout the world , and earned the marketing nickname `` the Pavarotti of the Organ '' . earned He the marketing nickname `` the Pavarotti of the Organ ''
-He toured extensively throughout the world , and earned the marketing nickname `` the Pavarotti of the Organ '' . was the marketing nickname `` the Pavarotti of the Organ ''
-He toured extensively throughout the world , and earned the marketing nickname `` the Pavarotti of the Organ '' . is for `` the Pavarotti of the Organ '' nickname marketing
-XM did offer a free month of service to subscribers who called in complaints of the suspension . did offer XM a free month of service
-XM did offer a free month of service to subscribers who called in complaints of the suspension . did offer to XM subscribers who called in complaints of the suspension
-XM did offer a free month of service to subscribers who called in complaints of the suspension . called in subscribers complaints of the suspension
-XM did offer a free month of service to subscribers who called in complaints of the suspension . has XM subscribers
-The gene thus can prevent a plant from fertilizing itself . can prevent a The gene a plant from fertilizing itself
-The gene thus can prevent a plant from fertilizing itself . can a plant fertilize itself
-Mr. Baker hears her out , pokes around a bit , asks a few questions and proposes some explanations . hears Mr. Baker her out , pokes around a bit , asks a few questions proposes some explanations
-Mr. Baker hears her out , pokes around a bit , asks a few questions and proposes some explanations . hears her out, pokes around a bit , asks a few questions and Mr. Baker proposes some explanations
-The first , at a severity of Mw 6.0 , occurred on May 26 , 1994 . occurred on The first May 26 , 1994
-The first , at a severity of Mw 6.0 , occurred on May 26 , 1994 . had a severity of The first Mw 6.0 on May 26 , 1994
-The Federal Trade Commission began an investigation in late 1995 . began The Federal Trade Commission an investigation in late 1995
-Although the Algeciras Conference temporarily solved the First Moroccan Crisis , it only worsened the tensions between the Triple Alliance and Triple Entente that ultimately led to the First World War . led to Algeciras Conference the First World War
-By the end of this experiment several results were found . were found several results By the end of this experiment
-By the end of this experiment several results were found . had this experiment several results
-According to individuals familiar with the situation , the Frankfurt loss stemmed from a computer program for calculating prices on forward - rate agreements that failed to envision an interest - rate environment where short - term rates were equal to or higher than long - term rates . are familiar with individuals the situation
-According to individuals familiar with the situation , the Frankfurt loss stemmed from a computer program for calculating prices on forward - rate agreements that failed to envision an interest - rate environment where short - term rates were equal to or higher than long - term rates . According to the Frankfurt loss stemmed from a computer program for calculating prices on forward - rate agreements that failed to envision an interest - rate environment where short - term rates were equal to or higher than long - term rates individuals familiar with the situation
-According to individuals familiar with the situation , the Frankfurt loss stemmed from a computer program for calculating prices on forward - rate agreements that failed to envision an interest - rate environment where short - term rates were equal to or higher than long - term rates . had Frankfurt a loss
-According to individuals familiar with the situation , the Frankfurt loss stemmed from a computer program for calculating prices on forward - rate agreements that failed to envision an interest - rate environment where short - term rates were equal to or higher than long - term rates . failed to envision a computer program for calculating prices on forward - rate agreements an interest - rate environment where short - term rates were equal to or higher long - term rates
-According to individuals familiar with the situation , the Frankfurt loss stemmed from a computer program for calculating prices on forward - rate agreements that failed to envision an interest - rate environment where short - term rates were equal to or higher than long - term rates . was for calculating prices on a computer program forward - rate agreements
-According to individuals familiar with the situation , the Frankfurt loss stemmed from a computer program for calculating prices on forward - rate agreements that failed to envision an interest - rate environment where short - term rates were equal to or higher than long - term rates . were equal to or higher than short - term rates long - term rates in an interest - rate environment
-Blackburne 's statement that he `` would not tolerate a refusal to ratify the appointment '' , is an indication of the influence which could then be wielded by a strong Attorney General . was Blackburne 's statement that he `` would not tolerate a refusal to ratify the appointment ''
-Blackburne 's statement that he `` would not tolerate a refusal to ratify the appointment '' , is an indication of the influence which could then be wielded by a strong Attorney General . is Blackburne 's statement an indication of the influence which could then be wielded by a strong Attorney General
-The latter was lifted only as the b-side of `` Keep on Loving Me '' . was lifted as the The latter b-side of `` Keep on Loving Me ''
-The latter was lifted only as the b-side of `` Keep on Loving Me '' . is the b-side of The latter `` Keep on Loving Me ''
-However , the two sometimes work as partners , and during a point in which Robin and Ariana were unable to see each other , he and Stephanie grow even closer . work as the two partners sometimes
-However , the two sometimes work as partners , and during a point in which Robin and Ariana were unable to see each other , he and Stephanie grow even closer . are he and Stephanie the two
-However , the two sometimes work as partners , and during a point in which Robin and Ariana were unable to see each other , he and Stephanie grow even closer . work as he and Stephanie partners sometimes
-However , the two sometimes work as partners , and during a point in which Robin and Ariana were unable to see each other , he and Stephanie grow even closer . grow even closer he and Stephanie during a point in which Robin and Ariana were unable to see each other
-However , the two sometimes work as partners , and during a point in which Robin and Ariana were unable to see each other , he and Stephanie grow even closer . is Robin he
-However , the two sometimes work as partners , and during a point in which Robin and Ariana were unable to see each other , he and Stephanie grow even closer . were unable to see Robin and Ariana each other during a point
-Thus , a woman who used RU-486 to have an abortion would have to make three trips to the clinic past those picket lines ; an initial visit for medical screening ( anemics and those with previous pregnancy problems are eliminated ) and to take the pill , a second trip 48 hours later for the prostaglandin , administered either via injection or vaginal suppository , and a third trip a week later to make sure she has completely aborted . would have to make a woman who used RU-486 to have an abortion three trips to the clinic
-Thus , a woman who used RU-486 to have an abortion would have to make three trips to the clinic past those picket lines ; an initial visit for medical screening ( anemics and those with previous pregnancy problems are eliminated ) and to take the pill , a second trip 48 hours later for the prostaglandin , administered either via injection or vaginal suppository , and a third trip a week later to make sure she has completely aborted . would have to make trips a woman who used RU-486 to have an abortion past those picket lines
-Thus , a woman who used RU-486 to have an abortion would have to make three trips to the clinic past those picket lines ; an initial visit for medical screening ( anemics and those with previous pregnancy problems are eliminated ) and to take the pill , a second trip 48 hours later for the prostaglandin , administered either via injection or vaginal suppository , and a third trip a week later to make sure she has completely aborted . would have to make an initial visit for a woman who used RU-486 to have an abortion medical screening
-Thus , a woman who used RU-486 to have an abortion would have to make three trips to the clinic past those picket lines ; an initial visit for medical screening ( anemics and those with previous pregnancy problems are eliminated ) and to take the pill , a second trip 48 hours later for the prostaglandin , administered either via injection or vaginal suppository , and a third trip a week later to make sure she has completely aborted . are eliminated anemics
-Thus , a woman who used RU-486 to have an abortion would have to make three trips to the clinic past those picket lines ; an initial visit for medical screening ( anemics and those with previous pregnancy problems are eliminated ) and to take the pill , a second trip 48 hours later for the prostaglandin , administered either via injection or vaginal suppository , and a third trip a week later to make sure she has completely aborted . are eliminated those with previous pregnancy problems
-Thus , a woman who used RU-486 to have an abortion would have to make three trips to the clinic past those picket lines ; an initial visit for medical screening ( anemics and those with previous pregnancy problems are eliminated ) and to take the pill , a second trip 48 hours later for the prostaglandin , administered either via injection or vaginal suppository , and a third trip a week later to make sure she has completely aborted . would have to make an initial visit to take a woman who used RU-486 to have an abortion the pill
-Thus , a woman who used RU-486 to have an abortion would have to make three trips to the clinic past those picket lines ; an initial visit for medical screening ( anemics and those with previous pregnancy problems are eliminated ) and to take the pill , a second trip 48 hours later for the prostaglandin , administered either via injection or vaginal suppository , and a third trip a week later to make sure she has completely aborted . would have to make a second trip for a woman who used RU-486 to have abortion the prostaglandin to the clinic 48 hours later
-Thus , a woman who used RU-486 to have an abortion would have to make three trips to the clinic past those picket lines ; an initial visit for medical screening ( anemics and those with previous pregnancy problems are eliminated ) and to take the pill , a second trip 48 hours later for the prostaglandin , administered either via injection or vaginal suppository , and a third trip a week later to make sure she has completely aborted . is administered the prostaglandin via injection
-Thus , a woman who used RU-486 to have an abortion would have to make three trips to the clinic past those picket lines ; an initial visit for medical screening ( anemics and those with previous pregnancy problems are eliminated ) and to take the pill , a second trip 48 hours later for the prostaglandin , administered either via injection or vaginal suppository , and a third trip a week later to make sure she has completely aborted . is administered the prostaglandin via vaginal suppository
-Thus , a woman who used RU-486 to have an abortion would have to make three trips to the clinic past those picket lines ; an initial visit for medical screening ( anemics and those with previous pregnancy problems are eliminated ) and to take the pill , a second trip 48 hours later for the prostaglandin , administered either via injection or vaginal suppository , and a third trip a week later to make sure she has completely aborted . would have to make a third trip to make sure a woman who used RU-486 to have an abortion she has completely aborted to the clinic a week later
-Thus , a woman who used RU-486 to have an abortion would have to make three trips to the clinic past those picket lines ; an initial visit for medical screening ( anemics and those with previous pregnancy problems are eliminated ) and to take the pill , a second trip 48 hours later for the prostaglandin , administered either via injection or vaginal suppository , and a third trip a week later to make sure she has completely aborted . is used to have RU-486 an abortion
-Agen would have another successful run in the 1940s , beginning with the 1943 season when they defeated Stade Bordelais 11 to 4 to win the Coupe de France . would have Agen another successful run in the 1940s
-Agen would have another successful run in the 1940s , beginning with the 1943 season when they defeated Stade Bordelais 11 to 4 to win the Coupe de France . defeated Agen Stade Bordelais 11 to 4 in the 1943 season
-Agen would have another successful run in the 1940s , beginning with the 1943 season when they defeated Stade Bordelais 11 to 4 to win the Coupe de France . win Agen the Coupe de France in the 1943 season
-Terms call for First Security to issue about 0.55 share of its stock for each Deseret share held , or a total of about 550,000 First Security shares . is to issue for each Deseret share held First Security about 0.55 share of its stock
-Terms call for First Security to issue about 0.55 share of its stock for each Deseret share held , or a total of about 550,000 First Security shares . is to issue a total of First Security about 550,000 First Security shares
-Terms call for First Security to issue about 0.55 share of its stock for each Deseret share held , or a total of about 550,000 First Security shares . holds First Security Deseret shares
-His elder brother , Conte Quinto Mazzolini , served as Italian consul in Jerusalem , and undertook negotiations with Abraham Stern , head of the Lehi terrorist group , which sought to obtain Italian recognition of Jewish sovereignty in Palestine in exchange for placing Zionism under the aegis of Italian fascism . was His elder brother Conte Quinto Mazzolini
-His elder brother , Conte Quinto Mazzolini , served as Italian consul in Jerusalem , and undertook negotiations with Abraham Stern , head of the Lehi terrorist group , which sought to obtain Italian recognition of Jewish sovereignty in Palestine in exchange for placing Zionism under the aegis of Italian fascism . served as His elder brother Italian consul Jerusalem
-His elder brother , Conte Quinto Mazzolini , served as Italian consul in Jerusalem , and undertook negotiations with Abraham Stern , head of the Lehi terrorist group , which sought to obtain Italian recognition of Jewish sovereignty in Palestine in exchange for placing Zionism under the aegis of Italian fascism . undertook negotiations with His elder brother Abraham Stern
-His elder brother , Conte Quinto Mazzolini , served as Italian consul in Jerusalem , and undertook negotiations with Abraham Stern , head of the Lehi terrorist group , which sought to obtain Italian recognition of Jewish sovereignty in Palestine in exchange for placing Zionism under the aegis of Italian fascism . was Abraham Stern head of the Lehi terrorist group
-His elder brother , Conte Quinto Mazzolini , served as Italian consul in Jerusalem , and undertook negotiations with Abraham Stern , head of the Lehi terrorist group , which sought to obtain Italian recognition of Jewish sovereignty in Palestine in exchange for placing Zionism under the aegis of Italian fascism . sought to obtain the Lehi terrorist group Italian recognition of Jewish sovereignty in Palestine in exchange for placing Zionism under the aegis of Italian fascism
-His elder brother , Conte Quinto Mazzolini , served as Italian consul in Jerusalem , and undertook negotiations with Abraham Stern , head of the Lehi terrorist group , which sought to obtain Italian recognition of Jewish sovereignty in Palestine in exchange for placing Zionism under the aegis of Italian fascism . sought to obtain the Lehi terrorist group Italian recognition
-His elder brother , Conte Quinto Mazzolini , served as Italian consul in Jerusalem , and undertook negotiations with Abraham Stern , head of the Lehi terrorist group , which sought to obtain Italian recognition of Jewish sovereignty in Palestine in exchange for placing Zionism under the aegis of Italian fascism . sought to exchange placing Zionism under the aegis of Italian fascism for the Lehi terrorist group Italian recognition of Jewish sovereignty
-In the first volume of the series , The Noh 's nature and background is explained . is explained In The Noh 's nature the first volume of the series
-In the first volume of the series , The Noh 's nature and background is explained . is explained In The Noh 's background the first volume of the series
-Both companies are allies of Navigation Mixte in its fight against a hostile takeover bid launched last week by Cie . are allies of Both companies Navigation Mixte
-Both companies are allies of Navigation Mixte in its fight against a hostile takeover bid launched last week by Cie . fight against Navigation Mixte a hostile takeover bid last week
-Both companies are allies of Navigation Mixte in its fight against a hostile takeover bid launched last week by Cie . launched Cie a hostile takeover bid against Navigation Mixte last week
-Although the Algeciras Conference temporarily solved the First Moroccan Crisis , it only worsened the tensions between the Triple Alliance and Triple Entente that ultimately led to the First World War . temporarily solved Algeciras Conference First Moroccan Crisis
-Although the Algeciras Conference temporarily solved the First Moroccan Crisis , it only worsened the tensions between the Triple Alliance and Triple Entente that ultimately led to the First World War . worsened Algeciras Conference tensions between Triple Alliance and Triple Entente
-That amounts to more than $ 350 billion a year . amounts to That more than $ 350 billion a year
-Plans to artificially oxygenate areas of the Baltic that have experienced eutrophication have been proposed by the University of Gothenburg and Inocean AB . are to artificially oxygenate Plans areas of the Baltic that have experienced eutrophication
-Plans to artificially oxygenate areas of the Baltic that have experienced eutrophication have been proposed by the University of Gothenburg and Inocean AB . have been proposed by Plans to artificially oxygenate areas of the Baltic that have experienced eutrophication the University of Gothenburg
-Plans to artificially oxygenate areas of the Baltic that have experienced eutrophication have been proposed by the University of Gothenburg and Inocean AB . have been proposed by Plans to artificially oxygenate areas of the Baltic that have experienced eutrophication Inocean AB
-Plans to artificially oxygenate areas of the Baltic that have experienced eutrophication have been proposed by the University of Gothenburg and Inocean AB . was experienced in eutrophication areas of the Baltic
-Overseas teams would not return to Russia until 1998 , when a youth tournament was held in Moscow . would not return to Overseas teams Russia until 1998
-Overseas teams would not return to Russia until 1998 , when a youth tournament was held in Moscow . was held in a youth tournament Russia in Moscow in 1998
-Overseas teams would not return to Russia until 1998 , when a youth tournament was held in Moscow . would return to Overseas teams Russia in Moscow in 1998
-Overseas teams would not return to Russia until 1998 , when a youth tournament was held in Moscow . would return to Russia when Overseas teams a youth tournament was held in Moscow in 1998
-Because of this association , St. Michael was considered to be the patron saint of colonial Maryland , and as such was honored by the river being named for him . was considered to be St. Michael the patron saint of colonial Maryland
-Because of this association , St. Michael was considered to be the patron saint of colonial Maryland , and as such was honored by the river being named for him . was honored St. Michael by the river being named for him
-Because the companies have lacked office computers considered standard equipment in the U.S. and Western Europe , Japanese corporations ' reputation as hi - tech powerhouses is only half right . are considered office computers standard equipment in the U.S.
-Because the companies have lacked office computers considered standard equipment in the U.S. and Western Europe , Japanese corporations ' reputation as hi - tech powerhouses is only half right . are considered office computers standard equipment in Western Europe
-Because the companies have lacked office computers considered standard equipment in the U.S. and Western Europe , Japanese corporations ' reputation as hi - tech powerhouses is only half right . that have lacked office computers considered standard equipment in the U.S. companies are corporations in Japan
-Because the companies have lacked office computers considered standard equipment in the U.S. and Western Europe , Japanese corporations ' reputation as hi - tech powerhouses is only half right . that have lacked office computers considered standard equipment in Western Europe companies are corporations in Japan
-Because the companies have lacked office computers considered standard equipment in the U.S. and Western Europe , Japanese corporations ' reputation as hi - tech powerhouses is only half right . have a reputation as Japanese corporations hi - tech powerhouses
-Because the companies have lacked office computers considered standard equipment in the U.S. and Western Europe , Japanese corporations ' reputation as hi - tech powerhouses is only half right . is only Japanese corporations ' reputation as hi - tech powerhouses half right
-Because the companies have lacked office computers considered standard equipment in the U.S. and Western Europe , Japanese corporations ' reputation as hi - tech powerhouses is only half right . are in corporations that have a reputation as hi - tech powerhouses Japan
-He ran for Speaker of the Rhode Island House of Representatives four times . ran for He Speaker of the House of Representatives of Rhode Island four times
-By opening for acts such as U2 and Bob Dylan , they became a popular alternative rock band of the 1980s , retaining a loyal following to the present day . were opening for they acts such as U2 and Bob Dylan
-By opening for acts such as U2 and Bob Dylan , they became a popular alternative rock band of the 1980s , retaining a loyal following to the present day . became they a popular alternative rock band of the 1980s
-By opening for acts such as U2 and Bob Dylan , they became a popular alternative rock band of the 1980s , retaining a loyal following to the present day . are retaining they a loyal following to the present day
-By opening for acts such as U2 and Bob Dylan , they became a popular alternative rock band of the 1980s , retaining a loyal following to the present day . were they an alternative rock band of the 1980s
-Separate berthings and heads are found on sailboats over about . are found on berthings sailboats
-Separate berthings and heads are found on sailboats over about . are found on heads sailboats
-Separate berthings and heads are found on sailboats over about . are berthings and heads Separate on sailboats
-Municipal bonds were little changed to 1\/2 point higher in late dealings . were Municipal bonds little changed to 1\/2 point higher in late dealings
-Their performance was well received and inspired Ruby Hunter , Archie Roach 's partner , to dub the trio Tiddas , which is Koori English for the word sisters . was Their performance well received
-Their performance was well received and inspired Ruby Hunter , Archie Roach 's partner , to dub the trio Tiddas , which is Koori English for the word sisters . inspired Ruby Hunter to dub the trio Their performance Tiddas
-Their performance was well received and inspired Ruby Hunter , Archie Roach 's partner , to dub the trio Tiddas , which is Koori English for the word sisters . is Koori English for Tiddas the word sisters
-Their performance was well received and inspired Ruby Hunter , Archie Roach 's partner , to dub the trio Tiddas , which is Koori English for the word sisters . is Ruby Hunter Archie Roach 's partner
-Their performance was well received and inspired Ruby Hunter , Archie Roach 's partner , to dub the trio Tiddas , which is Koori English for the word sisters . has Archie Roach a partner
-Their performance was well received and inspired Ruby Hunter , Archie Roach 's partner , to dub the trio Tiddas , which is Koori English for the word sisters . had the trio a performance
-Their performance was well received and inspired Ruby Hunter , Archie Roach 's partner , to dub the trio Tiddas , which is Koori English for the word sisters . was the trio 's performance well received
-These skills were readily proven when squadrons and personnel were mobilized and recalled back to active duty during the Korean War and the Berlin Crisis . were mobilized squadrons during the Korean War
-These skills were readily proven when squadrons and personnel were mobilized and recalled back to active duty during the Korean War and the Berlin Crisis . were mobilized personnel during the Korean War
-These skills were readily proven when squadrons and personnel were mobilized and recalled back to active duty during the Korean War and the Berlin Crisis . were recalled back to squadrons active duty during the Korean War
-These skills were readily proven when squadrons and personnel were mobilized and recalled back to active duty during the Korean War and the Berlin Crisis . were recalled back to squadrons active duty during the Berlin Crisis
-These skills were readily proven when squadrons and personnel were mobilized and recalled back to active duty during the Korean War and the Berlin Crisis . was in the Crisis Berlin
-These skills were readily proven when squadrons and personnel were mobilized and recalled back to active duty during the Korean War and the Berlin Crisis . was in the War Korea
-These skills were readily proven when squadrons and personnel were mobilized and recalled back to active duty during the Korean War and the Berlin Crisis . were mobilized squadrons during the Berlin Crisis
-These skills were readily proven when squadrons and personnel were mobilized and recalled back to active duty during the Korean War and the Berlin Crisis . were mobilized personnel during the Berlin Crisis
-These skills were readily proven when squadrons and personnel were mobilized and recalled back to active duty during the Korean War and the Berlin Crisis . were recalled back to personnel active duty during the Korean War
-These skills were readily proven when squadrons and personnel were mobilized and recalled back to active duty during the Korean War and the Berlin Crisis . were recalled back to personnel active duty during the Berlin Crisis
-These skills were readily proven when squadrons and personnel were mobilized and recalled back to active duty during the Korean War and the Berlin Crisis . were readily proven when These skills squadrons were mobilized and recalled back to active duty during the Korean War
-These skills were readily proven when squadrons and personnel were mobilized and recalled back to active duty during the Korean War and the Berlin Crisis . were readily proven when These skills personnel were mobilized and recalled back to active duty during the Korean War
-These skills were readily proven when squadrons and personnel were mobilized and recalled back to active duty during the Korean War and the Berlin Crisis . were readily proven when These skills squadrons were mobilized and recalled back to active duty during the Berlin Crisis
-These skills were readily proven when squadrons and personnel were mobilized and recalled back to active duty during the Korean War and the Berlin Crisis . were readily proven when These skills personnel were mobilized and recalled back to active duty during the Berlin Crisis
-Charles prorogued parliament on 25 June , but the army was not disbanded , which worried Shaftesbury . prorogued Charles parliament on 25 June
-Charles prorogued parliament on 25 June , but the army was not disbanded , which worried Shaftesbury . was not disbanded the army
-Charles prorogued parliament on 25 June , but the army was not disbanded , which worried Shaftesbury . worried that Shaftesbury the army was not disbanded
-Charles prorogued parliament on 25 June , but the army was not disbanded , which worried Shaftesbury . worried the not disbanded army Shaftesbury
-A British version of this show was developed , known as `` Gladiators : Train 2 Win '' . was developed , known as A British version of this show `` Gladiators : Train 2 Win ''
-The mouse is around nine inches long , and can jump in bounds of four feet when threatened . is The mouse around nine inches long
-The mouse is around nine inches long , and can jump in bounds of four feet when threatened . can jump in bounds of The mouse four feet when threatened
-Coke has tended to increase its control when results were sluggish in a given country . has tended to increase Coke its control in a given country when results were sluggish
-His son , John Crozier , Jr. , was an early aviation pioneer who began building a human-powered flying machine in the 1890s , but was killed in a feud in Grainger County before he could complete it . was His son John Crozier Jr.
-His son , John Crozier , Jr. , was an early aviation pioneer who began building a human-powered flying machine in the 1890s , but was killed in a feud in Grainger County before he could complete it . was killed in His son a feud Grainger County in the 1890s
-His son , John Crozier , Jr. , was an early aviation pioneer who began building a human-powered flying machine in the 1890s , but was killed in a feud in Grainger County before he could complete it . was His son an early aviation pioneer
-His son , John Crozier , Jr. , was an early aviation pioneer who began building a human-powered flying machine in the 1890s , but was killed in a feud in Grainger County before he could complete it . was building His son a human-powered flying machine in the 1890s
-His son , John Crozier , Jr. , was an early aviation pioneer who began building a human-powered flying machine in the 1890s , but was killed in a feud in Grainger County before he could complete it . was killed before he could complete His son a human-powered flying machine in Grainger County in the 1890s
-Officials believe this has left a gaping loophole that illegal drug businesses are exploiting . believe Officials this has left a gaping loophole that illegal drug businesses are exploiting
-Officials believe this has left a gaping loophole that illegal drug businesses are exploiting . are exploiting illegal drug businesses a gaping loophole
-Officials believe this has left a gaping loophole that illegal drug businesses are exploiting . are drug businesses illegal
-Officials believe this has left a gaping loophole that illegal drug businesses are exploiting . is a loophole gaping
-Despite plans to add two new Infiniti models next year , bringing the total to four , Infiniti wo n't show profits for at least five years , he adds . are to add plans two new Infiniti models next year
-Despite plans to add two new Infiniti models next year , bringing the total to four , Infiniti wo n't show profits for at least five years , he adds . are bringing the total to plans to add two new Infiniti models next year four Infiniti models
-Despite plans to add two new Infiniti models next year , bringing the total to four , Infiniti wo n't show profits for at least five years , he adds . adds he Despite plans to add two new Infiniti models next year , bringing the total to four , Infiniti wo n't show profits for at least five years
-Despite plans to add two new Infiniti models next year , bringing the total to four , Infiniti wo n't show profits for at least five years , he adds . wo n't show Infiniti profits for at least five years
-The first single , `` Dreamer , '' features performances by keyboardist Philippe Saisse , and vocalists Jasmine Roy and Rebeca Vega . is a Dreamer single
-The first single , `` Dreamer , '' features performances by keyboardist Philippe Saisse , and vocalists Jasmine Roy and Rebeca Vega . features performances by The single Philippe Saisse
-The first single , `` Dreamer , '' features performances by keyboardist Philippe Saisse , and vocalists Jasmine Roy and Rebeca Vega . features performances by The single Jasmine Roy
-The first single , `` Dreamer , '' features performances by keyboardist Philippe Saisse , and vocalists Jasmine Roy and Rebeca Vega . features performances by The single Rebeca Vega
-The first single , `` Dreamer , '' features performances by keyboardist Philippe Saisse , and vocalists Jasmine Roy and Rebeca Vega . is a Philippe Saisse keyboardist
-The first single , `` Dreamer , '' features performances by keyboardist Philippe Saisse , and vocalists Jasmine Roy and Rebeca Vega . is a Jasmine Roy vocalists
-The first single , `` Dreamer , '' features performances by keyboardist Philippe Saisse , and vocalists Jasmine Roy and Rebeca Vega . is a Rebeca Vega vocalists
-These screening activities include : review of group-based data ; hearing , vision , motor , and speech/language screening ; and review by the Special Education administration . include These screening activities review of group-based data
-These screening activities include : review of group-based data ; hearing , vision , motor , and speech/language screening ; and review by the Special Education administration . include These screening activities hearing screening
-These screening activities include : review of group-based data ; hearing , vision , motor , and speech/language screening ; and review by the Special Education administration . include These screening activities vision screening
-These screening activities include : review of group-based data ; hearing , vision , motor , and speech/language screening ; and review by the Special Education administration . include These screening activities motor screening
-These screening activities include : review of group-based data ; hearing , vision , motor , and speech/language screening ; and review by the Special Education administration . include These screening activities speech/language screening
-These screening activities include : review of group-based data ; hearing , vision , motor , and speech/language screening ; and review by the Special Education administration . include These screening activities review by the Special Education administration
-The fractional quantum Hall effect continues to be influential in theories about topological order . is a Hall effect fractional quantum theories about topological order
-The fractional quantum Hall effect continues to be influential in theories about topological order . continues to be Hall effect influential
-The fractional quantum Hall effect continues to be influential in theories about topological order . continues to be influential in Hall effect theories about topological order
-Following his death , a statue of Sir Arthur was erected behind the National Archives of Canada , overlooking the Ottawa River This is one of only two statues of civil servants erected in Ottawa , both during MacKenzie King 's tenure as Prime Minister . was erected a statue of Sir Arthur behind the National Archives of Canada Following his death
-Following his death , a statue of Sir Arthur was erected behind the National Archives of Canada , overlooking the Ottawa River This is one of only two statues of civil servants erected in Ottawa , both during MacKenzie King 's tenure as Prime Minister . was erected a statue of Sir Arthur overlooking the Ottawa River Following his death
-Following his death , a statue of Sir Arthur was erected behind the National Archives of Canada , overlooking the Ottawa River This is one of only two statues of civil servants erected in Ottawa , both during MacKenzie King 's tenure as Prime Minister . were erected two statues of civil servants in Ottawa during MacKenzie King 's tenure as Prime Minister
-Following his death , a statue of Sir Arthur was erected behind the National Archives of Canada , overlooking the Ottawa River This is one of only two statues of civil servants erected in Ottawa , both during MacKenzie King 's tenure as Prime Minister . had tenure as MacKenzie King Prime Minister in Canada
-Following his death , a statue of Sir Arthur was erected behind the National Archives of Canada , overlooking the Ottawa River This is one of only two statues of civil servants erected in Ottawa , both during MacKenzie King 's tenure as Prime Minister . is a statue of Sir Arthur one of only two statues of civil servants erected in Ottawa
-Following his death , a statue of Sir Arthur was erected behind the National Archives of Canada , overlooking the Ottawa River This is one of only two statues of civil servants erected in Ottawa , both during MacKenzie King 's tenure as Prime Minister . was erected a statue of Sir Arthur in Ottawa during MacKenzie King 's tenure as Prime Minister
-Following his death , a statue of Sir Arthur was erected behind the National Archives of Canada , overlooking the Ottawa River This is one of only two statues of civil servants erected in Ottawa , both during MacKenzie King 's tenure as Prime Minister . is of a statue Sir Arthur
-Following his death , a statue of Sir Arthur was erected behind the National Archives of Canada , overlooking the Ottawa River This is one of only two statues of civil servants erected in Ottawa , both during MacKenzie King 's tenure as Prime Minister . was Sir Arthur a civil servant
-Following his death , a statue of Sir Arthur was erected behind the National Archives of Canada , overlooking the Ottawa River This is one of only two statues of civil servants erected in Ottawa , both during MacKenzie King 's tenure as Prime Minister . is in the Ottawa River Canada
-Unlike most economic indicators , none of these figures are adjusted for seasonal variations . are adjusted for none of these figures seasonal variations
-Unlike most economic indicators , none of these figures are adjusted for seasonal variations . are adjusted for most economic indicators seasonal variations
-Unlike most economic indicators , none of these figures are adjusted for seasonal variations . are Unlike these figures most economic indicators
-Nancy Craig , advertising manager for the Red Cross , readily admits `` they 're piggybacking on our reputation . '' readily admits Nancy Craig `` they 're piggybacking on our reputation ''
-Nancy Craig , advertising manager for the Red Cross , readily admits `` they 're piggybacking on our reputation . '' is Nancy Craig advertising manager for the Red Cross
-Nancy Craig , advertising manager for the Red Cross , readily admits `` they 're piggybacking on our reputation . '' has the Red Cross an advertising manager
-Executions , regardless of how frequently they occur , are also `` proper retribution '' for heinous crimes , Mr. Hatch argues . argues Mr. Hatch Executions , regardless of how frequently they occur , are also `` proper retribution '' for heinous crimes
-In a proposed amendment of the party 's constitution by a delegate to hold an early leadership review of Tim Hudak , McCreadie indicated that Party President Richard Ciano should accept the same review if the motion was passed . indicated that McCreadie Party President Richard Ciano should accept the same review if the motion was passed
-In a proposed amendment of the party 's constitution by a delegate to hold an early leadership review of Tim Hudak , McCreadie indicated that Party President Richard Ciano should accept the same review if the motion was passed . indicated In McCreadie In a proposed amendment of the party 's constitution by a delegate to hold an early leadership review of Tim Hudak
-In a proposed amendment of the party 's constitution by a delegate to hold an early leadership review of Tim Hudak , McCreadie indicated that Party President Richard Ciano should accept the same review if the motion was passed . was by a proposed amendment of the party 's constitution a delegate
-In a proposed amendment of the party 's constitution by a delegate to hold an early leadership review of Tim Hudak , McCreadie indicated that Party President Richard Ciano should accept the same review if the motion was passed . was of a proposed amendment the party 's constitution
-In a proposed amendment of the party 's constitution by a delegate to hold an early leadership review of Tim Hudak , McCreadie indicated that Party President Richard Ciano should accept the same review if the motion was passed . was to hold an early leadership review of a proposed amendment of the party 's constitution Tim Hudak
-In a proposed amendment of the party 's constitution by a delegate to hold an early leadership review of Tim Hudak , McCreadie indicated that Party President Richard Ciano should accept the same review if the motion was passed . is Richard Ciano Party President
-In a proposed amendment of the party 's constitution by a delegate to hold an early leadership review of Tim Hudak , McCreadie indicated that Party President Richard Ciano should accept the same review if the motion was passed . will be held a leadership review of Tim Hudak review
-Four other countries in Europe have approved Proleukin in recent months . have approved Four other countries in Europe Proleukin in recent months
-Four other countries in Europe have approved Proleukin in recent months . are in Four other countries Europe
-The New York City issue included $ 757 million of tax - exempt bonds priced to yield between 6.50 % to 7.88 % , depending on the maturity . included The New York City issue $ 757 million of tax - exempt bonds priced to yield between 6.50 % to 7.88 % , depending on the maturity
-The New York City issue included $ 757 million of tax - exempt bonds priced to yield between 6.50 % to 7.88 % , depending on the maturity . priced to yield tax - exempt bonds between 6.50 % to 7.88 % , depending on the maturity
-The New York City issue included $ 757 million of tax - exempt bonds priced to yield between 6.50 % to 7.88 % , depending on the maturity . priced to yield The New York City issue included $ 757 million of tax - exempt bonds between 6.50 % to 7.88 % , depending on the maturity
-The New York City issue included $ 757 million of tax - exempt bonds priced to yield between 6.50 % to 7.88 % , depending on the maturity . depending on tax - exempt bonds priced to yield between 6.50 % to 7.88 % , the maturity
-The New York City issue included $ 757 million of tax - exempt bonds priced to yield between 6.50 % to 7.88 % , depending on the maturity . depending on The New York City issue included $ 757 million of tax - exempt bonds priced to yield between 6.50 % to 7.88 % , the maturity
-Within England and especially Scotland , there were repeated attempts by the deposed House of Stewart to regain the throne , leading to severe uprisings . were to regain repeated attempts the throne
-Within England and especially Scotland , there were repeated attempts by the deposed House of Stewart to regain the throne , leading to severe uprisings . were by repeated attempts to regain the throne the deposed House of Stewart Within England
-Within England and especially Scotland , there were repeated attempts by the deposed House of Stewart to regain the throne , leading to severe uprisings . were by repeated attempts to regain the throne the deposed House of Stewart especially Within Scotland
-Within England and especially Scotland , there were repeated attempts by the deposed House of Stewart to regain the throne , leading to severe uprisings . were leading to repeated attempts to regain the throne severe uprisings Within England
-Within England and especially Scotland , there were repeated attempts by the deposed House of Stewart to regain the throne , leading to severe uprisings . were leading to repeated attempts to regain the throne severe uprisings especially Within Scotland
-Instead of ablating the tissue , the laser cuts a portion of the prostate , which is then cut into smaller pieces and flushed with irrigation fluid . cuts a portion of the laser the prostate
-Instead of ablating the tissue , the laser cuts a portion of the prostate , which is then cut into smaller pieces and flushed with irrigation fluid . cuts Instead of ablating the laser the tissue
-Instead of ablating the tissue , the laser cuts a portion of the prostate , which is then cut into smaller pieces and flushed with irrigation fluid . is cut into a portion of the prostate smaller pieces then
-Instead of ablating the tissue , the laser cuts a portion of the prostate , which is then cut into smaller pieces and flushed with irrigation fluid . is flushed with a portion of the prostate irrigation fluid then
-In 1879 , he was re-elected U.S. Senator and was tipped as a Presidential candidate , but died suddenly after giving a speech in Chicago . was re-elected he Senator U.S. In 1879
-In 1879 , he was re-elected U.S. Senator and was tipped as a Presidential candidate , but died suddenly after giving a speech in Chicago . was tipped as he a Presidential candidate In 1879
-In 1879 , he was re-elected U.S. Senator and was tipped as a Presidential candidate , but died suddenly after giving a speech in Chicago . died suddenly he In 1879
-In 1879 , he was re-elected U.S. Senator and was tipped as a Presidential candidate , but died suddenly after giving a speech in Chicago . died after giving he a speech in Chicago In 1879
-Their laboratory credentials established , Boyer and Swanson headed for Wall Street in 1980 . headed for Boyer Wall Street in 1980
-Their laboratory credentials established , Boyer and Swanson headed for Wall Street in 1980 . headed for Swanson Wall Street in 1980
-Their laboratory credentials established , Boyer and Swanson headed for Wall Street in 1980 . established Boyer laboratory credentials
-Their laboratory credentials established , Boyer and Swanson headed for Wall Street in 1980 . established Swanson laboratory credentials
-They point to other easy-to-learn languages such as Tok Pisin in Papua New Guinea , which have had deleterious effects on minority languages . is an Tok Pisin easy-to-learn languages
-They point to other easy-to-learn languages such as Tok Pisin in Papua New Guinea , which have had deleterious effects on minority languages . has had Tok Pisin deleterious effects on minority languages
-They point to other easy-to-learn languages such as Tok Pisin in Papua New Guinea , which have had deleterious effects on minority languages . point to They other easy-to-learn languages which have had deleterious effects on minority languages
-December municipal futures ended up 11\/32 point to 92-14 , having pulled off a morning low of 91-23 as cash municipals rebounded . ended up December municipal futures 11\/32 point
-December municipal futures ended up 11\/32 point to 92-14 , having pulled off a morning low of 91-23 as cash municipals rebounded . ended to December municipal futures 92-14
-December municipal futures ended up 11\/32 point to 92-14 , having pulled off a morning low of 91-23 as cash municipals rebounded . pulled off a low of December municipal futures 91-23 in the morning
-December municipal futures ended up 11\/32 point to 92-14 , having pulled off a morning low of 91-23 as cash municipals rebounded . rebounded cash municipals
-December municipal futures ended up 11\/32 point to 92-14 , having pulled off a morning low of 91-23 as cash municipals rebounded . were municipal futures December
-State - owned BNL , Italy 's largest bank , has filed charges against the branch 's former manager , Christopher Drogoul , and a former branch vice president , alleging fraud and breach of their fiduciary duties . is Italy 's largest bank State - owned BNL
-State - owned BNL , Italy 's largest bank , has filed charges against the branch 's former manager , Christopher Drogoul , and a former branch vice president , alleging fraud and breach of their fiduciary duties . is BNL State - owned
-State - owned BNL , Italy 's largest bank , has filed charges against the branch 's former manager , Christopher Drogoul , and a former branch vice president , alleging fraud and breach of their fiduciary duties . is in State - owned BNL Italy
-State - owned BNL , Italy 's largest bank , has filed charges against the branch 's former manager , Christopher Drogoul , and a former branch vice president , alleging fraud and breach of their fiduciary duties . has filed charges against State - owned BNL the branch 's former manager , Christopher Drogoul
-State - owned BNL , Italy 's largest bank , has filed charges against the branch 's former manager , Christopher Drogoul , and a former branch vice president , alleging fraud and breach of their fiduciary duties . has filed charges against State - owned BNL a former branch vice president
-State - owned BNL , Italy 's largest bank , has filed charges against the branch 's former manager , Christopher Drogoul , and a former branch vice president , alleging fraud and breach of their fiduciary duties . is Christopher Drogoul the branch 's former manager
-State - owned BNL , Italy 's largest bank , has filed charges against the branch 's former manager , Christopher Drogoul , and a former branch vice president , alleging fraud and breach of their fiduciary duties . is alleging State - owned BNL fraud
-State - owned BNL , Italy 's largest bank , has filed charges against the branch 's former manager , Christopher Drogoul , and a former branch vice president , alleging fraud and breach of their fiduciary duties . is alleging State - owned BNL breach of their fiduciary duties
-State - owned BNL , Italy 's largest bank , has filed charges against the branch 's former manager , Christopher Drogoul , and a former branch vice president , alleging fraud and breach of their fiduciary duties . had the branch 's former manager , Christopher Drogoul fiduciary duties
-State - owned BNL , Italy 's largest bank , has filed charges against the branch 's former manager , Christopher Drogoul , and a former branch vice president , alleging fraud and breach of their fiduciary duties . had a former branch vice president fiduciary duties
-It was club policy to promote talent into the senior team that was adopted by Bill Dimovski . was to promote into the senior team club policy talent
-It was club policy to promote talent into the senior team that was adopted by Bill Dimovski . was adopted by the senior team Bill Dimovski
-The Treasury bills sold yesterday settle today , rather than the standard settlement day of Thursday . settle The Treasury bills sold yesterday today
-The Treasury bills sold yesterday settle today , rather than the standard settlement day of Thursday . were sold Treasury bills yesterday
-The Treasury bills sold yesterday settle today , rather than the standard settlement day of Thursday . is Thursday the standard settlement day
-She received her Master Degree in the field of Controls , Guidance and Instrumentation from I.I.T Madras and Ph.d degree from the department of Aerospace engineering . received She her Master Degree in the field of Controls , Guidance and Instrumentation from I.I.T Madras
-She received her Master Degree in the field of Controls , Guidance and Instrumentation from I.I.T Madras and Ph.d degree from the department of Aerospace engineering . received She her Ph.d degree from the department of Aerospace engineering
-She received her Master Degree in the field of Controls , Guidance and Instrumentation from I.I.T Madras and Ph.d degree from the department of Aerospace engineering . is at department of Aerospace engineering I.I.T Madras
-She received her Master Degree in the field of Controls , Guidance and Instrumentation from I.I.T Madras and Ph.d degree from the department of Aerospace engineering . is in I.I.T Madras
-She received her Master Degree in the field of Controls , Guidance and Instrumentation from I.I.T Madras and Ph.d degree from the department of Aerospace engineering . is in the field of her Master Degree Controls
-She received her Master Degree in the field of Controls , Guidance and Instrumentation from I.I.T Madras and Ph.d degree from the department of Aerospace engineering . is in the field of her Master Degree Guidance
-She received her Master Degree in the field of Controls , Guidance and Instrumentation from I.I.T Madras and Ph.d degree from the department of Aerospace engineering . is in the field of her Master Degree Instrumentation
-In colonial times all grants of land from the Lords Baltimore were in the shape of leases subject to small and nominal ground rents , reserved by the Proprietary , and payable annually at Michaelmas , the Feast of St. Michael and All Angels . were in the shape of all grants of land from the Lords Baltimore leases subject to small and nominal ground rents In colonial times
-In colonial times all grants of land from the Lords Baltimore were in the shape of leases subject to small and nominal ground rents , reserved by the Proprietary , and payable annually at Michaelmas , the Feast of St. Michael and All Angels . were reserved by small and nominal ground rents the Proprietary In colonial times
-In colonial times all grants of land from the Lords Baltimore were in the shape of leases subject to small and nominal ground rents , reserved by the Proprietary , and payable annually at Michaelmas , the Feast of St. Michael and All Angels . were payable small and nominal ground rents annually
-In colonial times all grants of land from the Lords Baltimore were in the shape of leases subject to small and nominal ground rents , reserved by the Proprietary , and payable annually at Michaelmas , the Feast of St. Michael and All Angels . were payable at small and nominal ground rents Michaelmas
-In colonial times all grants of land from the Lords Baltimore were in the shape of leases subject to small and nominal ground rents , reserved by the Proprietary , and payable annually at Michaelmas , the Feast of St. Michael and All Angels . is Michaelmas the Feast of St. Michael and All Angels
-In colonial times all grants of land from the Lords Baltimore were in the shape of leases subject to small and nominal ground rents , reserved by the Proprietary , and payable annually at Michaelmas , the Feast of St. Michael and All Angels . were subject to leases small and nominal ground rents In colonial times
-In colonial times all grants of land from the Lords Baltimore were in the shape of leases subject to small and nominal ground rents , reserved by the Proprietary , and payable annually at Michaelmas , the Feast of St. Michael and All Angels . were ground rents small In colonial times
-In colonial times all grants of land from the Lords Baltimore were in the shape of leases subject to small and nominal ground rents , reserved by the Proprietary , and payable annually at Michaelmas , the Feast of St. Michael and All Angels . were ground rents nominal In colonial times
-The term can be applied to any vessel ; turning turtle is less frequent but more dangerous on ships than on smaller boats . can be applied to The term any vessel
-The term can be applied to any vessel ; turning turtle is less frequent but more dangerous on ships than on smaller boats . is The term turning turtle
-The term can be applied to any vessel ; turning turtle is less frequent but more dangerous on ships than on smaller boats . is turning turtle less frequent on ships than on smaller boats
-The term can be applied to any vessel ; turning turtle is less frequent but more dangerous on ships than on smaller boats . is turning turtle more dangerous on ships than on smaller boats
-The term can be applied to any vessel ; turning turtle is less frequent but more dangerous on ships than on smaller boats . can applied to turning turtle any vessel
-The term can be applied to any vessel ; turning turtle is less frequent but more dangerous on ships than on smaller boats . are boats vessel
-Since many of the rebbes of the Nadvorna Dynasty married relatives , many of the rebbes in this list are sons-in-law of other rebbes on the list . married many of the rebbes of the Nadvorna Dynasty relatives
-Since many of the rebbes of the Nadvorna Dynasty married relatives , many of the rebbes in this list are sons-in-law of other rebbes on the list . are sons-in-law of many of the rebbes in this list other rebbes on the list
-Since many of the rebbes of the Nadvorna Dynasty married relatives , many of the rebbes in this list are sons-in-law of other rebbes on the list . has the Nadvorna Dynasty rebbes
-Since many of the rebbes of the Nadvorna Dynasty married relatives , many of the rebbes in this list are sons-in-law of other rebbes on the list . are in the rebbes this list
-In 1991 he started writing and touring full-time which he still does today . started writing he full-time In 1991
-In 1991 he started writing and touring full-time which he still does today . started touring he full-time In 1991
-In 1991 he started writing and touring full-time which he still does today . still is writing he full-time today
-In 1991 he started writing and touring full-time which he still does today . still is touring he full-time today
-One of its international specialists , Steve White , took a quick interest in Mr. Stoll 's hunt , ultimately tracing the hacker to West Germany . is Steve White One of its international specialists
-One of its international specialists , Steve White , took a quick interest in Mr. Stoll 's hunt , ultimately tracing the hacker to West Germany . took a quick interest in Steve White Mr. Stoll 's hunt
-One of its international specialists , Steve White , took a quick interest in Mr. Stoll 's hunt , ultimately tracing the hacker to West Germany . had Mr. Stoll a hunt
-One of its international specialists , Steve White , took a quick interest in Mr. Stoll 's hunt , ultimately tracing the hacker to West Germany . ultimately traced Steve White the hacker to West Germany
-That method relies heavily on inductive logic , seeking to show that his Christian beliefs fit best with the evidence . relies heavily on That method inductive logic , seeking to show that his Christian beliefs fit best with the evidence
-That method relies heavily on inductive logic , seeking to show that his Christian beliefs fit best with the evidence . was seeking to show that He his Christian beliefs fit best with the evidence
-That method relies heavily on inductive logic , seeking to show that his Christian beliefs fit best with the evidence . relying heavily on He was inductive logic to show that his Christian beliefs fit best with the evidence
-That method relies heavily on inductive logic , seeking to show that his Christian beliefs fit best with the evidence . using He was That method method that relies heavily on inductive logic
-That method relies heavily on inductive logic , seeking to show that his Christian beliefs fit best with the evidence . relies heavily on That method inductive logic
-That method relies heavily on inductive logic , seeking to show that his Christian beliefs fit best with the evidence . relies heavily on inductive logic , seeking to show that That method his Christian beliefs fit best with the evidence
-That method relies heavily on inductive logic , seeking to show that his Christian beliefs fit best with the evidence . relies heavily on inductive logic , seeking to show that his Christian beliefs fit That method best with the evidence
-Often , objects are so far away that they do not contribute significantly to the final image . are objects so far away Often
-Often , objects are so far away that they do not contribute significantly to the final image . do not contribute significantly to objects that are so far away the final image Often
-In 1958 , he won gold medal at the 6th European Championships in Stockholm . won he gold medal at the 6th European Championships in Stockholm In 1958
-In 1958 , he won gold medal at the 6th European Championships in Stockholm . were in the 6th European Championships Stockholm
-The enantioselectivity of this reaction is important because only the S enantiomer is medicinally desirable , whereas the R enantiomer produces harmful health effects . is the S enantiomer medicinally desirable
-The enantioselectivity of this reaction is important because only the S enantiomer is medicinally desirable , whereas the R enantiomer produces harmful health effects . produces the R enantiomer harmful health effects
-The enantioselectivity of this reaction is important because only the S enantiomer is medicinally desirable , whereas the R enantiomer produces harmful health effects . has this reaction enantioselectivity
-The enantioselectivity of this reaction is important because only the S enantiomer is medicinally desirable , whereas the R enantiomer produces harmful health effects . is important because The enantioselectivity of this reaction only the S enantiomer is medicinally desirable
-The spirits , of course , could hardly care less whether people do or do n't believe in them . could hardly care less whether The spirits people do believe in them
-The spirits , of course , could hardly care less whether people do or do n't believe in them . could hardly care less whether The spirits people do n't believe in them
-The brokerage firm tracks technology stocks with its Technology Index , which appreciated only 10.59 % in the first nine months of this year . tracks technology stocks with The brokerage firm its Technology Index
-The brokerage firm tracks technology stocks with its Technology Index , which appreciated only 10.59 % in the first nine months of this year . appreciated its Technology Index only 10.59 % in the first nine months of this year
-The brokerage firm tracks technology stocks with its Technology Index , which appreciated only 10.59 % in the first nine months of this year . has The brokerage firm a Technology Index
-Later , it carried `` Monitor , '' the network 's very successful weekend radio service . carried it `` Monitor '' Later
-Later , it carried `` Monitor , '' the network 's very successful weekend radio service . is `` Monitor '' the network 's very successful weekend radio service
-Later , it carried `` Monitor , '' the network 's very successful weekend radio service . has the network a very successful radio service on the weekend
-For owners who have followed the recommended oil maintenance schedule , Mazda will extend to five years or 60,000 miles the warranty term for engine damage due to abnormal engine oil deterioration . will extend to five years or 60,000 miles For owners who have followed the recommended oil maintenance schedule Mazda the warranty term for engine damage due to abnormal engine oil deterioration
-For owners who have followed the recommended oil maintenance schedule , Mazda will extend to five years or 60,000 miles the warranty term for engine damage due to abnormal engine oil deterioration . is for the warranty term engine damage due to abnormal engine oil deterioration
-For owners who have followed the recommended oil maintenance schedule , Mazda will extend to five years or 60,000 miles the warranty term for engine damage due to abnormal engine oil deterioration . is due to engine damage abnormal engine oil deterioration
-For owners who have followed the recommended oil maintenance schedule , Mazda will extend to five years or 60,000 miles the warranty term for engine damage due to abnormal engine oil deterioration . has Mazda owners
-For owners who have followed the recommended oil maintenance schedule , Mazda will extend to five years or 60,000 miles the warranty term for engine damage due to abnormal engine oil deterioration . has Mazda warranty for engine damage due to abnormal engine oil deterioration
-For owners who have followed the recommended oil maintenance schedule , Mazda will extend to five years or 60,000 miles the warranty term for engine damage due to abnormal engine oil deterioration . must follow Mazda owners the recommended oil maintenance schedule
-The United States High Commissioner for Germany and his staff occupied the building from 1949 to 1952 . occupied The United States High Commissioner for Germany and his staff the building from 1949 to 1952
-The United States High Commissioner for Germany and his staff occupied the building from 1949 to 1952 . occupied The United States High Commissioner for Germany the building from 1949 to 1952
-The United States High Commissioner for Germany and his staff occupied the building from 1949 to 1952 . occupied The staff of The United States High Commissioner for Germany the building from 1949 to 1952
-Legislation sponsored by Sweeney and signed into law provides state pensions to surviving family members of police , firefighters and emergency services workers who die in the line of duty , as well as the law that removes the remarriage prohibition to receive death benefits for spouses of police officers and firefighters killed while serving the public good . provides Legislation sponsored by Sweeney and signed into law state pensions to surviving family members of police , firefighters and emergency services workers who die in the line of duty
-Legislation sponsored by Sweeney and signed into law provides state pensions to surviving family members of police , firefighters and emergency services workers who die in the line of duty , as well as the law that removes the remarriage prohibition to receive death benefits for spouses of police officers and firefighters killed while serving the public good . provides state pensions to Legislation sponsored by Sweeney and signed into law surviving family members of police , firefighters and emergency services workers who die in the line of duty
-Legislation sponsored by Sweeney and signed into law provides state pensions to surviving family members of police , firefighters and emergency services workers who die in the line of duty , as well as the law that removes the remarriage prohibition to receive death benefits for spouses of police officers and firefighters killed while serving the public good . provides state pensions to the Legislation surviving family members of police , firefighters and emergency services workers who die in the line of duty
-Legislation sponsored by Sweeney and signed into law provides state pensions to surviving family members of police , firefighters and emergency services workers who die in the line of duty , as well as the law that removes the remarriage prohibition to receive death benefits for spouses of police officers and firefighters killed while serving the public good . was signed into Legislation sponsored by Sweeney law
-Legislation sponsored by Sweeney and signed into law provides state pensions to surviving family members of police , firefighters and emergency services workers who die in the line of duty , as well as the law that removes the remarriage prohibition to receive death benefits for spouses of police officers and firefighters killed while serving the public good . removes Legislation sponsored by Sweeney and signed into law the remarriage prohibition to receive death benefits for spouses of police officers and firefighters killed while serving the public good
-Legislation sponsored by Sweeney and signed into law provides state pensions to surviving family members of police , firefighters and emergency services workers who die in the line of duty , as well as the law that removes the remarriage prohibition to receive death benefits for spouses of police officers and firefighters killed while serving the public good . removes the law the remarriage prohibition to receive death benefits for spouses of police officers and firefighters killed while serving the public good
-Legislation sponsored by Sweeney and signed into law provides state pensions to surviving family members of police , firefighters and emergency services workers who die in the line of duty , as well as the law that removes the remarriage prohibition to receive death benefits for spouses of police officers and firefighters killed while serving the public good . provides state pensions to the law surviving family members of police , firefighters and emergency services workers who die in the line of duty
-Legislation sponsored by Sweeney and signed into law provides state pensions to surviving family members of police , firefighters and emergency services workers who die in the line of duty , as well as the law that removes the remarriage prohibition to receive death benefits for spouses of police officers and firefighters killed while serving the public good . signed into Legislation law
-If the introduced surface had an ionic or polar nature , there would be water molecules standing upright on 1 or 2 of the four sp3 orbitals . there would be If the introduced surface had an ionic nature water molecules standing upright on 1 or 2 of the four sp3 orbitals
-If the introduced surface had an ionic or polar nature , there would be water molecules standing upright on 1 or 2 of the four sp3 orbitals . there would be If the introduced surface had a polar nature water molecules standing upright on 1 or 2 of the four sp3 orbitals
-If the introduced surface had an ionic or polar nature , there would be water molecules standing upright on 1 or 2 of the four sp3 orbitals . are four sp3 orbitals
-They acquired the Charles City Western on December 31 , 1963 . acquired They the Charles City Western on December 31 , 1963
-They acquired the Charles City Western on December 31 , 1963 . was in the Western Charles City
-He was born to Afro-Guyanese parents & is of Afro-Guyanese descent . was born to He Afro-Guyanese parents
-He was born to Afro-Guyanese parents & is of Afro-Guyanese descent . is of He Afro-Guyanese descent
-Charles O. Givens of Mount Vernon , Ind. - investment broker , ex - accountant , and son of a former stable owner - bred Tennessee Walking Horses for six years , raised cattle for four , and never made a profit on either . is of Charles O. Givens Mount Vernon , Ind.
-Charles O. Givens of Mount Vernon , Ind. - investment broker , ex - accountant , and son of a former stable owner - bred Tennessee Walking Horses for six years , raised cattle for four , and never made a profit on either . is in Mount Vernon Ind.
-Charles O. Givens of Mount Vernon , Ind. - investment broker , ex - accountant , and son of a former stable owner - bred Tennessee Walking Horses for six years , raised cattle for four , and never made a profit on either . is Charles O. Givens an investment broker
-Charles O. Givens of Mount Vernon , Ind. - investment broker , ex - accountant , and son of a former stable owner - bred Tennessee Walking Horses for six years , raised cattle for four , and never made a profit on either . is Charles O. Givens an ex - accountant
-Charles O. Givens of Mount Vernon , Ind. - investment broker , ex - accountant , and son of a former stable owner - bred Tennessee Walking Horses for six years , raised cattle for four , and never made a profit on either . is Charles O. Givens son of a former stable owner
-Charles O. Givens of Mount Vernon , Ind. - investment broker , ex - accountant , and son of a former stable owner - bred Tennessee Walking Horses for six years , raised cattle for four , and never made a profit on either . bred Charles O. Givens Tennessee Walking Horses for six years
-Charles O. Givens of Mount Vernon , Ind. - investment broker , ex - accountant , and son of a former stable owner - bred Tennessee Walking Horses for six years , raised cattle for four , and never made a profit on either . raised Charles O. Givens cattle for four years
-Charles O. Givens of Mount Vernon , Ind. - investment broker , ex - accountant , and son of a former stable owner - bred Tennessee Walking Horses for six years , raised cattle for four , and never made a profit on either . made a profit on Charles O. Givens Tennessee Walking Horses never
-Charles O. Givens of Mount Vernon , Ind. - investment broker , ex - accountant , and son of a former stable owner - bred Tennessee Walking Horses for six years , raised cattle for four , and never made a profit on either . made a profit on Charles O. Givens cattle never
-Unsure of who he is , Zero helps the band of Reploids , who in turn marvel at his skills . helps Zero the band of Reploids
-Unsure of who he is , Zero helps the band of Reploids , who in turn marvel at his skills . is Unsure of Zero who he is
-Unsure of who he is , Zero helps the band of Reploids , who in turn marvel at his skills . marvel at the band of Reploids his skills
-The researchers also pulled off a second genetic engineering trick in order to get male - sterile plants in large enough numbers to produce a commercial hybrid seed crop . also pulled off The researchers a second genetic engineering trick
-The researchers also pulled off a second genetic engineering trick in order to get male - sterile plants in large enough numbers to produce a commercial hybrid seed crop . was the second a genetic engineering trick
-The researchers also pulled off a second genetic engineering trick in order to get male - sterile plants in large enough numbers to produce a commercial hybrid seed crop . was in order to get a second genetic engineering trick male - sterile plants in large enough numbers to produce a commercial hybrid seed crop
-The researchers also pulled off a second genetic engineering trick in order to get male - sterile plants in large enough numbers to produce a commercial hybrid seed crop . were to produce male - sterile plants in large enough numbers a commercial hybrid seed crop
-The researchers also pulled off a second genetic engineering trick in order to get male - sterile plants in large enough numbers to produce a commercial hybrid seed crop . will be commercial a seed crop
-The researchers also pulled off a second genetic engineering trick in order to get male - sterile plants in large enough numbers to produce a commercial hybrid seed crop . will be hybrid a seed crop
-The researchers also pulled off a second genetic engineering trick in order to get male - sterile plants in large enough numbers to produce a commercial hybrid seed crop . is of genetic engineering a second trick
-The researchers also pulled off a second genetic engineering trick in order to get male - sterile plants in large enough numbers to produce a commercial hybrid seed crop . will be male plants
-The researchers also pulled off a second genetic engineering trick in order to get male - sterile plants in large enough numbers to produce a commercial hybrid seed crop . will be sterile plants
-The researchers also pulled off a second genetic engineering trick in order to get male - sterile plants in large enough numbers to produce a commercial hybrid seed crop . will be male - sterile plants
-The researchers also pulled off a second genetic engineering trick in order to get male - sterile plants in large enough numbers to produce a commercial hybrid seed crop . will be large enough to produce numbers a commercial hybrid seed crop
-The power cepstrum of a signal is defined as the squared magnitude of the inverse Fourier transform of the logarithm of the squared magnitude of the Fourier transform of a signal . is defined as The power cepstrum of a signal the squared magnitude of the inverse Fourier transform of the logarithm of the squared magnitude of the Fourier transform of a signal
-The power cepstrum of a signal is defined as the squared magnitude of the inverse Fourier transform of the logarithm of the squared magnitude of the Fourier transform of a signal . has a signal a power cepstrum
-The power cepstrum of a signal is defined as the squared magnitude of the inverse Fourier transform of the logarithm of the squared magnitude of the Fourier transform of a signal . is The power cepstrum the squared magnitude of the inverse Fourier transform of the logarithm of the squared magnitude of the Fourier transform of a signal
-He made several practical inventions , the most notable of which was an `` index visible filing system '' which he patented in 1913 and sold to Kardex Rand in 1925 . made He several practical inventions
-He made several practical inventions , the most notable of which was an `` index visible filing system '' which he patented in 1913 and sold to Kardex Rand in 1925 . was the most notable of several practical inventions an `` index visible filing system ''
-He made several practical inventions , the most notable of which was an `` index visible filing system '' which he patented in 1913 and sold to Kardex Rand in 1925 . made He an `` index visible filing system ''
-He made several practical inventions , the most notable of which was an `` index visible filing system '' which he patented in 1913 and sold to Kardex Rand in 1925 . patented He an `` index visible filing system '' in 1913
-He made several practical inventions , the most notable of which was an `` index visible filing system '' which he patented in 1913 and sold to Kardex Rand in 1925 . sold He an `` index visible filing system '' in 1925
-He made several practical inventions , the most notable of which was an `` index visible filing system '' which he patented in 1913 and sold to Kardex Rand in 1925 . sold an `` index visible filing system '' to he Kardex Rand in 1925
-The British Army had been shown to be overstretched by the Crimean War , while the mutiny in India had led to the responsibility for providing a garrison in the subcontinent from the Honourable East India Company to the Crown forces . had been shown to be overstretched by The British Army the Crimean War
-The British Army had been shown to be overstretched by the Crimean War , while the mutiny in India had led to the responsibility for providing a garrison in the subcontinent from the Honourable East India Company to the Crown forces . was the mutiny in India
-The British Army had been shown to be overstretched by the Crimean War , while the mutiny in India had led to the responsibility for providing a garrison in the subcontinent from the Honourable East India Company to the Crown forces . had led to the responsibility for providing the mutiny in India a garrison in the subcontinent
-The British Army had been shown to be overstretched by the Crimean War , while the mutiny in India had led to the responsibility for providing a garrison in the subcontinent from the Honourable East India Company to the Crown forces . was the subcontinent in India
-The British Army had been shown to be overstretched by the Crimean War , while the mutiny in India had led to the responsibility for providing a garrison in the subcontinent from the Honourable East India Company to the Crown forces . will be from responsibility for providing a garrison the Honourable East India Company in the subcontinent
-The British Army had been shown to be overstretched by the Crimean War , while the mutiny in India had led to the responsibility for providing a garrison in the subcontinent from the Honourable East India Company to the Crown forces . will be to responsibility for providing a garrison the Crown forces in the subcontinent
-In the United Kingdom , community empowerment networks are networks of a collection of local community , voluntary and third sector organisations and groups , set up by the central government as part of an initiative to foster community involvement in regeneration at a local level . are networks of community empowerment networks a collection of local community organisations and groups In the United Kingdom
-In the United Kingdom , community empowerment networks are networks of a collection of local community , voluntary and third sector organisations and groups , set up by the central government as part of an initiative to foster community involvement in regeneration at a local level . are set up by community empowerment networks the central government In the United Kingdom
-In the United Kingdom , community empowerment networks are networks of a collection of local community , voluntary and third sector organisations and groups , set up by the central government as part of an initiative to foster community involvement in regeneration at a local level . are set up as part of community empowerment networks an initiative to foster community involvement in regeneration at a local level In the United Kingdom
-In the United Kingdom , community empowerment networks are networks of a collection of local community , voluntary and third sector organisations and groups , set up by the central government as part of an initiative to foster community involvement in regeneration at a local level . are networks of community empowerment networks a collection of local voluntary organisations and groups In the United Kingdom
-In the United Kingdom , community empowerment networks are networks of a collection of local community , voluntary and third sector organisations and groups , set up by the central government as part of an initiative to foster community involvement in regeneration at a local level . are networks of community empowerment networks a collection of local third sector organisations and groups In the United Kingdom
-This year , Mr. Wathen says the firm will be able to service debt and still turn a modest profit . says Mr. Wathen the firm will be able to service debt This year
-This year , Mr. Wathen says the firm will be able to service debt and still turn a modest profit . says Mr. Wathen the firm will still turn a modest profit This year
-This year , Mr. Wathen says the firm will be able to service debt and still turn a modest profit . will be able to service the firm debt This year
-This year , Mr. Wathen says the firm will be able to service debt and still turn a modest profit . will still turn the firm a modest profit This year
-Accomplishing both will be a balancing act as challenging as riding a unicycle . is riding a unicycle challenging
-Accomplishing both will be a balancing act as challenging as riding a unicycle . is riding a unicycle a balancing act
-Accomplishing both will be a balancing act as challenging as riding a unicycle . will be Accomplishing both a balancing act
-Accomplishing both will be a balancing act as challenging as riding a unicycle . will be as challenging as Accomplishing both riding a unicycle
-Mark and Marisa , the Drive Time presenters , made the announcement live on air at 5.20 pm GMT and both the staff 's personal emails and the stations website was closed shortly thereafter 10pm GMT . is Mark a Drive Time presenter
-Mark and Marisa , the Drive Time presenters , made the announcement live on air at 5.20 pm GMT and both the staff 's personal emails and the stations website was closed shortly thereafter 10pm GMT . is Marisa a Drive Time presenter
-Mark and Marisa , the Drive Time presenters , made the announcement live on air at 5.20 pm GMT and both the staff 's personal emails and the stations website was closed shortly thereafter 10pm GMT . made live Mark and Marisa the announcement on air at 5.20 pm GMT
-Mark and Marisa , the Drive Time presenters , made the announcement live on air at 5.20 pm GMT and both the staff 's personal emails and the stations website was closed shortly thereafter 10pm GMT . were closed the staff 's personal emails shortly thereafter 10pm GMT
-Mark and Marisa , the Drive Time presenters , made the announcement live on air at 5.20 pm GMT and both the staff 's personal emails and the stations website was closed shortly thereafter 10pm GMT . was closed the stations website shortly thereafter 10pm GMT
-Mark and Marisa , the Drive Time presenters , made the announcement live on air at 5.20 pm GMT and both the staff 's personal emails and the stations website was closed shortly thereafter 10pm GMT . have the staff personal emails
-Mark and Marisa , the Drive Time presenters , made the announcement live on air at 5.20 pm GMT and both the staff 's personal emails and the stations website was closed shortly thereafter 10pm GMT . has the station a website
-Staff were only informed of the decision to cease broadcasting 24 hours earlier at 5pm on the evening of 23 December . were only informed of Staff the decision to cease broadcasting 24 hours earlier
-Staff were only informed of the decision to cease broadcasting 24 hours earlier at 5pm on the evening of 23 December . were only informed of Staff the decision to cease broadcasting at 5pm
-Staff were only informed of the decision to cease broadcasting 24 hours earlier at 5pm on the evening of 23 December . were only informed of Staff the decision to cease broadcasting on the evening of 23 December
-Staff were only informed of the decision to cease broadcasting 24 hours earlier at 5pm on the evening of 23 December . was to cease broadcasting the decision
-Davis released about 25 singles during his seven years with Dakar , most of them big R&B sellers produced by Willie Henderson . released Davis about 25 singles during his seven years with Dakar
-Davis released about 25 singles during his seven years with Dakar , most of them big R&B sellers produced by Willie Henderson . produced Willie Henderson Davis big R&B sellers
-Davis released about 25 singles during his seven years with Dakar , most of them big R&B sellers produced by Willie Henderson . were produced most of Davis big R&B sellers by Willie Henderson during his seven years with Dakar
-Davis released about 25 singles during his seven years with Dakar , most of them big R&B sellers produced by Willie Henderson . were produced most of Davis 25 singles by Willie Henderson during his seven years with Dakar
-Davis released about 25 singles during his seven years with Dakar , most of them big R&B sellers produced by Willie Henderson . were most of Davis 25 singles big R&B sellers during his seven years with Dakar
-Davis released about 25 singles during his seven years with Dakar , most of them big R&B sellers produced by Willie Henderson . produced Willie Henderson big R&B singles
-The waist line was put higher and the skirts became longer . was put The waist line higher
-The waist line was put higher and the skirts became longer . became the skirts longer
-For patients who do not recover quickly , the protocol also includes support groups and/or psychotherapy . includes the protocol support groups
-For patients who do not recover quickly , the protocol also includes support groups and/or psychotherapy . includes the protocol psychotherapy
-For patients who do not recover quickly , the protocol also includes support groups and/or psychotherapy . the protocol also includes For patients who do not recover quickly support groups
-For patients who do not recover quickly , the protocol also includes support groups and/or psychotherapy . the protocol also includes For patients who do not recover quickly psychotherapy
-The narrator does not end up being sexually assaulted ; instead , she has grabbed her suitcase and fled the compartment . does not end up being sexually assaulted The narrator
-The narrator does not end up being sexually assaulted ; instead , she has grabbed her suitcase and fled the compartment . instead has grabbed The narrator her suitcase
-The narrator does not end up being sexually assaulted ; instead , she has grabbed her suitcase and fled the compartment . instead has fled The narrator the compartment
-The narrator does not end up being sexually assaulted ; instead , she has grabbed her suitcase and fled the compartment . is she The narrator
-Profit after tax and minority interest but before extraordinary items rose 12 % to # 135.2 million ; per - share earnings rose to five pence from 4.5 pence . rose Profit after tax and minority interest but before extraordinary items 12 %
-Profit after tax and minority interest but before extraordinary items rose 12 % to # 135.2 million ; per - share earnings rose to five pence from 4.5 pence . rose to Profit after tax and minority interest but before extraordinary items # 135.2 million
-Profit after tax and minority interest but before extraordinary items rose 12 % to # 135.2 million ; per - share earnings rose to five pence from 4.5 pence . rose to per - share earnings five pence
-Profit after tax and minority interest but before extraordinary items rose 12 % to # 135.2 million ; per - share earnings rose to five pence from 4.5 pence . rose from per - share earnings 4.5 pence
-Thomas soon became a regular in the Arsenal side , making his league debut on 14 February 1987 in a 1-1 draw with Sheffield Wednesday at Hillsborough . soon became Thomas a regular in the Arsenal side
-Thomas soon became a regular in the Arsenal side , making his league debut on 14 February 1987 in a 1-1 draw with Sheffield Wednesday at Hillsborough . made Thomas his league debut in Hillsborough on 14 February 1987
-Thomas soon became a regular in the Arsenal side , making his league debut on 14 February 1987 in a 1-1 draw with Sheffield Wednesday at Hillsborough . was in a 1-1 draw with his league debut Sheffield at Hillsborough Wednesday
-Thomas soon became a regular in the Arsenal side , making his league debut on 14 February 1987 in a 1-1 draw with Sheffield Wednesday at Hillsborough . was in a 1-1 draw with his league debut Sheffield at Hillsborough on 14 February 1987
-Thomas soon became a regular in the Arsenal side , making his league debut on 14 February 1987 in a 1-1 draw with Sheffield Wednesday at Hillsborough . made Thomas his league debut at Hillsborough Wednesday
-He adds that gold stocks had been down so long they were `` ready for a bounce . '' adds He that gold stocks had been down so long they were `` ready for a bounce . ''
-He adds that gold stocks had been down so long they were `` ready for a bounce . '' down gold stocks had been so long they were `` ready for a bounce . ''
-In 1982 Caro was trying to organise an exhibition of British abstract art in South African townships when he met Robert Loder . was trying to organise Caro an exhibition of British abstract art in South African townships In 1982
-In 1982 Caro was trying to organise an exhibition of British abstract art in South African townships when he met Robert Loder . met Caro Robert Loder In 1982
-The brightest star in Serpens , Alpha Serpentis , or Unukalhai , is a red giant of spectral type K2III located approximately away which marks the snake 's heart . is The brightest star in Serpens , Alpha Serpentis , or Unukalhai , a red giant of spectral type K2III
-The brightest star in Serpens , Alpha Serpentis , or Unukalhai , is a red giant of spectral type K2III located approximately away which marks the snake 's heart . is Alpha Serpentis Unukalhai
-The brightest star in Serpens , Alpha Serpentis , or Unukalhai , is a red giant of spectral type K2III located approximately away which marks the snake 's heart . is Alpha Serpentis the brightest star in Serpens
-The brightest star in Serpens , Alpha Serpentis , or Unukalhai , is a red giant of spectral type K2III located approximately away which marks the snake 's heart . marks Alpha Serpentis the snake 's heart of Serpens
-Charles delayed declaring war , however , leading Shaftesbury to support a resolution of the House of Commons providing for immediately disbanding the army that Charles was raising . however delayed declaring Charles war
-Charles delayed declaring war , however , leading Shaftesbury to support a resolution of the House of Commons providing for immediately disbanding the army that Charles was raising . was leading Shaftesbury to support Charles' delay declaring war a resolution of the House of Commons providing for immediately disbanding the army that Charles was raising
-Charles delayed declaring war , however , leading Shaftesbury to support a resolution of the House of Commons providing for immediately disbanding the army that Charles was raising . supported Shaftesbury a resolution of the House of Commons providing for immediately disbanding the army that Charles was raising
-Charles delayed declaring war , however , leading Shaftesbury to support a resolution of the House of Commons providing for immediately disbanding the army that Charles was raising . was raising Charles an army
-Charles delayed declaring war , however , leading Shaftesbury to support a resolution of the House of Commons providing for immediately disbanding the army that Charles was raising . will be providing for a resolution of the House of Commons disbanding the army that Charles was raising immediately
-After the Battle of Culloden in 1746 , these rebellions were crushed . were crushed these rebellions After the Battle of Culloden in 1746
-Two - and three-year programs are offered in various fields , through the divisions of Games and Animation , Industrial Design , Performing Arts , Information Communications , and Human Care . are offered Two - and three-year programs in various fields , through the divisions of Games and Animation , Industrial Design , Performing Arts , Information Communications , and Human Care
-Two - and three-year programs are offered in various fields , through the divisions of Games and Animation , Industrial Design , Performing Arts , Information Communications , and Human Care . are offered Games and Animation Two - and three-year programs
-Two - and three-year programs are offered in various fields , through the divisions of Games and Animation , Industrial Design , Performing Arts , Information Communications , and Human Care . are offered Industrial Design Two - and three-year programs
-Two - and three-year programs are offered in various fields , through the divisions of Games and Animation , Industrial Design , Performing Arts , Information Communications , and Human Care . are offered Performing Arts Two - and three-year programs
-Two - and three-year programs are offered in various fields , through the divisions of Games and Animation , Industrial Design , Performing Arts , Information Communications , and Human Care . are offered Information Communications Two - and three-year programs
-Two - and three-year programs are offered in various fields , through the divisions of Games and Animation , Industrial Design , Performing Arts , Information Communications , and Human Care . are offered Human Care Two - and three-year programs
-It is best served with laksa and homemade tauhu . is best served with It laksa
-It is best served with laksa and homemade tauhu . is best served with It homemade tauhu
-The RIAA lists it as one of the Best Selling Albums of All Time . lists it The RIAA as one of the Best Selling Albums of All Time
-The RIAA lists it as one of the Best Selling Albums of All Time . is it an Album
-The RIAA lists it as one of the Best Selling Albums of All Time . is it one of the Best Selling Albums of All Time
-Alan , one of the crew , begins to behave strangely and Pete suggests taking a blood sample to check . is Alan one of the crew
-Alan , one of the crew , begins to behave strangely and Pete suggests taking a blood sample to check . begins to Alan behave strangely
-Alan , one of the crew , begins to behave strangely and Pete suggests taking a blood sample to check . suggests Pete taking a blood sample to check
-Alan , one of the crew , begins to behave strangely and Pete suggests taking a blood sample to check . is Pete one of the crew
-The far left had some good issues even if it did not have good programs for dealing with them . had The far left some good issues
-The far left had some good issues even if it did not have good programs for dealing with them . did not have The far left good programs for dealing with issues
-In 1914 , the BSA gave local councils the power to segregate African Americans from white Scouts . gave the power to segregate African Americans from white Scouts to the BSA local councils In 1914
-In 1914 , the BSA gave local councils the power to segregate African Americans from white Scouts . gave the BSA the power to segregate African Americans from white Scouts to local councils In 1914
-They can be relieved only by changing that system , not by pouring Western money into it . can be relieved only by They changing that system
-They can be relieved only by changing that system , not by pouring Western money into it . can be relieved not by pouring They Western money into that system
-They can be relieved only by changing that system , not by pouring Western money into it . is of money the West
-`` Kormoran '' was the only Axis ship to conduct attacks in Australian waters during 1941 and the last Axis surface raider to enter Australian waters until 1943 . was `` Kormoran '' an Axis ship
-`` Kormoran '' was the only Axis ship to conduct attacks in Australian waters during 1941 and the last Axis surface raider to enter Australian waters until 1943 . conducted attacks `` Kormoran '' in Australian waters during 1941
-`` Kormoran '' was the only Axis ship to conduct attacks in Australian waters during 1941 and the last Axis surface raider to enter Australian waters until 1943 . was `` Kormoran '' an Axis surface raider
-`` Kormoran '' was the only Axis ship to conduct attacks in Australian waters during 1941 and the last Axis surface raider to enter Australian waters until 1943 . entered `` Kormoran '' Australian waters
-`` Kormoran '' was the only Axis ship to conduct attacks in Australian waters during 1941 and the last Axis surface raider to enter Australian waters until 1943 . was the last Axis surface raider to enter `` Kormoran '' Australian waters until 1943
-`` Kormoran '' was the only Axis ship to conduct attacks in Australian waters during 1941 and the last Axis surface raider to enter Australian waters until 1943 . was the only Axis ship to conduct attacks `` Kormoran '' in Australian waters during 1941
-`` Kormoran '' was the only Axis ship to conduct attacks in Australian waters during 1941 and the last Axis surface raider to enter Australian waters until 1943 . conducted attacks an Axis ship in Australian waters during 1941
-`` Kormoran '' was the only Axis ship to conduct attacks in Australian waters during 1941 and the last Axis surface raider to enter Australian waters until 1943 . entered an Axis surface raider Australian waters
-The brew , called Miller Sharp 's , will be supported by ads developed by Frankenberry , Laughlin & Constable , Milwaukee . is called The brew Miller Sharp 's
-The brew , called Miller Sharp 's , will be supported by ads developed by Frankenberry , Laughlin & Constable , Milwaukee . will be supported by The brew ads developed by Frankenberry , Laughlin & Constable
-The brew , called Miller Sharp 's , will be supported by ads developed by Frankenberry , Laughlin & Constable , Milwaukee . is in Frankenberry , Laughlin & Constable Milwaukee
-11 million copies of the flyer were distributed to the public via an 85-newspaper distribution chain . were distributed the flyer to the public
-President Bush and Soviet leader Mikhail Gorbachev will hold an informal meeting in early December , a move that should give both leaders a political boost at home . will hold President Bush and Soviet leader Mikhail Gorbachev an informal meeting in early December
-President Bush and Soviet leader Mikhail Gorbachev will hold an informal meeting in early December , a move that should give both leaders a political boost at home . is leader of Mikhail Gorbachev Soviet
-President Bush and Soviet leader Mikhail Gorbachev will hold an informal meeting in early December , a move that should give both leaders a political boost at home . is an informal meeting of President Bush and Soviet leader Mikhail Gorbachev a move that should give both leaders a political boost at home
-President Bush and Soviet leader Mikhail Gorbachev will hold an informal meeting in early December , a move that should give both leaders a political boost at home . should be given President Bush a political boost at home
-President Bush and Soviet leader Mikhail Gorbachev will hold an informal meeting in early December , a move that should give both leaders a political boost at home . should be given Soviet leader Mikhail Gorbachev a political boost at home
-It is amazing that the ensuing mass executions in Vietnam and Cambodia do not weight more heavily on minds so morally fine - tuned . were ensuing mass executions in Vietnam
-It is amazing that the ensuing mass executions in Vietnam and Cambodia do not weight more heavily on minds so morally fine - tuned . were ensuing mass executions in Cambodia
-It is amazing that the ensuing mass executions in Vietnam and Cambodia do not weight more heavily on minds so morally fine - tuned . is amazing that the ensuing mass executions in Vietnam do not weight more heavily on minds so morally fine - tuned
-It is amazing that the ensuing mass executions in Vietnam and Cambodia do not weight more heavily on minds so morally fine - tuned . do not weight more heavily on ensuing mass executions in Vietnam minds so morally fine - tuned
-It is amazing that the ensuing mass executions in Vietnam and Cambodia do not weight more heavily on minds so morally fine - tuned . do not weight more heavily on ensuing mass executions in Cambodia minds so morally fine - tuned
-It is amazing that the ensuing mass executions in Vietnam and Cambodia do not weight more heavily on minds so morally fine - tuned . is amazing that the ensuing mass executions in Cambodia do not weight more heavily on minds so morally fine - tuned
-The very ease of acquiring Esperanto might even accelerate the process . of acquiring Esperanto The very ease might even accelerate the process
-The very ease of acquiring Esperanto might even accelerate the process . might accelerate the process of acquiring Esperanto
-While the composite index lost less than a third of its year - to - date gains in the market 's recent decline , the technology group 's gains were more than halved . lost less than a third of the composite index its year - to - date gains in the market recently
-While the composite index lost less than a third of its year - to - date gains in the market 's recent decline , the technology group 's gains were more than halved . more than halved the technology group its year - to - date gains in the market recently
-While the composite index lost less than a third of its year - to - date gains in the market 's recent decline , the technology group 's gains were more than halved . had the technology group gains year - to - date
-While the composite index lost less than a third of its year - to - date gains in the market 's recent decline , the technology group 's gains were more than halved . had the composite index gains year - to - date
-While the composite index lost less than a third of its year - to - date gains in the market 's recent decline , the technology group 's gains were more than halved . had a decline the market recently
-The RSNO also performs throughout Scotland , at such venues as the Glasgow Royal Concert Hall , Usher Hall , Caird Hall , Aberdeen Music Hall , Perth Concert Hall and Eden Court Inverness . also performs The RSNO throughout Scotland
-The RSNO also performs throughout Scotland , at such venues as the Glasgow Royal Concert Hall , Usher Hall , Caird Hall , Aberdeen Music Hall , Perth Concert Hall and Eden Court Inverness . performs at such venues as The RSNO the Glasgow Royal Concert Hall
-The RSNO also performs throughout Scotland , at such venues as the Glasgow Royal Concert Hall , Usher Hall , Caird Hall , Aberdeen Music Hall , Perth Concert Hall and Eden Court Inverness . performs at such venues as The RSNO Usher Hall
-The RSNO also performs throughout Scotland , at such venues as the Glasgow Royal Concert Hall , Usher Hall , Caird Hall , Aberdeen Music Hall , Perth Concert Hall and Eden Court Inverness . performs at such venues as The RSNO Caird Hall
-The RSNO also performs throughout Scotland , at such venues as the Glasgow Royal Concert Hall , Usher Hall , Caird Hall , Aberdeen Music Hall , Perth Concert Hall and Eden Court Inverness . performs at such venues as The RSNO Aberdeen Music Hall
-The RSNO also performs throughout Scotland , at such venues as the Glasgow Royal Concert Hall , Usher Hall , Caird Hall , Aberdeen Music Hall , Perth Concert Hall and Eden Court Inverness . performs at such venues as The RSNO Perth Concert Hall
-The RSNO also performs throughout Scotland , at such venues as the Glasgow Royal Concert Hall , Usher Hall , Caird Hall , Aberdeen Music Hall , Perth Concert Hall and Eden Court Inverness . performs at such venues as The RSNO Eden Court Inverness
-The RSNO also performs throughout Scotland , at such venues as the Glasgow Royal Concert Hall , Usher Hall , Caird Hall , Aberdeen Music Hall , Perth Concert Hall and Eden Court Inverness . is in the Glasgow Royal Concert Hall Scotland
-The RSNO also performs throughout Scotland , at such venues as the Glasgow Royal Concert Hall , Usher Hall , Caird Hall , Aberdeen Music Hall , Perth Concert Hall and Eden Court Inverness . is in Usher Hall Scotland
-The RSNO also performs throughout Scotland , at such venues as the Glasgow Royal Concert Hall , Usher Hall , Caird Hall , Aberdeen Music Hall , Perth Concert Hall and Eden Court Inverness . is in Caird Hall Scotland
-The RSNO also performs throughout Scotland , at such venues as the Glasgow Royal Concert Hall , Usher Hall , Caird Hall , Aberdeen Music Hall , Perth Concert Hall and Eden Court Inverness . is in Aberdeen Music Hall Scotland
-The RSNO also performs throughout Scotland , at such venues as the Glasgow Royal Concert Hall , Usher Hall , Caird Hall , Aberdeen Music Hall , Perth Concert Hall and Eden Court Inverness . is in Perth Concert Hall Scotland
-The RSNO also performs throughout Scotland , at such venues as the Glasgow Royal Concert Hall , Usher Hall , Caird Hall , Aberdeen Music Hall , Perth Concert Hall and Eden Court Inverness . is in Eden Court Inverness Scotland
-BNL previously reported that its Georgia branch had taken on loan commitments topping $ 3 billion without the Rome - based management 's approval . has taken on BNL's Georgia branch loan commitments topping $ 3 billion
-BNL previously reported that its Georgia branch had taken on loan commitments topping $ 3 billion without the Rome - based management 's approval . previously reported BNL's Georgia branch loan commitments topping $ 3 billion
-BNL previously reported that its Georgia branch had taken on loan commitments topping $ 3 billion without the Rome - based management 's approval . did not approve the Rome - based management BNL's Georgia branch loan commitments
-BNL previously reported that its Georgia branch had taken on loan commitments topping $ 3 billion without the Rome - based management 's approval . previously reported that its BNL Georgia branch had taken on loan commitments topping $ 3 billion without the Rome - based management 's approval
-The city is served by two long-distance bus stations : Jiaxing North Bus Station and the new Jiaxing Transportation Center . is served by The city two long distance bus stations
-The city is served by two long-distance bus stations : Jiaxing North Bus Station and the new Jiaxing Transportation Center . is served by The city Jiaxing North bus station
-The city is served by two long-distance bus stations : Jiaxing North Bus Station and the new Jiaxing Transportation Center . is served by The city the new Jiaxing Transportation Center
-The city is served by two long-distance bus stations : Jiaxing North Bus Station and the new Jiaxing Transportation Center . is Jiaxing North Bus Station a long-distance bus station
-The city is served by two long-distance bus stations : Jiaxing North Bus Station and the new Jiaxing Transportation Center . is the new Jiaxing Transportation Center a long-distance bus station
-Its bus operations were merged with another city-owned company , Suomen Turistiauto , to form a new bus company called Helsingin Bussiliikenne . were merged with Its bus operations another city-owned company , Suomen Turistiauto , to form a new bus company called Helsingin Bussiliikenne
-Its bus operations were merged with another city-owned company , Suomen Turistiauto , to form a new bus company called Helsingin Bussiliikenne . was merged with Suomen Turistiauto another city-owned company to form a new bus company called Helsingin Bussiliikenne
-The ninth leaf contains a circular world map measuring in circumference . contains The ninth leaf a circular world map
-The ninth leaf contains a circular world map measuring in circumference . is measuring in circumference a circular world map
-The ninth leaf contains a circular world map measuring in circumference . is a world map circular
-The ninth leaf contains a circular world map measuring in circumference . is The leaf ninth
-Japan 's FTC says it is investigating Apple for allegedly discouraging retailers from discounting . is in FTC Japan
-Japan 's FTC says it is investigating Apple for allegedly discouraging retailers from discounting . says Japan 's FTC it is investigating Apple for allegedly discouraging retailers from discounting
-Japan 's FTC says it is investigating Apple for allegedly discouraging retailers from discounting . was allegedly discouraging from discounting Apple retailers
-New York City is iconic not only for Americans , but also for many Europeans as the city of melting pot where many ethnic groups live , often in specific neighborhoods , such as Chinatown , Little Italy . is iconic not only for New York City Americans
-New York City is iconic not only for Americans , but also for many Europeans as the city of melting pot where many ethnic groups live , often in specific neighborhoods , such as Chinatown , Little Italy . is also iconic for New York City many Europeans
-New York City is iconic not only for Americans , but also for many Europeans as the city of melting pot where many ethnic groups live , often in specific neighborhoods , such as Chinatown , Little Italy . is iconic as New York City the city of melting pot
-New York City is iconic not only for Americans , but also for many Europeans as the city of melting pot where many ethnic groups live , often in specific neighborhoods , such as Chinatown , Little Italy . live in many ethnic groups the city of melting pot
-New York City is iconic not only for Americans , but also for many Europeans as the city of melting pot where many ethnic groups live , often in specific neighborhoods , such as Chinatown , Little Italy . live in many ethnic groups New York City
-New York City is iconic not only for Americans , but also for many Europeans as the city of melting pot where many ethnic groups live , often in specific neighborhoods , such as Chinatown , Little Italy . live often in many ethnic groups specific neighborhoods
-New York City is iconic not only for Americans , but also for many Europeans as the city of melting pot where many ethnic groups live , often in specific neighborhoods , such as Chinatown , Little Italy . are such as specific neighborhoods Chinatown
-New York City is iconic not only for Americans , but also for many Europeans as the city of melting pot where many ethnic groups live , often in specific neighborhoods , such as Chinatown , Little Italy . are such as specific neighborhoods Little Italy
-New York City is iconic not only for Americans , but also for many Europeans as the city of melting pot where many ethnic groups live , often in specific neighborhoods , such as Chinatown , Little Italy . is in Chinatown New York City
-New York City is iconic not only for Americans , but also for many Europeans as the city of melting pot where many ethnic groups live , often in specific neighborhoods , such as Chinatown , Little Italy . is in Little Italy New York City
-New York City is iconic not only for Americans , but also for many Europeans as the city of melting pot where many ethnic groups live , often in specific neighborhoods , such as Chinatown , Little Italy . are in specific neighborhoods New York City
-New York City is iconic not only for Americans , but also for many Europeans as the city of melting pot where many ethnic groups live , often in specific neighborhoods , such as Chinatown , Little Italy . is in Chinatown the city of melting pot
-New York City is iconic not only for Americans , but also for many Europeans as the city of melting pot where many ethnic groups live , often in specific neighborhoods , such as Chinatown , Little Italy . is in Little Italy the city of melting pot
-New York City is iconic not only for Americans , but also for many Europeans as the city of melting pot where many ethnic groups live , often in specific neighborhoods , such as Chinatown , Little Italy . are in specific neighborhoods the city of melting pot
-Accepted bids ranged from 8 % to 8.019 % . ranged from Accepted bids 8 %
-Accepted bids ranged from 8 % to 8.019 % . ranged to Accepted bids 8.019 %
-The University of Florida however , refused to recognize BYX . refused to recognize The University of Florida BYX
-Ely Cathedral was never vaulted and retains a wooden ceiling over the nave . was never Ely Cathedral vaulted
-Ely Cathedral was never vaulted and retains a wooden ceiling over the nave . retains Ely Cathedral a wooden ceiling over the nave
-Ely Cathedral was never vaulted and retains a wooden ceiling over the nave . has Ely Cathedral a nave
-His body was laid to rest at St. Gwynno Church in the Llanwynno forestry . was laid to rest at His body St. Gwynno Church in the Llanwynno forestry
-His body was laid to rest at St. Gwynno Church in the Llanwynno forestry . is in St. Gwynno Church the Llanwynno forestry
-Five years later , Alvarez was reunited with his family in New York and his father was able to start a business in Hoboken , New Jersey . was reunited with Alvarez his family in New York Five years later
-Five years later , Alvarez was reunited with his family in New York and his father was able to start a business in Hoboken , New Jersey . was able his father to start a business in Hoboken , New Jersey
-Five years later , Alvarez was reunited with his family in New York and his father was able to start a business in Hoboken , New Jersey . was able to start his father a business in Hoboken , New Jersey
-In addition , further packaging of mortgage - backed securities , such as Blackstone 's fund , have reduced the effects of prepayment risk and automatically reinvest monthly payments so institutions do n't have to . packaging of In addition , further mortgage - backed securities , such as Blackstone 's fund , have reduced the effects of prepayment risk and automatically reinvest monthly payments so institutions do n't have to
-In addition , further packaging of mortgage - backed securities , such as Blackstone 's fund , have reduced the effects of prepayment risk and automatically reinvest monthly payments so institutions do n't have to . have reduced the effects of In addition , further packaging of mortgage - backed securities , such as Blackstone 's fund , prepayment risk and automatically reinvest monthly payments so institutions do n't have to
-In addition , further packaging of mortgage - backed securities , such as Blackstone 's fund , have reduced the effects of prepayment risk and automatically reinvest monthly payments so institutions do n't have to . have reduced the effects of prepayment risk and automatically reinvest In addition , further packaging of mortgage - backed securities , such as Blackstone 's fund , monthly payments so institutions do n't have to
-With Japanese companies in a wide range of industries -- from heavy industry to securities firms -- increasing their market share world - wide , the prospect of an even more efficient Japanese economic army may rattle foreigners . are in Japanese companies a wide range of industries
-With Japanese companies in a wide range of industries -- from heavy industry to securities firms -- increasing their market share world - wide , the prospect of an even more efficient Japanese economic army may rattle foreigners . are in companies in a wide range of industries Japan
-With Japanese companies in a wide range of industries -- from heavy industry to securities firms -- increasing their market share world - wide , the prospect of an even more efficient Japanese economic army may rattle foreigners . are in Japanese companies heavy industry
-With Japanese companies in a wide range of industries -- from heavy industry to securities firms -- increasing their market share world - wide , the prospect of an even more efficient Japanese economic army may rattle foreigners . are Japanese companies securities firms
-With Japanese companies in a wide range of industries -- from heavy industry to securities firms -- increasing their market share world - wide , the prospect of an even more efficient Japanese economic army may rattle foreigners . is from a wide range of industries heavy industry
-With Japanese companies in a wide range of industries -- from heavy industry to securities firms -- increasing their market share world - wide , the prospect of an even more efficient Japanese economic army may rattle foreigners . is to a wide range of industries securities firms
-With Japanese companies in a wide range of industries -- from heavy industry to securities firms -- increasing their market share world - wide , the prospect of an even more efficient Japanese economic army may rattle foreigners . are increasing Japanese companies their market share world - wide
-With Japanese companies in a wide range of industries -- from heavy industry to securities firms -- increasing their market share world - wide , the prospect of an even more efficient Japanese economic army may rattle foreigners . may rattle the prospect of an even more efficient Japanese economic army foreigners
-With Japanese companies in a wide range of industries -- from heavy industry to securities firms -- increasing their market share world - wide , the prospect of an even more efficient Japanese economic army may rattle foreigners . will be in an even more efficient economic army Japan
-With Japanese companies in a wide range of industries -- from heavy industry to securities firms -- increasing their market share world - wide , the prospect of an even more efficient Japanese economic army may rattle foreigners . are increasing Japanese companies in heavy industry their market share world - wide
-With Japanese companies in a wide range of industries -- from heavy industry to securities firms -- increasing their market share world - wide , the prospect of an even more efficient Japanese economic army may rattle foreigners . are increasing Japanese companies that are securities firms their market share world - wide
-This church is of medieval origin , the building has undergone a radical transformation in 1885 . has undergone This church a radical transformation in 1885
-This church is of medieval origin , the building has undergone a radical transformation in 1885 . is of This church medieval origin
-This church is of medieval origin , the building has undergone a radical transformation in 1885 . is a This church building
-El Camino High School offers the recommended A-G courses based upon the University of California that illustrates the minimum level of academic preparation students ought to achieve in high school to undertake university level work . offers El Camino High School the recommended A-G courses
-El Camino High School offers the recommended A-G courses based upon the University of California that illustrates the minimum level of academic preparation students ought to achieve in high school to undertake university level work . are based upon the recommended A-G courses the University of California
-El Camino High School offers the recommended A-G courses based upon the University of California that illustrates the minimum level of academic preparation students ought to achieve in high school to undertake university level work . illustrate the recommended A-G courses the minimum level of academic preparation students ought to achieve in high school to undertake university level work
-The announcement effectively removes the British government as an impediment to a takeover of the company , which is being stalked by General Motors and Ford . is being stalked by the company General Motors
-The announcement effectively removes the British government as an impediment to a takeover of the company , which is being stalked by General Motors and Ford . is being stalked by the company Ford
-The announcement effectively removes the British government as an impediment to a takeover of the company , which is being stalked by General Motors and Ford . was an impediment to the British government a takeover of the company
-The announcement effectively removes the British government as an impediment to a takeover of the company , which is being stalked by General Motors and Ford . effectively removes as an impediment to a takeover of the company The announcement the British government
-It was regained by Syria on October 6 , 1973 , the first day of the Yom Kippur War , following the First Battle of Mount Hermon . was regained by It Syria on October 6 , 1973
-It was regained by Syria on October 6 , 1973 , the first day of the Yom Kippur War , following the First Battle of Mount Hermon . was the first day of the Yom Kippur War October 6 , 1973
-It was regained by Syria on October 6 , 1973 , the first day of the Yom Kippur War , following the First Battle of Mount Hermon . was following the Yom Kippur War the First Battle of Mount Hermon
-It was regained by Syria on October 6 , 1973 , the first day of the Yom Kippur War , following the First Battle of Mount Hermon . was regained by It Syria following the First Battle of Mount Hermon
-Trek previously made only traditional road bikes , but `` it did n't take a rocket scientist to change a road bike into a mountain bike , '' says Trek 's president , Dick Burke . made Trek only traditional road bikes previously
-Trek previously made only traditional road bikes , but `` it did n't take a rocket scientist to change a road bike into a mountain bike , '' says Trek 's president , Dick Burke . says Trek 's president , Dick Burke `` it did n't take a rocket scientist to change a road bike into a mountain bike ''
-Trek previously made only traditional road bikes , but `` it did n't take a rocket scientist to change a road bike into a mountain bike , '' says Trek 's president , Dick Burke . is Trek 's president Dick Burke
-Trek previously made only traditional road bikes , but `` it did n't take a rocket scientist to change a road bike into a mountain bike , '' says Trek 's president , Dick Burke . has Trek president
-Callaghan 's decision on the Japanese pilot 's funeral in 1945 would receive praise years later , although a memorial service aboard the `` Missouri '' in April 2001 attracted controversy . was the Japanese pilot 's funeral Callaghan 's decision in 1945
-Callaghan 's decision on the Japanese pilot 's funeral in 1945 would receive praise years later , although a memorial service aboard the `` Missouri '' in April 2001 attracted controversy . had a the Japanese pilot funeral in 1945
-Callaghan 's decision on the Japanese pilot 's funeral in 1945 would receive praise years later , although a memorial service aboard the `` Missouri '' in April 2001 attracted controversy . would receive praise Callaghan 's decision on the Japanese pilot 's funeral years later
-Callaghan 's decision on the Japanese pilot 's funeral in 1945 would receive praise years later , although a memorial service aboard the `` Missouri '' in April 2001 attracted controversy . attracted controversy a memorial service aboard the `` Missouri '' in April 2001
-Callaghan 's decision on the Japanese pilot 's funeral in 1945 would receive praise years later , although a memorial service aboard the `` Missouri '' in April 2001 attracted controversy . had a the Japanese pilot memorial service aboard the `` Missouri '' in April 2001
-The culture of Bhutan is fully reflected in the capital city in respect of literature , religion , customs , and national dress code , the monastic practices of the monasteries , music , dance , literature and in the media . is fully reflected in the capital city in respect of The culture literature of Bhutan
-The culture of Bhutan is fully reflected in the capital city in respect of literature , religion , customs , and national dress code , the monastic practices of the monasteries , music , dance , literature and in the media . is fully reflected in the capital city in respect of The culture religion of Bhutan
-The culture of Bhutan is fully reflected in the capital city in respect of literature , religion , customs , and national dress code , the monastic practices of the monasteries , music , dance , literature and in the media . is fully reflected in the capital city in respect of The culture customs of Bhutan
-The culture of Bhutan is fully reflected in the capital city in respect of literature , religion , customs , and national dress code , the monastic practices of the monasteries , music , dance , literature and in the media . is fully reflected in the capital city in respect of The culture national dress code of Bhutan
-The culture of Bhutan is fully reflected in the capital city in respect of literature , religion , customs , and national dress code , the monastic practices of the monasteries , music , dance , literature and in the media . is fully reflected in the capital city in respect of The culture the monastic practices of the monasteries of Bhutan
-The culture of Bhutan is fully reflected in the capital city in respect of literature , religion , customs , and national dress code , the monastic practices of the monasteries , music , dance , literature and in the media . is fully reflected in the capital city in respect of The culture music of Bhutan
-The culture of Bhutan is fully reflected in the capital city in respect of literature , religion , customs , and national dress code , the monastic practices of the monasteries , music , dance , literature and in the media . is fully reflected in the capital city in respect of The culture dance of Bhutan
-The culture of Bhutan is fully reflected in the capital city in respect of literature , religion , customs , and national dress code , the monastic practices of the monasteries , music , dance , literature and in the media . is fully reflected in the capital city in respect of The culture the media of Bhutan
-The culture of Bhutan is fully reflected in the capital city in respect of literature , religion , customs , and national dress code , the monastic practices of the monasteries , music , dance , literature and in the media . is fully reflected in The culture of Bhutan the capital city
-He could acquire a staff of loyal Pinkerton 's employees , many of whom had spent their entire careers with the firm , he could eliminate a competitor and he could get the name recognition he 'd wanted . could acquire He a staff of loyal Pinkerton 's employees many of whom had spent their entire careers with the firm
-He could acquire a staff of loyal Pinkerton 's employees , many of whom had spent their entire careers with the firm , he could eliminate a competitor and he could get the name recognition he 'd wanted . had spent many of loyal Pinkerton 's employees their entire careers with the firm
-He could acquire a staff of loyal Pinkerton 's employees , many of whom had spent their entire careers with the firm , he could eliminate a competitor and he could get the name recognition he 'd wanted . could eliminate he a competitor
-He could acquire a staff of loyal Pinkerton 's employees , many of whom had spent their entire careers with the firm , he could eliminate a competitor and he could get the name recognition he 'd wanted . get he could the name recognition he 'd wanted
-In 1845 , he was chosen Chief Justice of the Court of Queen 's Bench . was chosen he Chief Justice of the Court of Queen 's Bench In 1845
-It is offered by the flagship banks of New York 's Manufacturers Hanover Corp. in the one - year maturity only . is offered by It the flagship banks of New York 's Manufacturers Hanover Corp.
-It is offered by the flagship banks of New York 's Manufacturers Hanover Corp. in the one - year maturity only . is offered in It the one - year maturity only
-It is offered by the flagship banks of New York 's Manufacturers Hanover Corp. in the one - year maturity only . are of the flagship banks New York 's Manufacturers Hanover Corp.
-It is offered by the flagship banks of New York 's Manufacturers Hanover Corp. in the one - year maturity only . is in Manufacturers Hanover Corp. New York
-Officials proposed a cut in the defense budget this year to 70.9 billion rubles ( US$ 114.3 billion ) from 77.3 billion rubles ( US$ 125 billion ) as well as large cuts in outlays for new factories and equipment . proposed a cut to Officials 70.9 billion rubles in the defense budget this year
-Officials proposed a cut in the defense budget this year to 70.9 billion rubles ( US$ 114.3 billion ) from 77.3 billion rubles ( US$ 125 billion ) as well as large cuts in outlays for new factories and equipment . is 70.9 billion rubles US$ 114.3 billion
-Officials proposed a cut in the defense budget this year to 70.9 billion rubles ( US$ 114.3 billion ) from 77.3 billion rubles ( US$ 125 billion ) as well as large cuts in outlays for new factories and equipment . proposed a cut from Officials 77.3 billion rubles in the defense budget this year
-Officials proposed a cut in the defense budget this year to 70.9 billion rubles ( US$ 114.3 billion ) from 77.3 billion rubles ( US$ 125 billion ) as well as large cuts in outlays for new factories and equipment . is 77.3 billion rubles US$ 125 billion
-Officials proposed a cut in the defense budget this year to 70.9 billion rubles ( US$ 114.3 billion ) from 77.3 billion rubles ( US$ 125 billion ) as well as large cuts in outlays for new factories and equipment . proposed as well large cuts in Officials outlays for new factories this year
-Officials proposed a cut in the defense budget this year to 70.9 billion rubles ( US$ 114.3 billion ) from 77.3 billion rubles ( US$ 125 billion ) as well as large cuts in outlays for new factories and equipment . proposed as well large cuts in Officials outlays for equipment this year
-After the British capture of Madrid , Hill had responsibility for an army of 30,000 men . had Hill responsibility for an army of 30,000 men After the British capture of Madrid
-When it comes to busting ghosts , the Monroe , Conn. , couple are perfect demons . are in the couple Monroe , Conn.
-When it comes to busting ghosts , the Monroe , Conn. , couple are perfect demons . is in Monroe Conn.
-When it comes to busting ghosts , the Monroe , Conn. , couple are perfect demons . are the Monroe , Conn. couple perfect demons When it comes to busting ghosts
-When it comes to busting ghosts , the Monroe , Conn. , couple are perfect demons . bust the Monroe , Conn. , couple ghosts
-One of the better units based at NAS Glenview in the post-WWII period was Attack Squadron 725 , part of NARTU Glenview until 1970 , when it was redesignated as Attack Squadron 209 and became part of Carrier Air Wing Reserve TWENTY from 1970 onward . was Attack Squadron 725 One of the better units based at NAS in Glenview in the post-WWII period
-One of the better units based at NAS Glenview in the post-WWII period was Attack Squadron 725 , part of NARTU Glenview until 1970 , when it was redesignated as Attack Squadron 209 and became part of Carrier Air Wing Reserve TWENTY from 1970 onward . was part of Attack Squadron 725 NARTU in Glenview until 1970
-One of the better units based at NAS Glenview in the post-WWII period was Attack Squadron 725 , part of NARTU Glenview until 1970 , when it was redesignated as Attack Squadron 209 and became part of Carrier Air Wing Reserve TWENTY from 1970 onward . was redesignated as Attack Squadron 725 Attack Squadron 209 in 1970
-One of the better units based at NAS Glenview in the post-WWII period was Attack Squadron 725 , part of NARTU Glenview until 1970 , when it was redesignated as Attack Squadron 209 and became part of Carrier Air Wing Reserve TWENTY from 1970 onward . became part of Attack Squadron 725 Carrier Air Wing Reserve TWENTY from 1970 onward
-One of the better units based at NAS Glenview in the post-WWII period was Attack Squadron 725 , part of NARTU Glenview until 1970 , when it was redesignated as Attack Squadron 209 and became part of Carrier Air Wing Reserve TWENTY from 1970 onward . was based at Attack Squadron 725 NAS Glenview in the post-WWII period
-Until its 2007 acquisition by Tavistock Group , Freebirds World Burrito had its corporate headquarters in College Station . had an acquisition by Freebirds World Burrito Tavistock Group in 2007
-Until its 2007 acquisition by Tavistock Group , Freebirds World Burrito had its corporate headquarters in College Station . had Freebirds World Burrito corporate headquarters in College Station Until 2007
-Passengers for or should change at Twyford during off peak . should change at Passengers Twyford during off peak
-Later , the very different STA was converted into a flightworthy orbiter , re-designated OV-099 , and christened `` Challenger '' . was converted into the very different STA a flightworthy orbiter , re-designated OV-099 , and christened `` Challenger '' Later
-Later , the very different STA was converted into a flightworthy orbiter , re-designated OV-099 , and christened `` Challenger '' . was converted into the STA a flightworthy orbiter
-Later , the very different STA was converted into a flightworthy orbiter , re-designated OV-099 , and christened `` Challenger '' . was converted and re-designated the STA OV-099
-Later , the very different STA was converted into a flightworthy orbiter , re-designated OV-099 , and christened `` Challenger '' . was converted and christened the STA `` Challenger ''
-Later , the very different STA was converted into a flightworthy orbiter , re-designated OV-099 , and christened `` Challenger '' . was the flightworthy STA re-designated the OV-099 and christened `` Challenger ''
-Later , the very different STA was converted into a flightworthy orbiter , re-designated OV-099 , and christened `` Challenger '' . was christened the flightworthy and re-designated STA `` Challenger ''
-This font contains many largely recognized shapes and gestures as well as some recognized world symbols , such as the Star of David , the symbols of the zodiac , index or manicle signs and obscure ampersands . contains This font many largely recognized shapes
-This font contains many largely recognized shapes and gestures as well as some recognized world symbols , such as the Star of David , the symbols of the zodiac , index or manicle signs and obscure ampersands . contains This font many largely recognized gestures
-This font contains many largely recognized shapes and gestures as well as some recognized world symbols , such as the Star of David , the symbols of the zodiac , index or manicle signs and obscure ampersands . contains as well This font some recognized world symbols
-This font contains many largely recognized shapes and gestures as well as some recognized world symbols , such as the Star of David , the symbols of the zodiac , index or manicle signs and obscure ampersands . are such as recognized world symbols the Star of David
-This font contains many largely recognized shapes and gestures as well as some recognized world symbols , such as the Star of David , the symbols of the zodiac , index or manicle signs and obscure ampersands . are such as recognized world symbols the symbols of the zodiac
-This font contains many largely recognized shapes and gestures as well as some recognized world symbols , such as the Star of David , the symbols of the zodiac , index or manicle signs and obscure ampersands . are such as recognized world symbols index signs
-This font contains many largely recognized shapes and gestures as well as some recognized world symbols , such as the Star of David , the symbols of the zodiac , index or manicle signs and obscure ampersands . are such as recognized world symbols manicle signs
-This font contains many largely recognized shapes and gestures as well as some recognized world symbols , such as the Star of David , the symbols of the zodiac , index or manicle signs and obscure ampersands . are such as recognized world symbols obscure ampersands
-This font contains many largely recognized shapes and gestures as well as some recognized world symbols , such as the Star of David , the symbols of the zodiac , index or manicle signs and obscure ampersands . contains This font the Star of David
-This font contains many largely recognized shapes and gestures as well as some recognized world symbols , such as the Star of David , the symbols of the zodiac , index or manicle signs and obscure ampersands . contains This font the symbols of the zodiac
-This font contains many largely recognized shapes and gestures as well as some recognized world symbols , such as the Star of David , the symbols of the zodiac , index or manicle signs and obscure ampersands . contains This font index signs
-This font contains many largely recognized shapes and gestures as well as some recognized world symbols , such as the Star of David , the symbols of the zodiac , index or manicle signs and obscure ampersands . contains This font manicle signs
-This font contains many largely recognized shapes and gestures as well as some recognized world symbols , such as the Star of David , the symbols of the zodiac , index or manicle signs and obscure ampersands . contains This font obscure ampersands
-FEDERAL HOME LOAN MORTGAGE CORP. ( Freddie Mac ) : Posted yields on 30 - year mortgage commitments for delivery within 30 days . is FEDERAL HOME LOAN MORTGAGE CORP. Freddie Mac
-FEDERAL HOME LOAN MORTGAGE CORP. ( Freddie Mac ) : Posted yields on 30 - year mortgage commitments for delivery within 30 days . Posted yields on FEDERAL HOME LOAN MORTGAGE CORP. 30 - year mortgage commitments for delivery within 30 days
-By acquiring stakes in bottling companies in the U.S. and overseas , Coke has been able to improve bottlers ' efficiency and production , and in some cases , marketing . has been able to improve By acquiring stakes in bottling companies in the U.S. and overseas Coke bottlers ' efficiency
-By acquiring stakes in bottling companies in the U.S. and overseas , Coke has been able to improve bottlers ' efficiency and production , and in some cases , marketing . has been able to improve By acquiring stakes in bottling companies in the U.S. and overseas Coke bottlers ' production
-By acquiring stakes in bottling companies in the U.S. and overseas , Coke has been able to improve bottlers ' efficiency and production , and in some cases , marketing . has been able to improve in some cases By acquiring stakes in bottling companies in the U.S. and overseas Coke bottlers ' marketing
-By acquiring stakes in bottling companies in the U.S. and overseas , Coke has been able to improve bottlers ' efficiency and production , and in some cases , marketing . was acquiring stakes in Coke bottling companies in the U.S.
-By acquiring stakes in bottling companies in the U.S. and overseas , Coke has been able to improve bottlers ' efficiency and production , and in some cases , marketing . are bottling companies in the U.S.
-By acquiring stakes in bottling companies in the U.S. and overseas , Coke has been able to improve bottlers ' efficiency and production , and in some cases , marketing . are bottling companies overseas
-By acquiring stakes in bottling companies in the U.S. and overseas , Coke has been able to improve bottlers ' efficiency and production , and in some cases , marketing . was acquiring stakes in Coke bottling companies overseas
-Passenger services on the line were terminated on 31 December 1954 . were terminated on Passenger services the line on 31 December 1954
-Sikorsky and Boeing say that factors outside their control , like budget cuts , `` requirement creep , '' and a long development period caused problems with the Comanche and not team dysfunctionality . says that Sikorsky factors outside their control caused problems with the Comanche
-Sikorsky and Boeing say that factors outside their control , like budget cuts , `` requirement creep , '' and a long development period caused problems with the Comanche and not team dysfunctionality . says that Sikorsky team dysfunctionality did not cause problems with the Comanche
-Sikorsky and Boeing say that factors outside their control , like budget cuts , `` requirement creep , '' and a long development period caused problems with the Comanche and not team dysfunctionality . says that Boeing factors outside their control caused problems with the Comanche
-Sikorsky and Boeing say that factors outside their control , like budget cuts , `` requirement creep , '' and a long development period caused problems with the Comanche and not team dysfunctionality . says that Boeing team dysfunctionality did not cause problems with the Comanche
-Sikorsky and Boeing say that factors outside their control , like budget cuts , `` requirement creep , '' and a long development period caused problems with the Comanche and not team dysfunctionality . are like factors outside their control budget cuts
-Sikorsky and Boeing say that factors outside their control , like budget cuts , `` requirement creep , '' and a long development period caused problems with the Comanche and not team dysfunctionality . are like factors outside their control `` requirement creep ''
-Sikorsky and Boeing say that factors outside their control , like budget cuts , `` requirement creep , '' and a long development period caused problems with the Comanche and not team dysfunctionality . are like factors outside their control a long development period
-Sikorsky and Boeing say that factors outside their control , like budget cuts , `` requirement creep , '' and a long development period caused problems with the Comanche and not team dysfunctionality . were with problems the Comanche
-Sikorsky and Boeing say that factors outside their control , like budget cuts , `` requirement creep , '' and a long development period caused problems with the Comanche and not team dysfunctionality . was the Comanche development period long
-`` Billboard '' magazine ranked the album thirty-second in the decade-end recap of the most successful albums of the 2000s , while placing it twelfth in the R&B field . is `` Billboard '' a magazine
-`` Billboard '' magazine ranked the album thirty-second in the decade-end recap of the most successful albums of the 2000s , while placing it twelfth in the R&B field . ranked the album `` Billboard '' magazine thirty-second in the decade-end recap of the most successful albums of the 2000s
-`` Billboard '' magazine ranked the album thirty-second in the decade-end recap of the most successful albums of the 2000s , while placing it twelfth in the R&B field . was placing the album `` Billboard '' magazine twelfth in the R&B field
-`` Billboard '' magazine ranked the album thirty-second in the decade-end recap of the most successful albums of the 2000s , while placing it twelfth in the R&B field . was of the album the 2000s
-`` Billboard '' magazine ranked the album thirty-second in the decade-end recap of the most successful albums of the 2000s , while placing it twelfth in the R&B field . was `` Billboard '' magazine recap decade-end
-`` Video Concert Hall '' ran daily on USA Network from 1978 to 1981 on a seemingly arbitrary schedule , appearing on early morning , daytime , late night , and early evening timeslots alike for durations ranging from one to four hours . ran daily on `` Video Concert Hall '' USA Network from 1978 to 1981
-`` Video Concert Hall '' ran daily on USA Network from 1978 to 1981 on a seemingly arbitrary schedule , appearing on early morning , daytime , late night , and early evening timeslots alike for durations ranging from one to four hours . ran daily on `` Video Concert Hall '' USA Network on a seemingly arbitrary schedule from 1978 to 1981
-`` Video Concert Hall '' ran daily on USA Network from 1978 to 1981 on a seemingly arbitrary schedule , appearing on early morning , daytime , late night , and early evening timeslots alike for durations ranging from one to four hours . is appearing on `` Video Concert Hall '' early morning , daytime , late night , and early evening timeslots alike for durations ranging from one to four hours
-`` Video Concert Hall '' ran daily on USA Network from 1978 to 1981 on a seemingly arbitrary schedule , appearing on early morning , daytime , late night , and early evening timeslots alike for durations ranging from one to four hours . ran daily on USA Network `` Video Concert Hall '' for durations ranging from one to four hours
-`` Video Concert Hall '' ran daily on USA Network from 1978 to 1981 on a seemingly arbitrary schedule , appearing on early morning , daytime , late night , and early evening timeslots alike for durations ranging from one to four hours . ran daily on USA Network from 1978 to 1981 on `` Video Concert Hall '' a seemingly arbitrary schedule
-`` Video Concert Hall '' ran daily on USA Network from 1978 to 1981 on a seemingly arbitrary schedule , appearing on early morning , daytime , late night , and early evening timeslots alike for durations ranging from one to four hours . is appearing on early morning , daytime, late night , and early evening timeslots alike for `` Video Concert Hall '' durations ranging from one to four hours
-`` Video Concert Hall '' ran daily on USA Network from 1978 to 1981 on a seemingly arbitrary schedule , appearing on early morning , daytime , late night , and early evening timeslots alike for durations ranging from one to four hours . ran daily on USA Network from 1978 to 1981 on a seemingly arbitrary schedule `` Video Concert Hall '' appearing on early morning , daytime , late night , and early evening timeslots alike for durations ranging from one to four hours
-`` Video Concert Hall '' ran daily on USA Network from 1978 to 1981 on a seemingly arbitrary schedule , appearing on early morning , daytime , late night , and early evening timeslots alike for durations ranging from one to four hours . is appearing on `` Video Concert Hall '' early morning , daytime , late night , and early evening timeslots alike for durations ranging from one to four hours
-The district also provides recreation and leisure services to many non-residents of the area on a fee basis . also provides to many non-residents of the area on a fee basis The district recreation services
-The district also provides recreation and leisure services to many non-residents of the area on a fee basis . also provides to many non-residents of the area on a fee basis The district leisure services
-Chugai agreed to pay $ 6.25 a share for Gen - Probe 's 17.6 million common shares outstanding on a fully diluted basis . agreed to pay Chugai $ 6.25 a share
-Chugai agreed to pay $ 6.25 a share for Gen - Probe 's 17.6 million common shares outstanding on a fully diluted basis . agreed to pay for Chugai Gen - Probe 's 17.6 million common shares outstanding
-Chugai agreed to pay $ 6.25 a share for Gen - Probe 's 17.6 million common shares outstanding on a fully diluted basis . agreed to pay on Chugai a fully diluted basis
-Chugai agreed to pay $ 6.25 a share for Gen - Probe 's 17.6 million common shares outstanding on a fully diluted basis . had Gen - Probe 17.6 million common shares outstanding
-The lodge also hosts fellowship events , conclaves , training events , and an annual family banquet , and supports the council activities at Council-run events . hosts The lodge fellowship events
-The lodge also hosts fellowship events , conclaves , training events , and an annual family banquet , and supports the council activities at Council-run events . hosts The lodge conclaves
-The lodge also hosts fellowship events , conclaves , training events , and an annual family banquet , and supports the council activities at Council-run events . hosts The lodge training events
-The lodge also hosts fellowship events , conclaves , training events , and an annual family banquet , and supports the council activities at Council-run events . hosts The lodge an annual family banquet
-The lodge also hosts fellowship events , conclaves , training events , and an annual family banquet , and supports the council activities at Council-run events . supports The lodge the council activities at Council-run events
-In `` The Scarpetta Factor , '' she is working full-time and Wesley is working part-time in New York . is working In `` The Scarpetta Factor '' she full-time in New York
-In `` The Scarpetta Factor , '' she is working full-time and Wesley is working part-time in New York . is working In `` The Scarpetta Factor '' Wesley part-time in New York
-In `` The Scarpetta Factor , '' she is working full-time and Wesley is working part-time in New York . is In she `` The Scarpetta Factor ''
-In `` The Scarpetta Factor , '' she is working full-time and Wesley is working part-time in New York . is In Wesley `` The Scarpetta Factor ''
-Though this time , the Brumbies won , 47 to 38 in front of a record crowd at Canberra Stadium . won the Brumbies 47 to 38 at Canberra Stadium this time
-Though this time , the Brumbies won , 47 to 38 in front of a record crowd at Canberra Stadium . won in front of the Brumbies a record crowd at Canberra Stadium this time
-Because the Japanese `` alphabet '' is so huge , Japan has no history of typewriter use , and so `` keyboard allergy , '' especially among older workers , remains a common affliction . has no history of typewriter use Because Japan the Japanese alphabet is so huge
-Because the Japanese `` alphabet '' is so huge , Japan has no history of typewriter use , and so `` keyboard allergy , '' especially among older workers , remains a common affliction . remains a common affliction especially among keyboard allergy older workers
-Dangaioh 's characters , mecha , and storyline elements appeared in Banpresto 's `` Super Robot Wars '' games . appeared in Dangaioh 's characters Banpresto 's `` Super Robot Wars '' games
-Dangaioh 's characters , mecha , and storyline elements appeared in Banpresto 's `` Super Robot Wars '' games . appeared in Dangaioh 's mecha Banpresto 's `` Super Robot Wars '' games
-Dangaioh 's characters , mecha , and storyline elements appeared in Banpresto 's `` Super Robot Wars '' games . appeared in Dangaioh 's storyline elements Banpresto 's `` Super Robot Wars '' games
-Dangaioh 's characters , mecha , and storyline elements appeared in Banpresto 's `` Super Robot Wars '' games . are `` Super Robot Wars '' games
-Dangaioh 's characters , mecha , and storyline elements appeared in Banpresto 's `` Super Robot Wars '' games . has Banpresto `` Super Robot Wars '' games
-Dangaioh 's characters , mecha , and storyline elements appeared in Banpresto 's `` Super Robot Wars '' games . has Dangaioh characters
-Dangaioh 's characters , mecha , and storyline elements appeared in Banpresto 's `` Super Robot Wars '' games . has Dangaioh mecha
-Dangaioh 's characters , mecha , and storyline elements appeared in Banpresto 's `` Super Robot Wars '' games . has Dangaioh storyline elements
-Aside from as much as $ 3.45 billion in recently approved federal aid , the state is expected to draw from a gubernatorial emergency fund that currently stands at an estimated $ 700 million . is expected to the state draw from a gubernatorial emergency fund
-Aside from as much as $ 3.45 billion in recently approved federal aid , the state is expected to draw from a gubernatorial emergency fund that currently stands at an estimated $ 700 million . currently stands at the gubernatorial emergency fund an estimated $ 700 million
-Aside from as much as $ 3.45 billion in recently approved federal aid , the state is expected to draw from a gubernatorial emergency fund that currently stands at an estimated $ 700 million . has as much as the state $ 3.45 billion in recently approved federal aid
-Aside from as much as $ 3.45 billion in recently approved federal aid , the state is expected to draw from a gubernatorial emergency fund that currently stands at an estimated $ 700 million . is expected to draw from Aside from as much as $ 3.45 billion in recently approved federal aid , the state a gubernatorial emergency fund that currently stands at an estimated $ 700 million
-From the , 275 or 26.1 % were Roman Catholic , while 624 or 59.3 % belonged to the Swiss Reformed Church . were 275 Roman Catholic
-From the , 275 or 26.1 % were Roman Catholic , while 624 or 59.3 % belonged to the Swiss Reformed Church . were 26.1 % Roman Catholic
-From the , 275 or 26.1 % were Roman Catholic , while 624 or 59.3 % belonged to the Swiss Reformed Church . is 275 26.1 %
-From the , 275 or 26.1 % were Roman Catholic , while 624 or 59.3 % belonged to the Swiss Reformed Church . belonged to 624 the Swiss Reformed Church
-From the , 275 or 26.1 % were Roman Catholic , while 624 or 59.3 % belonged to the Swiss Reformed Church . belonged to 59.3 % the Swiss Reformed Church
-From the , 275 or 26.1 % were Roman Catholic , while 624 or 59.3 % belonged to the Swiss Reformed Church . is 624 59.3 %
-Porter wrote in 1980 that strategy target either cost leadership , differentiation , or focus . wrote that strategy target either Porter cost leadership in 1980
-Porter wrote in 1980 that strategy target either cost leadership , differentiation , or focus . wrote that strategy target either Porter differentiation in 1980
-Porter wrote in 1980 that strategy target either cost leadership , differentiation , or focus . wrote that strategy target either Porter focus in 1980
-The supply of experienced civil engineers , though , is tighter . is tighter The supply
-The supply of experienced civil engineers , though , is tighter . experienced civil engineers The supply is of
-The supply of experienced civil engineers , though , is tighter . are experienced civil engineers
-He will concentrate on , among others , J.P. Morgan and Hyundai . will concentrate on , among others He J.P. Morgan
-He will concentrate on , among others , J.P. Morgan and Hyundai . will concentrate on , among others He Hyundai
-He will concentrate on , among others , J.P. Morgan and Hyundai . will concentrate on He others
-Machines dedicated solely to word processing , which have all but disappeared in the U.S. , are still more common in Japan than PCs . are Machines dedicated solely to word processing , which have all but disappeared in the U.S. , still more common than PCs in Japan
-Machines dedicated solely to word processing , which have all but disappeared in the U.S. , are still more common in Japan than PCs . are still more common Machines than PCs in Japan
-A better alternative in order to find the best possible results would be to use the Smith-Waterman algorithm . would be to use A better alternative the Smith-Waterman algorithm
-On 19 October 2010 , Tuqiri was officially named in the Australian squad for the Four Nations as a replacement for the injured Jarryd Hayne . was officially named as Tuqiri a replacement for the injured Jarryd Hayne in the Australian squad for the Four Nations On 19 October 2010
-On 19 October 2010 , Tuqiri was officially named in the Australian squad for the Four Nations as a replacement for the injured Jarryd Hayne . was injured Jarryd Hayne
-New York bonds , which have been hammered in recent weeks on the pending supply and reports that the city 's economy is growing weaker , rose 1\/2 point yesterday . have been hammered on New York bonds the pending supply in recent weeks
-New York bonds , which have been hammered in recent weeks on the pending supply and reports that the city 's economy is growing weaker , rose 1\/2 point yesterday . have been hammered on New York bonds reports that the city 's economy is growing weaker in recent weeks
-New York bonds , which have been hammered in recent weeks on the pending supply and reports that the city 's economy is growing weaker , rose 1\/2 point yesterday . rose New York bonds 1\/2 point yesterday
-New York bonds , which have been hammered in recent weeks on the pending supply and reports that the city 's economy is growing weaker , rose 1\/2 point yesterday . are of bonds New York
-New York bonds , which have been hammered in recent weeks on the pending supply and reports that the city 's economy is growing weaker , rose 1\/2 point yesterday . are that reports the city 's economy is growing weaker
-New York bonds , which have been hammered in recent weeks on the pending supply and reports that the city 's economy is growing weaker , rose 1\/2 point yesterday . is the city New York
-It 's recommended to have only two males and a dozen or so females . is recommended to have It only two males
-It 's recommended to have only two males and a dozen or so females . is recommended to have It a dozen or so females
-According to available information , the Maoists of Nepal have well-established linkages with Indian revolutionary communist organizations , primarily with the Communist Party of India , currently leading a protracted `` people 's war '' throughout the subcontinent . According to available information have well-established linkages with the Maoists of Nepal Indian revolutionary communist organizations
-According to available information , the Maoists of Nepal have well-established linkages with Indian revolutionary communist organizations , primarily with the Communist Party of India , currently leading a protracted `` people 's war '' throughout the subcontinent . According to available information have well-established linkages primarily with the Maoists of Nepal the Communist Party of India
-According to available information , the Maoists of Nepal have well-established linkages with Indian revolutionary communist organizations , primarily with the Communist Party of India , currently leading a protracted `` people 's war '' throughout the subcontinent . According to available information are leading the Maoists of Nepal a protracted `` people 's war '' throughout the subcontinent currently
-Its objective is to organize in-service Continuous Capacity Building and professional development training sessions , workshops and local and international conferences for enhancement of skills and competitive strength of faculty , staff and M.Phil and PhD students at their campuses . the enhancement of skills and competitive strength of Its objective is faculty , staff and M.Phil and PhD students at their campuses
-Its objective is to organize in-service Continuous Capacity Building and professional development training sessions , workshops and local and international conferences for enhancement of skills and competitive strength of faculty , staff and M.Phil and PhD students at their campuses . to organize in-service Its objective is Continuous Capacity Building and professional development training sessions at their campuses
-Its objective is to organize in-service Continuous Capacity Building and professional development training sessions , workshops and local and international conferences for enhancement of skills and competitive strength of faculty , staff and M.Phil and PhD students at their campuses . to organize Its objective is workshops and local and international conferences at their campuses
-Its objective is to organize in-service Continuous Capacity Building and professional development training sessions , workshops and local and international conferences for enhancement of skills and competitive strength of faculty , staff and M.Phil and PhD students at their campuses . for enhancement of skills and competitive strength of Continuous Capacity Building and professional development training sessions faculty , staff and M.Phil and PhD students at their campuses
-Its objective is to organize in-service Continuous Capacity Building and professional development training sessions , workshops and local and international conferences for enhancement of skills and competitive strength of faculty , staff and M.Phil and PhD students at their campuses . for enhancement of skills and competitive strength of workshops and local and international conferences faculty , staff and M.Phil and PhD students at their campuses
-When the band is not touring , Peter Bywaters offers personal English as a second language tuition on a live-in basis at his home in Brighton . offers Peter Bywaters personal English as a second language at his home in Brighton When the band is not touring
-When the band is not touring , Peter Bywaters offers personal English as a second language tuition on a live-in basis at his home in Brighton . offers Peter Bywaters tuition on a live-in basis at his home in Brighton When the band is not touring
-When the band is not touring , Peter Bywaters offers personal English as a second language tuition on a live-in basis at his home in Brighton . has his home Peter Bywaters in Brighton
-G-7 consists of the U.S. , Japan , Britain , West Germany , Canada , France and Italy . consists of G-7 the U.S.
-G-7 consists of the U.S. , Japan , Britain , West Germany , Canada , France and Italy . consists of G-7 Japan
-G-7 consists of the U.S. , Japan , Britain , West Germany , Canada , France and Italy . consists of G-7 Britain
-G-7 consists of the U.S. , Japan , Britain , West Germany , Canada , France and Italy . consists of G-7 West Germany
-G-7 consists of the U.S. , Japan , Britain , West Germany , Canada , France and Italy . consists of G-7 Canada
-G-7 consists of the U.S. , Japan , Britain , West Germany , Canada , France and Italy . consists of G-7 France
-G-7 consists of the U.S. , Japan , Britain , West Germany , Canada , France and Italy . consists of G-7 Italy
-We just want a plan that satisfies creditors and at the end leaves a healthy Revco . '' just want We a plan that satisfies creditors
-We just want a plan that satisfies creditors and at the end leaves a healthy Revco . '' just want We a plan that leaves a healthy Revco
-We just want a plan that satisfies creditors and at the end leaves a healthy Revco . '' will satisfy a plan creditors
-We just want a plan that satisfies creditors and at the end leaves a healthy Revco . '' will leave a plan a healthy Revco at the end
-The company has $ 1 billion in debt filed with the Securities and Exchange Commission . has The company $ 1 billion in debt
-The company has $ 1 billion in debt filed with the Securities and Exchange Commission . is filed with $ 1 billion in company debt the Securities and Exchange Commission
-In November 1998 , the company suffered a public relations embarrassment when its sales flyer featured a prominent photograph of two grinning boys playing the board game `` Scrabble '' with the word `` RAPE '' spelled out in the center of the board , buried amongst nonsense words . suffered the company a public relations embarrassment In November 1998
-In November 1998 , the company suffered a public relations embarrassment when its sales flyer featured a prominent photograph of two grinning boys playing the board game `` Scrabble '' with the word `` RAPE '' spelled out in the center of the board , buried amongst nonsense words . featured the company's sales flyer a prominent photograph of two grinning boys playing the board game `` Scrabble '' with the word `` RAPE '' spelled out in the center of the board , buried amongst nonsense words In November 1998
-In November 1998 , the company suffered a public relations embarrassment when its sales flyer featured a prominent photograph of two grinning boys playing the board game `` Scrabble '' with the word `` RAPE '' spelled out in the center of the board , buried amongst nonsense words . had a the company sales flyer
-In November 1998 , the company suffered a public relations embarrassment when its sales flyer featured a prominent photograph of two grinning boys playing the board game `` Scrabble '' with the word `` RAPE '' spelled out in the center of the board , buried amongst nonsense words . were playing two grinning boys the board game `` Scrabble ''
-In November 1998 , the company suffered a public relations embarrassment when its sales flyer featured a prominent photograph of two grinning boys playing the board game `` Scrabble '' with the word `` RAPE '' spelled out in the center of the board , buried amongst nonsense words . were grinning two boys
-In November 1998 , the company suffered a public relations embarrassment when its sales flyer featured a prominent photograph of two grinning boys playing the board game `` Scrabble '' with the word `` RAPE '' spelled out in the center of the board , buried amongst nonsense words . was spelled out in the word `` RAPE '' the center of the `` Scrabble '' board
-In November 1998 , the company suffered a public relations embarrassment when its sales flyer featured a prominent photograph of two grinning boys playing the board game `` Scrabble '' with the word `` RAPE '' spelled out in the center of the board , buried amongst nonsense words . is `` Scrabble '' a board game
-In November 1998 , the company suffered a public relations embarrassment when its sales flyer featured a prominent photograph of two grinning boys playing the board game `` Scrabble '' with the word `` RAPE '' spelled out in the center of the board , buried amongst nonsense words . was buried amongst the word `` RAPE '' nonsense words in the center of the `` Scrabble '' board
-In November 1998 , the company suffered a public relations embarrassment when its sales flyer featured a prominent photograph of two grinning boys playing the board game `` Scrabble '' with the word `` RAPE '' spelled out in the center of the board , buried amongst nonsense words . is `` RAPE '' a word
-In November 1998 , the company suffered a public relations embarrassment when its sales flyer featured a prominent photograph of two grinning boys playing the board game `` Scrabble '' with the word `` RAPE '' spelled out in the center of the board , buried amongst nonsense words . was prominent a photograph of two grinning boys playing the board game `` Scrabble '' with the word `` RAPE '' spelled out in the center of the board on the company's sales flyer
-Mr. Baker heads the Kentucky Association of Science Educators and Skeptics . heads Mr. Baker the Kentucky Association of Science and Skeptics
-Centuries later , in 1806 , during the Napoleonic era , was built the Canal de l'Ourcq , destined to the inland navigation when the Marne river is not navigable because of temporary sandbanks . was built the Canal de l'Ourcq during the Napoleonic era
-Centuries later , in 1806 , during the Napoleonic era , was built the Canal de l'Ourcq , destined to the inland navigation when the Marne river is not navigable because of temporary sandbanks . was built the Canal de l'Ourcq Centuries later
-Centuries later , in 1806 , during the Napoleonic era , was built the Canal de l'Ourcq , destined to the inland navigation when the Marne river is not navigable because of temporary sandbanks . was built the Canal de l'Ourcq in 1806
-Centuries later , in 1806 , during the Napoleonic era , was built the Canal de l'Ourcq , destined to the inland navigation when the Marne river is not navigable because of temporary sandbanks . is destined to the inland navigation the Canal de l'Ourcq when the Marne river is not navigable because of temporary sandbanks
-The RTC will have to sell or merge hundreds of insolvent thrifts over the next three years . will have to sell or merge The RTC hundreds of insolvent thrifts over the next three years
-The RTC will have to sell or merge hundreds of insolvent thrifts over the next three years . are hundreds of thrifts insolvent
-Mortgage securities ended 2\/32 to 4\/32 higher in light trading . ended in light trading from Mortgage securities 2\/32 higher
-Mortgage securities ended 2\/32 to 4\/32 higher in light trading . ended in light trading to Mortgage securities 4\/32 higher
-Mortgage securities ended 2\/32 to 4\/32 higher in light trading . was trading light
-Mortgage securities ended 2\/32 to 4\/32 higher in light trading . are on securities Mortgages
-Instead of having system calls specifically for process management , Plan 9 provides the codice_13 file system . provides Plan 9 the codice_13 file system
-Instead of having system calls specifically for process management , Plan 9 provides the codice_13 file system . is Instead of having the codice_13 file system system calls specifically for process management
-His main power , the Omega Beam , is a form of energy that he fires from his eyes as either a concussive force or disintegrating energy , capable of transmuting or erasing living objects and organisms from existence as well as resurrecting them , depending on the dark lord 's will . is His main power the Omega Beam
-His main power , the Omega Beam , is a form of energy that he fires from his eyes as either a concussive force or disintegrating energy , capable of transmuting or erasing living objects and organisms from existence as well as resurrecting them , depending on the dark lord 's will . is the Omega Beam a form of energy
-His main power , the Omega Beam , is a form of energy that he fires from his eyes as either a concussive force or disintegrating energy , capable of transmuting or erasing living objects and organisms from existence as well as resurrecting them , depending on the dark lord 's will . is a form of that he fires from the Omega Beam his eyes
-His main power , the Omega Beam , is a form of energy that he fires from his eyes as either a concussive force or disintegrating energy , capable of transmuting or erasing living objects and organisms from existence as well as resurrecting them , depending on the dark lord 's will . fires from his eyes as the Omega Beam a concussive force
-His main power , the Omega Beam , is a form of energy that he fires from his eyes as either a concussive force or disintegrating energy , capable of transmuting or erasing living objects and organisms from existence as well as resurrecting them , depending on the dark lord 's will . fires from his eyes as the Omega Beam disintegrating energy
-His main power , the Omega Beam , is a form of energy that he fires from his eyes as either a concussive force or disintegrating energy , capable of transmuting or erasing living objects and organisms from existence as well as resurrecting them , depending on the dark lord 's will . is capable of transmuting the Omega Beam disintegrating energy living objects
-His main power , the Omega Beam , is a form of energy that he fires from his eyes as either a concussive force or disintegrating energy , capable of transmuting or erasing living objects and organisms from existence as well as resurrecting them , depending on the dark lord 's will . is capable of erasing the Omega Beam disintegrating energy living objects
-His main power , the Omega Beam , is a form of energy that he fires from his eyes as either a concussive force or disintegrating energy , capable of transmuting or erasing living objects and organisms from existence as well as resurrecting them , depending on the dark lord 's will . is capable of transmuting the Omega Beam disintegrating energy organisms
-His main power , the Omega Beam , is a form of energy that he fires from his eyes as either a concussive force or disintegrating energy , capable of transmuting or erasing living objects and organisms from existence as well as resurrecting them , depending on the dark lord 's will . is capable of erasing the Omega Beam disintegrating energy organisms
-His main power , the Omega Beam , is a form of energy that he fires from his eyes as either a concussive force or disintegrating energy , capable of transmuting or erasing living objects and organisms from existence as well as resurrecting them , depending on the dark lord 's will . is capable of resurrecting the Omega Beam disintegrating energy living objects
-His main power , the Omega Beam , is a form of energy that he fires from his eyes as either a concussive force or disintegrating energy , capable of transmuting or erasing living objects and organisms from existence as well as resurrecting them , depending on the dark lord 's will . is capable of resurrecting the Omega Beam disintegrating energy organisms
-His main power , the Omega Beam , is a form of energy that he fires from his eyes as either a concussive force or disintegrating energy , capable of transmuting or erasing living objects and organisms from existence as well as resurrecting them , depending on the dark lord 's will . depending on the the Omega Beam dark lord 's will
-Rockwell and NASA thus retroactively re-designated the MPTA as MPTA-098 , though it was never christened with a name . thus retroactively re-designated Rockwell the MPTA
-Rockwell and NASA thus retroactively re-designated the MPTA as MPTA-098 , though it was never christened with a name . thus retroactively re-designated NASA the MPTA
-Rockwell and NASA thus retroactively re-designated the MPTA as MPTA-098 , though it was never christened with a name . was retroactively re-designated as the MPTA MPTA-098
-Rockwell and NASA thus retroactively re-designated the MPTA as MPTA-098 , though it was never christened with a name . was retroactively re-designated as the MPTA MPTA-098
-Rockwell and NASA thus retroactively re-designated the MPTA as MPTA-098 , though it was never christened with a name . though , was never christened with MPTA-098 a name
-Maduveya Vayasu song from nanjundi kalyana was a track played during marriages for many many years in Kannada . is Maduveya Vayasu a song
-Maduveya Vayasu song from nanjundi kalyana was a track played during marriages for many many years in Kannada . is from Maduveya Vayasu song nanjundi kalyana
-Maduveya Vayasu song from nanjundi kalyana was a track played during marriages for many many years in Kannada . was a track played during Maduveya Vayasu song marriages in Kannada for many many years
-Kabul had textile , cotton production , and carpet production industries , but most of its economy came through tourism which it lost during its destruction . had Kabul textile industries
-Kabul had textile , cotton production , and carpet production industries , but most of its economy came through tourism which it lost during its destruction . had Kabul cotton production industries
-Kabul had textile , cotton production , and carpet production industries , but most of its economy came through tourism which it lost during its destruction . had Kabul carpet production industries
-Kabul had textile , cotton production , and carpet production industries , but most of its economy came through tourism which it lost during its destruction . lost Kabul tourism during its destruction
-Kabul had textile , cotton production , and carpet production industries , but most of its economy came through tourism which it lost during its destruction . had Kabul destruction
-Kabul had textile , cotton production , and carpet production industries , but most of its economy came through tourism which it lost during its destruction . came through most of its economy tourism in Kabul
-Kabul had textile , cotton production , and carpet production industries , but most of its economy came through tourism which it lost during its destruction . are in textile industries Kabul
-Kabul had textile , cotton production , and carpet production industries , but most of its economy came through tourism which it lost during its destruction . are in cotton production industries Kabul
-Kabul had textile , cotton production , and carpet production industries , but most of its economy came through tourism which it lost during its destruction . are in carpet production industries Kabul
-The problem is that Japanese businesses make decisions with a view well beyond the coming months that weigh so heavily on Mr. Salinas . is that The problem Japanese businesses make decisions with a view well beyond the coming months that weigh so heavily on Mr. Salinas
-The problem is that Japanese businesses make decisions with a view well beyond the coming months that weigh so heavily on Mr. Salinas . weigh so heavily on the coming months Mr. Salinas
-The problem is that Japanese businesses make decisions with a view well beyond the coming months that weigh so heavily on Mr. Salinas . make decisions with Japanese businesses a view well beyond the coming months
-The problem is that Japanese businesses make decisions with a view well beyond the coming months that weigh so heavily on Mr. Salinas . are in businesses Japan
-An `` Dangaioh '' adventure game was released for the PC-8801 in Japan in April 1990 . is Dangaioh an adventure game
-An `` Dangaioh '' adventure game was released for the PC-8801 in Japan in April 1990 . was released for An `` Dangaioh '' adventure game the PC-8801 in Japan in April 1990
-Congress still is struggling to dismantle the unpopular Catastrophic Care Act of 1988 , which boosted benefits for the elderly and taxed them to pay for the new coverage . is struggling to dismantle Congress the unpopular Catastrophic Care Act of 1988 still
-Congress still is struggling to dismantle the unpopular Catastrophic Care Act of 1988 , which boosted benefits for the elderly and taxed them to pay for the new coverage . is unpopular the Catastrophic Care Act of 1988
-Congress still is struggling to dismantle the unpopular Catastrophic Care Act of 1988 , which boosted benefits for the elderly and taxed them to pay for the new coverage . is of the Catastrophic Care Act 1988
-Congress still is struggling to dismantle the unpopular Catastrophic Care Act of 1988 , which boosted benefits for the elderly and taxed them to pay for the new coverage . boosted benefits for the Catastrophic Care Act of 1988 the elderly
-Congress still is struggling to dismantle the unpopular Catastrophic Care Act of 1988 , which boosted benefits for the elderly and taxed them to pay for the new coverage . taxed to pay for the new coverage the Catastrophic Care Act of 1988 the elderly
-The buyers , these analysts added , could be either foreign or other U.S. concerns . added these analysts The buyers could be foreign concerns
-The buyers , these analysts added , could be either foreign or other U.S. concerns . added these analysts The buyers could be other U.S. concerns
-The buyers , these analysts added , could be either foreign or other U.S. concerns . could be The buyers foreign concerns
-The buyers , these analysts added , could be either foreign or other U.S. concerns . could be The buyers other U.S. concerns
-From 1698 to 1843 the famous organ built by Arp Schnitger , one of the Baroque period 's best known organ makers was the main organ . was the famous organ built by Arp Schnitger the main organ From 1698
-From 1698 to 1843 the famous organ built by Arp Schnitger , one of the Baroque period 's best known organ makers was the main organ . was the famous organ built by Arp Schnitger the main organ to 1843
-From 1698 to 1843 the famous organ built by Arp Schnitger , one of the Baroque period 's best known organ makers was the main organ . was Arp Schnitger one of the best known organ makers in the Baroque period
-Declining issues outnumbered advancers 551 to 349 ; 224 issues were unchanged . outnumbered Declining issues advancers
-Declining issues outnumbered advancers 551 to 349 ; 224 issues were unchanged . numbered Declining issues 551
-Declining issues outnumbered advancers 551 to 349 ; 224 issues were unchanged . numbered advancers 349
-Declining issues outnumbered advancers 551 to 349 ; 224 issues were unchanged . were unchanged 224 issues
-Declining issues outnumbered advancers 551 to 349 ; 224 issues were unchanged . numbered unchanged issues 224
-Declining issues outnumbered advancers 551 to 349 ; 224 issues were unchanged . outnumbered 551 Declining issues 349 advancers
-Mr. Mehl attributed the rise specifically to the Treasury bill increase . attributed Mr. Mehl the rise specifically to the Treasury bill increase
-Instead he awoke when a smaller meteorite hit the Earth in 1992 , seven years too early . Instead awoke he when a smaller meteorite hit the Earth in 1992
-Instead he awoke when a smaller meteorite hit the Earth in 1992 , seven years too early . Instead awoke he seven years too early
-Instead he awoke when a smaller meteorite hit the Earth in 1992 , seven years too early . hit a smaller meteorite the Earth in 1992
-Instead he awoke when a smaller meteorite hit the Earth in 1992 , seven years too early . hit a smaller meteorite the Earth seven years too early
-The IRS has been seeking more than $ 300 million in back taxes from Mr. Hunt . has been seeking from Mr. Hunt The IRS more than $ 300 million in back taxes
-SKILLED WORKERS aplenty are available to cope with earthquake damage . are available to cope with SKILLED WORKERS aplenty earthquake damage
-SKILLED WORKERS aplenty are available to cope with earthquake damage . was from damage earthquake
-SKILLED WORKERS aplenty are available to cope with earthquake damage . are SKILLED WORKERS aplenty
-On October 14 , 2012 , Sidney Rice caught the game winning touchdown from a 46-yard pass from Russell Wilson to beat the New England Patriots 24-23 . caught Sidney Rice the game winning touchdown On October 14 , 2012
-On October 14 , 2012 , Sidney Rice caught the game winning touchdown from a 46-yard pass from Russell Wilson to beat the New England Patriots 24-23 . caught a 46-yard pass from Sidney Rice Russell Wilson On October 14 , 2012
-On October 14 , 2012 , Sidney Rice caught the game winning touchdown from a 46-yard pass from Russell Wilson to beat the New England Patriots 24-23 . were beat the New England Patriots 24-23 On October 14 , 2012
-On October 14 , 2012 , Sidney Rice caught the game winning touchdown from a 46-yard pass from Russell Wilson to beat the New England Patriots 24-23 . beat the game winning touchdown the New England Patriots On October 14 , 2012
-On October 14 , 2012 , Sidney Rice caught the game winning touchdown from a 46-yard pass from Russell Wilson to beat the New England Patriots 24-23 . was from a 46-yard pass Russell Wilson On October 14 , 2012
-Thus , any event that would minimize such a surface is entropically favored . that would minimize such a surface is any event entropically favored
-The theatrical flourishes and unique gimmicks she used in her stage show went beyond established burlesque routines like the fan dance and balloon dance . used she theatrical flourishes and unique gimmicks in her stage show
-The theatrical flourishes and unique gimmicks she used in her stage show went beyond established burlesque routines like the fan dance and balloon dance . are the fan dance and balloon dance established burlesque routines
-The theatrical flourishes and unique gimmicks she used in her stage show went beyond established burlesque routines like the fan dance and balloon dance . was in a she stage show
-Mitsubishi Estate has n't decided how it will raise the funds for the purchase , which are due in cash next April , but the Marunouchi holdings alone are estimated to have a market value of as much as 10 trillion yen to 11 trillion yen . has n't decided Mitsubishi Estate how it will raise the funds for the purchase
-Mitsubishi Estate has n't decided how it will raise the funds for the purchase , which are due in cash next April , but the Marunouchi holdings alone are estimated to have a market value of as much as 10 trillion yen to 11 trillion yen . are due in cash the funds for the purchase next April
-Mitsubishi Estate has n't decided how it will raise the funds for the purchase , which are due in cash next April , but the Marunouchi holdings alone are estimated to have a market value of as much as 10 trillion yen to 11 trillion yen . are estimated to have the Marunouchi holdings alone a market value from as much as 10 trillion yen
-Mitsubishi Estate has n't decided how it will raise the funds for the purchase , which are due in cash next April , but the Marunouchi holdings alone are estimated to have a market value of as much as 10 trillion yen to 11 trillion yen . are estimated to have the Marunouchi holdings alone a market value to as much as 11 trillion yen
-Mitsubishi Estate has n't decided how it will raise the funds for the purchase , which are due in cash next April , but the Marunouchi holdings alone are estimated to have a market value of as much as 10 trillion yen to 11 trillion yen . are in the holdings Marunouchi
-Latchford viaduct was opened on 8 July 1893 to carry the London and North Western Railway 's Stockport to Warrington line over the Manchester Ship Canal . was opened to carry Latchford viaduct the London and North Western Railway's Stockport to Warrington line over the Manchester Ship Canal on 8 July 1893
-Latchford viaduct was opened on 8 July 1893 to carry the London and North Western Railway 's Stockport to Warrington line over the Manchester Ship Canal . to carry the London and North Western Railway 's Stockport to Latchford viaduct Warrington line over the Manchester Ship Canal on 8 July 1893
-Latchford viaduct was opened on 8 July 1893 to carry the London and North Western Railway 's Stockport to Warrington line over the Manchester Ship Canal . was opened to carry the London and North Western Railway 's Stockport to Warrington line over Latchford viaduct the Manchester Ship Canal on 8 July 1893
-Latchford viaduct was opened on 8 July 1893 to carry the London and North Western Railway 's Stockport to Warrington line over the Manchester Ship Canal . was opened Latchford viaduct to carry the London and North Western Railway 's Stockport to Warrington line over the Manchester Ship Canal on 8 July 1893
-At the end of 2008 the Uzbek-Italian Joint Venture Roison-Candy was established by the Uzbek Limited Liability Company Roison Electronics with partnership of Candy Group . is Roison-Candy an Uzbek-Italian Joint Venture
-At the end of 2008 the Uzbek-Italian Joint Venture Roison-Candy was established by the Uzbek Limited Liability Company Roison Electronics with partnership of Candy Group . was established by Roison-Candy Roison Electronics with partnership of Candy Group At the end of 2008
-At the end of 2008 the Uzbek-Italian Joint Venture Roison-Candy was established by the Uzbek Limited Liability Company Roison Electronics with partnership of Candy Group . is Roison Electronics an Uzbek Limited Liability Company
-The weapons do not influence the other racers at all . do not influence at all The weapons the other racers
-Excluding the special editions , the 2004-2005 Ram SRT-10 came in three colors : Brilliant Black Crystal Pearl Coat , Bright Silver Metallic Clear Coat , and Flame Red Clear Coat . Excluding the special editions , came in the Ram SRT-10 three colors 2004-2005
-Excluding the special editions , the 2004-2005 Ram SRT-10 came in three colors : Brilliant Black Crystal Pearl Coat , Bright Silver Metallic Clear Coat , and Flame Red Clear Coat . came in the Ram SRT-10 Brilliant Black Crystal Pearl Coat 2004-2005
-Excluding the special editions , the 2004-2005 Ram SRT-10 came in three colors : Brilliant Black Crystal Pearl Coat , Bright Silver Metallic Clear Coat , and Flame Red Clear Coat . came in the Ram SRT-10 Bright Silver Metallic Clear Coat 2004-2005
-Excluding the special editions , the 2004-2005 Ram SRT-10 came in three colors : Brilliant Black Crystal Pearl Coat , Bright Silver Metallic Clear Coat , and Flame Red Clear Coat . came in the Ram SRT-10 Flame Red Clear Coat 2004-2005
-Excluding the special editions , the 2004-2005 Ram SRT-10 came in three colors : Brilliant Black Crystal Pearl Coat , Bright Silver Metallic Clear Coat , and Flame Red Clear Coat . has the Ram SRT-10 special editions 2004-2005
-On 15 January 1999 , Senchuk was appointed as governor of the Lviv region ; for some time he combined two posts . was appointed as Senchuk governor of the Lviv region On 15 January 1999
-On 15 January 1999 , Senchuk was appointed as governor of the Lviv region ; for some time he combined two posts . combined Senchuk two posts for some time
-The school was founded in 1851 as the German-English Academy by a group of Milwaukee German Americans that included educationist Peter Engelmann and hardware wholesaler William Frankfurth . was founded as The school the German-English Academy in Milwaukee in 1851
-The school was founded in 1851 as the German-English Academy by a group of Milwaukee German Americans that included educationist Peter Engelmann and hardware wholesaler William Frankfurth . was founded by The German-English Academy a group of Milwaukee German Americans in Milwaukee in 1851
-The school was founded in 1851 as the German-English Academy by a group of Milwaukee German Americans that included educationist Peter Engelmann and hardware wholesaler William Frankfurth . was The Milwaukee German Americans a group in Milwaukee in 1851
-The school was founded in 1851 as the German-English Academy by a group of Milwaukee German Americans that included educationist Peter Engelmann and hardware wholesaler William Frankfurth . was Peter Engelmann an educationist in Milwaukee in 1851
-The school was founded in 1851 as the German-English Academy by a group of Milwaukee German Americans that included educationist Peter Engelmann and hardware wholesaler William Frankfurth . was William Frankfurth a hardware wholesaler in Milwaukee in 1851
-The school was founded in 1851 as the German-English Academy by a group of Milwaukee German Americans that included educationist Peter Engelmann and hardware wholesaler William Frankfurth . included The group Peter Engelmann and William Frankfurth in Milwaukee in 1851
-Sligo town then became an incorporated municipal borough with a Royal Charter issued by the British King James I in 1613/14 . became Sligo town an incorporated municipal borough then
-Sligo town then became an incorporated municipal borough with a Royal Charter issued by the British King James I in 1613/14 . had Sligo town a Royal Charter
-Sligo town then became an incorporated municipal borough with a Royal Charter issued by the British King James I in 1613/14 . was issued by a Royal Charter the British King James I in 1613/14
-Sligo town then became an incorporated municipal borough with a Royal Charter issued by the British King James I in 1613/14 . was Sligo a town
-Sligo town then became an incorporated municipal borough with a Royal Charter issued by the British King James I in 1613/14 . is in King James I Britain
-Sligo town then became an incorporated municipal borough with a Royal Charter issued by the British King James I in 1613/14 . is King James I British
-That compared with an operating loss of $ 1.9 million on sales of $ 27.4 million in the year - earlier period . was on sales of an operating loss of $ 1.9 million $ 27.4 million in the year - earlier period
-That compared with an operating loss of $ 1.9 million on sales of $ 27.4 million in the year - earlier period . compared with That an operating loss of $ 1.9 million on sales of $ 27.4 million in the year - earlier period
-Greek and Roman pagans , who saw their relations with the gods in political and social terms , scorned the man who constantly trembled with fear at the thought of the gods , as a slave might fear a cruel and capricious master . saw their relations with the gods in Greek pagans political terms
-Greek and Roman pagans , who saw their relations with the gods in political and social terms , scorned the man who constantly trembled with fear at the thought of the gods , as a slave might fear a cruel and capricious master . saw their relations with the gods in Greek pagans social terms
-Greek and Roman pagans , who saw their relations with the gods in political and social terms , scorned the man who constantly trembled with fear at the thought of the gods , as a slave might fear a cruel and capricious master . saw their relations with the gods in Roman pagans political terms
-Greek and Roman pagans , who saw their relations with the gods in political and social terms , scorned the man who constantly trembled with fear at the thought of the gods , as a slave might fear a cruel and capricious master . saw their relations with the gods in Roman pagans social terms
-Greek and Roman pagans , who saw their relations with the gods in political and social terms , scorned the man who constantly trembled with fear at the thought of the gods , as a slave might fear a cruel and capricious master . had relations with Greek pagans the gods
-Greek and Roman pagans , who saw their relations with the gods in political and social terms , scorned the man who constantly trembled with fear at the thought of the gods , as a slave might fear a cruel and capricious master . had relations with Roman pagans the gods
-Greek and Roman pagans , who saw their relations with the gods in political and social terms , scorned the man who constantly trembled with fear at the thought of the gods , as a slave might fear a cruel and capricious master . scorned Greek pagans the man who constantly trembled with fear at the thought of the gods
-Greek and Roman pagans , who saw their relations with the gods in political and social terms , scorned the man who constantly trembled with fear at the thought of the gods , as a slave might fear a cruel and capricious master . scorned Roman pagans the man who constantly trembled with fear at the thought of the gods
-Greek and Roman pagans , who saw their relations with the gods in political and social terms , scorned the man who constantly trembled with fear at the thought of the gods , as a slave might fear a cruel and capricious master . trembled with fear at the man the thought of the gods constantly
-Greek and Roman pagans , who saw their relations with the gods in political and social terms , scorned the man who constantly trembled with fear at the thought of the gods , as a slave might fear a cruel and capricious master . might fear a slave a cruel master
-Greek and Roman pagans , who saw their relations with the gods in political and social terms , scorned the man who constantly trembled with fear at the thought of the gods , as a slave might fear a cruel and capricious master . might fear a slave a capricious master
-Greek and Roman pagans , who saw their relations with the gods in political and social terms , scorned the man who constantly trembled with fear at the thought of the gods , as a slave might fear a cruel and capricious master . trembled with fear as a slave might fear a cruel and capricious master at the man the thought of the gods constantly
-The neighborhood comprises an older industrial and residential harbor front area along the Kill Van Kull west of St. George . comprises The neighborhood an older industrial harbor front area along the Kill Van Kull west of St. George
-The neighborhood comprises an older industrial and residential harbor front area along the Kill Van Kull west of St. George . comprises The neighborhood an older residential harbor front area along the Kill Van Kull west of St. George
-The neighborhood comprises an older industrial and residential harbor front area along the Kill Van Kull west of St. George . is the Kill Van Kull west of St. George
-The department came under grant-in-aid scheme of Government of Karnataka in 1992 . came under The department grant-in-aid scheme of Government of Karnataka in 1992
-The department came under grant-in-aid scheme of Government of Karnataka in 1992 . had Government of Karnataka a grant-in-aid scheme
-The department came under grant-in-aid scheme of Government of Karnataka in 1992 . was of the Government Karnataka
-On a 394 - 21 roll call , the House adopted the underlying transportation measure . adopted On a 394 - 21 roll call the House the underlying transportation measure
-On a 394 - 21 roll call , the House adopted the underlying transportation measure . was underlying the transportation measure
-On a 394 - 21 roll call , the House adopted the underlying transportation measure . had the House a 394 - 21 roll call
-The second marital privilege cited by Mrs. Marcos protects confidential communications between spouses . cited Mrs. Marcos The second marital privilege
-The second marital privilege cited by Mrs. Marcos protects confidential communications between spouses . protects The second marital privilege confidential communications between spouses
-The second marital privilege cited by Mrs. Marcos protects confidential communications between spouses . are between confidential communications spouses
-The cockpit was protected from the engine by a firewall ahead of the wing center section where the fuel tanks were located . was a firewall ahead of the wing center section
-The cockpit was protected from the engine by a firewall ahead of the wing center section where the fuel tanks were located . were located the fuel tanks in the wing center section
-The cockpit was protected from the engine by a firewall ahead of the wing center section where the fuel tanks were located . was protected from The cockpit the engine
-The cockpit was protected from the engine by a firewall ahead of the wing center section where the fuel tanks were located . was protected by The cockpit a firewall
-In his 2010 book `` At Home '' , author Bill Bryson suggests Siddal may have suffered from poisoning , because she was a `` devoted swallower '' of Fowler 's Solution , a so-called complexion improver made from dilute arsenic . is Bill Bryson an author
-In his 2010 book `` At Home '' , author Bill Bryson suggests Siddal may have suffered from poisoning , because she was a `` devoted swallower '' of Fowler 's Solution , a so-called complexion improver made from dilute arsenic . is `` At Home '' a book of 2010
-In his 2010 book `` At Home '' , author Bill Bryson suggests Siddal may have suffered from poisoning , because she was a `` devoted swallower '' of Fowler 's Solution , a so-called complexion improver made from dilute arsenic . has author Bill Bryson 2010 book `` At Home ''
-In his 2010 book `` At Home '' , author Bill Bryson suggests Siddal may have suffered from poisoning , because she was a `` devoted swallower '' of Fowler 's Solution , a so-called complexion improver made from dilute arsenic . suggests author Bill Bryson Siddal may have suffered from poisoning , because she was a `` devoted swallower '' of Fowler 's Solution , a so-called complexion improver made from dilute arsenic In his 2010 book `` At Home ''
-In his 2010 book `` At Home '' , author Bill Bryson suggests Siddal may have suffered from poisoning , because she was a `` devoted swallower '' of Fowler 's Solution , a so-called complexion improver made from dilute arsenic . is Fowler 's Solution a so-called complexion improver
-In his 2010 book `` At Home '' , author Bill Bryson suggests Siddal may have suffered from poisoning , because she was a `` devoted swallower '' of Fowler 's Solution , a so-called complexion improver made from dilute arsenic . is made from Fowler 's Solution dilute arsenic
-In his 2010 book `` At Home '' , author Bill Bryson suggests Siddal may have suffered from poisoning , because she was a `` devoted swallower '' of Fowler 's Solution , a so-called complexion improver made from dilute arsenic . was Siddal a `` devoted swallower '' of Fowler 's Solution
-In his 2010 book `` At Home '' , author Bill Bryson suggests Siddal may have suffered from poisoning , because she was a `` devoted swallower '' of Fowler 's Solution , a so-called complexion improver made from dilute arsenic . may have suffered from Siddal poisoning
-In 2004 it was expected that redevelopment work in the remaining subway would probably obliterate what remains exist . will be in redevelopment work the remaining subway
-In 2004 it was expected that redevelopment work in the remaining subway would probably obliterate what remains exist . would probably obliterate redevelopment work what remains exist in the remaining subway
-In 2004 it was expected that redevelopment work in the remaining subway would probably obliterate what remains exist . was expected that it redevelopment work in the remaining subway would probably obliterate what remains exist In 2004
-The Shi'a praise Muhammad ibn Abu Bakr for his devotion to ` Ali and his resistance to all the other caliphs who the Shi'a believe to be usurpers . praise for his devotion to ` Ali The Shi'a Muhammad ibn Abu Bakr
-The Shi'a praise Muhammad ibn Abu Bakr for his devotion to ` Ali and his resistance to all the other caliphs who the Shi'a believe to be usurpers . praise for his resistance to all the other caliphs The Shi'a Muhammad ibn Abu Bakr
-The Shi'a praise Muhammad ibn Abu Bakr for his devotion to ` Ali and his resistance to all the other caliphs who the Shi'a believe to be usurpers . believe to be usurpers The Shi'a all the other caliphs
-The Shi'a praise Muhammad ibn Abu Bakr for his devotion to ` Ali and his resistance to all the other caliphs who the Shi'a believe to be usurpers . is Muhammad ibn Abu Bakr a caliph
-The two companies are teaming up again for the Future Vertical Lift prototype called SB-1 Defiant , where employees from both companies will work together . is called the Future Vertical Lift prototype SB-1 Defiant
-The two companies are teaming up again for the Future Vertical Lift prototype called SB-1 Defiant , where employees from both companies will work together . will work employees from both companies together
-The two companies are teaming up again for the Future Vertical Lift prototype called SB-1 Defiant , where employees from both companies will work together . are teaming up again The two companies for the Future Vertical Lift prototype
-Also buried at Three Rivers cemetery are his first wife , Blanche , several members of the Blick family who had also pioneered 1890s Rhodesia with Burnham , Roderick , his granddaughter Martha Burnham Burleigh , and `` Pete '' Ingram , the Montana cowboy who had survived the Shangani Patrol massacre along with Burnham . buried at Blanche Three Rivers cemetery
-Also buried at Three Rivers cemetery are his first wife , Blanche , several members of the Blick family who had also pioneered 1890s Rhodesia with Burnham , Roderick , his granddaughter Martha Burnham Burleigh , and `` Pete '' Ingram , the Montana cowboy who had survived the Shangani Patrol massacre along with Burnham . buried at several members of the Blick family Three Rivers cemetery
-Also buried at Three Rivers cemetery are his first wife , Blanche , several members of the Blick family who had also pioneered 1890s Rhodesia with Burnham , Roderick , his granddaughter Martha Burnham Burleigh , and `` Pete '' Ingram , the Montana cowboy who had survived the Shangani Patrol massacre along with Burnham . buried at Roderick Three Rivers cemetery
-Also buried at Three Rivers cemetery are his first wife , Blanche , several members of the Blick family who had also pioneered 1890s Rhodesia with Burnham , Roderick , his granddaughter Martha Burnham Burleigh , and `` Pete '' Ingram , the Montana cowboy who had survived the Shangani Patrol massacre along with Burnham . buried at Martha Burnham Burleigh Three Rivers cemetery
-Also buried at Three Rivers cemetery are his first wife , Blanche , several members of the Blick family who had also pioneered 1890s Rhodesia with Burnham , Roderick , his granddaughter Martha Burnham Burleigh , and `` Pete '' Ingram , the Montana cowboy who had survived the Shangani Patrol massacre along with Burnham . buried at `` Pete '' Ingram Three Rivers cemetery
-Also buried at Three Rivers cemetery are his first wife , Blanche , several members of the Blick family who had also pioneered 1890s Rhodesia with Burnham , Roderick , his granddaughter Martha Burnham Burleigh , and `` Pete '' Ingram , the Montana cowboy who had survived the Shangani Patrol massacre along with Burnham . survived `` Pete '' Ingram Shangani Patrol massacre
-Also buried at Three Rivers cemetery are his first wife , Blanche , several members of the Blick family who had also pioneered 1890s Rhodesia with Burnham , Roderick , his granddaughter Martha Burnham Burleigh , and `` Pete '' Ingram , the Montana cowboy who had survived the Shangani Patrol massacre along with Burnham . survived Burnham Shangani Patrol massacre
-Also buried at Three Rivers cemetery are his first wife , Blanche , several members of the Blick family who had also pioneered 1890s Rhodesia with Burnham , Roderick , his granddaughter Martha Burnham Burleigh , and `` Pete '' Ingram , the Montana cowboy who had survived the Shangani Patrol massacre along with Burnham . survived the Montana cowboy Shangani Patrol massacre
-This is usually caused by interacting inductive and capacitive elements in the oscillator . is usually caused by This interacting inductive and capacitive elements in the oscillator
-This is usually caused by interacting inductive and capacitive elements in the oscillator . are interacting in inductive and capacitive elements the oscillator
-The debt ceiling is scheduled to fall to $ 2.8 trillion from $ 2.87 trillion at midnight tonight . is scheduled to fall to The debt ceiling $ 2.8 trillion at midnight tonight
-The debt ceiling is scheduled to fall to $ 2.8 trillion from $ 2.87 trillion at midnight tonight . is scheduled to fall from The debt ceiling $ 2.87 trillion at midnight tonight
-The debt ceiling is scheduled to fall to $ 2.8 trillion from $ 2.87 trillion at midnight tonight . has debt a ceiling
-The final panel of the series shows her with a mask similar to Madame Masque , angrily refusing to see Spider-Man since she blames him for her scars . shows her with The final panel of the series a mask similar to Madame Masque
-The final panel of the series shows her with a mask similar to Madame Masque , angrily refusing to see Spider-Man since she blames him for her scars . shows her angrily refusing to see The final panel of the series Spider-Man
-The final panel of the series shows her with a mask similar to Madame Masque , angrily refusing to see Spider-Man since she blames him for her scars . blames for her scars she Spider-Man
-The final panel of the series shows her with a mask similar to Madame Masque , angrily refusing to see Spider-Man since she blames him for her scars . is angrily refusing since she she blames Spider-Man for her scars
-The final panel of the series shows her with a mask similar to Madame Masque , angrily refusing to see Spider-Man since she blames him for her scars . has Madame Masque a mask
-The final panel of the series shows her with a mask similar to Madame Masque , angrily refusing to see Spider-Man since she blames him for her scars . is shown with she a mask similar to Madame Masque in The final panel of the series
-He had been at the Battle of the Granicus River , and had believed that Memnon 's scorched Earth strategy would work here . had been at He the Battle of the Granicus River
-He had been at the Battle of the Granicus River , and had believed that Memnon 's scorched Earth strategy would work here . had believed that He Memnon 's scorched Earth strategy would work at the Battle of the Granicus River
-He had been at the Battle of the Granicus River , and had believed that Memnon 's scorched Earth strategy would work here . had Memnon a scorched Earth strategy
-A very early form of vaccination known as variolation was developed several thousand years ago in China . was developed an early form of vaccination several thousand years ago in China
-A very early form of vaccination known as variolation was developed several thousand years ago in China . is known as an early form of vaccination variolation
-A very early form of vaccination known as variolation was developed several thousand years ago in China . was developed variolation several thousand years ago in China
-Hoechst 33342 exhibits a 10 fold greater cell-permeability than H 33258 . exhibits Hoechst 33342 a 10 fold greater cell-permeability than H 33258
-Hoechst 33342 exhibits a 10 fold greater cell-permeability than H 33258 . exhibits a 10 fold greater cell-permeability than Hoechst 33342 H 33258
-This releases some of the water molecules into the bulk of the water , leading to an increase in entropy . releases This some of the water molecules into the bulk of the water
-This releases some of the water molecules into the bulk of the water , leading to an increase in entropy . is leading to This an increase in entropy
-This releases some of the water molecules into the bulk of the water , leading to an increase in entropy . is leading to releasing some of the water molecules into the bulk of the water an increase in entropy
-The Bears would have to wait until 2000 to play another international , when they played France in the lead-up to the 2000 Rugby League World Cup . would have to wait to play The Bears another international until 2000
-The Bears would have to wait until 2000 to play another international , when they played France in the lead-up to the 2000 Rugby League World Cup . played The Bears France in 2000
-The Bears would have to wait until 2000 to play another international , when they played France in the lead-up to the 2000 Rugby League World Cup . played in the lead-up to The Bears the 2000 Rugby League World Cup in 2000
-Historical buildings and monuments in Meaux are mainly located in the old city , inside the old defensive walls , still nowadays partially kept thanks to an important segment of the original surrounding wall from the Gallo-Roman period . are mainly located in Historical buildings the old city in Meaux
-Historical buildings and monuments in Meaux are mainly located in the old city , inside the old defensive walls , still nowadays partially kept thanks to an important segment of the original surrounding wall from the Gallo-Roman period . are mainly located in monuments the old city in Meaux
-Historical buildings and monuments in Meaux are mainly located in the old city , inside the old defensive walls , still nowadays partially kept thanks to an important segment of the original surrounding wall from the Gallo-Roman period . are mainly located in the old city inside Historical buildings the old defensive walls in Meaux
-Historical buildings and monuments in Meaux are mainly located in the old city , inside the old defensive walls , still nowadays partially kept thanks to an important segment of the original surrounding wall from the Gallo-Roman period . are mainly located in the old city inside monuments the old defensive walls in Meaux
-Historical buildings and monuments in Meaux are mainly located in the old city , inside the old defensive walls , still nowadays partially kept thanks to an important segment of the original surrounding wall from the Gallo-Roman period . is from an important segment of the original surrounding wall the Gallo-Roman period
-This `` 1-in-200 year event '' flooded major intersections and underpasses and damaged both residential and commercial properties . flooded This `` 1-in-200 year event '' major intersections
-This `` 1-in-200 year event '' flooded major intersections and underpasses and damaged both residential and commercial properties . damaged This `` 1-in-200 year event '' residential properties
-This `` 1-in-200 year event '' flooded major intersections and underpasses and damaged both residential and commercial properties . flooded This `` 1-in-200 year event '' major underpasses
-This `` 1-in-200 year event '' flooded major intersections and underpasses and damaged both residential and commercial properties . damaged This `` 1-in-200 year event '' commercial properties
-But declining issues on the New York Stock Exchange outnumbered gainers 774 to 684 , and broader market indexes were virtually unchanged . were broader market indexes virtually unchanged
-But declining issues on the New York Stock Exchange outnumbered gainers 774 to 684 , and broader market indexes were virtually unchanged . outnumbered declining issues gainers on the New York Stock Exchange
-But declining issues on the New York Stock Exchange outnumbered gainers 774 to 684 , and broader market indexes were virtually unchanged . numbered declining issues 774 on the New York Stock Exchange
-But declining issues on the New York Stock Exchange outnumbered gainers 774 to 684 , and broader market indexes were virtually unchanged . numbered gainers 684 on the New York Stock Exchange
-But declining issues on the New York Stock Exchange outnumbered gainers 774 to 684 , and broader market indexes were virtually unchanged . outnumbered 774 684
-At this point , the player confronts a boss , who is usually considerably larger and tougher than regular enemies . confronts the player a boss At this point
-At this point , the player confronts a boss , who is usually considerably larger and tougher than regular enemies . is usually the boss considerably larger than regular enemies At this point
-At this point , the player confronts a boss , who is usually considerably larger and tougher than regular enemies . is usually the boss considerably tougher than regular enemies At this point
-Arminius , leader of the Cherusci and allies , now had a free hand . is Arminius leader of the Cherusci
-Arminius , leader of the Cherusci and allies , now had a free hand . is Arminius leader of the allies
-Arminius , leader of the Cherusci and allies , now had a free hand . had Arminius a free hand
-In 2005 , Kesey 's son Zane asked a friend , Matthew Rick , also known as Shady Backflash , to put on a 40th anniversary of his father 's Acid Tests . asked to put on a 40th anniversary of his father 's Acid Tests Kesey 's son Zane Matthew Rick In 2005
-In 2005 , Kesey 's son Zane asked a friend , Matthew Rick , also known as Shady Backflash , to put on a 40th anniversary of his father 's Acid Tests . is son of Zane Kesey
-In 2005 , Kesey 's son Zane asked a friend , Matthew Rick , also known as Shady Backflash , to put on a 40th anniversary of his father 's Acid Tests . has Kesey a son
-In 2005 , Kesey 's son Zane asked a friend , Matthew Rick , also known as Shady Backflash , to put on a 40th anniversary of his father 's Acid Tests . is a friend of Matthew Rick Zane
-In 2005 , Kesey 's son Zane asked a friend , Matthew Rick , also known as Shady Backflash , to put on a 40th anniversary of his father 's Acid Tests . is also known as Matthew Rick Shady Backflash
-In 2005 , Kesey 's son Zane asked a friend , Matthew Rick , also known as Shady Backflash , to put on a 40th anniversary of his father 's Acid Tests . is father of Kesey Zane
-In 2005 , Kesey 's son Zane asked a friend , Matthew Rick , also known as Shady Backflash , to put on a 40th anniversary of his father 's Acid Tests . had Kesey Acid Tests
-In 2005 , Kesey 's son Zane asked a friend , Matthew Rick , also known as Shady Backflash , to put on a 40th anniversary of his father 's Acid Tests . had Zane 's father Acid Tests
-In 2005 , Kesey 's son Zane asked a friend , Matthew Rick , also known as Shady Backflash , to put on a 40th anniversary of his father 's Acid Tests . will be having his father 's Acid Tests a 40th anniversary In 2005
-He further stated that Hauptmann looked different and that `` John '' was actually dead because he had been murdered by his confederates . further stated that He Hauptmann looked different
-He further stated that Hauptmann looked different and that `` John '' was actually dead because he had been murdered by his confederates . further stated that He `` John '' was actually dead
-He further stated that Hauptmann looked different and that `` John '' was actually dead because he had been murdered by his confederates . further stated that He `` John '' had been murdered by his confederates
-He further stated that Hauptmann looked different and that `` John '' was actually dead because he had been murdered by his confederates . had `` John '' confederates
-He showed up with a carpenter 's level , carefully measured every surface and showed how the apparent shrinkage was caused by the perspective . showed up with He a carpenter 's level
-He showed up with a carpenter 's level , carefully measured every surface and showed how the apparent shrinkage was caused by the perspective . carefully measured He every surface
-He showed up with a carpenter 's level , carefully measured every surface and showed how the apparent shrinkage was caused by the perspective . showed up with a carpenter 's level , carefully measured He every surface
-He showed up with a carpenter 's level , carefully measured every surface and showed how the apparent shrinkage was caused by the perspective . showed He how the apparent shrinkage was caused by the perspective
-He showed up with a carpenter 's level , carefully measured every surface and showed how the apparent shrinkage was caused by the perspective . was caused by the apparent shrinkage the perspective
-In April 2014 , Zane , along with friend Derek Stevens , announced a Kickstarter to fund a 50th anniversary Furthur Bus Trip , offering donors a chance to ride the famous bus . announced a Kickstarter to fund Zane a 50th anniversary Furthur Bus Trip In April 2014
-In April 2014 , Zane , along with friend Derek Stevens , announced a Kickstarter to fund a 50th anniversary Furthur Bus Trip , offering donors a chance to ride the famous bus . announced a Kickstarter to fund Derek Stevens a 50th anniversary Furthur Bus Trip In April 2014
-In April 2014 , Zane , along with friend Derek Stevens , announced a Kickstarter to fund a 50th anniversary Furthur Bus Trip , offering donors a chance to ride the famous bus . was friend of Derek Stevens Zane
-In April 2014 , Zane , along with friend Derek Stevens , announced a Kickstarter to fund a 50th anniversary Furthur Bus Trip , offering donors a chance to ride the famous bus . announced along with Zane friend Derek Stevens In April 2014
-In April 2014 , Zane , along with friend Derek Stevens , announced a Kickstarter to fund a 50th anniversary Furthur Bus Trip , offering donors a chance to ride the famous bus . were offered donors a chance to ride the famous bus
-In April 2014 , Zane , along with friend Derek Stevens , announced a Kickstarter to fund a 50th anniversary Furthur Bus Trip , offering donors a chance to ride the famous bus . was the famous bus a 50th anniversary Furthur Bus Trip
-In April 2014 , Zane , along with friend Derek Stevens , announced a Kickstarter to fund a 50th anniversary Furthur Bus Trip , offering donors a chance to ride the famous bus . were offered donors a chance to ride on a 50th anniversary Furthur Bus Trip
-In April 2014 , Zane , along with friend Derek Stevens , announced a Kickstarter to fund a 50th anniversary Furthur Bus Trip , offering donors a chance to ride the famous bus . had Furthur Bus a 50th anniversary In 2014
-It includes thirty-two elementary schools , nine middle schools , ten high schools and one charter school . includes It thirty-two elementary schools
-It includes thirty-two elementary schools , nine middle schools , ten high schools and one charter school . includes It nine middle schools
-It includes thirty-two elementary schools , nine middle schools , ten high schools and one charter school . includes It ten high schools
-It includes thirty-two elementary schools , nine middle schools , ten high schools and one charter school . includes It one charter school
-Millais painted daily into the winter putting lamps under the tub to warm the water . painted Millais daily into the winter
-Millais painted daily into the winter putting lamps under the tub to warm the water . was putting to warm the water Millais lamps under the tub into the winter
-Crime Master slashes her when he finds out about this , but before passing out , she alerts the FBI that he is in league with Otto Octavius and his inhumane experiments . slashes Crime Master her when he finds out about this
-Crime Master slashes her when he finds out about this , but before passing out , she alerts the FBI that he is in league with Otto Octavius and his inhumane experiments . finds out about Crime Master this
-Crime Master slashes her when he finds out about this , but before passing out , she alerts the FBI that he is in league with Otto Octavius and his inhumane experiments . alerts that he is in league with Otto Octavius and his inhumane experiments she the FBI before passing out
-Crime Master slashes her when he finds out about this , but before passing out , she alerts the FBI that he is in league with Otto Octavius and his inhumane experiments . was passing out she
-Crime Master slashes her when he finds out about this , but before passing out , she alerts the FBI that he is in league with Otto Octavius and his inhumane experiments . has Otto Octavius inhumane experiments
-But there have been problems with chemical sprays damaging plants ' female reproductive organs and concern for the toxicity of such chemical sprays to humans , animals and beneficial insects . were with chemical sprays damaging problems plants ' female reproductive organs
-But there have been problems with chemical sprays damaging plants ' female reproductive organs and concern for the toxicity of such chemical sprays to humans , animals and beneficial insects . was for concern the toxicity of such chemical sprays to humans
-But there have been problems with chemical sprays damaging plants ' female reproductive organs and concern for the toxicity of such chemical sprays to humans , animals and beneficial insects . was for concern the toxicity of such chemical sprays to animals
-But there have been problems with chemical sprays damaging plants ' female reproductive organs and concern for the toxicity of such chemical sprays to humans , animals and beneficial insects . was for concern the toxicity of such chemical sprays to beneficial insects
-But there have been problems with chemical sprays damaging plants ' female reproductive organs and concern for the toxicity of such chemical sprays to humans , animals and beneficial insects . have plants female reproductive organs
-Ms. Shere has offered a $ 500 reward for the book 's return but figures she 'll have to reinvent many recipes from scratch . has offered for the book 's return Ms. Shere a $ 500 reward
-Ms. Shere has offered a $ 500 reward for the book 's return but figures she 'll have to reinvent many recipes from scratch . figures Ms. Shere she 'll have to reinvent many recipes from scratch
-Ms. Shere has offered a $ 500 reward for the book 's return but figures she 'll have to reinvent many recipes from scratch . has the book many recipes
-He was separated from his family as a young boy during the Cuban Revolution when he was sent to the United States to live with a foster family through an outreach program while his father was placed in a Cuban prison . was separated from He his family the Cuban Revolution
-He was separated from his family as a young boy during the Cuban Revolution when he was sent to the United States to live with a foster family through an outreach program while his father was placed in a Cuban prison . was sent to He the United States
-He was separated from his family as a young boy during the Cuban Revolution when he was sent to the United States to live with a foster family through an outreach program while his father was placed in a Cuban prison . was sent to the United States to live with he a foster family
-He was separated from his family as a young boy during the Cuban Revolution when he was sent to the United States to live with a foster family through an outreach program while his father was placed in a Cuban prison . was sent to the United States to live with a foster family through He an outreach program
-He was separated from his family as a young boy during the Cuban Revolution when he was sent to the United States to live with a foster family through an outreach program while his father was placed in a Cuban prison . was He a young boy the Cuban Revolution
-He was separated from his family as a young boy during the Cuban Revolution when he was sent to the United States to live with a foster family through an outreach program while his father was placed in a Cuban prison . was placed in his father a Cuban prison the Cuban Revolution
-He was separated from his family as a young boy during the Cuban Revolution when he was sent to the United States to live with a foster family through an outreach program while his father was placed in a Cuban prison . had a He foster family
-He was separated from his family as a young boy during the Cuban Revolution when he was sent to the United States to live with a foster family through an outreach program while his father was placed in a Cuban prison . was in He an outreach program
-The first part , consisting of $ 151 million of 13 3\/4 % senior subordinated reset notes , was priced at 99.75 . was priced at 151 million of 13 3\/4 % senior subordinated reset notes $ $ 99.75
-The first part , consisting of $ 151 million of 13 3\/4 % senior subordinated reset notes , was priced at 99.75 . consisted of The first part $ 151 million of 13 3\/4 % senior subordinated reset notes
-The first part , consisting of $ 151 million of 13 3\/4 % senior subordinated reset notes , was priced at 99.75 . were priced at the senior subordinated reset notes 99.75
-During the language shift , however , the receding language A still influences language B . still influences the receding language A language B
-In 1918 , the municipality was renamed Jones in honor of American congressman William Jones , who authored the Philippine Autonomy Act of 1916 that provided for greater autonomy for the Philippines under American colonial rule . was renamed the municipality Jones In 1918
-In 1918 , the municipality was renamed Jones in honor of American congressman William Jones , who authored the Philippine Autonomy Act of 1916 that provided for greater autonomy for the Philippines under American colonial rule . was renamed in honor of the municipality American congressman William Jones In 1918
-In 1918 , the municipality was renamed Jones in honor of American congressman William Jones , who authored the Philippine Autonomy Act of 1916 that provided for greater autonomy for the Philippines under American colonial rule . was William Jones a congressman of America
-In 1918 , the municipality was renamed Jones in honor of American congressman William Jones , who authored the Philippine Autonomy Act of 1916 that provided for greater autonomy for the Philippines under American colonial rule . authored American congressman William Jones the Philippine Autonomy Act of 1916
-In 1918 , the municipality was renamed Jones in honor of American congressman William Jones , who authored the Philippine Autonomy Act of 1916 that provided for greater autonomy for the Philippines under American colonial rule . was of the Philippine Autonomy Act 1916
-In 1918 , the municipality was renamed Jones in honor of American congressman William Jones , who authored the Philippine Autonomy Act of 1916 that provided for greater autonomy for the Philippines under American colonial rule . provided for the Philippine Autonomy Act of 1916 greater autonomy for the Philippines under American colonial rule
-In 1918 , the municipality was renamed Jones in honor of American congressman William Jones , who authored the Philippine Autonomy Act of 1916 that provided for greater autonomy for the Philippines under American colonial rule . was under the Philippines American colonial rule
-The Tsar chose to accept the draft authored by Peter Kharitonov , Deputy State Secretary of the State Chancellory , as the basis for the new constitution . chose to accept The Tsar the draft authored by Peter Kharitonov
-The Tsar chose to accept the draft authored by Peter Kharitonov , Deputy State Secretary of the State Chancellory , as the basis for the new constitution . is Peter Kharitonov Deputy State Secretary of the State Chancellory
-The Tsar chose to accept the draft authored by Peter Kharitonov , Deputy State Secretary of the State Chancellory , as the basis for the new constitution . was accept as the draft authored by Peter Kharitonov the basis for the new constitution
-The Tsar chose to accept the draft authored by Peter Kharitonov , Deputy State Secretary of the State Chancellory , as the basis for the new constitution . chose to accept The Tsar the draft as the basis for the new constitution
-The Tsar chose to accept the draft authored by Peter Kharitonov , Deputy State Secretary of the State Chancellory , as the basis for the new constitution . chose to accept the draft authored by Peter Kharitonov as The Tsar the basis for the new constitution
-The Tsar chose to accept the draft authored by Peter Kharitonov , Deputy State Secretary of the State Chancellory , as the basis for the new constitution . chose to accept The Tsar the draft by Peter Kharitonov as the basis for the new constitution
-The Tsar chose to accept the draft authored by Peter Kharitonov , Deputy State Secretary of the State Chancellory , as the basis for the new constitution . chose to accept as the basis for the new constitution The Tsar the draft authored by Peter Kharitonov
-In 1862 , Henry Letheby obtained a partly conductive material by anodic oxidation of aniline in sulfuric acid . obtained by anodic oxidation of aniline in sulfuric acid Henry Letheby a partly conductive material In 1862
-Advancing issues on the Big Board surged ahead of decliners 1,111 to surged ahead of Advancing issues decliners on the Big Board
-Advancing issues on the Big Board surged ahead of decliners 1,111 to surged Advancing issues 1,111 on the Big Board
-The Crybaby is the twelfth album by Melvins , released in 2000 through Ipecac Recordings , and the last part of a trilogy : `` The Maggot , '' `` The Bootlicker '' and `` The Crybaby . '' is The Crybaby the twelfth album by Melvins
-The Crybaby is the twelfth album by Melvins , released in 2000 through Ipecac Recordings , and the last part of a trilogy : `` The Maggot , '' `` The Bootlicker '' and `` The Crybaby . '' was released through The Crybaby Ipecac Recordings in 2000
-The Crybaby is the twelfth album by Melvins , released in 2000 through Ipecac Recordings , and the last part of a trilogy : `` The Maggot , '' `` The Bootlicker '' and `` The Crybaby . '' is The Crybaby the last part of a trilogy
-The Crybaby is the twelfth album by Melvins , released in 2000 through Ipecac Recordings , and the last part of a trilogy : `` The Maggot , '' `` The Bootlicker '' and `` The Crybaby . '' is `` The Maggot '' part of a trilogy
-The Crybaby is the twelfth album by Melvins , released in 2000 through Ipecac Recordings , and the last part of a trilogy : `` The Maggot , '' `` The Bootlicker '' and `` The Crybaby . '' is `` The Bootlicker '' part of a trilogy
-The Crybaby is the twelfth album by Melvins , released in 2000 through Ipecac Recordings , and the last part of a trilogy : `` The Maggot , '' `` The Bootlicker '' and `` The Crybaby . '' is `` The Crybaby '' part of a trilogy
-The Crybaby is the twelfth album by Melvins , released in 2000 through Ipecac Recordings , and the last part of a trilogy : `` The Maggot , '' `` The Bootlicker '' and `` The Crybaby . '' is The trilogy `` The Maggot , '' `` The Bootlicker '' and `` The Crybaby ''
-Australian Amber Wing was the first woman to land a ts fs wake to wake 900 . is Amber Wing Australian
-Australian Amber Wing was the first woman to land a ts fs wake to wake 900 . was the first woman Amber Wing to land a ts fs wake to wake 900
-The Prahran and Malvern Tramways Trust opened a line from Alcand Street , St Kilda to Hawthorn Road , Caulfield North along Carlisle Street/Balaclava Road on 12 April 1913 . opened The Prahran and Malvern Tramways Trust a line from Alcand Street , St Kilda on 12 April 1913
-The Prahran and Malvern Tramways Trust opened a line from Alcand Street , St Kilda to Hawthorn Road , Caulfield North along Carlisle Street/Balaclava Road on 12 April 1913 . opened The Prahran and Malvern Tramways Trust a line to Hawthorn Road , Caulfield North on 12 April 1913
-The Prahran and Malvern Tramways Trust opened a line from Alcand Street , St Kilda to Hawthorn Road , Caulfield North along Carlisle Street/Balaclava Road on 12 April 1913 . opened The Prahran and Malvern Tramways Trust a line along Carlisle Street/Balaclava Road on 12 April 1913
-The Prahran and Malvern Tramways Trust opened a line from Alcand Street , St Kilda to Hawthorn Road , Caulfield North along Carlisle Street/Balaclava Road on 12 April 1913 . is in Alcand Street St Kilda
-The Prahran and Malvern Tramways Trust opened a line from Alcand Street , St Kilda to Hawthorn Road , Caulfield North along Carlisle Street/Balaclava Road on 12 April 1913 . is in Hawthorn Road Caulfield North
-The doctor , Erasistratus , suspects love is behind Antiochus 's suffering . is Erasistratus The doctor
-The doctor , Erasistratus , suspects love is behind Antiochus 's suffering . is suffering Antiochus
-The doctor , Erasistratus , suspects love is behind Antiochus 's suffering . suspects love is behind The doctor Antiochus 's suffering
-During the celebrations of his Silver Jubilee in November 1955 , Haile Selassie introduced a revised constitution , whereby he retained effective power , while extending political participation to the people by allowing the lower house of parliament to become an elected body . introduced Haile Selassie a revised constitution in November 1955
-During the celebrations of his Silver Jubilee in November 1955 , Haile Selassie introduced a revised constitution , whereby he retained effective power , while extending political participation to the people by allowing the lower house of parliament to become an elected body . retained Haile Selassie effective power while extending political participation to the people by allowing the lower house of parliament to become an elected body in November 1955
-During the celebrations of his Silver Jubilee in November 1955 , Haile Selassie introduced a revised constitution , whereby he retained effective power , while extending political participation to the people by allowing the lower house of parliament to become an elected body . were Haile Selassie celebrations of his Silver Jubilee in November 1955
-As a result , environmental factors are also understood to contribute heavily to the strength of intimate relationships . are also understood to environmental factors contribute heavily to the strength of intimate relationships
-As a result , environmental factors are also understood to contribute heavily to the strength of intimate relationships . are also understood to contribute heavily to environmental factors the strength of intimate relationships
-In line this with , Edwards 's early years , as seen in Comico 's graphic novel , were re-imagined in the comic book mini-series , `` Robotech : From the Stars '' , published WildStorm . were re-imagined in Edwards 's early years the comic book mini-series , `` Robotech : From the Stars ''
-In line this with , Edwards 's early years , as seen in Comico 's graphic novel , were re-imagined in the comic book mini-series , `` Robotech : From the Stars '' , published WildStorm . was published by `` Robotech : From the Stars '' WildStorm
-In line this with , Edwards 's early years , as seen in Comico 's graphic novel , were re-imagined in the comic book mini-series , `` Robotech : From the Stars '' , published WildStorm . is `` Robotech : From the Stars '' a comic book mini-series
-In line this with , Edwards 's early years , as seen in Comico 's graphic novel , were re-imagined in the comic book mini-series , `` Robotech : From the Stars '' , published WildStorm . were seen in Edwards 's early years Comico 's graphic novel
-In line this with , Edwards 's early years , as seen in Comico 's graphic novel , were re-imagined in the comic book mini-series , `` Robotech : From the Stars '' , published WildStorm . had Comico a graphic novel
-In line this with , Edwards 's early years , as seen in Comico 's graphic novel , were re-imagined in the comic book mini-series , `` Robotech : From the Stars '' , published WildStorm . had Edwards early years
-State Senator J.E. `` Buster '' Brown , a Republican who is running for Texas attorney general , introduced the bill . is J.E. `` Buster '' Brown a State Senator in Texas
-State Senator J.E. `` Buster '' Brown , a Republican who is running for Texas attorney general , introduced the bill . is J.E. `` Buster '' Brown a Republican
-State Senator J.E. `` Buster '' Brown , a Republican who is running for Texas attorney general , introduced the bill . is running for J.E. `` Buster '' Brown attorney general for Texas
-State Senator J.E. `` Buster '' Brown , a Republican who is running for Texas attorney general , introduced the bill . introduced J.E. `` Buster '' Brown the bill
-State Senator J.E. `` Buster '' Brown , a Republican who is running for Texas attorney general , introduced the bill . is J.E. Brown `` Buster ''
-The body was made largely of lightweight carbon fiber and Kevlar , known for its strength , and lightness . was made largely of The body lightweight carbon fiber and Kevlar
-The body was made largely of lightweight carbon fiber and Kevlar , known for its strength , and lightness . is known for its carbon fiber and Kevlar strength
-The body was made largely of lightweight carbon fiber and Kevlar , known for its strength , and lightness . is carbon fiber and Kevlar lightweight
-The body was made largely of lightweight carbon fiber and Kevlar , known for its strength , and lightness . was made of The body carbon fiber and Kevlar
-The Nazis did however permit a single dress rehearsal in Salzburg , conducted by Clemens Krauss on 16 August , in order that Strauss and an invited audience could hear the work performed . did however permit The Nazis a single dress rehearsal in Salzburg
-The Nazis did however permit a single dress rehearsal in Salzburg , conducted by Clemens Krauss on 16 August , in order that Strauss and an invited audience could hear the work performed . was a single dress rehearsal in Salzburg
-The Nazis did however permit a single dress rehearsal in Salzburg , conducted by Clemens Krauss on 16 August , in order that Strauss and an invited audience could hear the work performed . was conducted by a single dress rehearsal Clemens Krauss in Salzburg on 16 August
-The Nazis did however permit a single dress rehearsal in Salzburg , conducted by Clemens Krauss on 16 August , in order that Strauss and an invited audience could hear the work performed . was in order that a single dress rehearsal in Salzburg Strauss could hear the work performed
-The Nazis did however permit a single dress rehearsal in Salzburg , conducted by Clemens Krauss on 16 August , in order that Strauss and an invited audience could hear the work performed . was in order that a single dress rehearsal in Salzburg an invited audience could hear the work performed
-The Nazis did however permit a single dress rehearsal in Salzburg , conducted by Clemens Krauss on 16 August , in order that Strauss and an invited audience could hear the work performed . could hear Strauss the work performed at a single dress rehearsal in Salzburg on 16 August
-The Nazis did however permit a single dress rehearsal in Salzburg , conducted by Clemens Krauss on 16 August , in order that Strauss and an invited audience could hear the work performed . could hear an invited audience the work performed at a single dress rehearsal in Salzburg on 16 August
-Byers does not oppose the concept of global citizenship , however he criticizes potential implications of the term depending on one 's definition of it , such as ones that provide support for the `` ruthlessly capitalist economic system that now dominates the planet . '' does not oppose Byers the concept of global citizenship
-Byers does not oppose the concept of global citizenship , however he criticizes potential implications of the term depending on one 's definition of it , such as ones that provide support for the `` ruthlessly capitalist economic system that now dominates the planet . '' criticizes Byers potential implications of the term depending on one 's definition of it
-Byers does not oppose the concept of global citizenship , however he criticizes potential implications of the term depending on one 's definition of it , such as ones that provide support for the `` ruthlessly capitalist economic system that now dominates the planet . '' criticizes Byers the potential implications that provide support for the `` ruthlessly capitalist economic system that now dominates the planet . ''
-Byers does not oppose the concept of global citizenship , however he criticizes potential implications of the term depending on one 's definition of it , such as ones that provide support for the `` ruthlessly capitalist economic system that now dominates the planet . '' are provide support for the `` ruthlessly capitalist economic system that now dominates the planet . '' potential implications of global citizenship
-Each of the programs uses a combination of funding priorities and geographic requirements to select grants , described on the foundation 's web site . uses Each of the programs a combination of funding priorities and geographic requirements to select grants
-Each of the programs uses a combination of funding priorities and geographic requirements to select grants , described on the foundation 's web site . are described the combination of funding priorities and geographic requirements on the foundation 's web site
-Local football team Ammanford A.F.C. play in the Welsh Football League Second Division , while rugby union team Ammanford RFC were formed in 1887 and play in the Welsh Rugby Union leagues . play in Local football team Ammanford A.F.C. the Welsh Football League Second Division
-Local football team Ammanford A.F.C. play in the Welsh Football League Second Division , while rugby union team Ammanford RFC were formed in 1887 and play in the Welsh Rugby Union leagues . play in rugby union team Ammanford RFC the Welsh Rugby Union leagues
-Local football team Ammanford A.F.C. play in the Welsh Football League Second Division , while rugby union team Ammanford RFC were formed in 1887 and play in the Welsh Rugby Union leagues . were formed in rugby union team Ammanford RFC 1887
-Local football team Ammanford A.F.C. play in the Welsh Football League Second Division , while rugby union team Ammanford RFC were formed in 1887 and play in the Welsh Rugby Union leagues . is Ammanford A.F.C. a Local football team
-Local football team Ammanford A.F.C. play in the Welsh Football League Second Division , while rugby union team Ammanford RFC were formed in 1887 and play in the Welsh Rugby Union leagues . is Ammanford RFC a rugby union team
-He was also able to more easily control his animal instincts after this second mutation . was able to control He his animal instincts
-He was also able to more easily control his animal instincts after this second mutation . had He a second mutation He
-He was also able to more easily control his animal instincts after this second mutation . has He animal instincts
-He was also able to more easily control his animal instincts after this second mutation . was also able to more easily control He his animal instincts
-A year later , he was appointed Attorney-General for Ireland and on this occasion was sworn of the Privy Council of Ireland . was appointed he Attorney-General for Ireland A year later
-A year later , he was appointed Attorney-General for Ireland and on this occasion was sworn of the Privy Council of Ireland . was sworn of he the Privy Council of Ireland A year later
-It hosts the `` Zomercarnaval '' , the second largest Caribbean carnival in Europe , originally called the Antillean carnival . hosts It the `` Zomercarnaval ''
-It hosts the `` Zomercarnaval '' , the second largest Caribbean carnival in Europe , originally called the Antillean carnival . is the second largest the `` Zomercarnaval '' Caribbean carnival in Europe
-It hosts the `` Zomercarnaval '' , the second largest Caribbean carnival in Europe , originally called the Antillean carnival . was originally called the `` Zomercarnaval '' the Antillean carnival
-It hosts the `` Zomercarnaval '' , the second largest Caribbean carnival in Europe , originally called the Antillean carnival . is in the `` Zomercarnaval '' Europe
-Of the agency 's 2,750 staff members , 230 are in the field working on actual projects , such as literacy and oceanographic research . has the agency 2,750 staff members
-Of the agency 's 2,750 staff members , 230 are in the field working on actual projects , such as literacy and oceanographic research . are working on 230 Of the agency 's staff members actual projects in the field
-Of the agency 's 2,750 staff members , 230 are in the field working on actual projects , such as literacy and oceanographic research . are working on staff members Of the agency literacy research projects in the field
-Of the agency 's 2,750 staff members , 230 are in the field working on actual projects , such as literacy and oceanographic research . are working on staff members Of the agency oceanographic research projects in the field
-Of the agency 's 2,750 staff members , 230 are in the field working on actual projects , such as literacy and oceanographic research . are such as actual projects literacy research
-Of the agency 's 2,750 staff members , 230 are in the field working on actual projects , such as literacy and oceanographic research . are such as actual projects oceanographic research
-It is possible that , in perpetuating such myths , the ground is being laid for the arrest of opposition activists on the ground of terrorism . is being laid for the ground the arrest of opposition activists
-It is possible that , in perpetuating such myths , the ground is being laid for the arrest of opposition activists on the ground of terrorism . will be on the ground of the arrest of opposition activists terrorism
-It is possible that , in perpetuating such myths , the ground is being laid for the arrest of opposition activists on the ground of terrorism . are perpetuating such myths
-It is possible that , in perpetuating such myths , the ground is being laid for the arrest of opposition activists on the ground of terrorism . in perpetuating such myths It is possible that the ground is being laid for the arrest of opposition activists on the ground of terrorism
-Hence it can be represented by the integer notation . can Hence be represented by it the integer notation
-In 1891 , the academy moved to the German-English Academy Building in downtown Milwaukee . moved to the academy the German-English Academy Building in downtown Milwaukee In 1891
-In 1891 , the academy moved to the German-English Academy Building in downtown Milwaukee . is in the German-English Academy Building downtown Milwaukee
-Deseret , with about $ 100 million in assets , is the parent of the Deseret Bank , which has six offices and headquarters at Pleasant Grove , Utah . is with Deseret about $ 100 million in assets
-Deseret , with about $ 100 million in assets , is the parent of the Deseret Bank , which has six offices and headquarters at Pleasant Grove , Utah . is the parent of Deseret the Deseret Bank
-Deseret , with about $ 100 million in assets , is the parent of the Deseret Bank , which has six offices and headquarters at Pleasant Grove , Utah . has the Deseret Bank six offices
-Deseret , with about $ 100 million in assets , is the parent of the Deseret Bank , which has six offices and headquarters at Pleasant Grove , Utah . has the Deseret Bank headquarters at Pleasant Grove , Utah
-Deseret , with about $ 100 million in assets , is the parent of the Deseret Bank , which has six offices and headquarters at Pleasant Grove , Utah . is in Pleasant Grove Utah
-In England , emphasis was placed on the orientation of the chapels to the east . was placed on emphasis the orientation of the chapels to the east In England
-On one occasion the lamps went out and the water became icy cold . went out the lamps On one occasion
-On one occasion the lamps went out and the water became icy cold . became icy cold the water On one occasion
-He probably saw active service as a soldier for the Scottish forces in The Netherlands in the later 1570s , although there is no certain documentary evidence of this . probably saw active service as He a soldier for the Scottish forces in The Netherlands in the later 1570s
-He probably saw active service as a soldier for the Scottish forces in The Netherlands in the later 1570s , although there is no certain documentary evidence of this . is there no certain documentary evidence of this
-He probably saw active service as a soldier for the Scottish forces in The Netherlands in the later 1570s , although there is no certain documentary evidence of this . is there no certain documentary evidence that He saw active service as a soldier for the Scottish forces in The Netherlands in the later 1570s
-The 2005 model introduced a third row of seats to the Pathfinder line for the first time . introduced to the Pathfinder line The 2005 model a third row of seats for the first time
-The 2005 model introduced a third row of seats to the Pathfinder line for the first time . was in a third row of seats the Pathfinder model in 2005
-US 258 and the two state highways cross the Tar River on the freeway , then exit US 64 onto Mutual Boulevard at a partial interchange on the east side of the river in Princeville . cross US 258 and the two state highways the Tar River on the freeway , then exit US 64 onto Mutual Boulevard at a partial interchange on the east side of the river in Princeville
-US 258 and the two state highways cross the Tar River on the freeway , then exit US 64 onto Mutual Boulevard at a partial interchange on the east side of the river in Princeville . cross the Tar River on the freeway , then exit US 258 and the two state highways US 64 onto Mutual Boulevard at a partial interchange on the east side of the river in Princeville
-US 258 and the two state highways cross the Tar River on the freeway , then exit US 64 onto Mutual Boulevard at a partial interchange on the east side of the river in Princeville . cross US 258 the Tar River on the freeway , then exit US 64 onto Mutual Boulevard at a partial interchange on the east side of the river in Princeville
-US 258 and the two state highways cross the Tar River on the freeway , then exit US 64 onto Mutual Boulevard at a partial interchange on the east side of the river in Princeville . cross the two state highways the Tar River on the freeway , then exit US 64 onto Mutual Boulevard at a partial interchange on the east side of the river in Princeville
-US 258 and the two state highways cross the Tar River on the freeway , then exit US 64 onto Mutual Boulevard at a partial interchange on the east side of the river in Princeville . cross US 258 the Tar River on the freeway
-US 258 and the two state highways cross the Tar River on the freeway , then exit US 64 onto Mutual Boulevard at a partial interchange on the east side of the river in Princeville . cross the two state highways the Tar River on the freeway
-US 258 and the two state highways cross the Tar River on the freeway , then exit US 64 onto Mutual Boulevard at a partial interchange on the east side of the river in Princeville . goes to US 64 Mutual Boulevard at a partial interchange on the east side of the river in Princeville
-US 258 and the two state highways cross the Tar River on the freeway , then exit US 64 onto Mutual Boulevard at a partial interchange on the east side of the river in Princeville . has Princeville a river
-US 258 and the two state highways cross the Tar River on the freeway , then exit US 64 onto Mutual Boulevard at a partial interchange on the east side of the river in Princeville . has Princeville a Mutual Boulevard
-A large gravestone was erected in 1866 , over 100 years after his death . was erected in A large gravestone 1866
-A large gravestone was erected in 1866 , over 100 years after his death . was erected in A large gravestone over 100 years after his death
-Charles had concerns about being able to declare his belief in all the dogmas of the Church of England , so as well as hunting and fishing , he studied divinity books . as well studied Charles divinity books
-Charles had concerns about being able to declare his belief in all the dogmas of the Church of England , so as well as hunting and fishing , he studied divinity books . was hunting Charles
-Charles had concerns about being able to declare his belief in all the dogmas of the Church of England , so as well as hunting and fishing , he studied divinity books . was fishing Charles
-Charles had concerns about being able to declare his belief in all the dogmas of the Church of England , so as well as hunting and fishing , he studied divinity books . had concerns about being able to declare Charles his belief in all the dogmas of the Church of England
-Charles had concerns about being able to declare his belief in all the dogmas of the Church of England , so as well as hunting and fishing , he studied divinity books . had the Church of England dogmas
-The use of high ranking , anonymous sources has caused numerous scandals for the Bush Administration , most notably the Plame Affair . caused The use of high ranking , anonymous sources the Plame Affair
-The use of high ranking , anonymous sources has caused numerous scandals for the Bush Administration , most notably the Plame Affair . has caused The use of high ranking , anonymous sources numerous scandals for the Bush Administration
-The use of high ranking , anonymous sources has caused numerous scandals for the Bush Administration , most notably the Plame Affair . has had the Bush Administration numerous scandals
-The use of high ranking , anonymous sources has caused numerous scandals for the Bush Administration , most notably the Plame Affair . was a the Plame Affair scandals for the Bush Administration
-It deals with cases of fraud in relation to direct taxes and indirect taxes , tax credits , drug smuggling , and money laundering , cases involving United Nations trade sanctions , conflict diamonds and CITES . deals with cases of fraud in relation to It direct taxes
-It deals with cases of fraud in relation to direct taxes and indirect taxes , tax credits , drug smuggling , and money laundering , cases involving United Nations trade sanctions , conflict diamonds and CITES . deals with cases of fraud in relation to It indirect taxes
-It deals with cases of fraud in relation to direct taxes and indirect taxes , tax credits , drug smuggling , and money laundering , cases involving United Nations trade sanctions , conflict diamonds and CITES . deals with cases of fraud in relation to It tax credits
-It deals with cases of fraud in relation to direct taxes and indirect taxes , tax credits , drug smuggling , and money laundering , cases involving United Nations trade sanctions , conflict diamonds and CITES . deals with cases of fraud in relation to It drug smuggling
-It deals with cases of fraud in relation to direct taxes and indirect taxes , tax credits , drug smuggling , and money laundering , cases involving United Nations trade sanctions , conflict diamonds and CITES . deals with cases of fraud in relation to It money laundering
-It deals with cases of fraud in relation to direct taxes and indirect taxes , tax credits , drug smuggling , and money laundering , cases involving United Nations trade sanctions , conflict diamonds and CITES . deals with cases involving It United Nations trade sanctions
-It deals with cases of fraud in relation to direct taxes and indirect taxes , tax credits , drug smuggling , and money laundering , cases involving United Nations trade sanctions , conflict diamonds and CITES . deals with cases involving It conflict diamonds
-It deals with cases of fraud in relation to direct taxes and indirect taxes , tax credits , drug smuggling , and money laundering , cases involving United Nations trade sanctions , conflict diamonds and CITES . deals with cases involving It CITES
-The Commissioner of Parks and Public Property heads one of the departments in those local governments in New Jersey that operate under the Walsh Act form of municipal governance . heads The Commissioner of Parks and Public Property one of the departments in those local governments that operate under the Walsh Act form of municipal governance in New Jersey
-The Commissioner of Parks and Public Property heads one of the departments in those local governments in New Jersey that operate under the Walsh Act form of municipal governance . operate under local governments the Walsh Act form of municipal governance in New Jersey
-The Commissioner of Parks and Public Property heads one of the departments in those local governments in New Jersey that operate under the Walsh Act form of municipal governance . is of the Walsh Act form municipal governance
-The Commissioner of Parks and Public Property heads one of the departments in those local governments in New Jersey that operate under the Walsh Act form of municipal governance . is of The Commissioner Parks
-The Commissioner of Parks and Public Property heads one of the departments in those local governments in New Jersey that operate under the Walsh Act form of municipal governance . is of The Commissioner Public Property
-Moon 's Tong'Il industry conglomerate is now investing heavily in China , where church accountants have high hopes of expanding and attracting converts even in the wake of the bloody massacre in Tiananmen Square . has Moon Tong'Il industry conglomerate
-Moon 's Tong'Il industry conglomerate is now investing heavily in China , where church accountants have high hopes of expanding and attracting converts even in the wake of the bloody massacre in Tiananmen Square . is investing heavily Moon 's Tong'Il industry conglomerate in China now
-Moon 's Tong'Il industry conglomerate is now investing heavily in China , where church accountants have high hopes of expanding and attracting converts even in the wake of the bloody massacre in Tiananmen Square . have church accountants high hopes of expanding in China
-Moon 's Tong'Il industry conglomerate is now investing heavily in China , where church accountants have high hopes of expanding and attracting converts even in the wake of the bloody massacre in Tiananmen Square . have church accountants high hopes of attracting converts in China
-Moon 's Tong'Il industry conglomerate is now investing heavily in China , where church accountants have high hopes of expanding and attracting converts even in the wake of the bloody massacre in Tiananmen Square . have high hopes even in the wake of church accountants the bloody massacre in Tiananmen Square
-Moon 's Tong'Il industry conglomerate is now investing heavily in China , where church accountants have high hopes of expanding and attracting converts even in the wake of the bloody massacre in Tiananmen Square . was in the bloody massacre Tiananmen Square
-Moon 's Tong'Il industry conglomerate is now investing heavily in China , where church accountants have high hopes of expanding and attracting converts even in the wake of the bloody massacre in Tiananmen Square . is in Tiananmen Square China
-Warner is part of Warner Communications Inc. , which is in the process of being acquired by Time Warner Inc . is part of Warner Warner Communications Inc.
-Warner is part of Warner Communications Inc. , which is in the process of being acquired by Time Warner Inc . is in the process of being acquired by Warner Communications Inc. Time Warner Inc
-In England and Wales , as an `` attempt '' , attempted murder is an offence under section 1 of the Criminal Attempts Act 1981 and is an indictable offence which carries a maximum penalty of life imprisonment . is attempted murder as an `` attempt '' an offence under section 1 of the Criminal Attempts Act 1981 In England
-In England and Wales , as an `` attempt '' , attempted murder is an offence under section 1 of the Criminal Attempts Act 1981 and is an indictable offence which carries a maximum penalty of life imprisonment . is attempted murder as an `` attempt '' an offence under section 1 of the Criminal Attempts Act 1981 In Wales
-In England and Wales , as an `` attempt '' , attempted murder is an offence under section 1 of the Criminal Attempts Act 1981 and is an indictable offence which carries a maximum penalty of life imprisonment . is the Criminal Attempts Act of 1981
-In England and Wales , as an `` attempt '' , attempted murder is an offence under section 1 of the Criminal Attempts Act 1981 and is an indictable offence which carries a maximum penalty of life imprisonment . is attempted murder as an `` attempt '' an indictable offence which carries a maximum penalty of life imprisonment In England
-In England and Wales , as an `` attempt '' , attempted murder is an offence under section 1 of the Criminal Attempts Act 1981 and is an indictable offence which carries a maximum penalty of life imprisonment . is attempted murder as an `` attempt '' an indictable offence which carries a maximum penalty of life imprisonment in Wales
-In England and Wales , as an `` attempt '' , attempted murder is an offence under section 1 of the Criminal Attempts Act 1981 and is an indictable offence which carries a maximum penalty of life imprisonment . is as attempted murder an `` attempt ''
-Moreover , some sponsors pulled their advertising off XM in protest of the suspension . moreover pulled in protest of the suspension some sponsors their advertising off XM
-Moreover , some sponsors pulled their advertising off XM in protest of the suspension . had some sponsors advertising
-He is also known for his `` Aramata Collection '' , a private library housing thousands of rare books from the 18th and 19th centuries . is also known for He his `` Aramata Collection ''
-He is also known for his `` Aramata Collection '' , a private library housing thousands of rare books from the 18th and 19th centuries . is his `` Aramata Collection '' a private library housing thousands of rare books from the 18th and 19th centuries
-He is also known for his `` Aramata Collection '' , a private library housing thousands of rare books from the 18th and 19th centuries . houses his `` Aramata Collection '' rare books from the 18th century
-He is also known for his `` Aramata Collection '' , a private library housing thousands of rare books from the 18th and 19th centuries . houses his `` Aramata Collection '' rare books from the 19th century
-He is also known for his `` Aramata Collection '' , a private library housing thousands of rare books from the 18th and 19th centuries . are from rare books the 18th century
-He is also known for his `` Aramata Collection '' , a private library housing thousands of rare books from the 18th and 19th centuries . are from rare books the 19th century
-He is also known for his `` Aramata Collection '' , a private library housing thousands of rare books from the 18th and 19th centuries . has He `` Aramata Collection ''
-For example , when two such hydrophobic particles come very close , the clathrate-like baskets surrounding them merge . are surrounding the clathrate-like baskets such hydrophobic particles
-For example , when two such hydrophobic particles come very close , the clathrate-like baskets surrounding them merge . merge the clathrate-like baskets surrounding them when two such hydrophobic particles come very close
-For example , when two such hydrophobic particles come very close , the clathrate-like baskets surrounding them merge . are the baskets surrounding them clathrate-like
-Dr. Jagan himself was personally involved in the organization of the strike , and helped to raise funds across the country to it . was personally involved Dr. Jagan in the organization of the strike
-Dr. Jagan himself was personally involved in the organization of the strike , and helped to raise funds across the country to it . helped to raise Dr. Jagan funds across the country
-Dr. Jagan himself was personally involved in the organization of the strike , and helped to raise funds across the country to it . were raise funds across the country
-Historically , the division has been a rural seat and fairly safe for the National Party , which held it for all but six years from 1922 to 2004 . has been the division a rural seat Historically
-Historically , the division has been a rural seat and fairly safe for the National Party , which held it for all but six years from 1922 to 2004 . has been fairly safe for the division the National Party Historically
-Historically , the division has been a rural seat and fairly safe for the National Party , which held it for all but six years from 1922 to 2004 . held the National Party the seat for all but six years from 1922 to 2004
-And unlike Europe and the U.S. , where populations are aging , the Pacific Basin countries have growing proportions of youths -- the heaviest consumers of Coca - Cola and other sodas . have growing proportions of youths the Pacific Basin countries unlike Europe and the U.S.
-And unlike Europe and the U.S. , where populations are aging , the Pacific Basin countries have growing proportions of youths -- the heaviest consumers of Coca - Cola and other sodas . are growing proportions of youths the heaviest consumers of Coca - Cola and other sodas in the Pacific Basin countries
-And unlike Europe and the U.S. , where populations are aging , the Pacific Basin countries have growing proportions of youths -- the heaviest consumers of Coca - Cola and other sodas . are populations aging in Europe and the U.S.
-After leaving , he tried to find acting jobs and worked as an Elvis impersonator for a short time . worked as he an Elvis impersonator after leaving
-After leaving , he tried to find acting jobs and worked as an Elvis impersonator for a short time . worked as he an Elvis impersonator for a short time
-After leaving , he tried to find acting jobs and worked as an Elvis impersonator for a short time . tried to find he acting jobs after leaving
-And some doctors who have conducted hours of tests on themselves report temporary headaches . report some doctors temporary headaches
-And some doctors who have conducted hours of tests on themselves report temporary headaches . have conducted some doctors hours of tests on themselves
-And some doctors who have conducted hours of tests on themselves report temporary headaches . report some doctors who have conducted hours of tests on themselves temporary headaches
-Frowin founded the Benedictine monastery of New Engleberg at Conception , which was erected into an abbey in 1881 . founded Frowin the Benedictine monastery of New Engleberg at Conception
-Frowin founded the Benedictine monastery of New Engleberg at Conception , which was erected into an abbey in 1881 . was erected into the Benedictine monastery of New Engleberg at Conception an abbey in 1881
-The northern terminus of this section is at Senai Airport Interchange near Senai Airport , while it shares the same Kilometre Zero with the main link . is at The northern terminus of this section Senai Airport Interchange
-The northern terminus of this section is at Senai Airport Interchange near Senai Airport , while it shares the same Kilometre Zero with the main link . is near The northern terminus of this section Senai Airport
-The northern terminus of this section is at Senai Airport Interchange near Senai Airport , while it shares the same Kilometre Zero with the main link . is near Senai Airport Interchange Senai Airport
-The northern terminus of this section is at Senai Airport Interchange near Senai Airport , while it shares the same Kilometre Zero with the main link . shares the same Kilometre Zero with The northern terminus of this section the main link
-The IRS already is doing intensive TCMP audits of 19,000 returns for 1987 and fiscal 1988 filed by corporations with under $ 10 million in assets ... . is doing The IRS intensive TCMP audits of 19,000 returns filed by corporations with under $ 10 million in assets already
-The IRS already is doing intensive TCMP audits of 19,000 returns for 1987 and fiscal 1988 filed by corporations with under $ 10 million in assets ... . already is doing The IRS intensive TCMP audits of returns for 1987 filed by corporations with under $ 10 million in assets
-The IRS already is doing intensive TCMP audits of 19,000 returns for 1987 and fiscal 1988 filed by corporations with under $ 10 million in assets ... . already is doing The IRS intensive TCMP audits of returns for fiscal 1988 filed by corporations with under $ 10 million in assets
-The IRS already is doing intensive TCMP audits of 19,000 returns for 1987 and fiscal 1988 filed by corporations with under $ 10 million in assets ... . were filed by returns corporations with under $ 10 million in assets for 1987
-The IRS already is doing intensive TCMP audits of 19,000 returns for 1987 and fiscal 1988 filed by corporations with under $ 10 million in assets ... . were filed by returns corporations with under $ 10 million in assets for fiscal 1988
-But they have been at odds over how much Mr. Hunt would owe the government after his assets are sold . have been at odds over they how much Mr. Hunt would owe the government after his assets are sold
-But they have been at odds over how much Mr. Hunt would owe the government after his assets are sold . will have sold Mr. Hunt his assets
-But they have been at odds over how much Mr. Hunt would owe the government after his assets are sold . would owe Mr. Hunt the government
-He was appointed Commander of the Order of the British Empire in the 1948 Queen 's Birthday Honours and was knighted in the 1953 Coronation Honours . was appointed He Commander of the Order of the British Empire Birthday Honours in 1948
-He was appointed Commander of the Order of the British Empire in the 1948 Queen 's Birthday Honours and was knighted in the 1953 Coronation Honours . was knighted He Coronation Honours in 1953
-He was appointed Commander of the Order of the British Empire in the 1948 Queen 's Birthday Honours and was knighted in the 1953 Coronation Honours . is He Commander of the Order of the British Empire
-In 2004 the Oxford English University Press included Makaton as a common usage word in the Oxford English Dictionary . included as a common usage word the Oxford English University Press Makaton in the Oxford English Dictionary In 2004
-Japan may be a tough market for outsiders to penetrate , and the U.S. is hopelessly behind Japan in certain technologies . may be a Japan tough market
-Japan may be a tough market for outsiders to penetrate , and the U.S. is hopelessly behind Japan in certain technologies . may be a tough market for outsiders to penetrate Japan
-Japan may be a tough market for outsiders to penetrate , and the U.S. is hopelessly behind Japan in certain technologies . may be Japan a tough market for outsiders to penetrate
-Japan may be a tough market for outsiders to penetrate , and the U.S. is hopelessly behind Japan in certain technologies . is hopelessly behind the U.S. Japan in certain technologies
-The machine employs reduced instruction - set computing , or RISC , technology . employs The machine reduced instruction set computing technology
-The machine employs reduced instruction - set computing , or RISC , technology . employs The machine RISC technology
-The machine employs reduced instruction - set computing , or RISC , technology . employs The machine reduced instruction - set computing or RISC , technology
-He and his friends were said to have made bombs for fun on the outskirts of Murray , Utah . was said to have made He bombs for fun on the outskirts of Murray , Utah
-He and his friends were said to have made bombs for fun on the outskirts of Murray , Utah . were said to have made his friends bombs for fun on the outskirts of Murray , Utah
-Montgomery Blair 's Science , Math , and Technology Academy specializes in : Life Science , Physical Science , Engineering , Mathematics , Computer Networking , and Computer Programming . specializes in Montgomery Blair 's Science , Math , and Technology Academy Life Science
-Montgomery Blair 's Science , Math , and Technology Academy specializes in : Life Science , Physical Science , Engineering , Mathematics , Computer Networking , and Computer Programming . specializes in Montgomery Blair 's Science , Math , and Technology Academy Physical Science
-Montgomery Blair 's Science , Math , and Technology Academy specializes in : Life Science , Physical Science , Engineering , Mathematics , Computer Networking , and Computer Programming . specializes in Montgomery Blair 's Science , Math , and Technology Academy Engineering
-Montgomery Blair 's Science , Math , and Technology Academy specializes in : Life Science , Physical Science , Engineering , Mathematics , Computer Networking , and Computer Programming . specializes in Montgomery Blair 's Science , Math , and Technology Academy Mathematics
-Montgomery Blair 's Science , Math , and Technology Academy specializes in : Life Science , Physical Science , Engineering , Mathematics , Computer Networking , and Computer Programming . specializes in Montgomery Blair 's Science , Math , and Technology Academy Computer Networking
-Montgomery Blair 's Science , Math , and Technology Academy specializes in : Life Science , Physical Science , Engineering , Mathematics , Computer Networking , and Computer Programming . specializes in Montgomery Blair 's Science , Math , and Technology Academy Computer Programming
-Montgomery Blair 's Science , Math , and Technology Academy specializes in : Life Science , Physical Science , Engineering , Mathematics , Computer Networking , and Computer Programming . has Montgomery Blair a Science , Math , and Technology Academy
-It is necessary to climb embankments to cross some roads where former bridges have been filled in . is necessary to climb It embankments
-It is necessary to climb embankments to cross some roads where former bridges have been filled in . is necessary to cross climbing embankments some roads where former bridges have been filled in
-It is necessary to climb embankments to cross some roads where former bridges have been filled in . have been filled in former bridges at some roads
-But it could also help American companies , which also are starting to try to open the market . could also help it companies in America
-But it could also help American companies , which also are starting to try to open the market . could also help it American companies
-But it could also help American companies , which also are starting to try to open the market . also are starting to try to open American companies the market
-He had developed a hatred for the hacker and a grudging appreciation of the federal `` spooks '' who make national security their business . had developed He a hatred for the hacker
-He had developed a hatred for the hacker and a grudging appreciation of the federal `` spooks '' who make national security their business . had developed He a grudging appreciation of the federal `` spooks '' who make national security their business
-The computer can process 13.3 million calculations called floating - point operations every second . can process The computer 13.3 million calculations every second
-The computer can process 13.3 million calculations called floating - point operations every second . are called 13.3 million calculations floating - point operations
-Lawyers would eagerly seize on the provision in their death - penalty appeals , says Richard Burr , director of the NAACP Legal Defense and Educational Fund 's capital - punishment defense team . would eagerly seize Lawyers on the provision in their death - penalty appeals
-Lawyers would eagerly seize on the provision in their death - penalty appeals , says Richard Burr , director of the NAACP Legal Defense and Educational Fund 's capital - punishment defense team . says Richard Burr , director of the NAACP Legal Defense and Educational Fund 's capital - punishment defense team Lawyers would eagerly seize on the provision in their death - penalty appeals
-The clause was part of an agreement in which pilots accepted a substantial pay cut as long as no other labor group got a raise . was part of The clause an agreement
-The clause was part of an agreement in which pilots accepted a substantial pay cut as long as no other labor group got a raise . accepted as long as no other labor group got a raise pilots a substantial pay cut in an agreement
-Through the first nine months of the year , the unadjusted total of all new construction was $ 199.6 billion , flat compared with a year earlier . was the unadjusted total of all new construction $ 199.6 billion Through the first nine months of the year
-Through the first nine months of the year , the unadjusted total of all new construction was $ 199.6 billion , flat compared with a year earlier . was flat compared with the unadjusted total of all new construction a year earlier
-Through the first nine months of the year , the unadjusted total of all new construction was $ 199.6 billion , flat compared with a year earlier . was flat compared with the unadjusted total of all new construction a year earlier
-Butters Drive in the Canberra suburb of Phillip is named in his honour . is named Butters Drive in the Canberra suburb of Phillip in his honour
-Butters Drive in the Canberra suburb of Phillip is named in his honour . is Butters Drive in the Canberra suburb of Phillip
-Many of the enthusiastic young `` Moonies '' of the Nixon era who remained faithful to Father Moon are now parents , producing new members by procreation rather than conversion . are of enthusiastic young `` Moonies '' the Nixon era
-Many of the enthusiastic young `` Moonies '' of the Nixon era who remained faithful to Father Moon are now parents , producing new members by procreation rather than conversion . are enthusiastic `` Moonies '' of the Nixon era
-Many of the enthusiastic young `` Moonies '' of the Nixon era who remained faithful to Father Moon are now parents , producing new members by procreation rather than conversion . are young `` Moonies '' of the Nixon era
-Many of the enthusiastic young `` Moonies '' of the Nixon era who remained faithful to Father Moon are now parents , producing new members by procreation rather than conversion . are faithful to `` Moonies '' Father Moon
-Many of the enthusiastic young `` Moonies '' of the Nixon era who remained faithful to Father Moon are now parents , producing new members by procreation rather than conversion . are Many of the enthusiastic young `` Moonies '' of the Nixon era who remained faithful to Father Moon parents now
-Many of the enthusiastic young `` Moonies '' of the Nixon era who remained faithful to Father Moon are now parents , producing new members by procreation rather than conversion . are producing by procreation Many of the enthusiastic young `` Moonies '' of the Nixon era who remained faithful to Father Moon new members now
-Many of the enthusiastic young `` Moonies '' of the Nixon era who remained faithful to Father Moon are now parents , producing new members by procreation rather than conversion . are producing rather than by conversion Many of the enthusiastic young `` Moonies '' of the Nixon era who remained faithful to Father Moon new members now
-Afterward he has joined Emma Frost 's Academy of Tomorrow , a school for gifted beings . has joined he Emma Frost 's Academy of Tomorrow Afterward
-Afterward he has joined Emma Frost 's Academy of Tomorrow , a school for gifted beings . is Academy of Tomorrow a school for gifted beings
-Afterward he has joined Emma Frost 's Academy of Tomorrow , a school for gifted beings . has Emma Frost a school for gifted beings
-After this she became very ill with a severe cold or pneumonia . became she very ill after this
-China 's parliament ousted two Hong Kong residents from a panel drafting a new constitution for the colony . ousted China 's parliament two Hong Kong residents from a panel drafting a new constitution for the colony
-China 's parliament ousted two Hong Kong residents from a panel drafting a new constitution for the colony . is drafting a panel a new constitution for the colony
-China 's parliament ousted two Hong Kong residents from a panel drafting a new constitution for the colony . is in the parliament China
-China 's parliament ousted two Hong Kong residents from a panel drafting a new constitution for the colony . are of the two residents Hong Kong
-Instead , he proposed a `` law - governed economy , '' in which there would be a `` clear - cut division between state direction of the economy and economic management . '' Instead proposed he a `` law - governed economy ''
-Instead , he proposed a `` law - governed economy , '' in which there would be a `` clear - cut division between state direction of the economy and economic management . '' would be there a `` clear - cut division between state direction of the economy and economic management '' in a `` law - governed economy ''
-Moreover , such a sale could help Armstrong reassure its investors and deter the Belzbergs , who own a 9.85 % stake in the Lancaster , Pa. , company . could Moreover help reassure its investors such a sale Armstrong
-Moreover , such a sale could help Armstrong reassure its investors and deter the Belzbergs , who own a 9.85 % stake in the Lancaster , Pa. , company . could Moreover deter such a sale the Belzbergs
-Moreover , such a sale could help Armstrong reassure its investors and deter the Belzbergs , who own a 9.85 % stake in the Lancaster , Pa. , company . own the Belzbergs a 9.85 % stake in the Lancaster , Pa. , company
-Moreover , such a sale could help Armstrong reassure its investors and deter the Belzbergs , who own a 9.85 % stake in the Lancaster , Pa. , company . is in the company Lancaster , Pa.
-Moreover , such a sale could help Armstrong reassure its investors and deter the Belzbergs , who own a 9.85 % stake in the Lancaster , Pa. , company . is in Lancaster Pa.
-Moreover , such a sale could help Armstrong reassure its investors and deter the Belzbergs , who own a 9.85 % stake in the Lancaster , Pa. , company . has Armstrong investors
-Moreover , such a sale could help Armstrong reassure its investors and deter the Belzbergs , who own a 9.85 % stake in the Lancaster , Pa. , company . is Armstrong the company in Lancaster , Pa.
-However , the term cob , defined as a short-legged , stout horse , is a body type rather than a breed . is defined as cob a short-legged , stout horse
-However , the term cob , defined as a short-legged , stout horse , is a body type rather than a breed . is cob a body type
-However , the term cob , defined as a short-legged , stout horse , is a body type rather than a breed . is a body type rather than cob a breed
-Stock prices rallied as the Georgia - Pacific bid broke the market 's recent gloom . rallied in Stock prices the market as the Georgia - Pacific bid broke the recent gloom
-Stock prices rallied as the Georgia - Pacific bid broke the market 's recent gloom . broke the Georgia - Pacific bid the market 's recent gloom
-Stock prices rallied as the Georgia - Pacific bid broke the market 's recent gloom . was in gloom the market recently
-Stock prices rallied as the Georgia - Pacific bid broke the market 's recent gloom . had Georgia - Pacific a bid
-Interstate / Johnson Lane Inc. this year adds 70 people -- 60 of them in retail -- to its 1,300 - member staff . adds Interstate / Johnson Lane Inc. 70 people this year
-Interstate / Johnson Lane Inc. this year adds 70 people -- 60 of them in retail -- to its 1,300 - member staff . adds in retail Interstate / Johnson Lane Inc. 60 people this year
-Interstate / Johnson Lane Inc. this year adds 70 people -- 60 of them in retail -- to its 1,300 - member staff . adds to Interstate / Johnson Lane Inc. its 1,300 - member staff this year
-The divested Courtaulds textile operations had operating profit of # 50 million on # 980 million in revenue in the year ended March 31 . are Courtaulds textile operations divested
-The divested Courtaulds textile operations had operating profit of # 50 million on # 980 million in revenue in the year ended March 31 . has Courtaulds textile operations
-The divested Courtaulds textile operations had operating profit of # 50 million on # 980 million in revenue in the year ended March 31 . had operating profit of The divested Courtaulds textile operations # 50 million in the year ended March 31
-The divested Courtaulds textile operations had operating profit of # 50 million on # 980 million in revenue in the year ended March 31 . had operating profit on The divested Courtaulds textile operations # 980 million in revenue in the year ended March 31
-As she reads the articles , she also makes veiled references and innuendo relating to the slang use of `` beaver '' . reads she the articles
-As she reads the articles , she also makes veiled references and innuendo relating to the slang use of `` beaver '' . makes she veiled references relating to the slang use of `` beaver ''
-As she reads the articles , she also makes veiled references and innuendo relating to the slang use of `` beaver '' . makes she innuendo relating to the slang use of `` beaver ''
-Under the agreement with the House and Senate leaders , the minimum wage would rise from the current $ 3.35 an hour to $ 4.25 an hour by April 1991 . would rise from the minimum wage the current $ 3.35 an hour
-Under the agreement with the House and Senate leaders , the minimum wage would rise from the current $ 3.35 an hour to $ 4.25 an hour by April 1991 . would rise to the minimum wage $ 4.25 an hour by April 1991
-Under the agreement with the House and Senate leaders , the minimum wage would rise from the current $ 3.35 an hour to $ 4.25 an hour by April 1991 . is the minimum wage $ 3.35 an hour currently
-Under the agreement with the House and Senate leaders , the minimum wage would rise from the current $ 3.35 an hour to $ 4.25 an hour by April 1991 . will be the minimum wage $ 4.25 an hour by April 1991
-Under the agreement with the House and Senate leaders , the minimum wage would rise from the current $ 3.35 an hour to $ 4.25 an hour by April 1991 . would rise Under the minimum wage the agreement with the House and Senate leaders
-Under the agreement with the House and Senate leaders , the minimum wage would rise from the current $ 3.35 an hour to $ 4.25 an hour by April 1991 . is with the agreement the House and Senate leaders
-September was the 10th consecutive month in which steel exports failed to reach the year - earlier level . failed to reach steel exports the year - earlier level in September
-September was the 10th consecutive month in which steel exports failed to reach the year - earlier level . failed to reach steel exports the year - earlier level for the 10th consecutive month
-September was the 10th consecutive month in which steel exports failed to reach the year - earlier level . was September the 10th consecutive month in which steel exports failed to reach the year - earlier level
-Both the SUNY team and researchers at the National Magnet Laboratory in Cambridge , Mass. , are working with more potent magnetic brain stimulators . is working with the SUNY team more potent magnetic brain stimulators
-Both the SUNY team and researchers at the National Magnet Laboratory in Cambridge , Mass. , are working with more potent magnetic brain stimulators . are working with researchers at the National Magnet Laboratory in Cambridge , Mass. more potent magnetic brain stimulators
-Both the SUNY team and researchers at the National Magnet Laboratory in Cambridge , Mass. , are working with more potent magnetic brain stimulators . are at researchers the National Magnet Laboratory in Cambridge , Mass.
-Both the SUNY team and researchers at the National Magnet Laboratory in Cambridge , Mass. , are working with more potent magnetic brain stimulators . is in the National Magnet Laboratory Cambridge , Mass.
-Both the SUNY team and researchers at the National Magnet Laboratory in Cambridge , Mass. , are working with more potent magnetic brain stimulators . are working with Both more potent magnetic brain stimulators
-Both the SUNY team and researchers at the National Magnet Laboratory in Cambridge , Mass. , are working with more potent magnetic brain stimulators . are magnetic brain stimulators more potent
-The origin of the Missionaries of the Sacred Heart is closely connected with the definition of the dogma of the Immaculate Conception of the B. V. M . is closely connected with The origin of the Missionaries of the Sacred Heart the definition of the dogma of the Immaculate Conception of the B. V. M
-The origin of the Missionaries of the Sacred Heart is closely connected with the definition of the dogma of the Immaculate Conception of the B. V. M . is closely connected with the Missionaries of the Sacred Heart the definition of the dogma of the Immaculate Conception of the B. V. M
-On U.S. - Japan relations : `` I 'm encouraged . 'm encouraged On I U.S. - Japan relations
-On U.S. - Japan relations : `` I 'm encouraged . are of relations U.S. - Japan
-Salomon Brothers says , `` We believe the real estate properties would trade at a discount ... after the realty unit is spun off ... . says Salomon Brothers `` We believe the real estate properties would trade at a discount ... after the realty unit is spun off
-Spielberger was formerly Chairman of the Psychology Department at the University of South Florida in Tampa , Florida and in 2012 belonged to a think tank there . was Spielberger Chairman of the Psychology Department at the University of South Florida in Tampa , Florida formerly
-Spielberger was formerly Chairman of the Psychology Department at the University of South Florida in Tampa , Florida and in 2012 belonged to a think tank there . belonged to Spielberger a think tank at the University of South Florida in Tampa , Florida in 2012
-Spielberger was formerly Chairman of the Psychology Department at the University of South Florida in Tampa , Florida and in 2012 belonged to a think tank there . is in University of South Florida Tampa , Florida
-Spielberger was formerly Chairman of the Psychology Department at the University of South Florida in Tampa , Florida and in 2012 belonged to a think tank there . is in Tampa Florida
-Spielberger was formerly Chairman of the Psychology Department at the University of South Florida in Tampa , Florida and in 2012 belonged to a think tank there . is at a think tank the University of South Florida in Tampa , Florida
-Hiester was born in Montgomery County , Pennsylvania on July 17 , 1749 , the son of German immigrants Daniel and Catherine Shuller Hiester . was born Hiester in Montgomery County , Pennsylvania on July 17 , 1749
-Hiester was born in Montgomery County , Pennsylvania on July 17 , 1749 , the son of German immigrants Daniel and Catherine Shuller Hiester . was the son of Hiester German immigrant Daniel Hiester
-Hiester was born in Montgomery County , Pennsylvania on July 17 , 1749 , the son of German immigrants Daniel and Catherine Shuller Hiester . was the son of Hiester German immigrant Catherine Shuller Hiester
-Hiester was born in Montgomery County , Pennsylvania on July 17 , 1749 , the son of German immigrants Daniel and Catherine Shuller Hiester . is in Montgomery County Pennsylvania
-Hiester was born in Montgomery County , Pennsylvania on July 17 , 1749 , the son of German immigrants Daniel and Catherine Shuller Hiester . was Daniel Hiester a German immigrant
-Hiester was born in Montgomery County , Pennsylvania on July 17 , 1749 , the son of German immigrants Daniel and Catherine Shuller Hiester . was Catherine Shuller Hiester a German immigrant
-Some have been training for months ; others only recently left active status . have been training for Some months
-Some have been training for months ; others only recently left active status . left others active status only recently
-More big Japanese investors are buying U.S. mortgage - backed securities , reversing a recent trend . are buying More big Japanese investors U.S. mortgage - backed securities
-More big Japanese investors are buying U.S. mortgage - backed securities , reversing a recent trend . is reversing More big Japanese investors buying U.S. mortgage - backed securities a recent trend
-More big Japanese investors are buying U.S. mortgage - backed securities , reversing a recent trend . was a trend in buying U.S. mortgage - backed securities recent
-More big Japanese investors are buying U.S. mortgage - backed securities , reversing a recent trend . are in big investors buying U.S. mortgage - backed securities Japan
-More big Japanese investors are buying U.S. mortgage - backed securities , reversing a recent trend . are mortgage - backed securities U.S.
-He chose a path of confrontation , of conflict . chose a He path of confrontation
-He chose a path of confrontation , of conflict . chose a He path of conflict
-The Aura spacecraft has a mass of about 1,765 kg . has a mass of The Aura spacecraft about 1,765 kg
-The Aura spacecraft has a mass of about 1,765 kg . is The Aura a spacecraft
-A dam on the creek has created a lake covering for fishing , boating , and swimming . has created A dam on the creek a lake covering
-A dam on the creek has created a lake covering for fishing , boating , and swimming . has created A dam on the creek a lake covering for fishing
-A dam on the creek has created a lake covering for fishing , boating , and swimming . has created A dam on the creek a lake covering for boating
-A dam on the creek has created a lake covering for fishing , boating , and swimming . has created A dam on the creek a lake covering for swimming
-About 800 have crossed the picket lines and returned to work . have crossed About 800 the picket lines
-About 800 have crossed the picket lines and returned to work . have returned About 800 to work
-The railways were separate , the S&D being administered by the Midland Railway and the London and South Western Railway companies and the North Somerset being run by and then owned by the Great Western Railway . were The railways separate
-The railways were separate , the S&D being administered by the Midland Railway and the London and South Western Railway companies and the North Somerset being run by and then owned by the Great Western Railway . were The railways the S&D and the North Somerset
-The railways were separate , the S&D being administered by the Midland Railway and the London and South Western Railway companies and the North Somerset being run by and then owned by the Great Western Railway . were administered by The railways the Midland Railway and the London and South Western Railway companies and the Great Western Railway
-The railways were separate , the S&D being administered by the Midland Railway and the London and South Western Railway companies and the North Somerset being run by and then owned by the Great Western Railway . was administered by The S&D the Midland Railway and the London and South Western Railway companies
-The railways were separate , the S&D being administered by the Midland Railway and the London and South Western Railway companies and the North Somerset being run by and then owned by the Great Western Railway . was run by The North Somerset the Great Western Railway
-The railways were separate , the S&D being administered by the Midland Railway and the London and South Western Railway companies and the North Somerset being run by and then owned by the Great Western Railway . was then owned by The North Somerset the Great Western Railway
-The railways were separate , the S&D being administered by the Midland Railway and the London and South Western Railway companies and the North Somerset being run by and then owned by the Great Western Railway . were The companies the Midland Railway and the London and South Western Railway and the Great Western Railway
-X is revealed to be the leader of Neo Arcadia and Zero confronts X in battle . is revealed to be X the leader of Neo Arcadia
-X is revealed to be the leader of Neo Arcadia and Zero confronts X in battle . confronts Zero X in battle
-X is revealed to be the leader of Neo Arcadia and Zero confronts X in battle . is of the leader Neo Arcadia
-In 1577 , she unsuccessfully proposed to the city council that it should establish a home for poor women , of which she would become the administrator . unsuccessfully proposed that she city council should establish a home for poor women In 1577
-In 1577 , she unsuccessfully proposed to the city council that it should establish a home for poor women , of which she would become the administrator . would become she the administrator of a home for poor women
-In 1577 , she unsuccessfully proposed to the city council that it should establish a home for poor women , of which she would become the administrator . unsuccessfully proposed to she the city council In 1577
-DePauw University awarded the degree `` Doctor of Divinity '' in 1892 . was awarded the degree `` Doctor of Divinity '' in 1892
-DePauw University awarded the degree `` Doctor of Divinity '' in 1892 . awarded DePauw University the degree `` Doctor of Divinity '' in 1892
-Unlike Fast Gun clubs , Big Gun clubs operate based upon a loose confederation , with each club reserving the ability to establish and maintain its own rules , provided that they coincide with the spirit of Big Gun Model Warship Combat . operate based upon Big Gun clubs a loose confederation
-Unlike Fast Gun clubs , Big Gun clubs operate based upon a loose confederation , with each club reserving the ability to establish and maintain its own rules , provided that they coincide with the spirit of Big Gun Model Warship Combat . operate Unlike Big Gun clubs Fast Gun clubs
-Unlike Fast Gun clubs , Big Gun clubs operate based upon a loose confederation , with each club reserving the ability to establish and maintain its own rules , provided that they coincide with the spirit of Big Gun Model Warship Combat . do not operate based upon Fast Gun clubs a loose confederation
-Unlike Fast Gun clubs , Big Gun clubs operate based upon a loose confederation , with each club reserving the ability to establish and maintain its own rules , provided that they coincide with the spirit of Big Gun Model Warship Combat . reserves the ability to establish each Big Gun club its own rules
-Unlike Fast Gun clubs , Big Gun clubs operate based upon a loose confederation , with each club reserving the ability to establish and maintain its own rules , provided that they coincide with the spirit of Big Gun Model Warship Combat . reserves the ability to maintain each Big Gun club its own rules
-Unlike Fast Gun clubs , Big Gun clubs operate based upon a loose confederation , with each club reserving the ability to establish and maintain its own rules , provided that they coincide with the spirit of Big Gun Model Warship Combat . must coincide with rules of each Big Gun club the spirit of Big Gun Model Warship Combat
-The poll points up some inconsistencies between what people say and what they do . points up The poll some inconsistencies between what people say and what they do
-The poll points up some inconsistencies between what people say and what they do . are between some inconsistencies what people say and what they do
-Standing in contrast to Descartes 's scientific reductionism and philosophical analysis , it proposes to view systems in a holistic manner . is Standing in contrast to it Descartes 's scientific reductionism
-Standing in contrast to Descartes 's scientific reductionism and philosophical analysis , it proposes to view systems in a holistic manner . is Standing in contrast to it Descartes 's philosophical analysis
-Standing in contrast to Descartes 's scientific reductionism and philosophical analysis , it proposes to view systems in a holistic manner . has Descartes scientific reductionism
-Standing in contrast to Descartes 's scientific reductionism and philosophical analysis , it proposes to view systems in a holistic manner . has Descartes philosophical analysis
-Standing in contrast to Descartes 's scientific reductionism and philosophical analysis , it proposes to view systems in a holistic manner . proposes to view systems in it a holistic manner
-The majority of the population of Leigh were born in England ; 2.10 % were born elsewhere within the United Kingdom , 0.95 % within the rest of the European Union , and 1.47 % elsewhere in the world . were born in The majority of the population of Leigh England
-The majority of the population of Leigh were born in England ; 2.10 % were born elsewhere within the United Kingdom , 0.95 % within the rest of the European Union , and 1.47 % elsewhere in the world . were born 2.10 % of the population of Leigh elsewhere within the United Kingdom
-The majority of the population of Leigh were born in England ; 2.10 % were born elsewhere within the United Kingdom , 0.95 % within the rest of the European Union , and 1.47 % elsewhere in the world . were born within 0.95 % of the population of Leigh the rest of the European Union
-The majority of the population of Leigh were born in England ; 2.10 % were born elsewhere within the United Kingdom , 0.95 % within the rest of the European Union , and 1.47 % elsewhere in the world . were born 1.47 % of the population of Leigh elsewhere in the world
-The majority of the population of Leigh were born in England ; 2.10 % were born elsewhere within the United Kingdom , 0.95 % within the rest of the European Union , and 1.47 % elsewhere in the world . is in England the European Union
-The majority of the population of Leigh were born in England ; 2.10 % were born elsewhere within the United Kingdom , 0.95 % within the rest of the European Union , and 1.47 % elsewhere in the world . is in the United Kingdom the European Union
-A federation official attributed the decline to brisk demand from domestic industries backed by continuing economic expansion in Japan . attributed the decline to A federation official brisk demand from domestic industries backed by continuing economic expansion in Japan
-A federation official attributed the decline to brisk demand from domestic industries backed by continuing economic expansion in Japan . has Japan a continuing economic expansion
-A federation official attributed the decline to brisk demand from domestic industries backed by continuing economic expansion in Japan . attributed the decline to brisk demand from A federation official domestic industries backed by continuing economic expansion in Japan
-A federation official attributed the decline to brisk demand from domestic industries backed by continuing economic expansion in Japan . attributed the decline to brisk demand from domestic industries backed by A federation official continuing economic expansion in Japan
-A federation official attributed the decline to brisk demand from domestic industries backed by continuing economic expansion in Japan . comes from A lot of brisk demand from domestic industries backed by continuing economic expansion in Japan
-A federation official attributed the decline to brisk demand from domestic industries backed by continuing economic expansion in Japan . is backed by brisk demand from domestic industries continuing economic expansion in Japan
-Bioengineers set out to duplicate that feat -- scientifically and commercially -- with new life forms . set out to duplicate scientifically Bioengineers that feat
-Bioengineers set out to duplicate that feat -- scientifically and commercially -- with new life forms . set out to duplicate commercially Bioengineers that feat
-Bioengineers set out to duplicate that feat -- scientifically and commercially -- with new life forms . set out to duplicate that feat with Bioengineers new life forms
-But ex-slaves were able to own property outright , and their children were free of all constraint . were able ex-slaves to own property outright
-But ex-slaves were able to own property outright , and their children were free of all constraint . were ex-slaves children free of all constraint
-But ex-slaves were able to own property outright , and their children were free of all constraint . had ex-slaves children
-At Vitoria and in Wellington 's invasion of southern France , Hill corps usually consisted of William Stewart 's 2nd Division , the Portuguese Division and Pablo Morillo 's Spanish Division . usually consisted of Hill corps William Stewart 's 2nd Division at Vitoria
-At Vitoria and in Wellington 's invasion of southern France , Hill corps usually consisted of William Stewart 's 2nd Division , the Portuguese Division and Pablo Morillo 's Spanish Division . usually consisted of Hill corps William Stewart 's 2nd Division in Wellington 's invasion of southern France
-At Vitoria and in Wellington 's invasion of southern France , Hill corps usually consisted of William Stewart 's 2nd Division , the Portuguese Division and Pablo Morillo 's Spanish Division . usually consisted of Hill corps the Portuguese Division at Vitoria
-At Vitoria and in Wellington 's invasion of southern France , Hill corps usually consisted of William Stewart 's 2nd Division , the Portuguese Division and Pablo Morillo 's Spanish Division . usually consisted of Hill corps the Portuguese Division in Wellington 's invasion of southern France
-At Vitoria and in Wellington 's invasion of southern France , Hill corps usually consisted of William Stewart 's 2nd Division , the Portuguese Division and Pablo Morillo 's Spanish Division . usually consisted of Hill corps Pablo Morillo 's Spanish Division at Vitoria
-At Vitoria and in Wellington 's invasion of southern France , Hill corps usually consisted of William Stewart 's 2nd Division , the Portuguese Division and Pablo Morillo 's Spanish Division . usually consisted of Hill corps Pablo Morillo 's Spanish Division in Wellington 's invasion of southern France
-When New Tomorrowland opened in 1967 , the space that this ride occupied was turned into the Tomorrowland Stage . opened New Tomorrowland in 1967
-When New Tomorrowland opened in 1967 , the space that this ride occupied was turned into the Tomorrowland Stage . was New Tomorrowland this ride
-When New Tomorrowland opened in 1967 , the space that this ride occupied was turned into the Tomorrowland Stage . occupied New Tomorrowland space
-When New Tomorrowland opened in 1967 , the space that this ride occupied was turned into the Tomorrowland Stage . was turned into the space that this ride occupied the Tomorrowland Stage When New Tomorrowland opened in 1967
-There are 109 individuals who belong to another church , and 20 individuals did not answer the question . belong to 109 individuals another church
-There are 109 individuals who belong to another church , and 20 individuals did not answer the question . did not answer 20 individuals the question
-But that development also had little effect on traders ' sentiment . also had little effect on that development traders ' sentiment
-But that development also had little effect on traders ' sentiment . had traders sentiment
-Yesterday , Nekoosa common closed in composite New York Stock Exchange trading at $ 62.875 , up $ 20.125 , on volume of almost 6.3 million shares . common closed at Nekoosa $ 62.875 in composite New York Stock Exchange trading Yesterday
-Yesterday , Nekoosa common closed in composite New York Stock Exchange trading at $ 62.875 , up $ 20.125 , on volume of almost 6.3 million shares . common closed up Nekoosa $ 20.125 in composite New York Stock Exchange trading Yesterday
-Yesterday , Nekoosa common closed in composite New York Stock Exchange trading at $ 62.875 , up $ 20.125 , on volume of almost 6.3 million shares . common closed on volume of Nekoosa almost 6.3 million shares in composite New York Stock Exchange trading Yesterday
-Yesterday , Nekoosa common closed in composite New York Stock Exchange trading at $ 62.875 , up $ 20.125 , on volume of almost 6.3 million shares . was at composite trading New York Stock Exchange
-Hofmann was born in Salt Lake City , Utah . was born in Hofmann Salt Lake City , Utah
-Hofmann was born in Salt Lake City , Utah . was born Hofmann in Salt Lake City , Utah
-Voorhees approved a plan in 2010 for an $ 850,000 artificial turf field to be completed by 2011 . approved a plan for Voorhees artificial turf field in 2010
-Voorhees approved a plan in 2010 for an $ 850,000 artificial turf field to be completed by 2011 . approved a plan for an $ 850,000 Voorhees artificial turf field in 2010
-Voorhees approved a plan in 2010 for an $ 850,000 artificial turf field to be completed by 2011 . to be artificial turf field completed by 2011
-All officers are additionally equipped with less-lethal weapons for use against threats that do not justify a firearms response . are All officers equipped with less-lethal weapons
-All officers are additionally equipped with less-lethal weapons for use against threats that do not justify a firearms response . are for less-lethal weapons use against threats that do not justify firearms response
-Soon afterwards , Davis switched to the major Columbia record label and recorded seven albums over the next five years with producer Leo Graham and arranger James Mack who had collaborated with him for `` Turning Point '' . switched to Davis the major Columbia record label Soon afterwards
-Soon afterwards , Davis switched to the major Columbia record label and recorded seven albums over the next five years with producer Leo Graham and arranger James Mack who had collaborated with him for `` Turning Point '' . recorded Davis seven albums at the major Columbia record label over the next five years
-Soon afterwards , Davis switched to the major Columbia record label and recorded seven albums over the next five years with producer Leo Graham and arranger James Mack who had collaborated with him for `` Turning Point '' . recorded with Davis producer Leo Graham at the major Columbia record label over the next five years
-Soon afterwards , Davis switched to the major Columbia record label and recorded seven albums over the next five years with producer Leo Graham and arranger James Mack who had collaborated with him for `` Turning Point '' . recorded with Davis arranger James Mack at the major Columbia record label over the next five years
-Soon afterwards , Davis switched to the major Columbia record label and recorded seven albums over the next five years with producer Leo Graham and arranger James Mack who had collaborated with him for `` Turning Point '' . was Leo Graham a producer
-Soon afterwards , Davis switched to the major Columbia record label and recorded seven albums over the next five years with producer Leo Graham and arranger James Mack who had collaborated with him for `` Turning Point '' . was James Mack an arranger
-Soon afterwards , Davis switched to the major Columbia record label and recorded seven albums over the next five years with producer Leo Graham and arranger James Mack who had collaborated with him for `` Turning Point '' . had collaborated with Davis for arranger James Mack `` Turning Point ''
-Soon afterwards , Davis switched to the major Columbia record label and recorded seven albums over the next five years with producer Leo Graham and arranger James Mack who had collaborated with him for `` Turning Point '' . had collaborated with Davis for producer Leo Graham `` Turning Point ''
-Soon afterwards , Davis switched to the major Columbia record label and recorded seven albums over the next five years with producer Leo Graham and arranger James Mack who had collaborated with him for `` Turning Point '' . was a Columbia major record label
-Several years later the remaining trackage at Charles City was abandoned . was abandoned the remaining trackage at Charles City Several years later
-Several years later the remaining trackage at Charles City was abandoned . was at the remaining trackage Charles City
-They remained together into their elderly ages for more than 40 years only to marry in 2000 . remained together They for more than 40 years
-They remained together into their elderly ages for more than 40 years only to marry in 2000 . remained together They into their elderly ages
-They remained together into their elderly ages for more than 40 years only to marry in 2000 . marry They in 2000
-This often results in unexpected deaths , either directly or from stress-induced illness . results in This unexpected deaths often
-This often results in unexpected deaths , either directly or from stress-induced illness . result from unexpected deaths stress-induced illness
-This often results in unexpected deaths , either directly or from stress-induced illness . result directly unexpected deaths from This
-The Anti-Monitor began to siphon the positive matter of New York City to create his Antimatter waves . began to siphon The Anti-Monitor the positive matter of New York City
-The Anti-Monitor began to siphon the positive matter of New York City to create his Antimatter waves . was of the positive matter New York City
-The Anti-Monitor began to siphon the positive matter of New York City to create his Antimatter waves . will be to create the positive matter of New York City The Anti-Monitor's Antimatter waves
-The Anti-Monitor began to siphon the positive matter of New York City to create his Antimatter waves . has The Anti-Monitor Antimatter waves
-The Anti-Monitor began to siphon the positive matter of New York City to create his Antimatter waves . is positive the matter of New York City
-It is the promise of economic returns that is supposed to make the corporatist model attractive to both the party and labor . is supposed to make attractive to the party the promise of economic returns the corporatist model
-It is the promise of economic returns that is supposed to make the corporatist model attractive to both the party and labor . is supposed to make attractive to labor the promise of economic returns the corporatist model
-It is the promise of economic returns that is supposed to make the corporatist model attractive to both the party and labor . are promised economic returns
-General Dynamics Corp. was given an $ 843 million Air Force contract for F - 16 aircraft and related equipment . was given General Dynamics Corp. an $ 843 million Air Force contract
-General Dynamics Corp. was given an $ 843 million Air Force contract for F - 16 aircraft and related equipment . was for an $ 843 million Air Force contract F - 16 aircraft
-General Dynamics Corp. was given an $ 843 million Air Force contract for F - 16 aircraft and related equipment . was for an $ 843 million Air Force contract F - 16 aircraft related equipment
-Japan 's No. 111 4.6 % bond due 1998 ended the day on brokers screens at 95.11 to yield 5.43 % . is due Japan 's No. 111 4.6 % bond 1998
-Japan 's No. 111 4.6 % bond due 1998 ended the day on brokers screens at 95.11 to yield 5.43 % . has Japan No. 111 4.6 % bond
-Japan 's No. 111 4.6 % bond due 1998 ended the day on brokers screens at 95.11 to yield 5.43 % . ended at Japan 's No. 111 4.6 % bond due 1998 95.11 on brokers screens the day
-Japan 's No. 111 4.6 % bond due 1998 ended the day on brokers screens at 95.11 to yield 5.43 % . ended to yield Japan 's No. 111 4.6 % bond due 1998 5.43 % the day
-Japan 's No. 111 4.6 % bond due 1998 ended the day on brokers screens at 95.11 to yield 5.43 % . have brokers screens
-Japan 's No. 111 4.6 % bond due 1998 ended the day on brokers screens at 95.11 to yield 5.43 % . is in No. 111 4.6 % bond due 1998 Japan
-It could point to plenty of ailments that the Spanish economic rejuvenation so far has failed to cure . could point to It plenty of ailments that the Spanish economic rejuvenation so far has failed to cure
-It could point to plenty of ailments that the Spanish economic rejuvenation so far has failed to cure . has failed to cure the Spanish economic rejuvenation plenty of ailments
-He became the first code-crosser to play test rugby league for Australia a second time after returning from rugby union . became He the first code-crosser to play test rugby league for Australia a second time
-He became the first code-crosser to play test rugby league for Australia a second time after returning from rugby union . was He a code-crosser
-He became the first code-crosser to play test rugby league for Australia a second time after returning from rugby union . play He test rugby league for Australia a second time
-He became the first code-crosser to play test rugby league for Australia a second time after returning from rugby union . play He in rugby union
-He became the first code-crosser to play test rugby league for Australia a second time after returning from rugby union . returning He from rugby union
-The car was based around a Rodeck resleevable , modified Chevrolet 350 ci V8 racing engine coupled to a custom three-speed transmission . was based around The car a Rodeck resleevable , modified Chevrolet 350 ci V8 racing engine
-The car was based around a Rodeck resleevable , modified Chevrolet 350 ci V8 racing engine coupled to a custom three-speed transmission . was coupled to a Rodeck resleevable , modified Chevrolet 350 ci V8 racing engine a custom three-speed transmission
-I am referring to those young men who chose to disobey their country 's call to arms during the Vietnam war and fled to Canada or some other sanctuary to avoid combat . am referring to I those young men who chose to disobey their country 's call to arms Canada or some other sanctuary to avoid combat during the Vietnam war and fled to
-I am referring to those young men who chose to disobey their country 's call to arms during the Vietnam war and fled to Canada or some other sanctuary to avoid combat . chose to disobey I am referring to those young men who their country 's call to arms Canada or some other sanctuary to avoid combat during the Vietnam war and fled to
-I am referring to those young men who chose to disobey their country 's call to arms during the Vietnam war and fled to Canada or some other sanctuary to avoid combat . fled to I am referring to those young men who chose to disobey their country 's call to arms during the Vietnam war and Canada or some other sanctuary to avoid combat
-Jack Kemp has submitted a package of reforms , and they are surely headed for the Capitol Hill sausage - grinder . has submitted Jack Kemp a package of reforms
-Jack Kemp has submitted a package of reforms , and they are surely headed for the Capitol Hill sausage - grinder . are surely headed for a package of reforms the Capitol Hill sausage - grinder
-Jack Kemp has submitted a package of reforms , and they are surely headed for the Capitol Hill sausage - grinder . has a Capitol Hill sausage - grinder
-The Harford County Public Schools system is the public school system serving the residents of Harford County . is The Harford County Public Schools system the public school system serving the residents of Harford County
-The Harford County Public Schools system is the public school system serving the residents of Harford County . is serving The Harford County Public Schools system the residents of Harford County
-The Harford County Public Schools system is the public school system serving the residents of Harford County . is The Harford County Public Schools system a public school system
-This work introduced the - fstack-protector flag , which protects only some vulnerable functions , and the - fstack-protector-all flag , which protects all functions whether they need it or not . introduced This work the - fstack-protector flag
-This work introduced the - fstack-protector flag , which protects only some vulnerable functions , and the - fstack-protector-all flag , which protects all functions whether they need it or not . protects the - fstack-protector flag only some vulnerable functions
-This work introduced the - fstack-protector flag , which protects only some vulnerable functions , and the - fstack-protector-all flag , which protects all functions whether they need it or not . introduced This work the - fstack-protector-all flag
-This work introduced the - fstack-protector flag , which protects only some vulnerable functions , and the - fstack-protector-all flag , which protects all functions whether they need it or not . protects whether they need it the - fstack-protector-all flag all functions
-This work introduced the - fstack-protector flag , which protects only some vulnerable functions , and the - fstack-protector-all flag , which protects all functions whether they need it or not . protects whether they need it not the - fstack-protector-all flag all functions
-This work introduced the - fstack-protector flag , which protects only some vulnerable functions , and the - fstack-protector-all flag , which protects all functions whether they need it or not . are some functions vulnerable
-In general , the rivalries between all the clubs were friendly , and families were known to switch affiliations depending on which one offered preferred services and events . were the rivalries all the clubs between
-In general , the rivalries between all the clubs were friendly , and families were known to switch affiliations depending on which one offered preferred services and events . were In general the rivalries between all the clubs friendly
-In general , the rivalries between all the clubs were friendly , and families were known to switch affiliations depending on which one offered preferred services and events . were known to switch families affiliations
-In general , the rivalries between all the clubs were friendly , and families were known to switch affiliations depending on which one offered preferred services and events . switch depending on families which clubs offered preferred services
-In general , the rivalries between all the clubs were friendly , and families were known to switch affiliations depending on which one offered preferred services and events . switch depending on families which clubs offered preferred events
-In general , the rivalries between all the clubs were friendly , and families were known to switch affiliations depending on which one offered preferred services and events . offered clubs services
-In general , the rivalries between all the clubs were friendly , and families were known to switch affiliations depending on which one offered preferred services and events . offered clubs events
-In general , the rivalries between all the clubs were friendly , and families were known to switch affiliations depending on which one offered preferred services and events . were with affiliations clubs
-Regulations meant that the original sixth lap would be deleted and the race would be restarted from the beginning of said lap . would be deleted Regulations meant that the original sixth lap
-Regulations meant that the original sixth lap would be deleted and the race would be restarted from the beginning of said lap . would be restarted from Regulations meant that the race the beginning of said lap
-In the summer , the lodge also houses the Trail Crew , a crew of Dartmouth Outing Club students who help maintain the seventeen Dartmouth Cabins & 50 miles of Appalachian trail between Hanover and the Lodge itself . also houses the lodge the Trail Crew In the summer
-In the summer , the lodge also houses the Trail Crew , a crew of Dartmouth Outing Club students who help maintain the seventeen Dartmouth Cabins & 50 miles of Appalachian trail between Hanover and the Lodge itself . are housed at the Trail Crew the lodge In the summer
-In the summer , the lodge also houses the Trail Crew , a crew of Dartmouth Outing Club students who help maintain the seventeen Dartmouth Cabins & 50 miles of Appalachian trail between Hanover and the Lodge itself . are the Trail Crew a crew of Dartmouth Outing Club students
-In the summer , the lodge also houses the Trail Crew , a crew of Dartmouth Outing Club students who help maintain the seventeen Dartmouth Cabins & 50 miles of Appalachian trail between Hanover and the Lodge itself . help maintain the Trail Crew the seventeen Dartmouth
-In the summer , the lodge also houses the Trail Crew , a crew of Dartmouth Outing Club students who help maintain the seventeen Dartmouth Cabins & 50 miles of Appalachian trail between Hanover and the Lodge itself . help maintain the Trail Crew 50 miles of Appalachian trail between Hanover and the Lodge itself
-In the summer , the lodge also houses the Trail Crew , a crew of Dartmouth Outing Club students who help maintain the seventeen Dartmouth Cabins & 50 miles of Appalachian trail between Hanover and the Lodge itself . are from a crew of Outing Club students Dartmouth
-In the summer , the lodge also houses the Trail Crew , a crew of Dartmouth Outing Club students who help maintain the seventeen Dartmouth Cabins & 50 miles of Appalachian trail between Hanover and the Lodge itself . are at seventeen Dartmouth Cabins the lodge
-In Taiwan , the locals speak a version of the Minnan language which is called Taiwanese . speak the locals a version of the Minnan language In Taiwan
-In Taiwan , the locals speak a version of the Minnan language which is called Taiwanese . is called a version of the Minnan language Taiwanese In Taiwan
-In Taiwan , the locals speak a version of the Minnan language which is called Taiwanese . speak the locals Taiwanese In Taiwan
-In Taiwan , the locals speak a version of the Minnan language which is called Taiwanese . is Taiwanese a version of the Minnan language In Taiwan
-The European powers first gained a foothold in Somalia through the signing of various pacts and agreements with the Somali Sultans that then controlled the region , such as Yusuf Ali Kenadid , Boqor Osman Mahamuud and Mohamoud Ali Shire . controlled Yusuf Ali Kenadid the Somalia region then
-The European powers first gained a foothold in Somalia through the signing of various pacts and agreements with the Somali Sultans that then controlled the region , such as Yusuf Ali Kenadid , Boqor Osman Mahamuud and Mohamoud Ali Shire . controlled Boqor Osman Mahamuud the Somalia region then
-The European powers first gained a foothold in Somalia through the signing of various pacts and agreements with the Somali Sultans that then controlled the region , such as Yusuf Ali Kenadid , Boqor Osman Mahamuud and Mohamoud Ali Shire . controlled Mohamoud Ali Shire the Somalia region then
-The European powers first gained a foothold in Somalia through the signing of various pacts and agreements with the Somali Sultans that then controlled the region , such as Yusuf Ali Kenadid , Boqor Osman Mahamuud and Mohamoud Ali Shire . were such as the Somali Sultans that controlled the region Yusuf Ali Kenadid then
-The European powers first gained a foothold in Somalia through the signing of various pacts and agreements with the Somali Sultans that then controlled the region , such as Yusuf Ali Kenadid , Boqor Osman Mahamuud and Mohamoud Ali Shire . were such as the Somali Sultans that controlled the region Boqor Osman Mahamuud then
-The European powers first gained a foothold in Somalia through the signing of various pacts and agreements with the Somali Sultans that then controlled the region , such as Yusuf Ali Kenadid , Boqor Osman Mahamuud and Mohamoud Ali Shire . were such as the Somali Sultans that controlled Mohamoud Ali Shire then
-The European powers first gained a foothold in Somalia through the signing of various pacts and agreements with the Somali Sultans that then controlled the region , such as Yusuf Ali Kenadid , Boqor Osman Mahamuud and Mohamoud Ali Shire . gained a foothold through the signing of The European powers various pacts and agreements with the Somali Sultans that then controlled the region in Somalia first
-The European powers first gained a foothold in Somalia through the signing of various pacts and agreements with the Somali Sultans that then controlled the region , such as Yusuf Ali Kenadid , Boqor Osman Mahamuud and Mohamoud Ali Shire . gained a foothold in The European powers Somalia
-The European powers first gained a foothold in Somalia through the signing of various pacts and agreements with the Somali Sultans that then controlled the region , such as Yusuf Ali Kenadid , Boqor Osman Mahamuud and Mohamoud Ali Shire . were The powers that gained a foothold in Somalia European
-The European powers first gained a foothold in Somalia through the signing of various pacts and agreements with the Somali Sultans that then controlled the region , such as Yusuf Ali Kenadid , Boqor Osman Mahamuud and Mohamoud Ali Shire . were in The powers that gained a foothold in Somalia Europe
-The European powers first gained a foothold in Somalia through the signing of various pacts and agreements with the Somali Sultans that then controlled the region , such as Yusuf Ali Kenadid , Boqor Osman Mahamuud and Mohamoud Ali Shire . were with various pacts the Somali Sultans that then controlled the region
-The European powers first gained a foothold in Somalia through the signing of various pacts and agreements with the Somali Sultans that then controlled the region , such as Yusuf Ali Kenadid , Boqor Osman Mahamuud and Mohamoud Ali Shire . were with various agreements the Somali Sultans that then controlled the region
-In major market activity : Stock prices rose in light trading . rose in light In major market activity : Stock prices trading
-Jaguar shares closed at 869 pence , up 122 pence , on hefty turnover of 9.7 million shares . closed at Jaguar shares 869 pence
-Jaguar shares closed at 869 pence , up 122 pence , on hefty turnover of 9.7 million shares . closed on hefty turnover of Jaguar shares 9.7 million shares
-Jaguar shares closed at 869 pence , up 122 pence , on hefty turnover of 9.7 million shares . were up Jaguar shares 122 pence , on hefty turnover of 9.7 million shares
-People close to the GM - Jaguar talks agreed that Ford now may be able to shut out General Motors . agreed that People close to the GM - Jaguar talks Ford now may be able to shut out General Motors
-People close to the GM - Jaguar talks agreed that Ford now may be able to shut out General Motors . are close to People the GM - Jaguar talks
-People close to the GM - Jaguar talks agreed that Ford now may be able to shut out General Motors . talks to GM Jaguar
-People close to the GM - Jaguar talks agreed that Ford now may be able to shut out General Motors . talks to Jaguar GM
-People close to the GM - Jaguar talks agreed that Ford now may be able to shut out General Motors . may be able to shut out Ford General Motors now
-So far , Nissan 's new - model successes are mostly specialized vehicles with limited sales potential . are mostly Nissan 's new - model successes specialized vehicles with limited sales potential So far
-So far , Nissan 's new - model successes are mostly specialized vehicles with limited sales potential . has Nissan new - model successes
-So far , Nissan 's new - model successes are mostly specialized vehicles with limited sales potential . have Nissan 's specialized vehicles limited sales potential
-Mr. Rifenburgh also noted that 150 million shares of MiniScribe common stock were traded during the past three years , `` so there 's a tremendous amount of exposure . '' also noted Mr. Rifenburgh that 150 million shares of MiniScribe common stock were traded during the past three years
-Mr. Rifenburgh also noted that 150 million shares of MiniScribe common stock were traded during the past three years , `` so there 's a tremendous amount of exposure . '' also noted Mr. Rifenburgh `` there 's a tremendous amount of exposure . ''
-Each of these people influenced her development as a person . influenced Each of these people her development as a person
-Each of these people influenced her development as a person . was as her development a person
-The drop marked the largest monthly tumble since a 19 % slide in January 1982 . was a 19 % slide the monthly tumble in January 1982
-The drop marked the largest monthly tumble since a 19 % slide in January 1982 . marked The drop the largest monthly tumble since January 1982
-A second factor is resource dependence ; there must be a perceptible threat of resource depletion , and it must be difficult to find substitutes . is second factor resource dependence
-A second factor is resource dependence ; there must be a perceptible threat of resource depletion , and it must be difficult to find substitutes . must be resource depletion a perceptible threat
-A second factor is resource dependence ; there must be a perceptible threat of resource depletion , and it must be difficult to find substitutes . to find it must be difficult substitutes
-Eastern and its creditors are in the final , delicate stages of negotiating a second reorganization plan to pay off the airline 's debts . is in the final , delicate stages of negotiating Eastern a second reorganization plan
-Eastern and its creditors are in the final , delicate stages of negotiating a second reorganization plan to pay off the airline 's debts . are in the final , delicate stages of negotiating its creditors a second reorganization plan
-Eastern and its creditors are in the final , delicate stages of negotiating a second reorganization plan to pay off the airline 's debts . has Eastern creditors
-Eastern and its creditors are in the final , delicate stages of negotiating a second reorganization plan to pay off the airline 's debts . are the final stages of negotiating a second reorganization plan delicate
-Eastern and its creditors are in the final , delicate stages of negotiating a second reorganization plan to pay off the airline 's debts . is to pay off a second reorganization plan the airline 's debts
-Eastern and its creditors are in the final , delicate stages of negotiating a second reorganization plan to pay off the airline 's debts . has debts Eastern
-Ed drives the creature into the airlock , with the intention of venting it into space . drives Ed the creature into the airlock
-Ed drives the creature into the airlock , with the intention of venting it into space . has the intention of venting Ed the creature into space
-In 1970 , Arad moved to the United States and enrolled at Hofstra University to study industrial management . moved to Arad the United States In 1970
-In 1970 , Arad moved to the United States and enrolled at Hofstra University to study industrial management . enrolled at Arad Hofstra University In 1970
-In 1970 , Arad moved to the United States and enrolled at Hofstra University to study industrial management . will study Arad industrial management at Hofstra University
-Because the federal pension agency had taken over the old plans , LTV would be responsible only for benefits paid under the new pension plans . had taken over the federal pension agency the old plans
-Because the federal pension agency had taken over the old plans , LTV would be responsible only for benefits paid under the new pension plans . would be responsible only for LTV benefits paid under the new pension plans
-Because the federal pension agency had taken over the old plans , LTV would be responsible only for benefits paid under the new pension plans . Because LTV would be responsible only for benefits paid under the new pension plans the federal pension agency had taken over the old plans
-Last year , the Supreme Court defined when companies , such as military contractors , may defend themselves against lawsuits for deaths or injuries by asserting that they were simply following specifications of a federal government contract . defined the Supreme Court when companies may defend themselves against lawsuits for deaths or injuries by asserting that they were simply following specifications of a federal government contract Last year
-Last year , the Supreme Court defined when companies , such as military contractors , may defend themselves against lawsuits for deaths or injuries by asserting that they were simply following specifications of a federal government contract . defined the Supreme Court when companies , such as military contractors , may defend themselves Last year
-Last year , the Supreme Court defined when companies , such as military contractors , may defend themselves against lawsuits for deaths or injuries by asserting that they were simply following specifications of a federal government contract . asserted the Supreme Court that companies , such as military contractors , may defend themselves against lawsuits for deaths or injuries Last year
-Large cross - border deals numbered 51 and totaled $ 17.1 billion in the second quarter , the firm added . numbered Large cross - border deals 51 in the second quarter
-Large cross - border deals numbered 51 and totaled $ 17.1 billion in the second quarter , the firm added . totaled Large cross - border deals $ 17.1 billion in the second quarter
-Large cross - border deals numbered 51 and totaled $ 17.1 billion in the second quarter , the firm added . added the firm Large cross - border deals numbered 51 and totaled $ 17.1 billion in the second quarter
-Undercover cop Muscles enlists his childhood friends , the `` Five Lucky Stars '' , to travel to Japan to help him catch a Yakuza group . is Muscles an Undercover cop
-Undercover cop Muscles enlists his childhood friends , the `` Five Lucky Stars '' , to travel to Japan to help him catch a Yakuza group . has Undercover cop Muscles childhood friends
-Undercover cop Muscles enlists his childhood friends , the `` Five Lucky Stars '' , to travel to Japan to help him catch a Yakuza group . enlists Undercover cop Muscles his childhood friends to travel to Japan to help him catch a Yakuza group
-Undercover cop Muscles enlists his childhood friends , the `` Five Lucky Stars '' , to travel to Japan to help him catch a Yakuza group . enlists his childhood friends to Undercover cop Muscles travel to Japan to help him catch a Yakuza group
-Undercover cop Muscles enlists his childhood friends , the `` Five Lucky Stars '' , to travel to Japan to help him catch a Yakuza group . enlists his childhood friends to travel to Undercover cop Muscles Japan
-Undercover cop Muscles enlists his childhood friends , the `` Five Lucky Stars '' , to travel to Japan to help him catch a Yakuza group . enlists his childhood friends to travel to Japan to Undercover cop Muscles help him catch a Yakuza group
-Undercover cop Muscles enlists his childhood friends , the `` Five Lucky Stars '' , to travel to Japan to help him catch a Yakuza group . enlists his childhood friends to travel to Japan to help him catch Undercover cop Muscles a Yakuza group
-Undercover cop Muscles enlists his childhood friends , the `` Five Lucky Stars '' , to travel to Japan to help him catch a Yakuza group . are the `` Five Lucky Stars '' Undercover cop Muscles' childhood friends
-They do n't possess eyelids so they must lick their eyeballs clean in order to keep them moist . don't possess They eyelids
-They do n't possess eyelids so they must lick their eyeballs clean in order to keep them moist . they must lick their They don't possess eyelids so eyeballs clean in order to keep them moist
-They do n't possess eyelids so they must lick their eyeballs clean in order to keep them moist . must lick their eyeballs clean they in order to keep them moist
-In particular , her grandmother required high standards of behavior from Florence , referring to the family as descendants of Virginia 's colonial elite . required from Florence her grandmother high standards of behavior
-In particular , her grandmother required high standards of behavior from Florence , referring to the family as descendants of Virginia 's colonial elite . had Florence grandmother
-In particular , her grandmother required high standards of behavior from Florence , referring to the family as descendants of Virginia 's colonial elite . was referring to the family as her grandmother descendants of Virginia 's colonial elite
-In particular , her grandmother required high standards of behavior from Florence , referring to the family as descendants of Virginia 's colonial elite . were in colonial elite Virginia
-Following the decision to withdraw tram services in London and replace them with buses , the station closed just after 12.30 am on 6 April 1952 . closed the station just after 12.30 am on 6 April 1952
-Following the decision to withdraw tram services in London and replace them with buses , the station closed just after 12.30 am on 6 April 1952 . closed Following the station the decision to withdraw tram services in London and replace them with buses
-Following the decision to withdraw tram services in London and replace them with buses , the station closed just after 12.30 am on 6 April 1952 . was to withdraw the decision tram services in London
-Following the decision to withdraw tram services in London and replace them with buses , the station closed just after 12.30 am on 6 April 1952 . was to replace with buses the decision tram services in London
-The number of ones equals the number of zeros plus one , since the state containing only zeros can not occur . equals The number of ones the number of zeros plus one
-The number of ones equals the number of zeros plus one , since the state containing only zeros can not occur . can not occur the state containing only zeros
-Along with these , there were also commissioners sent to the army , in charge of provisioning the army , policing and finances ; they would supervise accountants , providers , merchants , and generals , and attend war councils and tribunals for military crimes . were sent to the commissioners the army
-Along with these , there were also commissioners sent to the army , in charge of provisioning the army , policing and finances ; they would supervise accountants , providers , merchants , and generals , and attend war councils and tribunals for military crimes . would supervise commissioners accountants
-Along with these , there were also commissioners sent to the army , in charge of provisioning the army , policing and finances ; they would supervise accountants , providers , merchants , and generals , and attend war councils and tribunals for military crimes . would supervise commissioners providers
-Along with these , there were also commissioners sent to the army , in charge of provisioning the army , policing and finances ; they would supervise accountants , providers , merchants , and generals , and attend war councils and tribunals for military crimes . would supervise commissioners merchants
-Along with these , there were also commissioners sent to the army , in charge of provisioning the army , policing and finances ; they would supervise accountants , providers , merchants , and generals , and attend war councils and tribunals for military crimes . would supervise commissioners generals
-The main reason for this adoption over mainline gimp was its support for high bit depths which can be required for film work . has support for this adoption high bit depths
-The main reason for this adoption over mainline gimp was its support for high bit depths which can be required for film work . can be required for high bit depths film work
-The main reason for this adoption over mainline gimp was its support for high bit depths which can be required for film work . was over this adoption mainline gimp
-The main reason for this adoption over mainline gimp was its support for high bit depths which can be required for film work . has no support for mainline gimp high bit depths
-The main reason for this adoption over mainline gimp was its support for high bit depths which can be required for film work . was The main reason for its support for high bit depths which can be required for film work this adoption over mainline gimp
-One group of middle - aged manufacturing men from the company 's Zama plant outside Tokyo was supposed to check out a trendy restaurant in the city . has Zama plant the company
-One group of middle - aged manufacturing men from the company 's Zama plant outside Tokyo was supposed to check out a trendy restaurant in the city . is the company 's Zama plant outside Tokyo
-One group of middle - aged manufacturing men from the company 's Zama plant outside Tokyo was supposed to check out a trendy restaurant in the city . is of One group middle - aged manufacturing men from the company 's Zama plant outside Tokyo
-One group of middle - aged manufacturing men from the company 's Zama plant outside Tokyo was supposed to check out a trendy restaurant in the city . was supposed to check out One group of middle - aged manufacturing men from the company 's Zama plant outside Tokyo a trendy restaurant in the city
-One group of middle - aged manufacturing men from the company 's Zama plant outside Tokyo was supposed to check out a trendy restaurant in the city . will be the restaurant trendy
-One group of middle - aged manufacturing men from the company 's Zama plant outside Tokyo was supposed to check out a trendy restaurant in the city . will be the restaurant in the city
-This manual for warriors describes the necessity for understanding an opponent 's weaknesses , for using spies , and for striking in moments of weakness . is for This manual warriors
-This manual for warriors describes the necessity for understanding an opponent 's weaknesses , for using spies , and for striking in moments of weakness . describes This manual for warriors the necessity for understanding an opponent 's weaknesses
-This manual for warriors describes the necessity for understanding an opponent 's weaknesses , for using spies , and for striking in moments of weakness . describes This manual for warriors the necessity for using spies
-This manual for warriors describes the necessity for understanding an opponent 's weaknesses , for using spies , and for striking in moments of weakness . describes This manual for warriors the necessity for striking in moments of weakness
-Consistent with systems philosophy , systems thinking concerns an understanding of a system by examining the linkages and interactions between the elements that compose the entirety of the system . concerns an understanding of a system by examining systems thinking the linkages between the elements that compose the entirety of the system
-Consistent with systems philosophy , systems thinking concerns an understanding of a system by examining the linkages and interactions between the elements that compose the entirety of the system . concerns an understanding of a system by examining systems thinking the interactions between the elements that compose the entirety of the system
-Consistent with systems philosophy , systems thinking concerns an understanding of a system by examining the linkages and interactions between the elements that compose the entirety of the system . is Consistent with systems thinking systems philosophy
-Prior to the war , he was a lawyer , public official , and politician in Hillsborough , North Carolina , and was heavily involved in opposing the Regulator movement , an uprising of settlers in the North Carolina piedmont between 1765 and 1771 . was he a lawyer in Hillsborough , North Carolina Prior to the war
-Prior to the war , he was a lawyer , public official , and politician in Hillsborough , North Carolina , and was heavily involved in opposing the Regulator movement , an uprising of settlers in the North Carolina piedmont between 1765 and 1771 . was he a public official in Hillsborough , North Carolina Prior to the war
-Prior to the war , he was a lawyer , public official , and politician in Hillsborough , North Carolina , and was heavily involved in opposing the Regulator movement , an uprising of settlers in the North Carolina piedmont between 1765 and 1771 . was he a politician in Hillsborough , North Carolina Prior to the war
-Prior to the war , he was a lawyer , public official , and politician in Hillsborough , North Carolina , and was heavily involved in opposing the Regulator movement , an uprising of settlers in the North Carolina piedmont between 1765 and 1771 . is in Hillsborough North Carolina
-Prior to the war , he was a lawyer , public official , and politician in Hillsborough , North Carolina , and was heavily involved in opposing the Regulator movement , an uprising of settlers in the North Carolina piedmont between 1765 and 1771 . was heavily involved in opposing he the Regulator movement Prior to the war
-Prior to the war , he was a lawyer , public official , and politician in Hillsborough , North Carolina , and was heavily involved in opposing the Regulator movement , an uprising of settlers in the North Carolina piedmont between 1765 and 1771 . was an uprising of the Regulator movement settlers in the North Carolina piedmont between 1765 and 1771
-Prior to the war , he was a lawyer , public official , and politician in Hillsborough , North Carolina , and was heavily involved in opposing the Regulator movement , an uprising of settlers in the North Carolina piedmont between 1765 and 1771 . were in settlers the North Carolina piedmont
-At first , she seems happy with this arrangement . seems she happy with this arrangement At first
-The network must refund money to the advertisers and loses considerable revenue and prestige . must refund money to the The network advertisers
-The network must refund money to the advertisers and loses considerable revenue and prestige . loses The network considerable revenue and prestige
-The network must refund money to the advertisers and loses considerable revenue and prestige . loses The network considerable revenue
-The network must refund money to the advertisers and loses considerable revenue and prestige . loses The network prestige
-Their purpose is to be fair to both parties , disallowing the raising of allegations without a basis in provable fact . is to be fair to Their purpose both parties
-Their purpose is to be fair to both parties , disallowing the raising of allegations without a basis in provable fact . is fair to disallowing the raising of allegations without a basis in provable fact both parties
-Their purpose is to be fair to both parties , disallowing the raising of allegations without a basis in provable fact . are disallowing the raising of allegations without They a basis in provable fact
-After a break of four years , he became a Lord Justice of Appeal . became he a Lord Justice of Appeal After a break of four years
-After a break of four years , he became a Lord Justice of Appeal . had he a break of four years
-Boyer and Cohen , for instance , both still university researchers , had to be talked into applying for a patent on their gene - splicing technique -- and then the Patent Office refused to grant it . is Boyer a university researcher still
-Boyer and Cohen , for instance , both still university researchers , had to be talked into applying for a patent on their gene - splicing technique -- and then the Patent Office refused to grant it . is Cohen a university researcher still
-Boyer and Cohen , for instance , both still university researchers , had to be talked into applying for a patent on their gene - splicing technique -- and then the Patent Office refused to grant it . are both university researchers still
-Boyer and Cohen , for instance , both still university researchers , had to be talked into applying for a patent on their gene - splicing technique -- and then the Patent Office refused to grant it . are both Boyer and Cohen
-Boyer and Cohen , for instance , both still university researchers , had to be talked into applying for a patent on their gene - splicing technique -- and then the Patent Office refused to grant it . had to be talked into applying for Boyer a patent on their gene - splicing technique
-Boyer and Cohen , for instance , both still university researchers , had to be talked into applying for a patent on their gene - splicing technique -- and then the Patent Office refused to grant it . had to be talked into applying for Cohen a patent on their gene - splicing technique
-Boyer and Cohen , for instance , both still university researchers , had to be talked into applying for a patent on their gene - splicing technique -- and then the Patent Office refused to grant it . had Boyer a gene - splicing technique
-Boyer and Cohen , for instance , both still university researchers , had to be talked into applying for a patent on their gene - splicing technique -- and then the Patent Office refused to grant it . had Cohen a gene - splicing technique
-Boyer and Cohen , for instance , both still university researchers , had to be talked into applying for a patent on their gene - splicing technique -- and then the Patent Office refused to grant it . refused to grant the Patent Office a patent on their gene - splicing technique then
-We finally rendezvoused with our balloon , which had come to rest on a dirt road amid a clutch of Epinalers who watched us disassemble our craft -- another half - an - hour of non - flight activity -- that included the precision routine of yanking the balloon to the ground , punching all the air out of it , rolling it up and cramming it and the basket into the trailer . rendezvoused with We our balloon finally
-We finally rendezvoused with our balloon , which had come to rest on a dirt road amid a clutch of Epinalers who watched us disassemble our craft -- another half - an - hour of non - flight activity -- that included the precision routine of yanking the balloon to the ground , punching all the air out of it , rolling it up and cramming it and the basket into the trailer . had come to rest on our balloon a dirt road
-We finally rendezvoused with our balloon , which had come to rest on a dirt road amid a clutch of Epinalers who watched us disassemble our craft -- another half - an - hour of non - flight activity -- that included the precision routine of yanking the balloon to the ground , punching all the air out of it , rolling it up and cramming it and the basket into the trailer . had come to rest amid our balloon a clutch of Epinalers
-We finally rendezvoused with our balloon , which had come to rest on a dirt road amid a clutch of Epinalers who watched us disassemble our craft -- another half - an - hour of non - flight activity -- that included the precision routine of yanking the balloon to the ground , punching all the air out of it , rolling it up and cramming it and the basket into the trailer . watched us disassemble a clutch of Epinalers our craft
-We finally rendezvoused with our balloon , which had come to rest on a dirt road amid a clutch of Epinalers who watched us disassemble our craft -- another half - an - hour of non - flight activity -- that included the precision routine of yanking the balloon to the ground , punching all the air out of it , rolling it up and cramming it and the basket into the trailer . are in a clutch Epinalers
-We finally rendezvoused with our balloon , which had come to rest on a dirt road amid a clutch of Epinalers who watched us disassemble our craft -- another half - an - hour of non - flight activity -- that included the precision routine of yanking the balloon to the ground , punching all the air out of it , rolling it up and cramming it and the basket into the trailer . included disassembling our craft the precision routine of yanking the balloon to the ground , punching all the air out of it , rolling it up and cramming it and the basket into the trailer
-We finally rendezvoused with our balloon , which had come to rest on a dirt road amid a clutch of Epinalers who watched us disassemble our craft -- another half - an - hour of non - flight activity -- that included the precision routine of yanking the balloon to the ground , punching all the air out of it , rolling it up and cramming it and the basket into the trailer . was yanked to the balloon the ground
-We finally rendezvoused with our balloon , which had come to rest on a dirt road amid a clutch of Epinalers who watched us disassemble our craft -- another half - an - hour of non - flight activity -- that included the precision routine of yanking the balloon to the ground , punching all the air out of it , rolling it up and cramming it and the basket into the trailer . was punched out of all the air the balloon
-We finally rendezvoused with our balloon , which had come to rest on a dirt road amid a clutch of Epinalers who watched us disassemble our craft -- another half - an - hour of non - flight activity -- that included the precision routine of yanking the balloon to the ground , punching all the air out of it , rolling it up and cramming it and the basket into the trailer . was rolled up the balloon
-We finally rendezvoused with our balloon , which had come to rest on a dirt road amid a clutch of Epinalers who watched us disassemble our craft -- another half - an - hour of non - flight activity -- that included the precision routine of yanking the balloon to the ground , punching all the air out of it , rolling it up and cramming it and the basket into the trailer . was crammed into the balloon the trailer
-We finally rendezvoused with our balloon , which had come to rest on a dirt road amid a clutch of Epinalers who watched us disassemble our craft -- another half - an - hour of non - flight activity -- that included the precision routine of yanking the balloon to the ground , punching all the air out of it , rolling it up and cramming it and the basket into the trailer . was crammed into the basket the trailer
-We finally rendezvoused with our balloon , which had come to rest on a dirt road amid a clutch of Epinalers who watched us disassemble our craft -- another half - an - hour of non - flight activity -- that included the precision routine of yanking the balloon to the ground , punching all the air out of it , rolling it up and cramming it and the basket into the trailer . took disassembling our craft half - an - hour
-We finally rendezvoused with our balloon , which had come to rest on a dirt road amid a clutch of Epinalers who watched us disassemble our craft -- another half - an - hour of non - flight activity -- that included the precision routine of yanking the balloon to the ground , punching all the air out of it , rolling it up and cramming it and the basket into the trailer . was another half - an - hour of disassembling our craft non - flight activity
-We finally rendezvoused with our balloon , which had come to rest on a dirt road amid a clutch of Epinalers who watched us disassemble our craft -- another half - an - hour of non - flight activity -- that included the precision routine of yanking the balloon to the ground , punching all the air out of it , rolling it up and cramming it and the basket into the trailer . was of yanking to the ground the precision routine the balloon
-We finally rendezvoused with our balloon , which had come to rest on a dirt road amid a clutch of Epinalers who watched us disassemble our craft -- another half - an - hour of non - flight activity -- that included the precision routine of yanking the balloon to the ground , punching all the air out of it , rolling it up and cramming it and the basket into the trailer . was of punching all the air out of the precision routine the balloon
-We finally rendezvoused with our balloon , which had come to rest on a dirt road amid a clutch of Epinalers who watched us disassemble our craft -- another half - an - hour of non - flight activity -- that included the precision routine of yanking the balloon to the ground , punching all the air out of it , rolling it up and cramming it and the basket into the trailer . was of rolling up the precision routine the balloon
-We finally rendezvoused with our balloon , which had come to rest on a dirt road amid a clutch of Epinalers who watched us disassemble our craft -- another half - an - hour of non - flight activity -- that included the precision routine of yanking the balloon to the ground , punching all the air out of it , rolling it up and cramming it and the basket into the trailer . was of cramming into the trailer the precision routine the balloon
-We finally rendezvoused with our balloon , which had come to rest on a dirt road amid a clutch of Epinalers who watched us disassemble our craft -- another half - an - hour of non - flight activity -- that included the precision routine of yanking the balloon to the ground , punching all the air out of it , rolling it up and cramming it and the basket into the trailer . was dirt the road
-We finally rendezvoused with our balloon , which had come to rest on a dirt road amid a clutch of Epinalers who watched us disassemble our craft -- another half - an - hour of non - flight activity -- that included the precision routine of yanking the balloon to the ground , punching all the air out of it , rolling it up and cramming it and the basket into the trailer . is precision the routine
-It was only incidentally that economic issues appeared in nationalist political forms . appeared only incidentally in economic issues nationalist political forms
-Other people that can be classified using this title include the Vice President and Cabinet secretaries . that can be classified using this title include people the Vice President and Cabinet secretaries
-Other people that can be classified using this title include the Vice President and Cabinet secretaries . can be classified using people this title
-Other people that can be classified using this title include the Vice President and Cabinet secretaries . classified using this title include people the Vice President
-Other people that can be classified using this title include the Vice President and Cabinet secretaries . classified using this title include people Cabinet secretaries
-Other people that can be classified using this title include the Vice President and Cabinet secretaries . using this title include people the Vice President
-Other people that can be classified using this title include the Vice President and Cabinet secretaries . using this title include people Cabinet secretaries
-Other people that can be classified using this title include the Vice President and Cabinet secretaries . is classified using the Vice President this title
-Other people that can be classified using this title include the Vice President and Cabinet secretaries . are classified using Cabinet secretaries this title
-In 2010 , popular internet reviewers RedLetterMedia delivered a scathing video critique of the film , drawing negative comparisons to The Three Stooges , Looney Tunes , and `` Home Alone '' . delivered popular internet reviewers RedLetterMedia a scathing video critique of the film In 2010
-In 2010 , popular internet reviewers RedLetterMedia delivered a scathing video critique of the film , drawing negative comparisons to The Three Stooges , Looney Tunes , and `` Home Alone '' . were drawing negative comparisons of the film to popular internet reviewers RedLetterMedia The Three Stooges In 2010
-In 2010 , popular internet reviewers RedLetterMedia delivered a scathing video critique of the film , drawing negative comparisons to The Three Stooges , Looney Tunes , and `` Home Alone '' . were drawing negative comparisons of the film to popular internet reviewers RedLetterMedia Looney Tunes In 2010
-In 2010 , popular internet reviewers RedLetterMedia delivered a scathing video critique of the film , drawing negative comparisons to The Three Stooges , Looney Tunes , and `` Home Alone '' . were drawing negative comparisons of the film to popular internet reviewers RedLetterMedia `` Home Alone '' In 2010
-In 2010 , popular internet reviewers RedLetterMedia delivered a scathing video critique of the film , drawing negative comparisons to The Three Stooges , Looney Tunes , and `` Home Alone '' . are RedLetterMedia popular
-In 2010 , popular internet reviewers RedLetterMedia delivered a scathing video critique of the film , drawing negative comparisons to The Three Stooges , Looney Tunes , and `` Home Alone '' . are RedLetterMedia internet reviewers
-They say these are small prices to pay for galvanizing action for the all - important cause . say They these are small prices to pay for galvanizing action for the all - important cause
-They say these are small prices to pay for galvanizing action for the all - important cause . is all - important the cause
-They say these are small prices to pay for galvanizing action for the all - important cause . are small prices to pay for galvanizing action for the all - important cause
-They say these are small prices to pay for galvanizing action for the all - important cause . pay for galvanizing action for these small prices the all - important cause
-Wild radish seeds contain up to 48 % oil content , and while not suitable for human consumption , this oil is a potential source of biofuel . contain up to Wild radish seeds 48 % oil content
-Wild radish seeds contain up to 48 % oil content , and while not suitable for human consumption , this oil is a potential source of biofuel . not suitable for Wild radish seeds human consumption
-Wild radish seeds contain up to 48 % oil content , and while not suitable for human consumption , this oil is a potential source of biofuel . is a Wild radish seeds oil potential source of biofuel
-Korean villagers hiding resistance fighters were dealt with harshly , often with summary execution , rape , forced labour , and looting . were hiding Korean villagers resistance fighters
-Korean villagers hiding resistance fighters were dealt with harshly , often with summary execution , rape , forced labour , and looting . were dealt with Korean villagers hiding resistance fighters harshly
-Korean villagers hiding resistance fighters were dealt with harshly , often with summary execution , rape , forced labour , and looting . were often dealt with Korean villagers hiding resistance fighters summary execution
-Korean villagers hiding resistance fighters were dealt with harshly , often with summary execution , rape , forced labour , and looting . were often dealt with Korean villagers hiding resistance fighters rape
-Korean villagers hiding resistance fighters were dealt with harshly , often with summary execution , rape , forced labour , and looting . were often dealt with Korean villagers hiding resistance fighters forced labour
-Korean villagers hiding resistance fighters were dealt with harshly , often with summary execution , rape , forced labour , and looting . were often dealt with Korean villagers hiding resistance fighters looting
-Korean villagers hiding resistance fighters were dealt with harshly , often with summary execution , rape , forced labour , and looting . were in villagers hiding resistance fighters Korea
-This led morning show host Ryan Cameron to lobby for a frequency change for WHTA by putting together a petition from listeners at the risk of losing his job under Radio One 's management . is Ryan Cameron a morning show host
-This led morning show host Ryan Cameron to lobby for a frequency change for WHTA by putting together a petition from listeners at the risk of losing his job under Radio One 's management . is Ryan Cameron a show host in the morning
-This led morning show host Ryan Cameron to lobby for a frequency change for WHTA by putting together a petition from listeners at the risk of losing his job under Radio One 's management . lobbied for morning show host Ryan Cameron a frequency change for WHTA
-This led morning show host Ryan Cameron to lobby for a frequency change for WHTA by putting together a petition from listeners at the risk of losing his job under Radio One 's management . lobbied by putting together morning show host Ryan Cameron a petition from listeners
-This led morning show host Ryan Cameron to lobby for a frequency change for WHTA by putting together a petition from listeners at the risk of losing his job under Radio One 's management . put together a petition from listeners at morning show host Ryan Cameron the risk of losing his job under Radio One 's management
-This led morning show host Ryan Cameron to lobby for a frequency change for WHTA by putting together a petition from listeners at the risk of losing his job under Radio One 's management . was under morning show host Ryan Cameron's job Radio One 's management
-Along with these , there were also commissioners sent to the army , in charge of provisioning the army , policing and finances ; they would supervise accountants , providers , merchants , and generals , and attend war councils and tribunals for military crimes . attend commissioners war councils
-Along with these , there were also commissioners sent to the army , in charge of provisioning the army , policing and finances ; they would supervise accountants , providers , merchants , and generals , and attend war councils and tribunals for military crimes . attend commissioners tribunals for military crimes
-Along with these , there were also commissioners sent to the army , in charge of provisioning the army , policing and finances ; they would supervise accountants , providers , merchants , and generals , and attend war councils and tribunals for military crimes . in charge of commissioners provisioning the army
-Along with these , there were also commissioners sent to the army , in charge of provisioning the army , policing and finances ; they would supervise accountants , providers , merchants , and generals , and attend war councils and tribunals for military crimes . in charge of commissioners policing
-Along with these , there were also commissioners sent to the army , in charge of provisioning the army , policing and finances ; they would supervise accountants , providers , merchants , and generals , and attend war councils and tribunals for military crimes . in charge of commissioners finances
-He did not go as far as he could have in tax reductions ; indeed he combined them with increases in indirect taxes . did not go as far as he could have He in tax reductions
-He did not go as far as he could have in tax reductions ; indeed he combined them with increases in indirect taxes . indeed combined them with he increases in indirect taxes
-Made of space - age materials , the wheel spokes are designed like airplane wings to shave 10 minutes off the time of a rider in a 100 - mile race , the company claims . are Made of the wheel spokes space - age materials
-Made of space - age materials , the wheel spokes are designed like airplane wings to shave 10 minutes off the time of a rider in a 100 - mile race , the company claims . are designed like the wheel spokes airplane wings
-Made of space - age materials , the wheel spokes are designed like airplane wings to shave 10 minutes off the time of a rider in a 100 - mile race , the company claims . are designed to shave 10 minutes off the wheel spokes the time of a rider in a 100 - mile race
-Made of space - age materials , the wheel spokes are designed like airplane wings to shave 10 minutes off the time of a rider in a 100 - mile race , the company claims . claims the company the wheel spokes are designed like airplane wings to shave 10 minutes off the time of a rider in a 100 - mile race
-And the lawyers were just as eager as the judge to wrap it up . were just as eager as the lawyers the judge to wrap it up
-And the lawyers were just as eager as the judge to wrap it up . were eager to the lawyers wrap it up
-And the lawyers were just as eager as the judge to wrap it up . was eager to the judge wrap it up
-The Library Board is charged with reviewing the strategic plans of the Harvard Library and assessing its progress in meeting those plans , reviewing system-wide policies and standards and overseeing the progress of the central services . is charged with reviewing The Library Board the strategic plans of the Harvard Library
-The Library Board is charged with reviewing the strategic plans of the Harvard Library and assessing its progress in meeting those plans , reviewing system-wide policies and standards and overseeing the progress of the central services . is charged with assessing The Library Board its progress in meeting those plans
-The Library Board is charged with reviewing the strategic plans of the Harvard Library and assessing its progress in meeting those plans , reviewing system-wide policies and standards and overseeing the progress of the central services . are those plans the strategic plans of the Harvard Library
-The Library Board is charged with reviewing the strategic plans of the Harvard Library and assessing its progress in meeting those plans , reviewing system-wide policies and standards and overseeing the progress of the central services . is charged with reviewing The Library Board system-wide policies
-The Library Board is charged with reviewing the strategic plans of the Harvard Library and assessing its progress in meeting those plans , reviewing system-wide policies and standards and overseeing the progress of the central services . is charged with reviewing The Library Board system-wide standards
-The Library Board is charged with reviewing the strategic plans of the Harvard Library and assessing its progress in meeting those plans , reviewing system-wide policies and standards and overseeing the progress of the central services . is charged with overseeing The Library Board the progress of the central services
-The exhibit premiered at the Helmut Newton Foundation in Berlin and combined the work of all three with personal snapshots , contact sheets , and letters from their time with Helmut . premiered at The exhibit the Helmut Newton Foundation in Berlin
-The exhibit premiered at the Helmut Newton Foundation in Berlin and combined the work of all three with personal snapshots , contact sheets , and letters from their time with Helmut . is in the Helmut Newton Foundation Berlin
-The exhibit premiered at the Helmut Newton Foundation in Berlin and combined the work of all three with personal snapshots , contact sheets , and letters from their time with Helmut . combined the work of all three with The exhibit personal snapshots from their time with Helmut
-The exhibit premiered at the Helmut Newton Foundation in Berlin and combined the work of all three with personal snapshots , contact sheets , and letters from their time with Helmut . combined the work of all three with The exhibit contact sheets from their time with Helmut
-The exhibit premiered at the Helmut Newton Foundation in Berlin and combined the work of all three with personal snapshots , contact sheets , and letters from their time with Helmut . combined the work of all three with The exhibit letters from their time with Helmut
-The Lletty Shenkin explosion of 1849 , in particular , led to demands the local middle classes in Aberdare , for improved safety in the mines . was The explosion at Lletty Shenkin in 1849
-The Lletty Shenkin explosion of 1849 , in particular , led to demands the local middle classes in Aberdare , for improved safety in the mines . led to demands for The Lletty Shenkin explosion of 1849 improved safety in the mines
-The Lletty Shenkin explosion of 1849 , in particular , led to demands the local middle classes in Aberdare , for improved safety in the mines . led to demands by The Lletty Shenkin explosion of 1849 the local middle classes in Aberdare
-The Lletty Shenkin explosion of 1849 , in particular , led to demands the local middle classes in Aberdare , for improved safety in the mines . were in the local middle classes Aberdare
-He has been considered several times for appointments to federal district and appellate court vacancies in Pennsylvania . He has been considered several times for appointments to federal district in Pennsylvania
-He has been considered several times for appointments to federal district and appellate court vacancies in Pennsylvania . He has been considered several times for appellate court vacancies in Pennsylvania
-He has been considered several times for appointments to federal district and appellate court vacancies in Pennsylvania . He has been considered several times for appointments to federal district in Pennsylvania
-He has been considered several times for appointments to federal district and appellate court vacancies in Pennsylvania . Pennsylvania has appointments to federal district
-He has been considered several times for appointments to federal district and appellate court vacancies in Pennsylvania . Pennsylvania has appellate court vacancies
-On 1 July 1955 he was made an Officer of the Order of St John . was made he an Officer of the Order of St John On 1 July 1955
-Ballast tanks are equipped to change a ship 's trim and modify its stability . are equipped to change Ballast tanks a ship 's trim
-Ballast tanks are equipped to change a ship 's trim and modify its stability . are equipped to modify Ballast tanks a ship 's stability
-While the infantry based part of the doctrine demanded `` powerful tanks '' and `` tankettes '' , the shock Army demanded `` manoeuvre tanks '' used in conjunction with motorized forces and `` mechanized cavalry '' that would operate in depth as `` strategic cavalry '' combined with nascent airborne troops . demanded the infantry based part of the doctrine `` powerful tanks ''
-While the infantry based part of the doctrine demanded `` powerful tanks '' and `` tankettes '' , the shock Army demanded `` manoeuvre tanks '' used in conjunction with motorized forces and `` mechanized cavalry '' that would operate in depth as `` strategic cavalry '' combined with nascent airborne troops . demanded the infantry based part of the doctrine `` tankettes ''
-While the infantry based part of the doctrine demanded `` powerful tanks '' and `` tankettes '' , the shock Army demanded `` manoeuvre tanks '' used in conjunction with motorized forces and `` mechanized cavalry '' that would operate in depth as `` strategic cavalry '' combined with nascent airborne troops . demanded the shock Army `` manoeuvre tanks ''
-While the infantry based part of the doctrine demanded `` powerful tanks '' and `` tankettes '' , the shock Army demanded `` manoeuvre tanks '' used in conjunction with motorized forces and `` mechanized cavalry '' that would operate in depth as `` strategic cavalry '' combined with nascent airborne troops . will be used in conjunction with `` manoeuvre tanks '' motorized forces
-While the infantry based part of the doctrine demanded `` powerful tanks '' and `` tankettes '' , the shock Army demanded `` manoeuvre tanks '' used in conjunction with motorized forces and `` mechanized cavalry '' that would operate in depth as `` strategic cavalry '' combined with nascent airborne troops . will be used in conjunction with `` manoeuvre tanks '' `` mechanized cavalry ''
-While the infantry based part of the doctrine demanded `` powerful tanks '' and `` tankettes '' , the shock Army demanded `` manoeuvre tanks '' used in conjunction with motorized forces and `` mechanized cavalry '' that would operate in depth as `` strategic cavalry '' combined with nascent airborne troops . would operate in depth as `` manoeuvre tanks '' `` strategic cavalry ''
-While the infantry based part of the doctrine demanded `` powerful tanks '' and `` tankettes '' , the shock Army demanded `` manoeuvre tanks '' used in conjunction with motorized forces and `` mechanized cavalry '' that would operate in depth as `` strategic cavalry '' combined with nascent airborne troops . will be combined with `` strategic cavalry '' nascent airborne troops
-While the infantry based part of the doctrine demanded `` powerful tanks '' and `` tankettes '' , the shock Army demanded `` manoeuvre tanks '' used in conjunction with motorized forces and `` mechanized cavalry '' that would operate in depth as `` strategic cavalry '' combined with nascent airborne troops . had the doctrine an infantry based part
-Many young South African artists made their debut on LM Radio through the numerous road shows which toured the country . made their debut through Many young South African artists the numerous road shows which toured the country on LM Radio
-Many young South African artists made their debut on LM Radio through the numerous road shows which toured the country . toured numerous road shows the country
-Many young South African artists made their debut on LM Radio through the numerous road shows which toured the country . are Many young artists of South Africa
-Many young South African artists made their debut on LM Radio through the numerous road shows which toured the country . are Many young artists South African
-The 10.48 % yield represents a spread to the 20 - year Treasury of 2.45 percentage points . is The yield 10.48 %
-The 10.48 % yield represents a spread to the 20 - year Treasury of 2.45 percentage points . represents a spread to the 20 - year Treasury of The 10.48 % yield 2.45 percentage points
-Both sides are jealously guarding their turf , and relations have been at a flashpoint for months . are jealously guarding Both sides their turf
-Both sides are jealously guarding their turf , and relations have been at a flashpoint for months . have been at relations a flashpoint for months
-Both sides are jealously guarding their turf , and relations have been at a flashpoint for months . have Both sides relations
-Both sides are jealously guarding their turf , and relations have been at a flashpoint for months . have Both sides turf
-Lugo and Lozano were released in 1993 and continue to reside in Venezuela . were released and continue to reside in Lugo and Lozano Venezuela 1993
-Lugo and Lozano were released in 1993 and continue to reside in Venezuela . were released in Lugo and Lozano 1993
-Lugo and Lozano were released in 1993 and continue to reside in Venezuela . continue to reside in Lugo and Lozano Venezuela
-In recent years , demand for hybrid seeds has spurred research at a number of chemical and biotechnology companies , including Monsanto Co. , Shell Oil Co. and Eli Lilly & Co . is for demand hybrid seeds in recent years
-In recent years , demand for hybrid seeds has spurred research at a number of chemical and biotechnology companies , including Monsanto Co. , Shell Oil Co. and Eli Lilly & Co . has spurred research at demand for hybrid seeds chemical companies In recent years
-In recent years , demand for hybrid seeds has spurred research at a number of chemical and biotechnology companies , including Monsanto Co. , Shell Oil Co. and Eli Lilly & Co . has spurred research at demand for hybrid seeds biotechnology companies In recent years
-In recent years , demand for hybrid seeds has spurred research at a number of chemical and biotechnology companies , including Monsanto Co. , Shell Oil Co. and Eli Lilly & Co . has spurred research at demand for hybrid seeds a number of companies In recent years
-In recent years , demand for hybrid seeds has spurred research at a number of chemical and biotechnology companies , including Monsanto Co. , Shell Oil Co. and Eli Lilly & Co . is including a number of chemical and biotechnology companies Monsanto Co.
-In recent years , demand for hybrid seeds has spurred research at a number of chemical and biotechnology companies , including Monsanto Co. , Shell Oil Co. and Eli Lilly & Co . is including a number of chemical and biotechnology companies Shell Oil Co.
-In recent years , demand for hybrid seeds has spurred research at a number of chemical and biotechnology companies , including Monsanto Co. , Shell Oil Co. and Eli Lilly & Co . is including a number of chemical and biotechnology companies Eli Lilly & Co
-In recent years , demand for hybrid seeds has spurred research at a number of chemical and biotechnology companies , including Monsanto Co. , Shell Oil Co. and Eli Lilly & Co . has spurred research at demand for hybrid seeds Monsanto Co. In recent years
-In recent years , demand for hybrid seeds has spurred research at a number of chemical and biotechnology companies , including Monsanto Co. , Shell Oil Co. and Eli Lilly & Co . has spurred research at demand for hybrid seeds Shell Oil Co. In recent years
-In recent years , demand for hybrid seeds has spurred research at a number of chemical and biotechnology companies , including Monsanto Co. , Shell Oil Co. and Eli Lilly & Co . has spurred research at demand for hybrid seeds Eli Lilly & Co In recent years
-In the post - `` Gregg '' era Texas has executed over four times more inmates than Virginia and nearly 37 times more inmates than California . has executed Texas over four times more inmates than Virginia In the post - `` Gregg '' era
-In the post - `` Gregg '' era Texas has executed over four times more inmates than Virginia and nearly 37 times more inmates than California . has executed Texas nearly 37 times more inmates than California In the post - `` Gregg '' era
-In the post - `` Gregg '' era Texas has executed over four times more inmates than Virginia and nearly 37 times more inmates than California . has executed Virginia inmates
-In the post - `` Gregg '' era Texas has executed over four times more inmates than Virginia and nearly 37 times more inmates than California . has executed California inmates
-In the post - `` Gregg '' era Texas has executed over four times more inmates than Virginia and nearly 37 times more inmates than California . were executed in inmates Virginia In the post - `` Gregg '' era
-In the post - `` Gregg '' era Texas has executed over four times more inmates than Virginia and nearly 37 times more inmates than California . were executed in inmates California In the post - `` Gregg '' era
-In the post - `` Gregg '' era Texas has executed over four times more inmates than Virginia and nearly 37 times more inmates than California . were executed in inmates Texas In the post - `` Gregg '' era
-High Court judges are therefore referred to as the Honourable Mr/Mrs Justice Smith . are therefore referred to as High Court judges the Honourable Mr/Mrs Justice Smith
-Alexander supposedly said after this incident that he had never been so lucky in his entire career . supposedly said Alexander that he had never been so lucky in his entire career
-In 1984 , KOMO became the first television station to broadcast daily programming in full stereo sound . became KOMO the first television station to broadcast daily programming in full stereo sound In 1984
-In 1984 , KOMO became the first television station to broadcast daily programming in full stereo sound . is KOMO a television station
-In 1984 , KOMO became the first television station to broadcast daily programming in full stereo sound . broadcast in full stereo sound KOMO daily programming In 1984
-Joining another fast and mobile carrier task force , `` Hazelwood '' sortied 11 February to protect carriers as they launched heavy air strikes against the Japanese home islands 16 and 17 February . as they launched carriers heavy air strikes against the Japanese home islands Japanese home islands 16 and 17 February
-Joining another fast and mobile carrier task force , `` Hazelwood '' sortied 11 February to protect carriers as they launched heavy air strikes against the Japanese home islands 16 and 17 February . sortied to protect Hazelwood another fast and mobile carrier task force Japanese home islands 11 February
-Joining another fast and mobile carrier task force , `` Hazelwood '' sortied 11 February to protect carriers as they launched heavy air strikes against the Japanese home islands 16 and 17 February . launched heavy air strikes against mobile carrier task force the Japanese home islands Japanese home islands 16 and 17 February
-Joining another fast and mobile carrier task force , `` Hazelwood '' sortied 11 February to protect carriers as they launched heavy air strikes against the Japanese home islands 16 and 17 February . Joining Hazelwood another fast and mobile carrier task force Japanese home islands 11 February
-The city 's population boomed , 5 boroughs were formed , the New York City Subway was opened and became a symbol of progress and innovation . boomed The population in The city
-The city 's population boomed , 5 boroughs were formed , the New York City Subway was opened and became a symbol of progress and innovation . were formed 5 boroughs in The city
-The city 's population boomed , 5 boroughs were formed , the New York City Subway was opened and became a symbol of progress and innovation . was opened the New York City Subway in The city
-The city 's population boomed , 5 boroughs were formed , the New York City Subway was opened and became a symbol of progress and innovation . became the New York City Subway a symbol of progress in The city
-The city 's population boomed , 5 boroughs were formed , the New York City Subway was opened and became a symbol of progress and innovation . became the New York City Subway a symbol of innovation in The city
-The city 's population boomed , 5 boroughs were formed , the New York City Subway was opened and became a symbol of progress and innovation . was in the Subway New York City
-The city 's population boomed , 5 boroughs were formed , the New York City Subway was opened and became a symbol of progress and innovation . was The city New York City
-The campaign , which started last week and runs through Nov. 23 , with funds earmarked for both the quake and Hugo , `` was Barry 's idea , '' a spokeswoman says . started The campaign last week
-The campaign , which started last week and runs through Nov. 23 , with funds earmarked for both the quake and Hugo , `` was Barry 's idea , '' a spokeswoman says . runs The campaign through Nov. 23
-The campaign , which started last week and runs through Nov. 23 , with funds earmarked for both the quake and Hugo , `` was Barry 's idea , '' a spokeswoman says . says a spokeswoman The campaign `` was Barry 's idea ''
-The campaign , which started last week and runs through Nov. 23 , with funds earmarked for both the quake and Hugo , `` was Barry 's idea , '' a spokeswoman says . is with funds earmarked for The campaign the quake
-The campaign , which started last week and runs through Nov. 23 , with funds earmarked for both the quake and Hugo , `` was Barry 's idea , '' a spokeswoman says . is with funds earmarked for The campaign Hugo
-Pursuit of the routed enemy to the French border was halted on 2 May upon the German surrender in Italy . was the German surrender in Italy on 2 May
-Pursuit of the routed enemy to the French border was halted on 2 May upon the German surrender in Italy . was pursued to the routed enemy the French border
-Pursuit of the routed enemy to the French border was halted on 2 May upon the German surrender in Italy . was halted Pursuit of the routed enemy to the French border on 2 May
-Pursuit of the routed enemy to the French border was halted on 2 May upon the German surrender in Italy . was halted upon Pursuit of the routed enemy to the French border the German surrender in Italy on 2 May
-Pursuit of the routed enemy to the French border was halted on 2 May upon the German surrender in Italy . was routed the enemy
-They believe in God as a single entity , not as the Trinity accepted by the vast majority of Christians . believe in God as They a single entity
-They believe in God as a single entity , not as the Trinity accepted by the vast majority of Christians . believe in God not as They the Trinity accepted by the vast majority of Christians
-They believe in God as a single entity , not as the Trinity accepted by the vast majority of Christians . is accepted by God as the Trinity the vast majority of Christians
-They believe in God as a single entity , not as the Trinity accepted by the vast majority of Christians . is not accepted by God as a single entity the vast majority of Christians
-Baako 's grandmother Naana , a blind-seer , stands in living contact with the ancestors . is Naana Baako 's grandmother
-Baako 's grandmother Naana , a blind-seer , stands in living contact with the ancestors . is Naana a blind-seer
-Baako 's grandmother Naana , a blind-seer , stands in living contact with the ancestors . stands in living contact Naana with the ancestors
-The offering , Series 109 , is backed by Freddie Mac 10 % securities . is Series 109 The offering
-The offering , Series 109 , is backed by Freddie Mac 10 % securities . is backed by Series 109 Freddie Mac 10 % securities
-The offering , Series 109 , is backed by Freddie Mac 10 % securities . is backed by The offering Freddie Mac 10 % securities
-The offering , Series 109 , is backed by Freddie Mac 10 % securities . has 10 % securities Freddie Mac
-It was a notable influence on John Buchan and Ken Follett , who described it as `` an open-air adventure thriller about two young men who stumble upon a German armada preparing to invade England . '' was a notable influence on It John Buchan
-It was a notable influence on John Buchan and Ken Follett , who described it as `` an open-air adventure thriller about two young men who stumble upon a German armada preparing to invade England . '' was a notable influence on It Ken Follett
-It was a notable influence on John Buchan and Ken Follett , who described it as `` an open-air adventure thriller about two young men who stumble upon a German armada preparing to invade England . '' described it as Ken Follett `` an open-air adventure thriller about two young men who stumble upon a German armada preparing to invade England . ''
-It was a notable influence on John Buchan and Ken Follett , who described it as `` an open-air adventure thriller about two young men who stumble upon a German armada preparing to invade England . '' described it as John Buchan `` an open-air adventure thriller about two young men who stumble upon a German armada preparing to invade England . ''
-All three had been photography students at The Art Center College of Design in Pasadena , California in 1979 when they became Newton 's longtime assistants , and all three went on to independent careers . had been All three photography students at The Art Center College of Design in Pasadena , California in 1979 when they became Newton 's longtime assistants
-All three had been photography students at The Art Center College of Design in Pasadena , California in 1979 when they became Newton 's longtime assistants , and all three went on to independent careers . went on to all three independent careers
-Vaccinations against other viral diseases followed , including the successful rabies vaccination by Louis Pasteur in 1886 . against other viral diseases followed Vaccinations rabies vaccination by Louis Pasteur in 1886
-Vaccinations against other viral diseases followed , including the successful rabies vaccination by Louis Pasteur in 1886 . by rabies vaccination Louis Pasteur in 1886
-Vaccinations against other viral diseases followed , including the successful rabies vaccination by Louis Pasteur in 1886 . against other Vaccinations viral diseases followed
-The oilseed radish grows well in cool climates and , apart from its industrial use , can be used as a cover crop , grown to increase soil fertility , to scavenge nutrients , suppress weeds , help alleviate soil compaction and prevent winter erosion of the soil . grows well in The oilseed radish cool climates
-The oilseed radish grows well in cool climates and , apart from its industrial use , can be used as a cover crop , grown to increase soil fertility , to scavenge nutrients , suppress weeds , help alleviate soil compaction and prevent winter erosion of the soil . has The oilseed radish industrial use
-The oilseed radish grows well in cool climates and , apart from its industrial use , can be used as a cover crop , grown to increase soil fertility , to scavenge nutrients , suppress weeds , help alleviate soil compaction and prevent winter erosion of the soil . can be used as The oilseed radish a cover crop
-The oilseed radish grows well in cool climates and , apart from its industrial use , can be used as a cover crop , grown to increase soil fertility , to scavenge nutrients , suppress weeds , help alleviate soil compaction and prevent winter erosion of the soil . can be grown to increase The oilseed radish soil fertility
-The oilseed radish grows well in cool climates and , apart from its industrial use , can be used as a cover crop , grown to increase soil fertility , to scavenge nutrients , suppress weeds , help alleviate soil compaction and prevent winter erosion of the soil . can be grown to scavenge The oilseed radish nutrients
-The oilseed radish grows well in cool climates and , apart from its industrial use , can be used as a cover crop , grown to increase soil fertility , to scavenge nutrients , suppress weeds , help alleviate soil compaction and prevent winter erosion of the soil . can be grown to suppress The oilseed radish weeds
-The oilseed radish grows well in cool climates and , apart from its industrial use , can be used as a cover crop , grown to increase soil fertility , to scavenge nutrients , suppress weeds , help alleviate soil compaction and prevent winter erosion of the soil . can be grown to help alleviate The oilseed radish soil compaction
-The oilseed radish grows well in cool climates and , apart from its industrial use , can be used as a cover crop , grown to increase soil fertility , to scavenge nutrients , suppress weeds , help alleviate soil compaction and prevent winter erosion of the soil . can be grown to help prevent The oilseed radish erosion of the soil in winter
-In 1840 , he was appointed to command his regiment , a post he held for nearly fourteen years . was appointed to command he his regiment In 1840
-In 1840 , he was appointed to command his regiment , a post he held for nearly fourteen years . held he the post for nearly fourteen years
-In 1840 , he was appointed to command his regiment , a post he held for nearly fourteen years . was the post to command his regiment
-During the latter , Springsteen mentioned he did plan to work with the E Street Band again in the future , but was vague about details . mentioned Springsteen he did plan to work with the E Street Band in the future
-During the latter , Springsteen mentioned he did plan to work with the E Street Band again in the future , but was vague about details . was vague Springsteen about details
-He left that post to become the second commander of the U.S. Army 's 1st Armored Division . left to become He the second commander of the U.S. Army 's 1st Armored Division that post
-He left that post to become the second commander of the U.S. Army 's 1st Armored Division . is of the Army 1st Armored Division the U.S.
-He left that post to become the second commander of the U.S. Army 's 1st Armored Division . has the U.S. Army a 1st Armored Division
-The town and surrounding villages were hit by two moderate earthquakes within ten years . hit two moderate earthquakes The town and surrounding villages within ten years
-The town and surrounding villages were hit by two moderate earthquakes within ten years . hit moderate earthquakes within ten years
-He played 37 times , mainly at right-back , in the 1987-88 season , and scored nine goals - excellent for a player who mainly featured in defence . played He 37 times in the 1987-88 season
-He played 37 times , mainly at right-back , in the 1987-88 season , and scored nine goals - excellent for a player who mainly featured in defence . played mainly at He right-back in the 1987-88 season
-He played 37 times , mainly at right-back , in the 1987-88 season , and scored nine goals - excellent for a player who mainly featured in defence . scored He nine goals in the 1987-88 season
-He played 37 times , mainly at right-back , in the 1987-88 season , and scored nine goals - excellent for a player who mainly featured in defence . is excellent for nine goals a player who mainly featured in defence
-He played 37 times , mainly at right-back , in the 1987-88 season , and scored nine goals - excellent for a player who mainly featured in defence . was He a player who mainly featured in defence
-They held the first Triangle workshop in 1982 for thirty sculptors and painters from the US , the UK and Canada at Pine Plains , New York . was the first Triangle workshop held at Pine Plains , New York in 1982
-They held the first Triangle workshop in 1982 for thirty sculptors and painters from the US , the UK and Canada at Pine Plains , New York . held They the first Triangle workshop at Pine Plains , New York in 1982
-They held the first Triangle workshop in 1982 for thirty sculptors and painters from the US , the UK and Canada at Pine Plains , New York . was for the first Triangle workshop thirty sculptors and painters from the US , the UK and Canada at Pine Plains , New York in 1982
-During the 1730s Britain 's relationship with Spain had slowly declined . had slowly declined Britain 's relationship with Spain During the 1730s
-During the 1730s Britain 's relationship with Spain had slowly declined . had Britain relationship with Spain During the 1730s
-KFI helped to keep the calm during the dark days of World War II by airing President Franklin D. Roosevelt 's `` Fireside Chats . '' helped to keep the calm by airing KFI President Franklin D. Roosevelt 's `` Fireside Chats '' during the dark days of World War II
-KFI helped to keep the calm during the dark days of World War II by airing President Franklin D. Roosevelt 's `` Fireside Chats . '' had President Franklin D. Roosevelt `` Fireside Chats ''
-KFI helped to keep the calm during the dark days of World War II by airing President Franklin D. Roosevelt 's `` Fireside Chats . '' was Franklin D. Roosevelt President
-KFI helped to keep the calm during the dark days of World War II by airing President Franklin D. Roosevelt 's `` Fireside Chats . '' had World War II dark days
-Other Senators want to lower the down payments required on FHA - insured loans . want to lower Other Senators the down payments required on FHA - insured loans
-Other Senators want to lower the down payments required on FHA - insured loans . are required on down payments FHA - insured loans
-Other Senators want to lower the down payments required on FHA - insured loans . are loans FHA - insured
-However , it does n't give much of a clue as to whether a recession is on the horizon . does n't give much of a clue as to However, it whether a recession is on the horizon
-However , it does n't give much of a clue as to whether a recession is on the horizon . does n't give However , it much of a clue as to whether a recession is on the horizon
-Human behavioral ecologists assume that what might be the most adaptive strategy in one environment might not be the most adaptive strategy in another environment . assume that Human behavioral ecologists what might be the most adaptive strategy in one environment might not be the most adaptive strategy in another environment
-`` My Classical Way '' was released on 21 September 2010 on Marc 's own label , Frazzy Frog Music . was released on `` My Classical Way '' on Marc 's own label , Frazzy Frog Music 21 September 2010
-`` My Classical Way '' was released on 21 September 2010 on Marc 's own label , Frazzy Frog Music . has Marc own label
-`` My Classical Way '' was released on 21 September 2010 on Marc 's own label , Frazzy Frog Music . is Marc 's own label Frazzy Frog Music
-The film uses some computer-generated graphics : The northern lights in the scene where Inge walks through the fields to Olaf 's house to take a bath , and , later in the film , the geese flying over Olaf 's house . uses The film some computer-generated graphics
-The film uses some computer-generated graphics : The northern lights in the scene where Inge walks through the fields to Olaf 's house to take a bath , and , later in the film , the geese flying over Olaf 's house . are flying over the geese Olaf 's house in the film later
-The film uses some computer-generated graphics : The northern lights in the scene where Inge walks through the fields to Olaf 's house to take a bath , and , later in the film , the geese flying over Olaf 's house . walks through the fields to Inge Olaf 's house in the film
-The film uses some computer-generated graphics : The northern lights in the scene where Inge walks through the fields to Olaf 's house to take a bath , and , later in the film , the geese flying over Olaf 's house . were flying over the geese Olaf 's house
-The film uses some computer-generated graphics : The northern lights in the scene where Inge walks through the fields to Olaf 's house to take a bath , and , later in the film , the geese flying over Olaf 's house . walks through Inge the fields
-The film uses some computer-generated graphics : The northern lights in the scene where Inge walks through the fields to Olaf 's house to take a bath , and , later in the film , the geese flying over Olaf 's house . walks to Inge Olaf 's house
-The film uses some computer-generated graphics : The northern lights in the scene where Inge walks through the fields to Olaf 's house to take a bath , and , later in the film , the geese flying over Olaf 's house . walks to take Inge a bath at Olaf 's house
-The film uses some computer-generated graphics : The northern lights in the scene where Inge walks through the fields to Olaf 's house to take a bath , and , later in the film , the geese flying over Olaf 's house . are the geese flying over Olaf 's house computer-generated graphics in the film
-The film uses some computer-generated graphics : The northern lights in the scene where Inge walks through the fields to Olaf 's house to take a bath , and , later in the film , the geese flying over Olaf 's house . are The northern lights in the scene where Inge walks through the fields to Olaf 's house to take a bath computer-generated graphics in the film
-The film uses some computer-generated graphics : The northern lights in the scene where Inge walks through the fields to Olaf 's house to take a bath , and , later in the film , the geese flying over Olaf 's house . are The northern lights in the scene where Inge walks through the fields to Olaf 's house to take a bath
-The film uses some computer-generated graphics : The northern lights in the scene where Inge walks through the fields to Olaf 's house to take a bath , and , later in the film , the geese flying over Olaf 's house . were some graphics computer-generated in The film
-The film uses some computer-generated graphics : The northern lights in the scene where Inge walks through the fields to Olaf 's house to take a bath , and , later in the film , the geese flying over Olaf 's house . are The lights northern
-An alternative and more convincing explanation , confirmed by recent events and a close inspection of the Gorbachev program , is that the new Soviet economic and social structures are intended to conform to a model other than that of the market . was confirmed by An alternative explanation recent events
-An alternative and more convincing explanation , confirmed by recent events and a close inspection of the Gorbachev program , is that the new Soviet economic and social structures are intended to conform to a model other than that of the market . was confirmed by An alternative explanation a close inspection of the Gorbachev program
-An alternative and more convincing explanation , confirmed by recent events and a close inspection of the Gorbachev program , is that the new Soviet economic and social structures are intended to conform to a model other than that of the market . was confirmed by a more convincing explanation recent events
-An alternative and more convincing explanation , confirmed by recent events and a close inspection of the Gorbachev program , is that the new Soviet economic and social structures are intended to conform to a model other than that of the market . was confirmed by a more convincing explanation a close inspection of the Gorbachev program
-An alternative and more convincing explanation , confirmed by recent events and a close inspection of the Gorbachev program , is that the new Soviet economic and social structures are intended to conform to a model other than that of the market . is that An alternative explanation the new Soviet economic and social structures are intended to conform to a model other than that of the market
-An alternative and more convincing explanation , confirmed by recent events and a close inspection of the Gorbachev program , is that the new Soviet economic and social structures are intended to conform to a model other than that of the market . is that a more convincing explanation the new Soviet economic and social structures are intended to conform to a model other than that of the market
-An alternative and more convincing explanation , confirmed by recent events and a close inspection of the Gorbachev program , is that the new Soviet economic and social structures are intended to conform to a model other than that of the market . are intended to conform to the new Soviet economic structures a model other than that of the market
-An alternative and more convincing explanation , confirmed by recent events and a close inspection of the Gorbachev program , is that the new Soviet economic and social structures are intended to conform to a model other than that of the market . are intended to conform to the new Soviet social structures a model other than that of the market
-An alternative and more convincing explanation , confirmed by recent events and a close inspection of the Gorbachev program , is that the new Soviet economic and social structures are intended to conform to a model other than that of the market . are the new economic structures Soviet
-An alternative and more convincing explanation , confirmed by recent events and a close inspection of the Gorbachev program , is that the new Soviet economic and social structures are intended to conform to a model other than that of the market . are the new social structures Soviet
-Adnan Latif was in a car accident in 1994 , during which he suffered significant head injuries , which left him with on-going neurological problems . was in Adnan Latif a car accident in 1994
-Adnan Latif was in a car accident in 1994 , during which he suffered significant head injuries , which left him with on-going neurological problems . suffered Adnan Latif significant head injuries
-Adnan Latif was in a car accident in 1994 , during which he suffered significant head injuries , which left him with on-going neurological problems . was left with Adnan Latif on-going neurological problems
-He accused Maroboduus of hiding in the Hercynian Forest while the other Germans fought for freedom , and accused Maroboduus of being the only king among the Germans . accused He Maroboduus of hiding in the Hercynian Forest while the other Germans fought for freedom
-He accused Maroboduus of hiding in the Hercynian Forest while the other Germans fought for freedom , and accused Maroboduus of being the only king among the Germans . accused He Maroboduus of being the only king among the Germans
-These are known as Porter 's three generic strategies and can be applied to any size or form of business . are known as These Porter 's three generic strategies
-These are known as Porter 's three generic strategies and can be applied to any size or form of business . has Porter three generic strategies
-These are known as Porter 's three generic strategies and can be applied to any size or form of business . are Porter 's three strategies generic
-These are known as Porter 's three generic strategies and can be applied to any size or form of business . can be applied to Porter 's three generic strategies any size of business
-These are known as Porter 's three generic strategies and can be applied to any size or form of business . can be applied to Porter 's three generic strategies any form of business
-$ 200 million of bonds due Nov. 16 , 1994 , with equity - purchase warrants , indicating a 4 1\/2 % coupon at par via Yamaichi International Europe Ltd . $ 200 million of bonds due Nov. 16 , 1994 , with equity - purchase warrants , indicating a 4 1\/2 % coupon at par via Yamaichi International Europe Ltd
-$ 200 million of bonds due Nov. 16 , 1994 , with equity - purchase warrants , indicating a 4 1\/2 % coupon at par via Yamaichi International Europe Ltd . $ 200 million of bonds is due Nov. 16 , 1994
-A series of councils were held in 657 , 669 , 846 , 850 , 852 , 853 , 862 , 980 , 986 , 996 , 1048 , 1071 and 1080 . were held councils in 657
-A series of councils were held in 657 , 669 , 846 , 850 , 852 , 853 , 862 , 980 , 986 , 996 , 1048 , 1071 and 1080 . were held councils in 669
-A series of councils were held in 657 , 669 , 846 , 850 , 852 , 853 , 862 , 980 , 986 , 996 , 1048 , 1071 and 1080 . were held councils in 846
-A series of councils were held in 657 , 669 , 846 , 850 , 852 , 853 , 862 , 980 , 986 , 996 , 1048 , 1071 and 1080 . were held councils in 850
-A series of councils were held in 657 , 669 , 846 , 850 , 852 , 853 , 862 , 980 , 986 , 996 , 1048 , 1071 and 1080 . were held councils in 852
-A series of councils were held in 657 , 669 , 846 , 850 , 852 , 853 , 862 , 980 , 986 , 996 , 1048 , 1071 and 1080 . were held councils in 853
-A series of councils were held in 657 , 669 , 846 , 850 , 852 , 853 , 862 , 980 , 986 , 996 , 1048 , 1071 and 1080 . were held councils in 862
-A series of councils were held in 657 , 669 , 846 , 850 , 852 , 853 , 862 , 980 , 986 , 996 , 1048 , 1071 and 1080 . were held councils in 980
-A series of councils were held in 657 , 669 , 846 , 850 , 852 , 853 , 862 , 980 , 986 , 996 , 1048 , 1071 and 1080 . were held councils in 986
-A series of councils were held in 657 , 669 , 846 , 850 , 852 , 853 , 862 , 980 , 986 , 996 , 1048 , 1071 and 1080 . were held councils in 996
-A series of councils were held in 657 , 669 , 846 , 850 , 852 , 853 , 862 , 980 , 986 , 996 , 1048 , 1071 and 1080 . were held councils in 1048
-A series of councils were held in 657 , 669 , 846 , 850 , 852 , 853 , 862 , 980 , 986 , 996 , 1048 , 1071 and 1080 . were held councils in 1071
-A series of councils were held in 657 , 669 , 846 , 850 , 852 , 853 , 862 , 980 , 986 , 996 , 1048 , 1071 and 1080 . were held councils in 1080
-If the government can stick with them , it will be able to halve this year 's 120 billion ruble ( US$ 193 billion ) deficit . can stick with If the government them , it will be able to halve this year 's 120 billion ruble ( US$ 193 billion ) deficit
-If the government can stick with them , it will be able to halve this year 's 120 billion ruble ( US$ 193 billion ) deficit . will be able to halve If the government can stick with them , it this year 's 120 billion ruble ( US$ 193 billion ) deficit
-Thus , acquisition of quantitative heavy-element spectra can be time-consuming , taking tens of minutes to hours . takes acquisition of quantitative heavy-element spectra tens of minutes to hours
-Thus , acquisition of quantitative heavy-element spectra can be time-consuming , taking tens of minutes to hours . is acquisition of quantitative heavy-element spectra time-consuming
-The show was designed to appear as if the viewer was channel surfing through a multi-channel wasteland , happening upon spoof adverts , short sketches , and recurring show elements . was happening upon The show spoof adverts , short sketches , and recurring show elements
-The show was designed to appear as if the viewer was channel surfing through a multi-channel wasteland , happening upon spoof adverts , short sketches , and recurring show elements . was designed to appear The show as if the viewer was channel surfing through a multi-channel wasteland
-Test & official start of the TVN24 HD started on 30 November 2012 . started on Test of the TVN24 HD 30 November 2012
-Test & official start of the TVN24 HD started on 30 November 2012 . started on official start of the TVN24 HD 30 November 2012
-Ms. Waleson is a free - lance writer based in New York . is Ms. Waleson a free - lance writer
-Ms. Waleson is a free - lance writer based in New York . is based in Ms. Waleson New York
-He served as the first Prime Minister of Australia and became a founding justice of the High Court of Australia . served as He the first Prime Minister of Australia
-He served as the first Prime Minister of Australia and became a founding justice of the High Court of Australia . became He a founding justice of the High Court of Australia
-He served as the first Prime Minister of Australia and became a founding justice of the High Court of Australia . has a Australia Prime Minister
-He served as the first Prime Minister of Australia and became a founding justice of the High Court of Australia . has a Australia High Court
-RU-486 is being administered in France only under strict supervision in the presence of a doctor . is being administered RU-486 only under strict supervision in France
-RU-486 is being administered in France only under strict supervision in the presence of a doctor . is being administered RU-486 only in the presence of a doctor in France
-Armstrong World Industries Inc. agreed in principle to sell its carpet operations to Shaw Industries Inc . Armstrong World Industries Inc. agreed in principle to sell its carpet operations to Shaw Industries Inc
-Armstrong World Industries Inc. agreed in principle to sell its carpet operations to Shaw Industries Inc . Armstrong World Industries Inc. will sell its operations to Shaw Industries Inc
-The ultimate outcome depends on what he does , not on what we do . depends on The ultimate outcome what he does
-The ultimate outcome depends on what he does , not on what we do . depends not on The ultimate outcome what we do
-The ultimate outcome depends on what he does , not on what we do . is ultimate The outcome
-The lead single that holds the same name , is a soft melodic song that differs from Tiger JK 's past releases . holds the same The lead single name
-The lead single that holds the same name , is a soft melodic song that differs from Tiger JK 's past releases . is a The lead single soft melodic song
-The lead single that holds the same name , is a soft melodic song that differs from Tiger JK 's past releases . differs from The lead single Tiger JK 's past releases
-But the government 's action , which caught Jaguar management flat - footed , may scuttle the GM minority deal by forcing it to fight for all of Jaguar . caught flat - footed the government 's action Jaguar management
-But the government 's action , which caught Jaguar management flat - footed , may scuttle the GM minority deal by forcing it to fight for all of Jaguar . may scuttle the government 's action the GM minority deal
-But the government 's action , which caught Jaguar management flat - footed , may scuttle the GM minority deal by forcing it to fight for all of Jaguar . will be forcing to fight for all of Jaguar the government 's action GM
-But the government 's action , which caught Jaguar management flat - footed , may scuttle the GM minority deal by forcing it to fight for all of Jaguar . had the government an action
-But the government 's action , which caught Jaguar management flat - footed , may scuttle the GM minority deal by forcing it to fight for all of Jaguar . had GM a minority deal
-He made a midnight requisition of all the printers he could lay hands on so that he could monitor all the telephone lines coming into the lab 's computers . made a midnight requisition of all the printers he could lay hands on so that He he could monitor all the telephone lines coming into the lab 's computers
-He made a midnight requisition of all the printers he could lay hands on so that he could monitor all the telephone lines coming into the lab 's computers . made a midnight requisition of He all the printers he could lay hands on so that he could monitor all the telephone lines coming into the lab 's computers
-He made a midnight requisition of all the printers he could lay hands on so that he could monitor all the telephone lines coming into the lab 's computers . made a midnight requisition of He all the printers he could lay hands on
-He made a midnight requisition of all the printers he could lay hands on so that he could monitor all the telephone lines coming into the lab 's computers . are coming into telephone lines the lab 's computers
-In 1962 , Salahuddin won from Patharghatti assembly seat as an Independent candidate and later from Charminar constituency in 1967 . won from Salahuddin Patharghatti assembly seat In 1962
-In 1962 , Salahuddin won from Patharghatti assembly seat as an Independent candidate and later from Charminar constituency in 1967 . won as Salahuddin an Independent candidate In 1962
-In 1962 , Salahuddin won from Patharghatti assembly seat as an Independent candidate and later from Charminar constituency in 1967 . won from Salahuddin Charminar constituency in 1967
-In 1962 , Salahuddin won from Patharghatti assembly seat as an Independent candidate and later from Charminar constituency in 1967 . won as Salahuddin an Independent candidate in 1967
-In 1962 , Salahuddin won from Patharghatti assembly seat as an Independent candidate and later from Charminar constituency in 1967 . has Patharghatti an assembly seat
-In 1962 , Salahuddin won from Patharghatti assembly seat as an Independent candidate and later from Charminar constituency in 1967 . has Charminar a constituency
-Graner handcuffed him to the bars of a cell window and left him there , feet dangling off the floor , for nearly five hours . handcuffed Graner him to the bars of a cell window
-Graner handcuffed him to the bars of a cell window and left him there , feet dangling off the floor , for nearly five hours . left Graner him there for nearly five hours
-Graner handcuffed him to the bars of a cell window and left him there , feet dangling off the floor , for nearly five hours . left handcuffed to Graner him the bars of a cell window for nearly five hours
-Graner handcuffed him to the bars of a cell window and left him there , feet dangling off the floor , for nearly five hours . left with feet dangling Graner him off the floor for nearly five hours
-Graner handcuffed him to the bars of a cell window and left him there , feet dangling off the floor , for nearly five hours . has cell window bars
-Indeed , the `` art of doctoring '' does contribute to better health results and discourages unwarranted malpractice litigation . does Indeed contribute to the `` art of doctoring '' better health results
-Indeed , the `` art of doctoring '' does contribute to better health results and discourages unwarranted malpractice litigation . Indeed discourages the `` art of doctoring '' unwarranted malpractice litigation
-Childers 's biographer Andrew Boyle noted : `` For the next ten years Childers 's book remained the most powerful contribution of any English writer to the debate on Britain 's alleged military unpreparedness '' . is Andrew Boyle Childers 's biographer
-Childers 's biographer Andrew Boyle noted : `` For the next ten years Childers 's book remained the most powerful contribution of any English writer to the debate on Britain 's alleged military unpreparedness '' . has Childers a biographer
-Childers 's biographer Andrew Boyle noted : `` For the next ten years Childers 's book remained the most powerful contribution of any English writer to the debate on Britain 's alleged military unpreparedness '' . noted Childers 's biographer Andrew Boyle `` For the next ten years Childers 's book remained the most powerful contribution of any English writer to the debate on Britain 's alleged military unpreparedness ''
-Childers 's biographer Andrew Boyle noted : `` For the next ten years Childers 's book remained the most powerful contribution of any English writer to the debate on Britain 's alleged military unpreparedness '' . is Childers an English writer
-Childers 's biographer Andrew Boyle noted : `` For the next ten years Childers 's book remained the most powerful contribution of any English writer to the debate on Britain 's alleged military unpreparedness '' . has Childers a book
-Childers 's biographer Andrew Boyle noted : `` For the next ten years Childers 's book remained the most powerful contribution of any English writer to the debate on Britain 's alleged military unpreparedness '' . remained Childers 's book the most powerful contribution of any English writer to the debate on Britain 's alleged military unpreparedness For the next ten years
-For instance , sales of treadmills , exercise bikes , stair climbers and the like are expected to rise 8 % to about $ 1.52 billion this year , according to the National Sporting Goods Association , which sees the home market as one of the hottest growth areas for the 1990s . are expected to rise according to sales of treadmills the National Sporting Goods Association this year
-For instance , sales of treadmills , exercise bikes , stair climbers and the like are expected to rise 8 % to about $ 1.52 billion this year , according to the National Sporting Goods Association , which sees the home market as one of the hottest growth areas for the 1990s . are expected to rise according to sales of exercise bikes the National Sporting Goods Association this year
-For instance , sales of treadmills , exercise bikes , stair climbers and the like are expected to rise 8 % to about $ 1.52 billion this year , according to the National Sporting Goods Association , which sees the home market as one of the hottest growth areas for the 1990s . are expected to rise according to sales of stair climbers the National Sporting Goods Association this year
-For instance , sales of treadmills , exercise bikes , stair climbers and the like are expected to rise 8 % to about $ 1.52 billion this year , according to the National Sporting Goods Association , which sees the home market as one of the hottest growth areas for the 1990s . are, according to the National Sporting Goods Association , expected to rise to sales of treadmills , exercise bikes , stair climbers and the like about $ 1.52 billion this year
-For instance , sales of treadmills , exercise bikes , stair climbers and the like are expected to rise 8 % to about $ 1.52 billion this year , according to the National Sporting Goods Association , which sees the home market as one of the hottest growth areas for the 1990s . are, according to the National Sporting Goods Association , expected to rise sales of treadmills , exercise bikes , stair climbers and the like 8 % this year
-For instance , sales of treadmills , exercise bikes , stair climbers and the like are expected to rise 8 % to about $ 1.52 billion this year , according to the National Sporting Goods Association , which sees the home market as one of the hottest growth areas for the 1990s . sees as one of the hottest growth areas the National Sporting Goods Association the home market for the 1990s
-For instance , sales of treadmills , exercise bikes , stair climbers and the like are expected to rise 8 % to about $ 1.52 billion this year , according to the National Sporting Goods Association , which sees the home market as one of the hottest growth areas for the 1990s . are expected to rise according to sales of the like the National Sporting Goods Association this year
-Even a federal measure in June allowing houses to add research fees to their commissions did n't stop it . was a federal measure in June
-Even a federal measure in June allowing houses to add research fees to their commissions did n't stop it . was allowing houses to add research fees to a federal measure their commissions in June
-Even a federal measure in June allowing houses to add research fees to their commissions did n't stop it . did n't Even stop a federal measure allowing houses to add research fees to their commissions it in June
-Even a federal measure in June allowing houses to add research fees to their commissions did n't stop it . are allowed to add to their commissions houses research fees
-For a long time , he ignored baseball altogether , even the sports pages . ignored altogether he baseball For a long time
-For a long time , he ignored baseball altogether , even the sports pages . ignored even he the sports pages For a long time
-Like most incarnations , Felicia has a relationship with Spider-Man Noir . has a relationship with Felicia Spider-Man Noir
-Like most incarnations , Felicia has a relationship with Spider-Man Noir . has Felicia a relationship with Spider-Man Noir
-Like most incarnations , Felicia has a relationship with Spider-Man Noir . is Like Felicia most incarnations
-Like most incarnations , Felicia has a relationship with Spider-Man Noir . has , Like most incarnations , a relationship with Felicia Spider-Man Noir
-Plant communities include creosote and sagebrush at lower altitudes , and bristlecone pine forests at higher . include Plant communities creosote at lower altitudes
-Plant communities include creosote and sagebrush at lower altitudes , and bristlecone pine forests at higher . include Plant communities sagebrush at lower altitudes
-Plant communities include creosote and sagebrush at lower altitudes , and bristlecone pine forests at higher . include Plant communities bristlecone pine forests at higher altitudes
-Tom McMorran joined the band in 1994 after Mark Portmann left and in August of that year the band released `` Sahara '' . joined Tom McMorran the band after Mark Portmann left in 1994
-Tom McMorran joined the band in 1994 after Mark Portmann left and in August of that year the band released `` Sahara '' . released the band `` Sahara '' in August of 1994
-Tom McMorran joined the band in 1994 after Mark Portmann left and in August of that year the band released `` Sahara '' . left Mark Portmann the band in 1994
-Tom McMorran joined the band in 1994 after Mark Portmann left and in August of that year the band released `` Sahara '' . exists Tom McMorran in August of 1994
-Tom McMorran joined the band in 1994 after Mark Portmann left and in August of that year the band released `` Sahara '' . exists the band after Mark Portmann left in August of 1994
-Although in Flanders , the Flemish Region assigned all of its powers to the Flemish Community , the Walloon Region remains in principle distinct from and independent from the French Community , and vice-versa . assigned the Flemish Region all of its powers to the Flemish Community in Flanders
-Although in Flanders , the Flemish Region assigned all of its powers to the Flemish Community , the Walloon Region remains in principle distinct from and independent from the French Community , and vice-versa . remains the Walloon Region in principle distinct from and independent from the French Community , and vice-versa
-Had the contest gone a full seven games , ABC could have reaped an extra $ 10 million in ad sales on the seventh game alone , compared with the ad take it would have received for regular prime - time shows . gone Had the contest a full seven games
-Had the contest gone a full seven games , ABC could have reaped an extra $ 10 million in ad sales on the seventh game alone , compared with the ad take it would have received for regular prime - time shows . could have reaped ABC an extra $ 10 million in ad sales on the seventh game alone
-Had the contest gone a full seven games , ABC could have reaped an extra $ 10 million in ad sales on the seventh game alone , compared with the ad take it would have received for regular prime - time shows . compared with extra $ 10 million in ad sales on the seventh game alone the ad take it would have received for regular prime - time shows
-Autostereoscopy is any method of displaying stereoscopic images without the use of special headgear or glasses on the part of the viewer . is any method of Autostereoscopy displaying stereoscopic images without the use of special headgear on the part of the viewer
-Autostereoscopy is any method of displaying stereoscopic images without the use of special headgear or glasses on the part of the viewer . is any method of Autostereoscopy displaying stereoscopic images without the use of glasses on the part of the viewer
-The Chapters of Bremen Cathedral and part of the administration were located within the city boundary in a district of immunity and extraterritorial status around the Cathedral of St. Peter , where the city council would refrain to interfere . were located The Chapters of Bremen Cathedral within the city boundary
-The Chapters of Bremen Cathedral and part of the administration were located within the city boundary in a district of immunity and extraterritorial status around the Cathedral of St. Peter , where the city council would refrain to interfere . were located The Chapters of Bremen Cathedral in a district of immunity status around the Cathedral of St. Peter
-The Chapters of Bremen Cathedral and part of the administration were located within the city boundary in a district of immunity and extraterritorial status around the Cathedral of St. Peter , where the city council would refrain to interfere . were located The Chapters of Bremen Cathedral in a district of extraterritorial status around the Cathedral of St. Peter
-The Chapters of Bremen Cathedral and part of the administration were located within the city boundary in a district of immunity and extraterritorial status around the Cathedral of St. Peter , where the city council would refrain to interfere . was located part of the administration of Bremen Cathedral within the city boundary
-The Chapters of Bremen Cathedral and part of the administration were located within the city boundary in a district of immunity and extraterritorial status around the Cathedral of St. Peter , where the city council would refrain to interfere . was located part of the administration of Bremen Cathedral in a district of immunity status around the Cathedral of St. Peter
-The Chapters of Bremen Cathedral and part of the administration were located within the city boundary in a district of immunity and extraterritorial status around the Cathedral of St. Peter , where the city council would refrain to interfere . was located part of the administration of Bremen Cathedral in a district of extraterritorial status around the Cathedral of St. Peter
-The Chapters of Bremen Cathedral and part of the administration were located within the city boundary in a district of immunity and extraterritorial status around the Cathedral of St. Peter , where the city council would refrain to interfere . was around a district of immunity status the Cathedral of St. Peter
-The Chapters of Bremen Cathedral and part of the administration were located within the city boundary in a district of immunity and extraterritorial status around the Cathedral of St. Peter , where the city council would refrain to interfere . was around a district of extraterritorial status the Cathedral of St. Peter
-The Chapters of Bremen Cathedral and part of the administration were located within the city boundary in a district of immunity and extraterritorial status around the Cathedral of St. Peter , where the city council would refrain to interfere . would refrain to interfere the city council in a district of immunity status around the Cathedral of St. Peter
-The Chapters of Bremen Cathedral and part of the administration were located within the city boundary in a district of immunity and extraterritorial status around the Cathedral of St. Peter , where the city council would refrain to interfere . would refrain to interfere the city council in a district of extraterritorial status around the Cathedral of St. Peter
-The championship was at the Pinehurst Resort where Stewart won his last major championship only a few months before his death . was at The championship the Pinehurst Resort
-The championship was at the Pinehurst Resort where Stewart won his last major championship only a few months before his death . won Stewart his last major championship at the Pinehurst Resort only a few months before his death
-The championship was at the Pinehurst Resort where Stewart won his last major championship only a few months before his death . had Stewart his death
-Necro became a regular member of the PWG roster through the majority of 2008 , teaming with Chris Hero to defend the honor of Candice LeRae against the Human Tornado and his allies in Claudio Castagnoli and Eddie Kingston . became Necro a regular member of the PWG roster through the majority of 2008
-Necro became a regular member of the PWG roster through the majority of 2008 , teaming with Chris Hero to defend the honor of Candice LeRae against the Human Tornado and his allies in Claudio Castagnoli and Eddie Kingston . was teaming with Necro Chris Hero
-Necro became a regular member of the PWG roster through the majority of 2008 , teaming with Chris Hero to defend the honor of Candice LeRae against the Human Tornado and his allies in Claudio Castagnoli and Eddie Kingston . was teaming to defend the honor of Necro Candice LeRae
-Necro became a regular member of the PWG roster through the majority of 2008 , teaming with Chris Hero to defend the honor of Candice LeRae against the Human Tornado and his allies in Claudio Castagnoli and Eddie Kingston . was teaming to defend against Necro the Human Tornado and his allies
-Necro became a regular member of the PWG roster through the majority of 2008 , teaming with Chris Hero to defend the honor of Candice LeRae against the Human Tornado and his allies in Claudio Castagnoli and Eddie Kingston . was an ally of Claudio Castagnoli the Human Tornado
-Necro became a regular member of the PWG roster through the majority of 2008 , teaming with Chris Hero to defend the honor of Candice LeRae against the Human Tornado and his allies in Claudio Castagnoli and Eddie Kingston . was an ally of Eddie Kingston the Human Tornado
-They have a large range of possible power supplies , and can be 380V , 1000V , or even higher . have a large range of They possible power supplies
-They have a large range of possible power supplies , and can be 380V , 1000V , or even higher . can be They 380V
-They have a large range of possible power supplies , and can be 380V , 1000V , or even higher . can be They 1000V
-They have a large range of possible power supplies , and can be 380V , 1000V , or even higher . can be They even higher
-He played for the Kangaroos in all four matches , including the final , scoring one try . played for He the Kangaroos
-He played for the Kangaroos in all four matches , including the final , scoring one try . played in all four matches for He the Kangaroos
-He played for the Kangaroos in all four matches , including the final , scoring one try . played in the final for He the Kangaroos
-He played for the Kangaroos in all four matches , including the final , scoring one try . scored one try in He the final
-He played for the Kangaroos in all four matches , including the final , scoring one try . are including all four matches the final
-There were 22.2 % of families and 23.8 % of the population living below the poverty line , including 15.8 % of under eighteens and 37.5 % of those over 64 . were living below 22.2 % of families the poverty line
-There were 22.2 % of families and 23.8 % of the population living below the poverty line , including 15.8 % of under eighteens and 37.5 % of those over 64 . were living below 23.8 % of the population the poverty line
-There were 22.2 % of families and 23.8 % of the population living below the poverty line , including 15.8 % of under eighteens and 37.5 % of those over 64 . were living below 15.8 % of under eighteens the poverty line
-There were 22.2 % of families and 23.8 % of the population living below the poverty line , including 15.8 % of under eighteens and 37.5 % of those over 64 . were living below 37.5 % of those over 64 the poverty line
-There were 22.2 % of families and 23.8 % of the population living below the poverty line , including 15.8 % of under eighteens and 37.5 % of those over 64 . was including 23.8% of the population living below the poverty line 15.8 % of under eighteens
-There were 22.2 % of families and 23.8 % of the population living below the poverty line , including 15.8 % of under eighteens and 37.5 % of those over 64 . was including 23.8% of the population living below the poverty line 37.5 % of those over 64
-One major difference between the two models is that the Photographic Model follows more of a step-by-step process in the development of flashbulb accounts , whereas the Comprehensive Model demonstrates an interconnected relationship between the variables . follows in the development of flashbulb accounts the Photographic Model more of a step-by-step process
-One major difference between the two models is that the Photographic Model follows more of a step-by-step process in the development of flashbulb accounts , whereas the Comprehensive Model demonstrates an interconnected relationship between the variables . demonstrates the Comprehensive Model an interconnected relationship between the variables
-One major difference between the two models is that the Photographic Model follows more of a step-by-step process in the development of flashbulb accounts , whereas the Comprehensive Model demonstrates an interconnected relationship between the variables . is between One major difference the two models
-One major difference between the two models is that the Photographic Model follows more of a step-by-step process in the development of flashbulb accounts , whereas the Comprehensive Model demonstrates an interconnected relationship between the variables . are the two models the Photographic Model and the Comprehensive Model
-The Cathedral and the belfry were thoroughly renovated from 2006 to 2008 . was thoroughly renovated The Cathedral from 2006
-The Cathedral and the belfry were thoroughly renovated from 2006 to 2008 . was thoroughly renovated The Cathedral to 2008
-The Cathedral and the belfry were thoroughly renovated from 2006 to 2008 . was thoroughly renovated the belfry from 2006
-The Cathedral and the belfry were thoroughly renovated from 2006 to 2008 . was thoroughly renovated the belfry to 2008
-Western Union has had major losses in recent years as its telex business has faltered in the face of competition from facsimile machines and as other business ventures have gone awry . has had Western Union major losses in recent years
-Western Union has had major losses in recent years as its telex business has faltered in the face of competition from facsimile machines and as other business ventures have gone awry . has a Western Union telex business
-Western Union has had major losses in recent years as its telex business has faltered in the face of competition from facsimile machines and as other business ventures have gone awry . has faltered in the face of Western Union's telex business competition from facsimile machines in recent years
-Western Union has had major losses in recent years as its telex business has faltered in the face of competition from facsimile machines and as other business ventures have gone awry . has faltered as Western Union's telex business other business ventures have gone awry in recent years
-Western Union has had major losses in recent years as its telex business has faltered in the face of competition from facsimile machines and as other business ventures have gone awry . has Western Union other business ventures
-Western Union has had major losses in recent years as its telex business has faltered in the face of competition from facsimile machines and as other business ventures have gone awry . have gone awry Western Union's other business ventures in recent years
-Western Union has had major losses in recent years as its telex business has faltered in the face of competition from facsimile machines and as other business ventures have gone awry . has competition from Western Union's telex business facsimile machines in recent years
-Darwin came into residence in Cambridge on 26 January 1828 , and matriculated at the University 's Senate House on 26 February . came Darwin into residence in Cambridge on 26 January 1828
-Darwin came into residence in Cambridge on 26 January 1828 , and matriculated at the University 's Senate House on 26 February . matriculated Darwin at the University 's Senate House in Cambridge on 26 February 1828
-Darwin came into residence in Cambridge on 26 January 1828 , and matriculated at the University 's Senate House on 26 February . was Darwin in Cambridge on 26 January 1828
-It was united with the Clitheroe Rural District , as part of the Ribble Valley district in the non-metropolitan county of Lancashire . was united with It the Clitheroe Rural District as part of the Ribble Valley district county of Lancashire
-It was united with the Clitheroe Rural District , as part of the Ribble Valley district in the non-metropolitan county of Lancashire . was united with It the Clitheroe Rural District Ribble Valley district
-It was united with the Clitheroe Rural District , as part of the Ribble Valley district in the non-metropolitan county of Lancashire . is part of the Clitheroe Rural District the Ribble Valley district county of Lancashire
-It was united with the Clitheroe Rural District , as part of the Ribble Valley district in the non-metropolitan county of Lancashire . is part of the Ribble Valley district the non-metropolitan county of Lancashire county of Lancashire
-One of the prisoners , Kasim Mehaddi Hilas , said that one day he asked Graner for the time so that he could pray . is Kasim Mehaddi Hilas One of the prisoners
-One of the prisoners , Kasim Mehaddi Hilas , said that one day he asked Graner for the time so that he could pray . said that Kasim Mehaddi Hilas one day he asked Graner for the time so that he could pray
-One of the prisoners , Kasim Mehaddi Hilas , said that one day he asked Graner for the time so that he could pray . asked Graner he for the time so that he could pray C: Kasim Mehaddi Hilas said that
-One of the prisoners , Kasim Mehaddi Hilas , said that one day he asked Graner for the time so that he could pray . asked Graner for the time he so that he could pray C: Kasim Mehaddi Hilas said that
-A Coca - Cola spokesman said it is too early to say how the joint venture would be structured , or how much the company would invest in the transaction . said A Coca - Cola spokesman it is too early to say how the joint venture would be structured
-A Coca - Cola spokesman said it is too early to say how the joint venture would be structured , or how much the company would invest in the transaction . is too early to say it how the joint venture would be structured C: A Coca - Cola spokesman said
-A Coca - Cola spokesman said it is too early to say how the joint venture would be structured , or how much the company would invest in the transaction . how the joint venture it is too early to say would be structured C: A Coca - Cola spokesman said
-A Coca - Cola spokesman said it is too early to say how the joint venture would be structured , or how much the company would invest in the transaction . said A Coca - Cola spokesman it is too early to say how much the company would invest in the transaction
-A Coca - Cola spokesman said it is too early to say how the joint venture would be structured , or how much the company would invest in the transaction . is too early to say it how much the company would invest in the transaction C: A Coca - Cola spokesman said
-A Coca - Cola spokesman said it is too early to say how the joint venture would be structured , or how much the company would invest in the transaction . how much the company would invest it is too early to say in the transaction C: A Coca - Cola spokesman said
-A Coke spokesman said he could n't say whether that is the direction of the talks . said A Coke spokesman he could n't say whether that is the direction of the talks
-A Coke spokesman said he could n't say whether that is the direction of the talks . could n't say he whether that is the direction of the talks C: A Coke spokesman said
-A Ford spokesman said the Dearborn , Mich. , auto maker is n't aware of any injuries caused by the windshield problem . is *(Ford Dearborn, Mich. , auto maker) -> ask mausa
-A Ford spokesman said the Dearborn , Mich. , auto maker is n't aware of any injuries caused by the windshield problem . said A Ford spokesman the Dearborn , Mich. , auto maker is n't aware of any injuries caused by the windshield problem
-A Ford spokesman said the Dearborn , Mich. , auto maker is n't aware of any injuries caused by the windshield problem . is n't aware of the Dearborn , Mich. , auto maker any injuries caused by the windshield problem C: A Ford spokesman said
-A bomb exploded at a leftist union hall in San Salvador , killing at least eight people and injuring about 30 others , including two Americans , authorities said . is a union hall in San Salvador leftist
-A bomb exploded at a leftist union hall in San Salvador , killing at least eight people and injuring about 30 others , including two Americans , authorities said . exploded at A bomb a leftist union hall in San Salvador
-A bomb exploded at a leftist union hall in San Salvador , killing at least eight people and injuring about 30 others , including two Americans , authorities said . said authorities A bomb exploded at a leftist union hall in San Salvador , killing at least eight people
-A bomb exploded at a leftist union hall in San Salvador , killing at least eight people and injuring about 30 others , including two Americans , authorities said . said authorities A bomb exploded at a leftist union hall in San Salvador , injuring about 30 people , including two Americans
-A bomb exploded at a leftist union hall in San Salvador , killing at least eight people and injuring about 30 others , including two Americans , authorities said . said authorities A bomb exploded at a leftist union hall in San Salvador , injuring two Americans
-A bomb exploded at a leftist union hall in San Salvador , killing at least eight people and injuring about 30 others , including two Americans , authorities said . at least eight people A bomb exploded at a leftist union hall in San Salvador, killing C: authorities said
-A bomb exploded at a leftist union hall in San Salvador , killing at least eight people and injuring about 30 others , including two Americans , authorities said . exploded A bomb at a leftist union hall in San Salvador, killing at least eight people C: authorities said
-A bomb exploded at a leftist union hall in San Salvador , killing at least eight people and injuring about 30 others , including two Americans , authorities said . about 30 people , including two Americans A bomb exploded at a leftist union hall in San Salvador, injuring C: authorities said
-A bomb exploded at a leftist union hall in San Salvador , killing at least eight people and injuring about 30 others , including two Americans , authorities said . exploded A bomb at a leftist union hall in San Salvador, injuring about 30 people , including two Americans C: authorities said
-A bomb exploded at a leftist union hall in San Salvador , killing at least eight people and injuring about 30 others , including two Americans , authorities said . two Americans A bomb exploded at a leftist union hall in San Salvador, injuring C: authorities said
-A bomb exploded at a leftist union hall in San Salvador , killing at least eight people and injuring about 30 others , including two Americans , authorities said . exploded A bomb at a leftist union hall in San Salvador, injuring two Americans C: authorities said
-About 60 % of the work force will continue with Gillette or transfer to Twins Pharmaceuticals , the company said . said the company About 60 % of the work force will continue with Gillette or transfer to Twins Pharmaceuticals
-About 60 % of the work force will continue with Gillette or transfer to Twins Pharmaceuticals , the company said . will continue with Gillette or transfer to About 60 % of the work force Twins Pharmaceuticals C: the company said
-About 60 % of the work force will continue with Gillette or transfer to Twins Pharmaceuticals , the company said . will continue with About 60 % of the work force Gillette or transfer to Twins Pharmaceuticals C: the company said
-And with Al 's record of being a delver and a detail guy , you can see how the two fit , '' said Alan Gottesman , an analyst with PaineWebber . is Alan Gottesman an analyst
-And with Al 's record of being a delver and a detail guy , you can see how the two fit , '' said Alan Gottesman , an analyst with PaineWebber . is Alan Gottesman an analyst with PaineWebber
-And with Al 's record of being a delver and a detail guy , you can see how the two fit , '' said Alan Gottesman , an analyst with PaineWebber . said Alan Gottesman , an analyst with PaineWebber And with Al 's record of being a delver and a detail guy , you can see how the two fit , ''
-And with Al 's record of being a delver and a detail guy , you can see how the two fit , '' said Alan Gottesman , an analyst with PaineWebber . of being a delver and a detail guy And with Al 's record you can see how the two fit C: Alan Gottesman said
-But Mr. Simonds-Gooding said he is n't talking to any studios about investing . said Mr. Simonds-Gooding he is n't talking to any studios about investing
-But Mr. Simonds-Gooding said he is n't talking to any studios about investing . is n't talking to he any studios about investing C: Mr. Simonds-Gooding said
-Conservatives are the faction in U.S. politics which always said that Mr. Ortega and his friends do n't want to hold an election in Nicaragua . which always said that Conservatives are the faction in U.S. politics Mr. Ortega and his friends do n't want to hold an election in Nicaragua
-Conservatives are the faction in U.S. politics which always said that Mr. Ortega and his friends do n't want to hold an election in Nicaragua . do n't want to hold Mr. Ortega and his friends an election in Nicaragua C: Conservatives always said that
-Conservatives are the faction in U.S. politics which always said that Mr. Ortega and his friends do n't want to hold an election in Nicaragua . are a Conservatives faction in U.S. politics
-Despite what some investors are suggesting , the Big Board is n't even considering a total ban on program trading or stock futures , exchange officials said . said exchange officials Despite what some investors are suggesting , the Big Board is n't even considering a total ban on program trading or stock futures
-Despite what some investors are suggesting , the Big Board is n't even considering a total ban on program trading or stock futures , exchange officials said . is n't even considering the Big Board a total ban on program trading or stock futures C: exchange officials said
-Despite what some investors are suggesting , the Big Board is n't even considering a total ban on program trading or stock futures , exchange officials said . are suggesting some investors a total ban on program trading or stock futures C: exchange officials said
-Gen - Probe Inc. , a biotechnology concern , said it signed a definitive agreement to be acquired by Chugai Pharmaceutical Co. of Tokyo for about $ 110 million , or almost double the market price of Gen - Probe 's stock . is Gen - Probe Inc. a biotechnology concern
-Gen - Probe Inc. , a biotechnology concern , said it signed a definitive agreement to be acquired by Chugai Pharmaceutical Co. of Tokyo for about $ 110 million , or almost double the market price of Gen - Probe 's stock . said Gen - Probe Inc. , a biotechnology concern it signed a definitive agreement to be acquired by Chugai Pharmaceutical Co. of Tokyo for about $ 110 million
-Gen - Probe Inc. , a biotechnology concern , said it signed a definitive agreement to be acquired by Chugai Pharmaceutical Co. of Tokyo for about $ 110 million , or almost double the market price of Gen - Probe 's stock . signed it a definitive agreement to be acquired by Chugai Pharmaceutical Co. of Tokyo for about $ 110 million C: Gen - Probe Inc. said
-Gen - Probe Inc. , a biotechnology concern , said it signed a definitive agreement to be acquired by Chugai Pharmaceutical Co. of Tokyo for about $ 110 million , or almost double the market price of Gen - Probe 's stock . said Gen - Probe Inc. , a biotechnology concern it signed a definitive agreement to be acquired by Chugai Pharmaceutical Co. of Tokyo for almost double the market price of Gen - Probe 's stock
-Gen - Probe Inc. , a biotechnology concern , said it signed a definitive agreement to be acquired by Chugai Pharmaceutical Co. of Tokyo for about $ 110 million , or almost double the market price of Gen - Probe 's stock . signed it a definitive agreement to be acquired by Chugai Pharmaceutical Co. of Tokyo for almost double the market price of Gen - Probe 's stock C: Gen - Probe Inc. said
-He said it has n't yet been determined how the RTC will raise the cash , but the administration does n't want it to be included on the federal budget , because it would `` distort '' the budget process by requiring either exemptions from Gramm-Rudman or big increases in the budget deficit . said He it has n't yet been determined how the RTC will raise the cash , but the administration does n't want it to be included on the federal budget , because it would `` distort '' the budget process by requiring either exemptions from Gramm-Rudman or big increases in the budget deficit
-He said it has n't yet been determined how the RTC will raise the cash , but the administration does n't want it to be included on the federal budget , because it would `` distort '' the budget process by requiring either exemptions from Gramm-Rudman or big increases in the budget deficit . has n't yet been determined it how the RTC will raise the cash C: He said
-He said it has n't yet been determined how the RTC will raise the cash , but the administration does n't want it to be included on the federal budget , because it would `` distort '' the budget process by requiring either exemptions from Gramm-Rudman or big increases in the budget deficit . does n't want administration it to be included on the federal budget because it would `` distort '' the budget process by requiring either exemptions from Gramm-Rudman or big increases in the budget deficit .t C: He said
-Healthcare International Inc. said it reached a 120 - day standstill agreement with its HealthVest affiliate calling for Healthcare to pay HealthVest $ 5 million right away and additional amounts in the future . said Healthcare International Inc. it reached a 120 - day standstill agreement with its HealthVest affiliate calling for Healthcare to pay HealthVest $ 5 million right away and additional amounts in the future
-Healthcare International Inc. said it reached a 120 - day standstill agreement with its HealthVest affiliate calling for Healthcare to pay HealthVest $ 5 million right away and additional amounts in the future . reached it a 120 - day standstill agreement with its HealthVest affiliate calling for Healthcare to pay HealthVest $ 5 million right away and additional amounts in the future C: Healthcare International Inc. said
-His recent appearance at the Metropolitan Museum , dubbed `` A Musical Odyssey , '' was a case in point . recent appearance His dubbed `` A Musical Odyssey , '' was a case in point L: at the Metropolitan Museum
-However , Paul Johanson , Monsanto 's director of plant sciences , said the company 's chemical spray overcomes these problems and is `` gentle on the female organ . '' is Paul Johanson Monsanto 's director of plant sciences
-However , Paul Johanson , Monsanto 's director of plant sciences , said the company 's chemical spray overcomes these problems and is `` gentle on the female organ . '' said Paul Johanson , Monsanto 's director of plant sciences the company 's chemical spray overcomes these problems and is `` gentle on the female organ . ''
-However , Paul Johanson , Monsanto 's director of plant sciences , said the company 's chemical spray overcomes these problems and is `` gentle on the female organ . '' overcomes these problems the company 's chemical spray C: Paul Johanson said
-However , Paul Johanson , Monsanto 's director of plant sciences , said the company 's chemical spray overcomes these problems and is `` gentle on the female organ . '' is the company 's chemical spray `` gentle on the female organ . '' C: Paul Johanson said
-In that decision , the high court said a company must prove that the government approved precise specifications for the contract , that those specifications were met and that the government was warned of any dangers in use of the equipment . said the high court a company must prove that the government approved precise specifications for the contract , that those specifications were met and that the government was warned of any dangers in use of the equipment
-In that decision , the high court said a company must prove that the government approved precise specifications for the contract , that those specifications were met and that the government was warned of any dangers in use of the equipment . must prove a company that the government approved precise specifications for the contract C: the high court said
-In that decision , the high court said a company must prove that the government approved precise specifications for the contract , that those specifications were met and that the government was warned of any dangers in use of the equipment . must prove a company that those specifications were met C: the high court said
-In that decision , the high court said a company must prove that the government approved precise specifications for the contract , that those specifications were met and that the government was warned of any dangers in use of the equipment . must prove a company that the government was warned of any dangers in use of the equipment C: the high court said
-It said financing would consist of $ 250 million from a private placement obtained through Shearson Lehman Hutton Inc. and a $ 150 million revolving credit line underwritten by Chase Manhattan Bank . said It financing would consist of $ 250 million from a private placement obtained through Shearson Lehman Hutton Inc. and a $ 150 million revolving credit line underwritten by Chase Manhattan Bank
-It said financing would consist of $ 250 million from a private placement obtained through Shearson Lehman Hutton Inc. and a $ 150 million revolving credit line underwritten by Chase Manhattan Bank . would consist of financing $ 250 million from a private placement obtained through Shearson Lehman Hutton Inc. C: It said
-It said financing would consist of $ 250 million from a private placement obtained through Shearson Lehman Hutton Inc. and a $ 150 million revolving credit line underwritten by Chase Manhattan Bank . would consist of financing a $ 150 million revolving credit line underwritten by Chase Manhattan Bank C: It said
-It said the situation is caused by efforts to streamline bloated factory payrolls . said It the situation is caused by efforts to streamline bloated factory payrolls
-It said the situation is caused by efforts to streamline bloated factory payrolls . is caused by the situation efforts to streamline bloated factory payrolls C: It said
-Jan Leemans , research director , said this gene was successfully introduced in oil - producing rapeseed plants , a major crop in Europe and Canada , using as a carrier a `` promoter gene '' developed by Robert Goldberg at the University of California in Los Angeles . is Jan Leemans research director
-Jan Leemans , research director , said this gene was successfully introduced in oil - producing rapeseed plants , a major crop in Europe and Canada , using as a carrier a `` promoter gene '' developed by Robert Goldberg at the University of California in Los Angeles . said Jan Leemans , research director this gene was successfully introduced in oil - producing rapeseed plants , a major crop in Europe and Canada , using as a carrier a `` promoter gene '' developed by Robert Goldberg at the University of California in Los Angeles
-Jan Leemans , research director , said this gene was successfully introduced in oil - producing rapeseed plants , a major crop in Europe and Canada , using as a carrier a `` promoter gene '' developed by Robert Goldberg at the University of California in Los Angeles . is Robert Goldberg at the University of California in Los Angeles
-Jan Leemans , research director , said this gene was successfully introduced in oil - producing rapeseed plants , a major crop in Europe and Canada , using as a carrier a `` promoter gene '' developed by Robert Goldberg at the University of California in Los Angeles . is oil - producing rapeseed plants a major crop in Europe and Canada
-Jan Leemans , research director , said this gene was successfully introduced in oil - producing rapeseed plants , a major crop in Europe and Canada , using as a carrier a `` promoter gene '' developed by Robert Goldberg at the University of California in Los Angeles . was successfully introduced in this gene oil - producing rapeseed plants using as a carrier a `` promoter gene '' developed by Robert Goldberg C: Jan Leemans said
-John M. Kucharski , EG&G 's chairman and chief executive , said the acquisition `` will extend EG&G 's core technologies , strengthen its position in the European Economic Community and assure a strength and presence in the Eastern European market . '' is John M. Kucharski EG&G 's chairman
-John M. Kucharski , EG&G 's chairman and chief executive , said the acquisition `` will extend EG&G 's core technologies , strengthen its position in the European Economic Community and assure a strength and presence in the Eastern European market . '' is John M. Kucharski EG&G 's chief executive
-John M. Kucharski , EG&G 's chairman and chief executive , said the acquisition `` will extend EG&G 's core technologies , strengthen its position in the European Economic Community and assure a strength and presence in the Eastern European market . '' said John M. Kucharski the acquisition `` will extend EG&G 's core technologies , strengthen its position in the European Economic Community and assure a strength and presence in the Eastern European market . ''
-John M. Kucharski , EG&G 's chairman and chief executive , said the acquisition `` will extend EG&G 's core technologies , strengthen its position in the European Economic Community and assure a strength and presence in the Eastern European market . '' will extend the acquisition EG&G 's core technologies C: John M. Kucharski said
-John M. Kucharski , EG&G 's chairman and chief executive , said the acquisition `` will extend EG&G 's core technologies , strengthen its position in the European Economic Community and assure a strength and presence in the Eastern European market . '' will strengthen the acquisition its position in the European Economic Community C: John M. Kucharski said
-John M. Kucharski , EG&G 's chairman and chief executive , said the acquisition `` will extend EG&G 's core technologies , strengthen its position in the European Economic Community and assure a strength and presence in the Eastern European market . '' will assure the acquisition a strength and presence in the Eastern European market C: John M. Kucharski said
-Meanwhile , Shearson Lehman 's Mr. Devario said that , to stay competitive , the U.S. paper industry needs to catch up with the European industry . belongs to Mr. Devario Shearson Lehman
-Meanwhile , Shearson Lehman 's Mr. Devario said that , to stay competitive , the U.S. paper industry needs to catch up with the European industry . said that Shearson Lehman 's Mr. Devario to stay competitive , the U.S. paper industry needs to catch up with the European industry
-Meanwhile , Shearson Lehman 's Mr. Devario said that , to stay competitive , the U.S. paper industry needs to catch up with the European industry . needs to catch up the U.S. paper industry with the European industry to stay competitive C: Mr. Devario said that
-Merrill also said it is lobbying for significant regulatory controls on program trading , including tough margin -- or down - payment -- requirements and limits on price moves for program - driven financial futures . also said Merrill it is lobbying for significant regulatory controls on program trading , including tough margin -- or down - payment -- requirements and limits on price moves for program - driven financial futures
-Merrill also said it is lobbying for significant regulatory controls on program trading , including tough margin -- or down - payment -- requirements and limits on price moves for program - driven financial futures . is lobbying for it significant regulatory controls on program trading including tough margin -- or down - payment -- requirements C: Merrill also said
-Merrill also said it is lobbying for significant regulatory controls on program trading , including tough margin -- or down - payment -- requirements and limits on price moves for program - driven financial futures . is lobbying for it limits on price moves for program - driven financial futures C: Merrill also said
-Mr. Bickwit said , `` I can see why an S&L examiner would regard these as unusual activities , '' but said the overseas investments `` essentially broke even '' for the S&L . said Mr. Bickwit I can see why an S&L examiner would regard these as unusual activities
-Mr. Bickwit said , `` I can see why an S&L examiner would regard these as unusual activities , '' but said the overseas investments `` essentially broke even '' for the S&L . said Mr. Bickwit the overseas investments `` essentially broke even '' for the S&L
-Mr. Bickwit said , `` I can see why an S&L examiner would regard these as unusual activities , '' but said the overseas investments `` essentially broke even '' for the S&L . can see why I an S&L examiner would regard these as unusual activities C: Mr. Bickwit said
-Mr. Bickwit said , `` I can see why an S&L examiner would regard these as unusual activities , '' but said the overseas investments `` essentially broke even '' for the S&L . `` essentially broke even '' the overseas investments for the S&L C: Mr. Bickwit said
-Mr. Blair said his libel suit seeks 10 million Canadian dollars ( US$ 8.5 million ) from Canadian Express and Hees executives Manfred Walt and Willard L'Heureux . said Mr. Blair his libel suit seeks 10 million Canadian dollars ( US$ 8.5 million ) from Canadian Express and Hees executives Manfred Walt and Willard L'Heureux
-Mr. Blair said his libel suit seeks 10 million Canadian dollars ( US$ 8.5 million ) from Canadian Express and Hees executives Manfred Walt and Willard L'Heureux . seeks his libel suit 10 million Canadian dollars ( US$ 8.5 million ) from Canadian Express C: Mr. Blair said
-Mr. Blair said his libel suit seeks 10 million Canadian dollars ( US$ 8.5 million ) from Canadian Express and Hees executives Manfred Walt and Willard L'Heureux . seeks his libel suit 10 million Canadian dollars ( US$ 8.5 million ) from Hees executives Manfred Walt C: Mr. Blair said
-Mr. Blair said his libel suit seeks 10 million Canadian dollars ( US$ 8.5 million ) from Canadian Express and Hees executives Manfred Walt and Willard L'Heureux . seeks his libel suit 10 million Canadian dollars ( US$ 8.5 million ) from Hees executives Willard L'Heureux C: Mr. Blair said
-Mr. Meek said his suspicions were aroused by several foreign investments by Lincoln , including $ 22 million paid to Credit Suisse of Switzerland , an $ 18 million interest in Saudi European Bank in Paris , a $ 17.5 million investment in a Bahamas trading company , and a recently discovered holding in a Panama - based company , Southbrook Holdings . said Mr. Meek his suspicions were aroused by several foreign investments by Lincoln , including $ 22 million paid to Credit Suisse of Switzerland , an $ 18 million interest in Saudi European Bank in Paris , a $ 17.5 million investment in a Bahamas trading company , and a recently discovered holding in a Panama - based company , Southbrook Holdings
-Mr. Meek said his suspicions were aroused by several foreign investments by Lincoln , including $ 22 million paid to Credit Suisse of Switzerland , an $ 18 million interest in Saudi European Bank in Paris , a $ 17.5 million investment in a Bahamas trading company , and a recently discovered holding in a Panama - based company , Southbrook Holdings . were aroused by his suspicions several foreign investments by Lincoln including $ 22 million paid to Credit Suisse of Switzerland C: Mr. Meek said
-Mr. Meek said his suspicions were aroused by several foreign investments by Lincoln , including $ 22 million paid to Credit Suisse of Switzerland , an $ 18 million interest in Saudi European Bank in Paris , a $ 17.5 million investment in a Bahamas trading company , and a recently discovered holding in a Panama - based company , Southbrook Holdings . were aroused by his suspicions several foreign investments by Lincoln including an $ 18 million interest in Saudi European Bank in Paris C: Mr. Meek said
-Mr. Meek said his suspicions were aroused by several foreign investments by Lincoln , including $ 22 million paid to Credit Suisse of Switzerland , an $ 18 million interest in Saudi European Bank in Paris , a $ 17.5 million investment in a Bahamas trading company , and a recently discovered holding in a Panama - based company , Southbrook Holdings . were aroused by his suspicions several foreign investments by Lincoln including a $ 17.5 million investment in a Bahamas trading company C: Mr. Meek said
-Mr. Meek said his suspicions were aroused by several foreign investments by Lincoln , including $ 22 million paid to Credit Suisse of Switzerland , an $ 18 million interest in Saudi European Bank in Paris , a $ 17.5 million investment in a Bahamas trading company , and a recently discovered holding in a Panama - based company , Southbrook Holdings . were aroused by his suspicions a recently discovered holding in a Panama - based company C: Mr. Meek said
-Mr. Robinson of Delta & Pine , the seed producer in Scott , Miss. , said Plant Genetic 's success in creating genetically engineered male steriles does n't automatically mean it would be simple to create hybrids in all crops . the seed producer in Delta & Pine Scott , Miss.
-Mr. Robinson of Delta & Pine , the seed producer in Scott , Miss. , said Plant Genetic 's success in creating genetically engineered male steriles does n't automatically mean it would be simple to create hybrids in all crops . is Mr. Robinson of Delta & Pine
-Mr. Robinson of Delta & Pine , the seed producer in Scott , Miss. , said Plant Genetic 's success in creating genetically engineered male steriles does n't automatically mean it would be simple to create hybrids in all crops . said Mr. Robinson Plant Genetic 's success in creating genetically engineered male steriles does n't automatically mean it would be simple to create hybrids in all crops
-Mr. Robinson of Delta & Pine , the seed producer in Scott , Miss. , said Plant Genetic 's success in creating genetically engineered male steriles does n't automatically mean it would be simple to create hybrids in all crops . success Plant Genetic 's in creating genetically engineered male steriles does n't automatically mean it would be simple to create hybrids in all crops C: Mr. Robinson said
-Orkem , France 's third - largest chemical group , said it would fund the acquisition through internal resources . is Orkem France 's third - largest chemical group
-Orkem , France 's third - largest chemical group , said it would fund the acquisition through internal resources . said Orkem it would fund the acquisition through internal resources
-Orkem , France 's third - largest chemical group , said it would fund the acquisition through internal resources . would fund it the acquisition through internal resources C: Orkem said
-People familiar with Nekoosa said its board is n't likely to meet before the week after next to respond to the bid . said People familiar with Nekoosa its board is n't likely to meet before the week after next to respond to the bid
-People familiar with Nekoosa said its board is n't likely to meet before the week after next to respond to the bid . is n't likely its board to meet to respond to the bid T: before the week after next C: People familiar with Nekoosa said
-President Bush said that three members of his cabinet will lead a presidential mission to Poland to gauge how the U.S. can help the new non - Communist government 's economic changes . said President Bush that three members of his cabinet will lead a presidential mission to Poland to gauge how the U.S. can help the new non - Communist government 's economic changes
-President Bush said that three members of his cabinet will lead a presidential mission to Poland to gauge how the U.S. can help the new non - Communist government 's economic changes . will lead a three members of his cabinet presidential mission L: to Poland C: President Bush said
-President Bush said that three members of his cabinet will lead a presidential mission to Poland to gauge how the U.S. can help the new non - Communist government 's economic changes . to gauge three members of his cabinet will lead a presidential mission how the U.S. can help the new non - Communist government 's economic changes L: to Poland C: President Bush said
-QVC Network Inc. said it completed its acquisition of CVN Cos. for about $ 423 million . said QVC Network Inc. it completed its acquisition of CVN Cos. for about $ 423 million
-QVC Network Inc. said it completed its acquisition of CVN Cos. for about $ 423 million . completed its acquisition of it CVN Cos. for about $ 423 million C: QVC Network Inc. said
-Salt Lake City - based First Security , with $ 5.4 billion in assets , said the agreement is subject to shareholder and regulatory approval , and that it hopes to complete the transaction early next year . based in First Security Salt Lake City
-Salt Lake City - based First Security , with $ 5.4 billion in assets , said the agreement is subject to shareholder and regulatory approval , and that it hopes to complete the transaction early next year . with First Security $ 5.4 billion in assets
-Salt Lake City - based First Security , with $ 5.4 billion in assets , said the agreement is subject to shareholder and regulatory approval , and that it hopes to complete the transaction early next year . said First Security the agreement is subject to shareholder and regulatory approval , and that it hopes to complete the transaction early next year
-Salt Lake City - based First Security , with $ 5.4 billion in assets , said the agreement is subject to shareholder and regulatory approval , and that it hopes to complete the transaction early next year . is subject to the agreement shareholder approval C: First Security said
-Salt Lake City - based First Security , with $ 5.4 billion in assets , said the agreement is subject to shareholder and regulatory approval , and that it hopes to complete the transaction early next year . is subject to the agreement regulatory approval C: First Security said
-Salt Lake City - based First Security , with $ 5.4 billion in assets , said the agreement is subject to shareholder and regulatory approval , and that it hopes to complete the transaction early next year . hopes it to complete the transaction T: early next year C: First Security said
-Some analysts have said Courtaulds ' moves could boost the company 's value by 5 % to 10 % , because the two entities separately will carry a higher price earnings multiple than they did combined . have said Some analysts Courtaulds ' moves could boost the company 's value by 5 % to 10 % , because the two entities separately will carry a higher price earnings multiple than they did combined
-Some analysts have said Courtaulds ' moves could boost the company 's value by 5 % to 10 % , because the two entities separately will carry a higher price earnings multiple than they did combined . could boost * because relation(Courtaulds ' moves the company 's value by 5 % to 10 % C: Some analysts have said
-Some analysts have said Courtaulds ' moves could boost the company 's value by 5 % to 10 % , because the two entities separately will carry a higher price earnings multiple than they did combined . separately will carry the two entities a higher price earnings multiple than they did combined C: Some analysts have said
-Stephen McCartin , Mr. Hunt 's attorney , said his client welcomed the gamble . is Stephen McCartin Mr. Hunt 's attorney
-Stephen McCartin , Mr. Hunt 's attorney , said his client welcomed the gamble . said Stephen McCartin his client welcomed the gamble
-Stephen McCartin , Mr. Hunt 's attorney , said his client welcomed the gamble . welcomed his client the gamble C: Stephen McCartin said
-T. Marshall Hahn Jr. , Georgia - Pacific 's chairman and chief executive , said in an interview that all terms of the offer are negotiable . is T. Marshall Hahn Jr. Georgia - Pacific 's chairman
-T. Marshall Hahn Jr. , Georgia - Pacific 's chairman and chief executive , said in an interview that all terms of the offer are negotiable . is T. Marshall Hahn Jr. Georgia - Pacific 's chief executive
-T. Marshall Hahn Jr. , Georgia - Pacific 's chairman and chief executive , said in an interview that all terms of the offer are negotiable . said in an interview T. Marshall Hahn Jr. that all terms of the offer are negotiable
-T. Marshall Hahn Jr. , Georgia - Pacific 's chairman and chief executive , said in an interview that all terms of the offer are negotiable . are all terms of the offer negotiable C: T. Marshall Hahn Jr. said in an interview
-The Colombian minister was said to have referred to a letter that he said President Bush sent to Colombian President Virgilio Barco , and in which President Bush said it was possible to overcome obstacles to a new agreement . was said to The Colombian minister have referred to a letter
-The Colombian minister was said to have referred to a letter that he said President Bush sent to Colombian President Virgilio Barco , and in which President Bush said it was possible to overcome obstacles to a new agreement . is Virgilio Barco Colombian President
-The Colombian minister was said to have referred to a letter that he said President Bush sent to Colombian President Virgilio Barco , and in which President Bush said it was possible to overcome obstacles to a new agreement . sent President Bush a letter to Colombian President Virgilio Barco C: The Colombian minister said
-The Colombian minister was said to have referred to a letter that he said President Bush sent to Colombian President Virgilio Barco , and in which President Bush said it was possible to overcome obstacles to a new agreement . said President Bush it was possible to overcome obstacles to a new agreement C: In the letter the Colombian minister is said to have referred to
-The Colombian minister was said to have referred to a letter that he said President Bush sent to Colombian President Virgilio Barco , and in which President Bush said it was possible to overcome obstacles to a new agreement . was it possible to overcome obstacles to a new agreement C: President Bush said in the letter the Colombian minister is said to have referred to
-The Dallas oil and gas concern said that $ 10 million of the facility would be used to consolidate the company 's $ 8.1 million of existing bank debt , to repurchase 4 million of its 4.9 million shares outstanding of Series D convertible preferred stock , and to purchase a 10 % net - profits interest in certain oil and gas properties from one of its existing lenders , National Canada Corp . said The Dallas oil and gas concern that $ 10 million of the facility would be used to consolidate the company 's $ 8.1 million of existing bank debt , to repurchase 4 million of its 4.9 million shares outstanding of Series D convertible preferred stock , and to purchase a 10 % net - profits interest in certain oil and gas properties from one of its existing lenders , National Canada Corp
-The Dallas oil and gas concern said that $ 10 million of the facility would be used to consolidate the company 's $ 8.1 million of existing bank debt , to repurchase 4 million of its 4.9 million shares outstanding of Series D convertible preferred stock , and to purchase a 10 % net - profits interest in certain oil and gas properties from one of its existing lenders , National Canada Corp . would be used to $ 10 million of the facility repurchase 4 million of its 4.9 million shares outstanding of Series D convertible preferred stock: C: The Dallas oil and gas concern said
-The Dallas oil and gas concern said that $ 10 million of the facility would be used to consolidate the company 's $ 8.1 million of existing bank debt , to repurchase 4 million of its 4.9 million shares outstanding of Series D convertible preferred stock , and to purchase a 10 % net - profits interest in certain oil and gas properties from one of its existing lenders , National Canada Corp . would be used to $ 10 million of the facility purchase a 10 % net - profits interest in certain oil and gas properties from one of its existing lenders , National Canada Corp C: The Dallas oil and gas concern said
-The SEC would likely be amenable to legislation that required insiders to file transactions on a more timely basis , he said . said he The SEC would likely be amenable to legislation that required insiders to file transactions on a more timely basis
-The SEC would likely be amenable to legislation that required insiders to file transactions on a more timely basis , he said . would likely be amenable to The SEC legislation that required insiders to file transactions on a more timely basis C: He said
-The Wellesley , Mass. , maker of scientific instruments and electronic parts said Berthold expects 1989 sales of more than 100 million Deutsche marks ( $ 54.5 million ) and employs about 400 people . is in The Wellesley Mass.
-The Wellesley , Mass. , maker of scientific instruments and electronic parts said Berthold expects 1989 sales of more than 100 million Deutsche marks ( $ 54.5 million ) and employs about 400 people . is The Wellesley maker of scientific instruments
-The Wellesley , Mass. , maker of scientific instruments and electronic parts said Berthold expects 1989 sales of more than 100 million Deutsche marks ( $ 54.5 million ) and employs about 400 people . is The Wellesley maker of electronic parts
-The Wellesley , Mass. , maker of scientific instruments and electronic parts said Berthold expects 1989 sales of more than 100 million Deutsche marks ( $ 54.5 million ) and employs about 400 people . said The Wellesley Berthold expects 1989 sales of more than 100 million Deutsche marks ( $ 54.5 million ) and employs about 400 people .
-The Wellesley , Mass. , maker of scientific instruments and electronic parts said Berthold expects 1989 sales of more than 100 million Deutsche marks ( $ 54.5 million ) and employs about 400 people . expects Berthold 1989 sales of more than 100 million Deutsche marks ( $ 54.5 million ) The Wellesley said
-The Wellesley , Mass. , maker of scientific instruments and electronic parts said Berthold expects 1989 sales of more than 100 million Deutsche marks ( $ 54.5 million ) and employs about 400 people . expects Berthold employs about 400 people The Wellesley said
-The machine can run software written for other Mips computers , the company said . said the company The machine can run software written for other Mips computers
-The machine can run software written for other Mips computers , the company said . can run The machine software written for other Mips computers the company said
-The publishing concern said it retained the investment banking firm of Donaldson , Lufkin & Jenrette Securities Inc. to act as its financial adviser , assisting in the evaluation of various financial and strategic alternatives , including debt refinancing , raising capital , recapitalization , a merger or sale of the company . said The publishing concern it retained the investment banking firm of Donaldson , Lufkin & Jenrette Securities Inc. to act as its financial adviser , assisting in the evaluation of various financial and strategic alternatives , including debt refinancing , raising capital , recapitalization , a merger or sale of the company
-The publishing concern said it retained the investment banking firm of Donaldson , Lufkin & Jenrette Securities Inc. to act as its financial adviser , assisting in the evaluation of various financial and strategic alternatives , including debt refinancing , raising capital , recapitalization , a merger or sale of the company . retained it the investment banking firm of Donaldson , Lufkin & Jenrette Securities Inc. C: The publishing concern said
-The publishing concern said it retained the investment banking firm of Donaldson , Lufkin & Jenrette Securities Inc. to act as its financial adviser , assisting in the evaluation of various financial and strategic alternatives , including debt refinancing , raising capital , recapitalization , a merger or sale of the company . will act as its Donaldson , Lufkin & Jenrette Securities Inc. financial adviser C: The publishing concern said
-The publishing concern said it retained the investment banking firm of Donaldson , Lufkin & Jenrette Securities Inc. to act as its financial adviser , assisting in the evaluation of various financial and strategic alternatives , including debt refinancing , raising capital , recapitalization , a merger or sale of the company . will be assisting in Donaldson , Lufkin & Jenrette Securities Inc. the evaluation of various financial and strategic alternatives C: The publishing concern said
-The publishing concern said it retained the investment banking firm of Donaldson , Lufkin & Jenrette Securities Inc. to act as its financial adviser , assisting in the evaluation of various financial and strategic alternatives , including debt refinancing , raising capital , recapitalization , a merger or sale of the company . will be assisting in Donaldson , Lufkin & Jenrette Securities Inc. the evaluation of debt refinancing C: The publishing concern said
-The publishing concern said it retained the investment banking firm of Donaldson , Lufkin & Jenrette Securities Inc. to act as its financial adviser , assisting in the evaluation of various financial and strategic alternatives , including debt refinancing , raising capital , recapitalization , a merger or sale of the company . will be assisting in Donaldson , Lufkin & Jenrette Securities Inc. the evaluation of raising capital C: The publishing concern said
-The publishing concern said it retained the investment banking firm of Donaldson , Lufkin & Jenrette Securities Inc. to act as its financial adviser , assisting in the evaluation of various financial and strategic alternatives , including debt refinancing , raising capital , recapitalization , a merger or sale of the company . will be assisting in Donaldson , Lufkin & Jenrette Securities Inc. the evaluation of recapitalization C: The publishing concern said
-The publishing concern said it retained the investment banking firm of Donaldson , Lufkin & Jenrette Securities Inc. to act as its financial adviser , assisting in the evaluation of various financial and strategic alternatives , including debt refinancing , raising capital , recapitalization , a merger or sale of the company . will be assisting in Donaldson , Lufkin & Jenrette Securities Inc. the evaluation of recapitalization C: The publishing concern said
-The publishing concern said it retained the investment banking firm of Donaldson , Lufkin & Jenrette Securities Inc. to act as its financial adviser , assisting in the evaluation of various financial and strategic alternatives , including debt refinancing , raising capital , recapitalization , a merger or sale of the company . will be assisting in Donaldson , Lufkin & Jenrette Securities Inc. the evaluation of a merger or sale of the company C: The publishing concern said
-The specialists , a trader said , were `` livid '' about Mr. Phelan 's recent remarks that sophisticated computer - driven trading strategies are `` here to stay . '' said a trader The specialists were `` livid '' about Mr. Phelan 's recent remarks that sophisticated computer - driven trading strategies are `` here to stay . ''
-The specialists , a trader said , were `` livid '' about Mr. Phelan 's recent remarks that sophisticated computer - driven trading strategies are `` here to stay . '' were `` livid '' about The specialists Mr. Phelan 's recent remarks that sophisticated computer - driven trading strategies are `` here to stay . '' C: a trader said
-The specialists , a trader said , were `` livid '' about Mr. Phelan 's recent remarks that sophisticated computer - driven trading strategies are `` here to stay . '' recently remarked Mr. Phelan 's that sophisticated computer - driven trading strategies are `` here to stay . ''
-The specialists , a trader said , were `` livid '' about Mr. Phelan 's recent remarks that sophisticated computer - driven trading strategies are `` here to stay . '' are sophisticated computer - driven trading strategies `` here to stay . ' C: Mr. Phelan 's recently remarked'
-There was some profit - taking because prices for all the precious metals had risen to levels at which there was resistance to further advance , he said . said he There was some profit - taking because prices for all the precious metals had risen to levels at which there was resistance to further advance
-There was some profit - taking because prices for all the precious metals had risen to levels at which there was resistance to further advance , he said . had risen to prices for all the precious metals levels at which there was resistance to further advance C: he said
-There was some profit - taking because prices for all the precious metals had risen to levels at which there was resistance to further advance , he said . was profit taken because prices for all the precious metals had risen C: he said
-`` But it 's risky , '' he says of Specialized 's attempt to adopt a corporate structure . says he Specialized 's attempt to adopt a corporate structure is risky
-`` But it 's risky , '' he says of Specialized 's attempt to adopt a corporate structure . attempt Specialized 's to adopt a corporate structure is risky C: he says
-`` Communism will reach its final stage of development in a feckless Russo -- corporation - socialist in form , nationalistic in content and Oriental in style -- that will puzzle the world with alternating feats of realism and recklessness ... . '' will reach Communism its final stage of development in a feckless Russo -- corporation
-`` Communism will reach its final stage of development in a feckless Russo -- corporation - socialist in form , nationalistic in content and Oriental in style -- that will puzzle the world with alternating feats of realism and recklessness ... . '' is feckless Russo corporation socialist in form
-`` Communism will reach its final stage of development in a feckless Russo -- corporation - socialist in form , nationalistic in content and Oriental in style -- that will puzzle the world with alternating feats of realism and recklessness ... . '' is feckless Russo corporation nationalistic in form
-`` Communism will reach its final stage of development in a feckless Russo -- corporation - socialist in form , nationalistic in content and Oriental in style -- that will puzzle the world with alternating feats of realism and recklessness ... . '' is feckless Russo corporation Oriental in style
-`` Communism will reach its final stage of development in a feckless Russo -- corporation - socialist in form , nationalistic in content and Oriental in style -- that will puzzle the world with alternating feats of realism and recklessness ... . '' will puzzle the world with alternating feats of realism and recklessness feckless Russo corporation
-`` Demand from Japan is expected to continue strong , but not from other areas of the world into the first quarter of next year , '' he said . said he `` Demand from Japan is expected to continue strong , but not from other areas of the world into the first quarter of next year , '’
-`` Demand from Japan is expected to continue strong , but not from other areas of the world into the first quarter of next year , '' he said . is expected to Demand from Japan
-`` Everyone else is going to catch up '' with Nissan 's innovative designs , says A. Rama Krishna , auto analyst at First Boston ( Japan ) Ltd . is A. Rama Krishna auto analyst at First Boston ( Japan ) Ltd
-`` Everyone else is going to catch up '' with Nissan 's innovative designs , says A. Rama Krishna , auto analyst at First Boston ( Japan ) Ltd . said A. Rama Krishna `` Everyone else is going to catch up '' with Nissan 's innovative designs
-`` Everyone else is going to catch up '' with Nissan 's innovative designs , says A. Rama Krishna , auto analyst at First Boston ( Japan ) Ltd . is going to catch up Everyone else with Nissan 's innovative designs C: A. Rama Krishna said
-`` I ca n't do anything score - wise , but I like meeting the girls . '' ca n't do anything I score - wise
-`` I ca n't do anything score - wise , but I like meeting the girls . '' like meeting I the girls
-`` I think we could very well have { an economic } slowdown , beginning very soon if not already , '' he says . think I we could very well have { an economic } slowdown C: he says
-`` I think we could very well have { an economic } slowdown , beginning very soon if not already , '' he says . could be { an economic } slowdown beginning T: very soon C: he says
-`` I think we could very well have { an economic } slowdown , beginning very soon if not already , '' he says . could { an economic } slowdown have begun T: already C: he says
-`` It 's going to be a tough league , '' promises the 47 - year - old Mr. Campaneris . is Mr. Campaneris 47 - year - old
-`` It 's going to be a tough league , '' promises the 47 - year - old Mr. Campaneris . promises Mr. Campaneris `` It 's going to be a tough league ''
-`` It 's going to be a tough league , '' promises the 47 - year - old Mr. Campaneris . going to be It ‘s a tough league C: Mr. Campaneris promises
-`` People see extra messages in advertising , and if a manufacturer is clearly trying to get something out of it ... if it 's too transparent ... then consumers will see through that , '' warns John Philip Jones , chairman of the advertising department at the Newhouse School of Public Communications at Syracuse University . is John Philip Jones chairman of the advertising department at the Newhouse School of Public Communications at Syracuse University
-`` People see extra messages in advertising , and if a manufacturer is clearly trying to get something out of it ... if it 's too transparent ... then consumers will see through that , '' warns John Philip Jones , chairman of the advertising department at the Newhouse School of Public Communications at Syracuse University . warns John Philip Jones `` People see extra messages in advertising , and if a manufacturer is clearly trying to get something out of it ... if it 's too transparent ... then consumers will see through that ''
-`` People see extra messages in advertising , and if a manufacturer is clearly trying to get something out of it ... if it 's too transparent ... then consumers will see through that , '' warns John Philip Jones , chairman of the advertising department at the Newhouse School of Public Communications at Syracuse University . see People extra messages in advertising C: John Philip Jones warns
-`` People see extra messages in advertising , and if a manufacturer is clearly trying to get something out of it ... if it 's too transparent ... then consumers will see through that , '' warns John Philip Jones , chairman of the advertising department at the Newhouse School of Public Communications at Syracuse University . will see consumers through manufacturer clearly trying to get something out of it C: John Philip Jones warns
-`` Small net inflows into stock and bond funds were offset by slight declines in the value of mutual fund stock and bond portfolios '' stemming from falling prices , said Jacob Dreyer , the institute 's chief economist . is Jacob Dreyer the institute 's chief economist
-`` Small net inflows into stock and bond funds were offset by slight declines in the value of mutual fund stock and bond portfolios '' stemming from falling prices , said Jacob Dreyer , the institute 's chief economist . said Jacob Dreyer `` Small net inflows into stock and bond funds were offset by slight declines in the value of mutual fund stock and bond portfolios '' stemming from falling prices
-`` Small net inflows into stock and bond funds were offset by slight declines in the value of mutual fund stock and bond portfolios '' stemming from falling prices , said Jacob Dreyer , the institute 's chief economist . into Small net inflows stock and bond funds were offset by slight declines in the value of mutual fund stock and bond portfolios stemming from falling prices C: Jacob Dreyer said
-`` That burden is very difficult , if not impossible , to meet , '' says Mr. Boyd . said Mr. Boyd `` That burden is very difficult , if not impossible , to meet ''
-`` That burden is very difficult , if not impossible , to meet , '' says Mr. Boyd . is very difficult That burden to meet C: Mr. Boyd said
-`` The development could have a dramatic effect on farm production , especially cotton , '' said Murray Robinson , president of Delta & Pine Land Co. , a Southwide Inc. subsidiary that is one of the largest cotton seed producers in the U.S. . is Murray Robinson president of Delta & Pine Land Co.
-`` The development could have a dramatic effect on farm production , especially cotton , '' said Murray Robinson , president of Delta & Pine Land Co. , a Southwide Inc. subsidiary that is one of the largest cotton seed producers in the U.S. . is Delta & Pine Land Co. a Southwide Inc. subsidiary
-`` The development could have a dramatic effect on farm production , especially cotton , '' said Murray Robinson , president of Delta & Pine Land Co. , a Southwide Inc. subsidiary that is one of the largest cotton seed producers in the U.S. . is Delta & Pine Land Co. one of the largest cotton seed producers in the U.S.
-`` The development could have a dramatic effect on farm production , especially cotton , '' said Murray Robinson , president of Delta & Pine Land Co. , a Southwide Inc. subsidiary that is one of the largest cotton seed producers in the U.S. . said Murray Robinson `` The development could have a dramatic effect on farm production , especially cotton ''
-`` The development could have a dramatic effect on farm production , especially cotton , '' said Murray Robinson , president of Delta & Pine Land Co. , a Southwide Inc. subsidiary that is one of the largest cotton seed producers in the U.S. . could have The development a dramatic effect on farm production , especially cotton C: Murray Robinson said
-`` The profit locking - in is definitely going on , '' said Mr. Mills , whose firm manages $ 600 million for Boston Co . said Mr. Mills `` The profit locking - in is definitely going on ''
-`` The profit locking - in is definitely going on , '' said Mr. Mills , whose firm manages $ 600 million for Boston Co . is definitely going on The profit locking - in C: Mr. Mills said
-`` The profit locking - in is definitely going on , '' said Mr. Mills , whose firm manages $ 600 million for Boston Co . firm Mr. Mills ‘s manages $ 600 million for Boston Co
-`` There are some things that have gone on here that nobody can explain , '' she says . says she `` There are some things that have gone on here that nobody can explain ''
-`` There are some things that have gone on here that nobody can explain , '' she says . that have gone on some things here that nobody can explain C: she says
-`` They 're getting some major wins , '' she added . added she `` They 're getting some major wins ''
-`` They 're getting some major wins , '' she added . getting They 're some major wins C: she added
-Back at the hotel , Taylor went ahead of Lemmy and told him `` Eddie 's left the band '' . told Taylor him `` Eddie 's left the band '' L: Back at the hotel
-Back at the hotel , Taylor went ahead of Lemmy and told him `` Eddie 's left the band '' . has Eddie left the band C: Taylor told
-Back at the hotel , Taylor went ahead of Lemmy and told him `` Eddie 's left the band '' . went ahead of Taylor Lemmy L: Back at the hotel
-Earlier yesterday , the Societe de Bourses Francaises was told that a unit of Framatome S.A. also bought Navigation Mixte shares , this purchase covering more than 160,000 shares . was told that the Societe de Bourses Francaises a unit of Framatome S.A. also bought Navigation Mixte shares , this purchase covering more than 160,000 shares T: Earlier yesterday
-Earlier yesterday , the Societe de Bourses Francaises was told that a unit of Framatome S.A. also bought Navigation Mixte shares , this purchase covering more than 160,000 shares . also bought a unit of Framatome S.A. Navigation Mixte shares C: the Societe de Bourses Francaises was told that
-Earlier yesterday , the Societe de Bourses Francaises was told that a unit of Framatome S.A. also bought Navigation Mixte shares , this purchase covering more than 160,000 shares . covered more than this purchase 160,000 shares C: the Societe de Bourses Francaises was told that
-Mr. Rifenburgh told industry analysts he is moving `` aggressively '' to negotiate out - of - court settlements on a number of shareholder lawsuits , but noted that the company could file for bankruptcy - law protection if settlement talks fail . told Mr. Rifenburgh industry analysts he is moving `` aggressively '' to negotiate out - of - court settlements on a number of shareholder lawsuits
-Mr. Rifenburgh told industry analysts he is moving `` aggressively '' to negotiate out - of - court settlements on a number of shareholder lawsuits , but noted that the company could file for bankruptcy - law protection if settlement talks fail . is moving aggressively to negotiate he out - of - court settlements on a number of shareholder lawsuits C: Mr. Rifenburgh told
-Mr. Rifenburgh told industry analysts he is moving `` aggressively '' to negotiate out - of - court settlements on a number of shareholder lawsuits , but noted that the company could file for bankruptcy - law protection if settlement talks fail . could file for the company bankruptcy - law protection if settlement talks fail C: Mr. Rifenburgh noted that
-For years , the company 's ads were tied in with pitches for Cannon sheets or Martex towels , for example , and an announcer at the end of the ads would tell customers where to `` find the true performance label . '' were tied in with the company 's ads pitches for Cannon sheets or Martex towels
-For years , the company 's ads were tied in with pitches for Cannon sheets or Martex towels , for example , and an announcer at the end of the ads would tell customers where to `` find the true performance label . '' would tell an announcer customers where to find the true performance label T: at the end of the ads
-He accused Dow Jones of `` using unfair means to obtain the stock at an unfair price . '' accused He Dow Jones of using unfair means to obtain the stock at an unfair price
-He accused Dow Jones of `` using unfair means to obtain the stock at an unfair price . '' used unfair means to obtain Dow Jones the stock at an unfair price C: He accused
-Ed tries to explain what happened to a skeptical Pete . tries to explain Ed what happened to a skeptical Pete
-Most of the proposals are in tourism , basic industry and fishery and agro - industry projects , he said . said he Most of the proposals are in tourism , basic industry and fishery and agro - industry projects
-Most of the proposals are in tourism , basic industry and fishery and agro - industry projects , he said . are Most of the proposals in tourism , basic industry and fishery and agro - industry projects C: he said
diff --git a/3-NLP_services/src/Multi2OIE/carb/CaRB_test.tsv b/3-NLP_services/src/Multi2OIE/carb/CaRB_test.tsv
deleted file mode 100644
index ff32205..0000000
--- a/3-NLP_services/src/Multi2OIE/carb/CaRB_test.tsv
+++ /dev/null
@@ -1,2715 +0,0 @@
-32.7 % of all households were made up of individuals and 15.7 % had someone living alone who was 65 years of age or older . were made up of 32.7 % of all households individuals
-32.7 % of all households were made up of individuals and 15.7 % had someone living alone who was 65 years of age or older . had 15.7 % of all households someone living alone who was 65 years of age or older
-A CEN forms an important but small part of a Local Strategic Partnership . forms A CEN an important part of a Local Strategic Partnership
-A CEN forms an important but small part of a Local Strategic Partnership . forms A CEN a small part of a Local Strategic Partnership
-A CEN forms an important but small part of a Local Strategic Partnership . is a Strategic Partnership Local
-A Democrat , he became the youngest mayor in Pittsburgh 's history in September 2006 at the age of 26 . became he the youngest mayor in Pittsburgh 's history in September 2006
-A Democrat , he became the youngest mayor in Pittsburgh 's history in September 2006 at the age of 26 . was he A Democrat
-A Democrat , he became the youngest mayor in Pittsburgh 's history in September 2006 at the age of 26 . was the youngest mayor in Pittsburgh 's history A Democrat
-A Democrat , he became the youngest mayor in Pittsburgh 's history in September 2006 at the age of 26 . became he the youngest mayor in the history of Pittsburgh in September 2006
-A Democrat , he became the youngest mayor in Pittsburgh 's history in September 2006 at the age of 26 . became the youngest mayor in Pittsburgh 's history at he the age of 26 in September 2006
-A Democrat , he became the youngest mayor in Pittsburgh 's history in September 2006 at the age of 26 . was the youngest mayor in Pittsburgh 's history 26
-A cafeteria is also located on the sixth floor , a chapel on the 14th floor , and a study hall on the 15th floor . is also located A cafeteria on the sixth floor
-A cafeteria is also located on the sixth floor , a chapel on the 14th floor , and a study hall on the 15th floor . is located a chapel on the 14th floor
-A cafeteria is also located on the sixth floor , a chapel on the 14th floor , and a study hall on the 15th floor . is located a study hall on the 15th floor
-A common name , logo , and programming schedule followed in 1982 , with the establishment of the `` TV8 '' network between the three stations , changed to the `` Southern Cross Network '' seven years later . was followed with the establishment of the A common name , logo , and programming schedule `` TV8 '' network between the three stations in 1982
-A common name , logo , and programming schedule followed in 1982 , with the establishment of the `` TV8 '' network between the three stations , changed to the `` Southern Cross Network '' seven years later . changed to the the `` TV8 '' network `` Southern Cross Network '' seven years later
-A common name , logo , and programming schedule followed in 1982 , with the establishment of the `` TV8 '' network between the three stations , changed to the `` Southern Cross Network '' seven years later . was establishment `` TV8 '' network between the three stations in 1982
-A common name , logo , and programming schedule followed in 1982 , with the establishment of the `` TV8 '' network between the three stations , changed to the `` Southern Cross Network '' seven years later . was the established common name between `` TV8 '' network the three stations in 1982
-A cooling center is a temporary air-conditioned public space set up by local authorities to deal with the health effects of a heat wave . is a temporary A cooling center air-conditioned public space set up by local authorities to deal with the health effects of a heat wave
-A cooling center is a temporary air-conditioned public space set up by local authorities to deal with the health effects of a heat wave . is a temporary air-conditioned public space set up by A cooling center local authorities to deal with the health effects of a heat wave
-A cooling center is a temporary air-conditioned public space set up by local authorities to deal with the health effects of a heat wave . is set up by A cooling center local authorities
-A cooling center is a temporary air-conditioned public space set up by local authorities to deal with the health effects of a heat wave . to deal with the local authorities set up a cooling center health effects of a heat wave
-A manifold is `` prime '' if it can not be presented as a connected sum of more than one manifold , none of which is the sphere of the same dimension . is `` prime '' A manifold if it can not be presented as a connected sum of more than one manifold , none of which is the sphere of the same dimension
-A manifold is `` prime '' if it can not be presented as a connected sum of more than one manifold , none of which is the sphere of the same dimension . can not be presented as a connected sum of a `` prime '' manifold more than one manifold , none of which is the sphere of the same dimension
-A manifold is `` prime '' if it can not be presented as a connected sum of more than one manifold , none of which is the sphere of the same dimension . is not the A `` prime '' manifold , a connected sum of more than one manifold , sphere of the same dimension
-A mid-March 2002 court order to stop printing for three months , was evaded by printing under other titles , such as `` Not That Respublika '' . was evaded by printing under A mid-March 2002 court order to stop printing for three months , other titles , such as `` Not That Respublika '' in mid-March 2002
-A mid-March 2002 court order to stop printing for three months , was evaded by printing under other titles , such as `` Not That Respublika '' . ordered to stop printing court for three months in mid-March 2002
-A mid-March 2002 court order to stop printing for three months , was evaded by printing under other titles , such as `` Not That Respublika '' . was under `` Not That Respublika '' other titles
-A motorcycle speedway long-track meeting , one of the few held in the UK , was staged at Ammanford . was A motorcycle speedway long-track meeting one of the few held in the UK , staged at Ammanford
-A motorcycle speedway long-track meeting , one of the few held in the UK , was staged at Ammanford . was staged at Ammanford, A motorcycle speedway long-track meeting one of the few held in the UK
-A motorcycle speedway long-track meeting , one of the few held in the UK , was staged at Ammanford . are held in few long-track motorcycle speedway meetings the UK
-A motorcycle speedway long-track meeting , one of the few held in the UK , was staged at Ammanford . was a the motorcycle speedway meeting long-track meeting held in the UK , staged at Ammanford
-A partial list of turbomachinery that may use one or more centrifugal compressors within the machine are listed here . are listed A partial list of turbomachinery that may use one or more centrifugal compressors within the machine here
-A partial list of turbomachinery that may use one or more centrifugal compressors within the machine are listed here . is of A partial list turbomachinery that may use one or more centrifugal compressors within the machine
-A partial list of turbomachinery that may use one or more centrifugal compressors within the machine are listed here . may use turbomachinery one or more centrifugal compressors within the machine
-A short distance to the east , NC 111 diverges on Greenwood Boulevard . diverges on NC 111 Greenwood Boulevard A short distance to the east
-A spectrum from a single FID has a low signal-to-noise ratio , but fortunately it improves readily with averaging of repeated acquisitions . has A spectrum from a single FID a low signal-to-noise ratio
-A spectrum from a single FID has a low signal-to-noise ratio , but fortunately it improves readily with averaging of repeated acquisitions . improves readily with averaging of signal-to-noise ratio repeated acquisitions
-According to Samaritan tradition , however , the Samaritan ethnonym is not derived from the region of Samaria , but from the fact that they were the `` Guardians '' of the true Israelite religion . According to Samaritan tradition is derived from the Samaritan ethnonym the fact that they were the `` Guardians '' of the true Israelite religion
-According to Samaritan tradition , however , the Samaritan ethnonym is not derived from the region of Samaria , but from the fact that they were the `` Guardians '' of the true Israelite religion . According to Samaritan tradition is not derived from the Samaritan ethnonym the region of Samaria
-According to Samaritan tradition , however , the Samaritan ethnonym is not derived from the region of Samaria , but from the fact that they were the `` Guardians '' of the true Israelite religion . were the `` Guardians '' of the Samaritans the true Israelite religion
-According to Samaritan tradition , however , the Samaritan ethnonym is not derived from the region of Samaria , but from the fact that they were the `` Guardians '' of the true Israelite religion . is Samaritan an ethnonym
-According to Samaritan tradition , however , the Samaritan ethnonym is not derived from the region of Samaria , but from the fact that they were the `` Guardians '' of the true Israelite religion . is Samaria a region
-According to the 2010 census , the population of the town is 2,310 . According to the 2010 census is the population of the town 2,310
-According to the 2010 census , the population of the town is 2,310 . is the population of 2,310 the town in 2010
-According to the 2010 census , the population of the town is 2,310 . was in the census 2010
-According to the indictment , Gonzalez is accused of defrauding the West Bronx Neighborhood Association Inc. , a not-for-profit corporation , by using funds donated to the organization in order to pay for over $ 37,000 in personal expenses . is accused of defrauding Gonzalez the West Bronx Neighborhood Association Inc.
-According to the indictment , Gonzalez is accused of defrauding the West Bronx Neighborhood Association Inc. , a not-for-profit corporation , by using funds donated to the organization in order to pay for over $ 37,000 in personal expenses . is accused of defrauding the West Bronx Neighborhood Association Inc by Gonzalez using funds donated to the organization in order to pay for over $ 37,000 in personal expenses
-According to the indictment , Gonzalez is accused of defrauding the West Bronx Neighborhood Association Inc. , a not-for-profit corporation , by using funds donated to the organization in order to pay for over $ 37,000 in personal expenses . is a not-for-profit corporation the West Bronx Neighborhood Association Inc
-After 1895 cable hauling ceased and locomotives pulled trains the whole length of the Victoria and Waterloo tunnels . ceased cable hauling After 1895
-After 1895 cable hauling ceased and locomotives pulled trains the whole length of the Victoria and Waterloo tunnels . pulled locomotives trains the whole length of the Victoria tunnel After 1895
-After 1895 cable hauling ceased and locomotives pulled trains the whole length of the Victoria and Waterloo tunnels . pulled locomotives trains whole length of the Waterloo tunnel After 1895
-After 1895 cable hauling ceased and locomotives pulled trains the whole length of the Victoria and Waterloo tunnels . is in a tunnel Victoria
-After 1895 cable hauling ceased and locomotives pulled trains the whole length of the Victoria and Waterloo tunnels . is in a tunnel Waterloo
-After five years of searching , the Colonials found a primitive , lush and vibrant new world and named it Earth . found the Colonials a primitive , lush and vibrant new world After five years of searching
-After five years of searching , the Colonials found a primitive , lush and vibrant new world and named it Earth . named a new world the Colonials Earth After five years of searching
-After five years of searching , the Colonials found a primitive , lush and vibrant new world and named it Earth . was the new world primitive
-After five years of searching , the Colonials found a primitive , lush and vibrant new world and named it Earth . was the new world vibrant
-After five years of searching , the Colonials found a primitive , lush and vibrant new world and named it Earth . was the new world lush
-After five years of searching , the Colonials found a primitive , lush and vibrant new world and named it Earth . was the new world Earth
-After five years of searching , the Colonials found a primitive , lush and vibrant new world and named it Earth . were searching the Colonials five years
-After leaving `` Hex '' , Cole went on to appear as Blanche Ingram in the critically acclaimed `` Jane Eyre '' TV serial for the BBC and guest starred as Lilith in the `` Doctor Who '' episode `` The Shakespeare Code '' . went on to appear as Cole Blanche Ingram in the critically acclaimed `` Jane Eyre '' TV serial for the BBC After leaving `` Hex ''
-After leaving `` Hex '' , Cole went on to appear as Blanche Ingram in the critically acclaimed `` Jane Eyre '' TV serial for the BBC and guest starred as Lilith in the `` Doctor Who '' episode `` The Shakespeare Code '' . guest starred as Cole Lilith in the `` Doctor Who '' episode `` The Shakespeare Code '' After leaving `` Hex ''
-After leaving `` Hex '' , Cole went on to appear as Blanche Ingram in the critically acclaimed `` Jane Eyre '' TV serial for the BBC and guest starred as Lilith in the `` Doctor Who '' episode `` The Shakespeare Code '' . left Cole `` Hex ''
-After leaving `` Hex '' , Cole went on to appear as Blanche Ingram in the critically acclaimed `` Jane Eyre '' TV serial for the BBC and guest starred as Lilith in the `` Doctor Who '' episode `` The Shakespeare Code '' . was `` Jane Eyre '' critically acclaimed
-After leaving `` Hex '' , Cole went on to appear as Blanche Ingram in the critically acclaimed `` Jane Eyre '' TV serial for the BBC and guest starred as Lilith in the `` Doctor Who '' episode `` The Shakespeare Code '' . was `` Jane Eyre '' a TV serial for the BBC
-After leaving `` Hex '' , Cole went on to appear as Blanche Ingram in the critically acclaimed `` Jane Eyre '' TV serial for the BBC and guest starred as Lilith in the `` Doctor Who '' episode `` The Shakespeare Code '' . had `` Doctor Who '' `` The Shakespeare Code '' episode
-After the battle , Battra rested in the Arctic Ocean , whereas Mothra retired to Infant Island , accompanied by the two Cosmos . rested in Battra the Arctic Ocean After the battle
-After the battle , Battra rested in the Arctic Ocean , whereas Mothra retired to Infant Island , accompanied by the two Cosmos . retired to Mothra Infant Island After the battle
-After the battle , Battra rested in the Arctic Ocean , whereas Mothra retired to Infant Island , accompanied by the two Cosmos . was accompanied by Mothra the two Cosmos to Infant Island After the battle
-After this point many of the republicans were arrested in Free State `` round ups '' when they had come out of hiding and returned home . were arrested in many of the republicans Free State `` round ups '' After this point
-After this point many of the republicans were arrested in Free State `` round ups '' when they had come out of hiding and returned home . had come out of many of the republicans hiding After this point
-After this point many of the republicans were arrested in Free State `` round ups '' when they had come out of hiding and returned home . had returned many of the republicans home After this point
-After this point many of the republicans were arrested in Free State `` round ups '' when they had come out of hiding and returned home . were arrested in many of the republicans Free State `` round ups '' when they had come out of hiding and returned home
-Although Knievel broke his arms , he was more distraught over a permanent injury his accident caused to the cameraman . broke Knievel his arms
-Although Knievel broke his arms , he was more distraught over a permanent injury his accident caused to the cameraman . was more distraught over Knievel a permanent injury his accident caused to the cameraman
-Although Knievel broke his arms , he was more distraught over a permanent injury his accident caused to the cameraman . caused Knievel's accident permanent injury to the cameraman
-Although Knievel broke his arms , he was more distraught over a permanent injury his accident caused to the cameraman . was permanent injury to the cameraman
-Although under constant attack from kamikazes as well as fighters and dive-bombers , `` Hazelwood '' came through the invasion untouched and on the night of 25 February sank two small enemy freighters with her guns . was under constant attack from `` Hazelwood '' kamikazes
-Although under constant attack from kamikazes as well as fighters and dive-bombers , `` Hazelwood '' came through the invasion untouched and on the night of 25 February sank two small enemy freighters with her guns . was under constant attack from `` Hazelwood '' fighters
-Although under constant attack from kamikazes as well as fighters and dive-bombers , `` Hazelwood '' came through the invasion untouched and on the night of 25 February sank two small enemy freighters with her guns . was under constant attack from `` Hazelwood '' dive-bombers
-Although under constant attack from kamikazes as well as fighters and dive-bombers , `` Hazelwood '' came through the invasion untouched and on the night of 25 February sank two small enemy freighters with her guns . came through untouched `` Hazelwood '' the invasion
-Although under constant attack from kamikazes as well as fighters and dive-bombers , `` Hazelwood '' came through the invasion untouched and on the night of 25 February sank two small enemy freighters with her guns . sank with her guns `` Hazelwood '' two small enemy freighters on the night of 25 February
-An animal that cares for its young but shows no other sociality traits is said to be `` subsocial '' . is said to be An animal that cares for its young but shows no other sociality traits `` subsocial ''
-An original limited artist edition of 250 was published in 1989 and was an oversized fine press slip-cased book with stainless steel faced boards and digital clock inset into the front cover . was published An original limited artist edition of 250 in 1989
-An original limited artist edition of 250 was published in 1989 and was an oversized fine press slip-cased book with stainless steel faced boards and digital clock inset into the front cover . was An original limited artist edition of 250 an oversized fine press slip-cased book with stainless steel faced boards and digital clock inset into the front cover
-An original limited artist edition of 250 was published in 1989 and was an oversized fine press slip-cased book with stainless steel faced boards and digital clock inset into the front cover . was inset into a digital clock the front cover
-An original limited artist edition of 250 was published in 1989 and was an oversized fine press slip-cased book with stainless steel faced boards and digital clock inset into the front cover . had an oversized fine press slip-cased book stainless steel faced boards
-An original limited artist edition of 250 was published in 1989 and was an oversized fine press slip-cased book with stainless steel faced boards and digital clock inset into the front cover . had an oversized fine press slip-cased book a digital clock inset into the front cover
-An original limited artist edition of 250 was published in 1989 and was an oversized fine press slip-cased book with stainless steel faced boards and digital clock inset into the front cover . was digital the clock inset into the front cover
-An original limited artist edition of 250 was published in 1989 and was an oversized fine press slip-cased book with stainless steel faced boards and digital clock inset into the front cover . was oversized the book
-An original limited artist edition of 250 was published in 1989 and was an oversized fine press slip-cased book with stainless steel faced boards and digital clock inset into the front cover . was slip-cased the book
-An original limited artist edition of 250 was published in 1989 and was an oversized fine press slip-cased book with stainless steel faced boards and digital clock inset into the front cover . was fine press the book
-An original limited artist edition of 250 was published in 1989 and was an oversized fine press slip-cased book with stainless steel faced boards and digital clock inset into the front cover . was original the edition of 250
-An original limited artist edition of 250 was published in 1989 and was an oversized fine press slip-cased book with stainless steel faced boards and digital clock inset into the front cover . was limited the edition of 250
-An original limited artist edition of 250 was published in 1989 and was an oversized fine press slip-cased book with stainless steel faced boards and digital clock inset into the front cover . was artist edition the 250
-An original limited artist edition of 250 was published in 1989 and was an oversized fine press slip-cased book with stainless steel faced boards and digital clock inset into the front cover . were stainless steel faced the boards
-And ABS has formed a partnership with Habitat for Humanity to give a free Bible to each of its new homeowners in the United States . has formed a partnership with ABS Habitat for Humanity
-And ABS has formed a partnership with Habitat for Humanity to give a free Bible to each of its new homeowners in the United States . has formed a partnership to give a free Bible to ABS each of its new homeowners in the United States
-And ABS has formed a partnership with Habitat for Humanity to give a free Bible to each of its new homeowners in the United States . will be given to a free Bible each of Habitat for Humanity's new homeowners in the United States
-And ABS has formed a partnership with Habitat for Humanity to give a free Bible to each of its new homeowners in the United States . will be free a Bible
-And he was in Ali 's army in the Battle of Jamal and later it was Muhammad ibn Abu Bakr who escorted Aisha back to Madina . was he in Ali 's army
-And he was in Ali 's army in the Battle of Jamal and later it was Muhammad ibn Abu Bakr who escorted Aisha back to Madina . was he in the Battle of Jamal
-And he was in Ali 's army in the Battle of Jamal and later it was Muhammad ibn Abu Bakr who escorted Aisha back to Madina . was Ali 's army in the Battle of Jamal
-And he was in Ali 's army in the Battle of Jamal and later it was Muhammad ibn Abu Bakr who escorted Aisha back to Madina . escorted Muhammad ibn Abu Bakr Aisha back to Madina later
-And he was in Ali 's army in the Battle of Jamal and later it was Muhammad ibn Abu Bakr who escorted Aisha back to Madina . was he Muhammad ibn Abu Bakr
-Andrea Bianco 's atlas of 1436 comprises ten leaves of vellum , measuring , in an 18th-century binding . has Andrea Bianco atlas of 1436
-Andrea Bianco 's atlas of 1436 comprises ten leaves of vellum , measuring , in an 18th-century binding . comprises Andrea Bianco 's atlas of 1436 ten leaves of vellum
-Andrea Bianco 's atlas of 1436 comprises ten leaves of vellum , measuring , in an 18th-century binding . is in Andrea Bianco 's atlas of 1436 an 18th-century binding
-Andrea Bianco 's atlas of 1436 comprises ten leaves of vellum , measuring , in an 18th-century binding . is Andrea Bianco 's atlas of 1436
-Andrea Bianco 's atlas of 1436 comprises ten leaves of vellum , measuring , in an 18th-century binding . was bound Andrea Bianco 's atlas of 1436 in 18th-century
-Apartment buildings , shops , medical clinics , cinemas etc. were built in close proximity to the MAZ plant , providing plant workers with local necessities . were built Apartment buildings in close proximity to the MAZ plant
-Apartment buildings , shops , medical clinics , cinemas etc. were built in close proximity to the MAZ plant , providing plant workers with local necessities . were built medical clinics in close proximity to the MAZ plant
-Apartment buildings , shops , medical clinics , cinemas etc. were built in close proximity to the MAZ plant , providing plant workers with local necessities . were built shops in close proximity to the MAZ plant
-Apartment buildings , shops , medical clinics , cinemas etc. were built in close proximity to the MAZ plant , providing plant workers with local necessities . were built cinemas in close proximity to the MAZ plant
-Apartment buildings , shops , medical clinics , cinemas etc. were built in close proximity to the MAZ plant , providing plant workers with local necessities . were providing with local necessities Apartment buildings plant workers
-Apartment buildings , shops , medical clinics , cinemas etc. were built in close proximity to the MAZ plant , providing plant workers with local necessities . were providing with local necessities shops plant workers
-Apartment buildings , shops , medical clinics , cinemas etc. were built in close proximity to the MAZ plant , providing plant workers with local necessities . were providing with local necessities medical clinics plant workers
-Apartment buildings , shops , medical clinics , cinemas etc. were built in close proximity to the MAZ plant , providing plant workers with local necessities . were providing with local necessities cinemas plant workers
-Applications can use this service to record activity for a production system while implementations of other OSIDs can use the service to record detailed data during development , debugging , or analyzing performance . can use this service to record Applications activity for a production system
-Applications can use this service to record activity for a production system while implementations of other OSIDs can use the service to record detailed data during development , debugging , or analyzing performance . can use the service to record implementations of other OSIDs detailed data during development
-Applications can use this service to record activity for a production system while implementations of other OSIDs can use the service to record detailed data during development , debugging , or analyzing performance . can use the service to record implementations of other OSIDs detailed data during debugging
-Applications can use this service to record activity for a production system while implementations of other OSIDs can use the service to record detailed data during development , debugging , or analyzing performance . can use the service to record detailed data implementations of other OSIDs during analyzing performance
-Applying this technique facilitates the connection of the center of the foot with the lower abdomen . facilitates Applying this technique the connection of the center of the foot with the lower abdomen
-As Attorney General he clashed with Daniel O'Connell when he insisted , against O'Connell 's wishes , on the appointment of Abraham Brewster as Law Adviser to the Lord Lieutenant of Ireland . clashed with he Daniel O'Connell
-As Attorney General he clashed with Daniel O'Connell when he insisted , against O'Connell 's wishes , on the appointment of Abraham Brewster as Law Adviser to the Lord Lieutenant of Ireland . was Attorney General he
-As Attorney General he clashed with Daniel O'Connell when he insisted , against O'Connell 's wishes , on the appointment of Abraham Brewster as Law Adviser to the Lord Lieutenant of Ireland . insisted on he the appointment of Abraham Brewster as Law Adviser to the Lord Lieutenant of Ireland
-As Attorney General he clashed with Daniel O'Connell when he insisted , against O'Connell 's wishes , on the appointment of Abraham Brewster as Law Adviser to the Lord Lieutenant of Ireland . was appointed as Abraham Brewster Law Adviser to the Lord Lieutenant of Ireland
-As Attorney General he clashed with Daniel O'Connell when he insisted , against O'Connell 's wishes , on the appointment of Abraham Brewster as Law Adviser to the Lord Lieutenant of Ireland . is of the Lord Lieutenant Ireland
-As Attorney General he clashed with Daniel O'Connell when he insisted , against O'Connell 's wishes , on the appointment of Abraham Brewster as Law Adviser to the Lord Lieutenant of Ireland . had wishes Daniel O'Connell
-As Attorney General he clashed with Daniel O'Connell when he insisted , against O'Connell 's wishes , on the appointment of Abraham Brewster as Law Adviser to the Lord Lieutenant of Ireland . insisted , against wishes of he Daniel O'Connell
-As Attorney General he clashed with Daniel O'Connell when he insisted , against O'Connell 's wishes , on the appointment of Abraham Brewster as Law Adviser to the Lord Lieutenant of Ireland . has Law Adviser Lord Lieutenant of Ireland
-As a group , the team was enshrined into the Basketball Hall of Fame in 1959 . was enshrined into the team the Basketball Hall of Fame in 1959
-As a group , the team was enshrined into the Basketball Hall of Fame in 1959 . was enshrined As the team a group into the Basketball Hall of Fame in 1959
-As a result , it becomes clear that the microbe can not survive outside a narrow pH range . can not survive outside the microbe a narrow pH range
-As a result , it becomes clear that the microbe can not survive outside a narrow pH range . has a range pH
-As a result , it becomes clear that the microbe can not survive outside a narrow pH range . becomes clear that it the microbe can not survive outside a narrow pH range
-As a result , it becomes clear that the microbe can not survive outside a narrow pH range . As a result it becomes clear that the microbe can not survive outside a narrow pH range
-As a result , the lower river had to be dredged three times in two years . had to be dredged three times the lower river in two years
-As early as the 15th century , the French kings sent commissioners to the provinces to inspect on royal and administrative affairs and to take necessary action . sent commissioners to the provinces to inspect on the French kings royal and administrative affairs As early as the 15th century
-As early as the 15th century , the French kings sent commissioners to the provinces to inspect on royal and administrative affairs and to take necessary action . sent commissioners to the provinces to take the French kings necessary action As early as the 15th century
-As early as the 15th century , the French kings sent commissioners to the provinces to inspect on royal and administrative affairs and to take necessary action . were sent to commissioners the provinces As early as the 15th century
-As in his first novel , Armah contrasts the two worlds of materialism and moral values , corruption and dreams , two worlds of integrity and social pressure . contrasts Armah materialism
-As in his first novel , Armah contrasts the two worlds of materialism and moral values , corruption and dreams , two worlds of integrity and social pressure . contrasts Armah moral values
-As in his first novel , Armah contrasts the two worlds of materialism and moral values , corruption and dreams , two worlds of integrity and social pressure . contrasts Armah the two worlds
-As in his first novel , Armah contrasts the two worlds of materialism and moral values , corruption and dreams , two worlds of integrity and social pressure . is materialism a world
-As in his first novel , Armah contrasts the two worlds of materialism and moral values , corruption and dreams , two worlds of integrity and social pressure . are moral values a world
-As in his first novel , Armah contrasts the two worlds of materialism and moral values , corruption and dreams , two worlds of integrity and social pressure . contrasts Armah corruption
-As in his first novel , Armah contrasts the two worlds of materialism and moral values , corruption and dreams , two worlds of integrity and social pressure . contrasts Armah dreams
-As in his first novel , Armah contrasts the two worlds of materialism and moral values , corruption and dreams , two worlds of integrity and social pressure . is corruption a world
-As in his first novel , Armah contrasts the two worlds of materialism and moral values , corruption and dreams , two worlds of integrity and social pressure . are dreams a world
-As in his first novel , Armah contrasts the two worlds of materialism and moral values , corruption and dreams , two worlds of integrity and social pressure . contrasts Armah integrity
-As in his first novel , Armah contrasts the two worlds of materialism and moral values , corruption and dreams , two worlds of integrity and social pressure . contrasts Armah social pressure
-As in his first novel , Armah contrasts the two worlds of materialism and moral values , corruption and dreams , two worlds of integrity and social pressure . is integrity a world
-As in his first novel , Armah contrasts the two worlds of materialism and moral values , corruption and dreams , two worlds of integrity and social pressure . is social pressure a world
-As in his first novel , Armah contrasts the two worlds of materialism and moral values , corruption and dreams , two worlds of integrity and social pressure . contrasts the two worlds of Armah materialism and moral values in his first novel
-As in his first novel , Armah contrasts the two worlds of materialism and moral values , corruption and dreams , two worlds of integrity and social pressure . contrasts the two worlds of Armah corruption and dreams in his first novel
-As in his first novel , Armah contrasts the two worlds of materialism and moral values , corruption and dreams , two worlds of integrity and social pressure . contrasts the two worlds of Armah integrity and social pressure in his first novel
-As in his first novel , Armah contrasts the two worlds of materialism and moral values , corruption and dreams , two worlds of integrity and social pressure . has Armah his first novel
-As is true for all sensors , absolute accuracy of a measurement requires a functionality for calibration . requires a functionality for absolute accuracy of a measurement calibration
-As is true for all sensors , absolute accuracy of a measurement requires a functionality for calibration . is true for absolute accuracy of a measurement requires a functionality for calibration all sensors
-As of `` A Wind in the Door '' , Sandy aspires to become a banker , on the grounds that it is practical and lucrative . aspires to become Sandy a banker As of `` A Wind in the Door ''
-As of `` A Wind in the Door '' , Sandy aspires to become a banker , on the grounds that it is practical and lucrative . is to become a banker practical
-As of `` A Wind in the Door '' , Sandy aspires to become a banker , on the grounds that it is practical and lucrative . is to become a banker lucrative
-As of `` A Wind in the Door '' , Sandy aspires to become a banker , on the grounds that it is practical and lucrative . is in Sandy `` A Wind in the Door ''
-As part of several efforts to have the Gypsy Horse recognized as a breed outside the Romanichal community , a more descriptive name was sought for it , starting in the 1990s . was sought for a more descriptive name the Gypsy Horse starting in the 1990s
-As part of several efforts to have the Gypsy Horse recognized as a breed outside the Romanichal community , a more descriptive name was sought for it , starting in the 1990s . was sought As a more descriptive name part of several efforts to have the Gypsy Horse recognized as a breed outside the Romanichal community
-As part of several efforts to have the Gypsy Horse recognized as a breed outside the Romanichal community , a more descriptive name was sought for it , starting in the 1990s . were to have recognized several efforts the Gypsy Horse as a breed outside the Romanichal community
-As part of several efforts to have the Gypsy Horse recognized as a breed outside the Romanichal community , a more descriptive name was sought for it , starting in the 1990s . is recognized as a breed the Gypsy Horse in the Romanichal community
-Assisting in the recording process were Fernando Cabello and two friends of the group , Eva Dalda and Lydia Iovanne . was Assisting in Fernando Cabello the recording process
-Assisting in the recording process were Fernando Cabello and two friends of the group , Eva Dalda and Lydia Iovanne . was Assisting in Eva Dalda the recording process
-Assisting in the recording process were Fernando Cabello and two friends of the group , Eva Dalda and Lydia Iovanne . was Assisting in Lydia Iovanne the recording process
-Assisting in the recording process were Fernando Cabello and two friends of the group , Eva Dalda and Lydia Iovanne . was Eva Dalda a friend of the group
-Assisting in the recording process were Fernando Cabello and two friends of the group , Eva Dalda and Lydia Iovanne . was Lydia Iovanne a friend of the group
-At a presentation in the Toronto Pearson International Airport hangar , Celine Dion helped the newly solvent airline debut its new image . helped debut Celine Dion the newly solvent airline's new image At a presentation in the Toronto Pearson International Airport hangar
-At a presentation in the Toronto Pearson International Airport hangar , Celine Dion helped the newly solvent airline debut its new image . was in a presentation the Toronto Pearson International Airport hangar
-At a presentation in the Toronto Pearson International Airport hangar , Celine Dion helped the newly solvent airline debut its new image . was the airline solvent newly
-At a presentation in the Toronto Pearson International Airport hangar , Celine Dion helped the newly solvent airline debut its new image . has the newly solvent airline a new image
-At a presentation in the Toronto Pearson International Airport hangar , Celine Dion helped the newly solvent airline debut its new image . is in Pearson International Airport Toronto
-At least 11 villagers disappeared and 8 people were killed in the ensuing tsunami , two of which are prisoners at one of the Permisan prisons . disappeared in At least 11 villagers the ensuing tsunami
-At least 11 villagers disappeared and 8 people were killed in the ensuing tsunami , two of which are prisoners at one of the Permisan prisons . were killed in 8 people the ensuing tsunami
-At least 11 villagers disappeared and 8 people were killed in the ensuing tsunami , two of which are prisoners at one of the Permisan prisons . are two of 8 people killed in the ensuing tsunami prisoners at one of the Permisan prisons
-At least 11 villagers disappeared and 8 people were killed in the ensuing tsunami , two of which are prisoners at one of the Permisan prisons . are at prisoners Permisan prisons
-At least 11 villagers disappeared and 8 people were killed in the ensuing tsunami , two of which are prisoners at one of the Permisan prisons . was the tsunami ensuing
-At no cost to the parents , these services are provided in compliance with state and federal law ; and are reasonably calculated to yield meaningful educational benefit and student progress . are provided in compliance with these services state law
-At no cost to the parents , these services are provided in compliance with state and federal law ; and are reasonably calculated to yield meaningful educational benefit and student progress . are provided in compliance with these services federal law
-At no cost to the parents , these services are provided in compliance with state and federal law ; and are reasonably calculated to yield meaningful educational benefit and student progress . are provided At no cost to these services the parents
-At no cost to the parents , these services are provided in compliance with state and federal law ; and are reasonably calculated to yield meaningful educational benefit and student progress . are reasonably calculated to yield these services meaningful educational benefit
-At no cost to the parents , these services are provided in compliance with state and federal law ; and are reasonably calculated to yield meaningful educational benefit and student progress . are reasonably calculated to yield these services meaningful student progress
-At one point , Ballard is nearly possessed , but resists when she is given a drug and discovers that the spirits are attacking them as they believe that the humans are invaders and plan to exterminate the humans on Mars . is nearly possessed Ballard At one point
-At one point , Ballard is nearly possessed , but resists when she is given a drug and discovers that the spirits are attacking them as they believe that the humans are invaders and plan to exterminate the humans on Mars . resists Ballard when she is given a drug
-At one point , Ballard is nearly possessed , but resists when she is given a drug and discovers that the spirits are attacking them as they believe that the humans are invaders and plan to exterminate the humans on Mars . is given Ballard a drug
-At one point , Ballard is nearly possessed , but resists when she is given a drug and discovers that the spirits are attacking them as they believe that the humans are invaders and plan to exterminate the humans on Mars . discovers that the spirits are attacking them as they believe that Ballard the humans are invaders
-At one point , Ballard is nearly possessed , but resists when she is given a drug and discovers that the spirits are attacking them as they believe that the humans are invaders and plan to exterminate the humans on Mars . discovers that the spirits are attacking them as they believe that Ballard the humans plan to exterminate the humans on Mars
-At one point , Ballard is nearly possessed , but resists when she is given a drug and discovers that the spirits are attacking them as they believe that the humans are invaders and plan to exterminate the humans on Mars . are on humans Mars
-At one point , Ballard is nearly possessed , but resists when she is given a drug and discovers that the spirits are attacking them as they believe that the humans are invaders and plan to exterminate the humans on Mars . are attacking the spirits them
-At one point , Ballard is nearly possessed , but resists when she is given a drug and discovers that the spirits are attacking them as they believe that the humans are invaders and plan to exterminate the humans on Mars . believe that the spirits the humans are invaders
-At one point , Ballard is nearly possessed , but resists when she is given a drug and discovers that the spirits are attacking them as they believe that the humans are invaders and plan to exterminate the humans on Mars . believe that the spirits the humans plan to exterminate the humans on Mars
-Barbara , however , unable to leave behind her vigilante life , fought a mugger and ultimately miscarried her child . is unable to leave behind Barbara her vigilante life
-Barbara , however , unable to leave behind her vigilante life , fought a mugger and ultimately miscarried her child . fought Barbara a mugger
-Barbara , however , unable to leave behind her vigilante life , fought a mugger and ultimately miscarried her child . miscarried Barbara her child ultimately
-Barbara , however , unable to leave behind her vigilante life , fought a mugger and ultimately miscarried her child . had Barbara a child
-Barbara , however , unable to leave behind her vigilante life , fought a mugger and ultimately miscarried her child . had Barbara a vigilante life
-Because Yesler Way marks the boundary between two different plats , the street grid north of Yesler does not line up with the neighborhood 's other streets , so the northern `` border '' of the district zigzags along numerous streets . marks the boundary between Yesler Way two different plats
-Because Yesler Way marks the boundary between two different plats , the street grid north of Yesler does not line up with the neighborhood 's other streets , so the northern `` border '' of the district zigzags along numerous streets . is the boundary between two different plats
-Because Yesler Way marks the boundary between two different plats , the street grid north of Yesler does not line up with the neighborhood 's other streets , so the northern `` border '' of the district zigzags along numerous streets . does not line up with the street grid north of Yesler the neighborhood 's other streets
-Because Yesler Way marks the boundary between two different plats , the street grid north of Yesler does not line up with the neighborhood 's other streets , so the northern `` border '' of the district zigzags along numerous streets . is the street grid north of Yesler
-Because Yesler Way marks the boundary between two different plats , the street grid north of Yesler does not line up with the neighborhood 's other streets , so the northern `` border '' of the district zigzags along numerous streets . are in the other streets the neighborhood
-Because Yesler Way marks the boundary between two different plats , the street grid north of Yesler does not line up with the neighborhood 's other streets , so the northern `` border '' of the district zigzags along numerous streets . zigzags along the northern `` border '' of the district numerous streets
-Because Yesler Way marks the boundary between two different plats , the street grid north of Yesler does not line up with the neighborhood 's other streets , so the northern `` border '' of the district zigzags along numerous streets . is in the `` border '' of the district the north
-Because of Muhammad 's role in its formation , the alliance plays a significant role in Islamic ethics . plays a significant role in the alliance Islamic ethics
-Because of Muhammad 's role in its formation , the alliance plays a significant role in Islamic ethics . had a role in the formation of Muhammad the alliance
-Because of Muhammad 's role in its formation , the alliance plays a significant role in Islamic ethics . plays a significant role in Islamic ethics Because of the alliance Muhammad 's role in its formation
-Because of his talents and training , Beast can outperform any Olympic-level athlete , contorting his body and performing aerial feats gracefully . can outperform Beast any Olympic-level athlete
-Because of his talents and training , Beast can outperform any Olympic-level athlete , contorting his body and performing aerial feats gracefully . has Beast talents
-Because of his talents and training , Beast can outperform any Olympic-level athlete , contorting his body and performing aerial feats gracefully . has Beast training
-Because of his talents and training , Beast can outperform any Olympic-level athlete , contorting his body and performing aerial feats gracefully . is contorting gracefully Beast his body
-Because of his talents and training , Beast can outperform any Olympic-level athlete , contorting his body and performing aerial feats gracefully . is performing gracefully Beast aerial feats
-Bruce 's Justice Lord counterpart was happily married to Wonder Woman as well until her Justice Lord counterpart killed him . was happily married to Bruce 's Justice Lord counterpart Wonder Woman
-Bruce 's Justice Lord counterpart was happily married to Wonder Woman as well until her Justice Lord counterpart killed him . had a Bruce Justice Lord counterpart
-Bruce 's Justice Lord counterpart was happily married to Wonder Woman as well until her Justice Lord counterpart killed him . was happily married until Bruce 's Justice Lord counterpart Wonder Woman's Justice Lord counterpart killed him
-Bruce 's Justice Lord counterpart was happily married to Wonder Woman as well until her Justice Lord counterpart killed him . had a Wonder Woman Justice Lord counterpart
-Bruce 's Justice Lord counterpart was happily married to Wonder Woman as well until her Justice Lord counterpart killed him . killed Wonder Woman's Justice Lord counterpart Bruce 's Justice Lord counterpart
-Burnham died of heart failure at the age of 86 , on September 1 , 1947 at his home in Santa , Barbara , California . died of Burnham heart failure at his home in Santa Barbara , California on September 1 , 1947
-Burnham died of heart failure at the age of 86 , on September 1 , 1947 at his home in Santa , Barbara , California . died at the age of Burnham 86 at his home in Santa Barbara , California on September 1 , 1947
-Burnham died of heart failure at the age of 86 , on September 1 , 1947 at his home in Santa , Barbara , California . had his home in Burnham Santa Barbara , California
-Burnham died of heart failure at the age of 86 , on September 1 , 1947 at his home in Santa , Barbara , California . is in Santa Barbara California
-But this practice simply reduces government interest costs rather than truly canceling government debt , and can result in hyperinflation if used unsparingly . simply reduces government interest costs rather than this practice truly canceling government debt and can result in hyperinflation if used unsparingly
-But this practice simply reduces government interest costs rather than truly canceling government debt , and can result in hyperinflation if used unsparingly . truly canceling government debt , and can result in this practice government interest costs rather than hyperinflation if used unsparingly
-But this practice simply reduces government interest costs rather than truly canceling government debt , and can result in hyperinflation if used unsparingly . can result in this practice hyperinflation
-By then , she was raising not only her own children but also her nephews , who had been orphaned by the plague . she was raising not only her own children but also her nephews who had been By then , orphaned by the plague
-By then , she was raising not only her own children but also her nephews , who had been orphaned by the plague . had been orphaned by her nephews the plague
-By then , she was raising not only her own children but also her nephews , who had been orphaned by the plague . she was raising not only her own children but also By then her nephews
-By this point , Simpson had returned to his mansion in Brentwood and had surrendered to police . had returned to Simpson his mansion and had surrendered to police in Brentwood By this point
-By this point , Simpson had returned to his mansion in Brentwood and had surrendered to police . had returned to Simpson his mansion in Brentwood By this point
-By this point , Simpson had returned to his mansion in Brentwood and had surrendered to police . had surrendered to Simpson the police By this point
-Byers states that global citizenship is a `` powerful term '' because `` people that invoke it do so to provoke and justify action , '' and encourages the attendees of his lecture to re-appropriate it in order for its meaning to have a positive purpose , based on idealistic values . Byers states that global citizenship is a powerful term because people that invoke it do so to provoke and justify action and encourages
-Byers states that global citizenship is a `` powerful term '' because `` people that invoke it do so to provoke and justify action , '' and encourages the attendees of his lecture to re-appropriate it in order for its meaning to have a positive purpose , based on idealistic values . encourages Byers the attendees of his lecture to re-appropriate it in order for its meaning to have a positive purpose based on idealistic values
-Carl uses the `` old magic '' to tame the Deep Crow , claiming it is not his `` first time to the rodeo . '' old magic to tame Carl uses the the Deep Crow claiming it is not his first time to the rodeo
-Certain fractional quantum Hall phases appear to have the right properties for building a topological quantum computer . appear to have Certain fractional quantum Hall phases the right properties for building a topological quantum computer
-Chevalier fulfilled his promise the following year by erecting a shrine dedicated to the honour of Mary under the title of `` Our Lady of the Sacred Heart '' . fulfilled Chevalier his promise the following year
-Chevalier fulfilled his promise the following year by erecting a shrine dedicated to the honour of Mary under the title of `` Our Lady of the Sacred Heart '' . erected Chevalier a shrine the following year
-Chevalier fulfilled his promise the following year by erecting a shrine dedicated to the honour of Mary under the title of `` Our Lady of the Sacred Heart '' . was dedicated to the honour of a shrine Mary
-Chevalier fulfilled his promise the following year by erecting a shrine dedicated to the honour of Mary under the title of `` Our Lady of the Sacred Heart '' . was dedicated under the title of a shrine `` Our Lady of the Sacred Heart ''
-Chevalier fulfilled his promise the following year by erecting a shrine dedicated to the honour of Mary under the title of `` Our Lady of the Sacred Heart '' . is Mary `` Our Lady of the Sacred Heart ''
-Cis-regulatory elements are sequences that control the transcription of a nearby gene . are Cis-regulatory elements sequences that control the transcription of a nearby gene
-Cis-regulatory elements are sequences that control the transcription of a nearby gene . control sequences the transcription of a nearby gene
-Citizens for Responsibility and Ethics in Washington filed an Ethics Committee complaint against Bond over his role in the ouster of Graves . filed Citizens for Responsibility and Ethics in Washington an Ethics Committee complaint
-Citizens for Responsibility and Ethics in Washington filed an Ethics Committee complaint against Bond over his role in the ouster of Graves . was filed against an Ethics Committee complaint Bond
-Citizens for Responsibility and Ethics in Washington filed an Ethics Committee complaint against Bond over his role in the ouster of Graves . was filed over an Ethics Committee complaint Bond's role in the ouster of Graves
-Citizens for Responsibility and Ethics in Washington filed an Ethics Committee complaint against Bond over his role in the ouster of Graves . was oustered Graves
-Combined with appropriate match pellets these rifles produce a consistent 10 ring performance , so a non-maximal result during the initial phase can be attributed to the participant . produce these rifles a consistent 10 ring performance
-Combined with appropriate match pellets these rifles produce a consistent 10 ring performance , so a non-maximal result during the initial phase can be attributed to the participant . are Combined with these rifles appropriate match pellets
-Combined with appropriate match pellets these rifles produce a consistent 10 ring performance , so a non-maximal result during the initial phase can be attributed to the participant . can be attributed to a non-maximal result the participant during the initial phase
-Curley was the first classical organist to perform a solo organ recital at the White House , and also played before several European heads of state . was the first classical organist to perform Curley a solo organ recital at the White House
-Curley was the first classical organist to perform a solo organ recital at the White House , and also played before several European heads of state . also played before Curley several European heads of state
-Curley was the first classical organist to perform a solo organ recital at the White House , and also played before several European heads of state . was Curley a classical organist
-Curley was the first classical organist to perform a solo organ recital at the White House , and also played before several European heads of state . performed an organ recital Curley solo at the White House
-Curley was the first classical organist to perform a solo organ recital at the White House , and also played before several European heads of state . were several heads of state European
-DC Comics held a memorial service in Manhattan 's Lower East Side , a neighborhood Eisner often visited in his work , at the Angel Orensanz Foundation on Norfolk Street . held DC Comics a memorial service in Manhattan 's Lower East Side
-DC Comics held a memorial service in Manhattan 's Lower East Side , a neighborhood Eisner often visited in his work , at the Angel Orensanz Foundation on Norfolk Street . has Manhattan a Lower East Side
-DC Comics held a memorial service in Manhattan 's Lower East Side , a neighborhood Eisner often visited in his work , at the Angel Orensanz Foundation on Norfolk Street . is Manhattan 's Lower East Side a neighborhood Eisner often visited in his work
-DC Comics held a memorial service in Manhattan 's Lower East Side , a neighborhood Eisner often visited in his work , at the Angel Orensanz Foundation on Norfolk Street . often visited Eisner in his work Manhattan 's Lower East Side
-DC Comics held a memorial service in Manhattan 's Lower East Side , a neighborhood Eisner often visited in his work , at the Angel Orensanz Foundation on Norfolk Street . worked at Eisner the Angel Orensanz Foundation on Norfolk Street
-DC Comics held a memorial service in Manhattan 's Lower East Side , a neighborhood Eisner often visited in his work , at the Angel Orensanz Foundation on Norfolk Street . is on the Angel Orensanz Foundation Norfolk Street
-DC Comics held a memorial service in Manhattan 's Lower East Side , a neighborhood Eisner often visited in his work , at the Angel Orensanz Foundation on Norfolk Street . was the service a memorial
-Despite the below-freezing temperatures , Beuerlein was red-hot , out-dueling Brett Favre and connecting on 29 of 42 attempts , with 3 TDs and no INTs , and passing for a then franchise-record 373 yards . was red-hot Despite Beuerlein the below-freezing temperatures
-Despite the below-freezing temperatures , Beuerlein was red-hot , out-dueling Brett Favre and connecting on 29 of 42 attempts , with 3 TDs and no INTs , and passing for a then franchise-record 373 yards . was out-dueling Beuerlein Brett Favre
-Despite the below-freezing temperatures , Beuerlein was red-hot , out-dueling Brett Favre and connecting on 29 of 42 attempts , with 3 TDs and no INTs , and passing for a then franchise-record 373 yards . was connecting on Beuerlein 29 of 42 attempts
-Despite the below-freezing temperatures , Beuerlein was red-hot , out-dueling Brett Favre and connecting on 29 of 42 attempts , with 3 TDs and no INTs , and passing for a then franchise-record 373 yards . was connecting with Beuerlein 3 TDs
-Despite the below-freezing temperatures , Beuerlein was red-hot , out-dueling Brett Favre and connecting on 29 of 42 attempts , with 3 TDs and no INTs , and passing for a then franchise-record 373 yards . was connecting with Beuerlein no INTs
-Despite the below-freezing temperatures , Beuerlein was red-hot , out-dueling Brett Favre and connecting on 29 of 42 attempts , with 3 TDs and no INTs , and passing for a then franchise-record 373 yards . was passing for Beuerlein a then franchise-record 373 yards
-Despite the below-freezing temperatures , Beuerlein was red-hot , out-dueling Brett Favre and connecting on 29 of 42 attempts , with 3 TDs and no INTs , and passing for a then franchise-record 373 yards . was 373 yards franchise-record then
-Despite the below-freezing temperatures , Beuerlein was red-hot , out-dueling Brett Favre and connecting on 29 of 42 attempts , with 3 TDs and no INTs , and passing for a then franchise-record 373 yards . were temperatures below-freezing
-Dodo was originally intended to have a `` common '' accent , and is portrayed this way at the end of `` The Massacre '' . was intended to have Dodo a `` common '' accent originally
-Dodo was originally intended to have a `` common '' accent , and is portrayed this way at the end of `` The Massacre '' . is portrayed this way at Dodo the end of `` The Massacre ''
-Dodo was originally intended to have a `` common '' accent , and is portrayed this way at the end of `` The Massacre '' . has Dodo a `` common '' accent in `` The Massacre '' at the end
-Dr. Pim played for Ireland against England in 1892 , 1893 , 1894 and 1896 . played for Dr. Pim Ireland in 1892
-Dr. Pim played for Ireland against England in 1892 , 1893 , 1894 and 1896 . played for Dr. Pim Ireland in 1893
-Dr. Pim played for Ireland against England in 1892 , 1893 , 1894 and 1896 . played for Dr. Pim Ireland in 1894
-Dr. Pim played for Ireland against England in 1892 , 1893 , 1894 and 1896 . played for Dr. Pim Ireland in 1896
-Dr. Pim played for Ireland against England in 1892 , 1893 , 1894 and 1896 . played against Dr. Pim England in 1892
-Dr. Pim played for Ireland against England in 1892 , 1893 , 1894 and 1896 . played against Dr. Pim England in 1893
-Dr. Pim played for Ireland against England in 1892 , 1893 , 1894 and 1896 . played against Dr. Pim England in 1894
-Dr. Pim played for Ireland against England in 1892 , 1893 , 1894 and 1896 . played against Dr. Pim England in 1896
-Due to the opposing nature of the two songs , they can be viewed as a debate on the opposing attitudes on love found throughout the play . can be viewed as the two songs a debate on the opposing attitudes on love found throughout the play
-Due to the opposing nature of the two songs , they can be viewed as a debate on the opposing attitudes on love found throughout the play . have the two songs opposing nature
-Due to the opposing nature of the two songs , they can be viewed as a debate on the opposing attitudes on love found throughout the play . are found throughout opposing attitudes on love the play
-Due to the opposing nature of the two songs , they can be viewed as a debate on the opposing attitudes on love found throughout the play . are found opposing attitudes on love throughout the play
-Due to the opposing nature of the two songs , they can be viewed as a debate on the opposing attitudes on love found throughout the play . is opposing the nature of the two songs
-Due to the opposing nature of the two songs , they can be viewed as a debate on the opposing attitudes on love found throughout the play . are opposing attitudes on love found throughout the play
-Due to the opposing nature of the two songs , they can be viewed as a debate on the opposing attitudes on love found throughout the play . is on a debate the opposing attitudes on love
-Due to the transmitter location being based in Tyrone and a smaller signal wattage , it was barely hearable in the northern portions of Atlanta beyond the downtown area or even the northern reaches of Fulton or DeKalb Counties , as it was a rimshot to the southwest of the city . was barely hearable it in the northern portions of Atlanta
-Due to the transmitter location being based in Tyrone and a smaller signal wattage , it was barely hearable in the northern portions of Atlanta beyond the downtown area or even the northern reaches of Fulton or DeKalb Counties , as it was a rimshot to the southwest of the city . was barely hearable it in the northern reaches of Fulton County
-Due to the transmitter location being based in Tyrone and a smaller signal wattage , it was barely hearable in the northern portions of Atlanta beyond the downtown area or even the northern reaches of Fulton or DeKalb Counties , as it was a rimshot to the southwest of the city . was barely hearable it in the northern reaches of DeKalb County
-Due to the transmitter location being based in Tyrone and a smaller signal wattage , it was barely hearable in the northern portions of Atlanta beyond the downtown area or even the northern reaches of Fulton or DeKalb Counties , as it was a rimshot to the southwest of the city . was it a rimshot to the southwest of the city
-Due to the transmitter location being based in Tyrone and a smaller signal wattage , it was barely hearable in the northern portions of Atlanta beyond the downtown area or even the northern reaches of Fulton or DeKalb Counties , as it was a rimshot to the southwest of the city . was being based the transmitter location in Tyrone
-Due to the transmitter location being based in Tyrone and a smaller signal wattage , it was barely hearable in the northern portions of Atlanta beyond the downtown area or even the northern reaches of Fulton or DeKalb Counties , as it was a rimshot to the southwest of the city . had it a smaller signal wattage
-During the Second World War , the number of Turkish run cafes increased from 20 in 1939 to 200 in 1945 which created a demand for more Turkish Cypriot workers . increased from the number of Turkish run cafes 20 in 1939
-During the Second World War , the number of Turkish run cafes increased from 20 in 1939 to 200 in 1945 which created a demand for more Turkish Cypriot workers . increased to the number of Turkish run cafes 200 in 1945
-During the Second World War , the number of Turkish run cafes increased from 20 in 1939 to 200 in 1945 which created a demand for more Turkish Cypriot workers . created increased number of Turkish run cafes a demand for more Turkish Cypriot workers During the Second World War
-During the morning and evening rush hours some services run direct to/from Paddington and Reading . run direct to/from some services Paddington During the morning rush hours
-During the morning and evening rush hours some services run direct to/from Paddington and Reading . run direct to/from some services Reading During the morning rush hours
-During the morning and evening rush hours some services run direct to/from Paddington and Reading . run direct to/from some services Paddington During the evening rush hours
-During the morning and evening rush hours some services run direct to/from Paddington and Reading . run direct to/from some services Reading During the evening rush hours
-During the morning and evening rush hours some services run direct to/from Paddington and Reading . are rush hours During the morning
-During the morning and evening rush hours some services run direct to/from Paddington and Reading . are rush hours During the evening
-During the off-season the ACT Rugby Union was renamed the ACT and Southern NSW Rugby Union , and the name of the team was changed to Brumbies Rugby . was renamed the ACT Rugby Union the ACT and Southern NSW Rugby Union During the off-season
-During the off-season the ACT Rugby Union was renamed the ACT and Southern NSW Rugby Union , and the name of the team was changed to Brumbies Rugby . was changed to the name of the team Brumbies Rugby During the off-season
-Each of the Matoran brought their Toa stone and met each other at the Great Temple . brought Each of the Matoran their Toa stone
-Each of the Matoran brought their Toa stone and met each other at the Great Temple . met Each of the Matoran each other at the Great Temple
-Each time Cluemaster escapes or starts some new plan , Stephanie dons her costume again . escapes Each time Cluemaster Stephanie dons her costume again
-Each time Cluemaster escapes or starts some new plan , Stephanie dons her costume again . starts some new plan Each time Cluemaster Stephanie dons her costume again
-Erotica and pornography involving sex between women have been predominantly produced by men for a male and female audience . has been predominantly produced by Erotica involving sex between women men
-Erotica and pornography involving sex between women have been predominantly produced by men for a male and female audience . has been predominantly produced by pornography involving sex between women men
-Erotica and pornography involving sex between women have been predominantly produced by men for a male and female audience . has been predominantly produced for Erotica involving sex between women a male and female audience
-Erotica and pornography involving sex between women have been predominantly produced by men for a male and female audience . has been predominantly produced for pornography involving sex between women a male and female audience
-Failure to perform the duty could lead to prosecution at law and re-enslavement . could lead to Failure to perform the duty prosecution at law
-Failure to perform the duty could lead to prosecution at law and re-enslavement . could lead to Failure to perform the duty re-enslavement
-Falun Gong 's teachings are compiled from Li 's lectures , and Li holds definitional power in that belief system . are compiled from Falun Gong 's teachings Li 's lectures
-Falun Gong 's teachings are compiled from Li 's lectures , and Li holds definitional power in that belief system . holds definitional power in Li that belief system
-Falun Gong 's teachings are compiled from Li 's lectures , and Li holds definitional power in that belief system . is Falun Gong that belief system
-Falun Gong 's teachings are compiled from Li 's lectures , and Li holds definitional power in that belief system . has Falun Gong teachings
-Falun Gong 's teachings are compiled from Li 's lectures , and Li holds definitional power in that belief system . has Li lectures
-Falun Gong 's teachings are compiled from Li 's lectures , and Li holds definitional power in that belief system . is definitional Li 's power
-Fans reacted to the news of the suspension by canceling their XM Radio subscriptions , with some fans even going as far as smashing their XM units . reacted Fans to the news of the suspension
-Fans reacted to the news of the suspension by canceling their XM Radio subscriptions , with some fans even going as far as smashing their XM units . smashing some fans their XM units
-Fans reacted to the news of the suspension by canceling their XM Radio subscriptions , with some fans even going as far as smashing their XM units . cancellled Fans their XM Radio subscriptions
-From 1909 to 1912 , the Miami Canal was dug , bypassing the rapids at the head of the North Fork . was dug the Miami Canal bypassing the rapids head of the North Fork From 1909 to 1912
-From 1909 to 1912 , the Miami Canal was dug , bypassing the rapids at the head of the North Fork . was dug , bypassing the Miami Canal the rapids at the head of the North Fork From 1909 to 1912
-From the start of the first semester of 2010 , the University banned smoking on any of its property , including inside and outside buildings in areas that were once designated as smoking areas . banned the University smoking on any of its property , including inside and outside buildings in areas that were once designated as smoking areas From the start of the first semester of 2010
-From the start of the first semester of 2010 , the University banned smoking on any of its property , including inside and outside buildings in areas that were once designated as smoking areas . banned smoking the University on any of its property , including inside and outside buildings in areas that were once designated as smoking areas From the start of the first semester of 2010
-Furthermore , knowledge and interest pertaining to the event , as well as the level of importance , contribute to the frequency of rehearsal . pertaining to knowledge and interest the event
-Furthermore , knowledge and interest pertaining to the event , as well as the level of importance , contribute to the frequency of rehearsal . pertaining to level of importance the event
-Furthermore , knowledge and interest pertaining to the event , as well as the level of importance , contribute to the frequency of rehearsal . contribute to knowledge and interest pertaining to the event the frequency of rehearsal
-Furthermore , knowledge and interest pertaining to the event , as well as the level of importance , contribute to the frequency of rehearsal . contribute to level of importance pertaining to the event the frequency of rehearsal
-Gameplay is very basic ; the player must shoot constantly at a continual stream of enemies in order to reach the end of each level . is very Gameplay basic
-Gameplay is very basic ; the player must shoot constantly at a continual stream of enemies in order to reach the end of each level . must shoot constantly the player at a continual stream of enemies
-Gameplay is very basic ; the player must shoot constantly at a continual stream of enemies in order to reach the end of each level . must shoot constantly at a continual stream of enemies the player in order to reach the end of each level
-Gavin Hood is a South African filmmaker , screenwriter , producer and actor , best known for writing and directing the Academy Award-winning Foreign Language Film `` Tsotsi '' . is Gavin Hood a South African filmmaker
-Gavin Hood is a South African filmmaker , screenwriter , producer and actor , best known for writing and directing the Academy Award-winning Foreign Language Film `` Tsotsi '' . is Gavin Hood a South African screenwriter
-Gavin Hood is a South African filmmaker , screenwriter , producer and actor , best known for writing and directing the Academy Award-winning Foreign Language Film `` Tsotsi '' . is Gavin Hood a South African producer
-Gavin Hood is a South African filmmaker , screenwriter , producer and actor , best known for writing and directing the Academy Award-winning Foreign Language Film `` Tsotsi '' . is Gavin Hood a South African actor
-Gavin Hood is a South African filmmaker , screenwriter , producer and actor , best known for writing and directing the Academy Award-winning Foreign Language Film `` Tsotsi '' . is best known for writing Gavin Hood the Academy Award-winning Foreign Language Film `` Tsotsi ''
-Gavin Hood is a South African filmmaker , screenwriter , producer and actor , best known for writing and directing the Academy Award-winning Foreign Language Film `` Tsotsi '' . is best known for directing Gavin Hood the Academy Award-winning Foreign Language Film `` Tsotsi ''
-Gavin Hood is a South African filmmaker , screenwriter , producer and actor , best known for writing and directing the Academy Award-winning Foreign Language Film `` Tsotsi '' . is `` Tsotsi '' a Foreign Language Film
-Gavin Hood is a South African filmmaker , screenwriter , producer and actor , best known for writing and directing the Academy Award-winning Foreign Language Film `` Tsotsi '' . is `` Tsotsi '' Academy Award-winning
-Gavin Hood is a South African filmmaker , screenwriter , producer and actor , best known for writing and directing the Academy Award-winning Foreign Language Film `` Tsotsi '' . is of Gavin Hood South Africa
-George Bluth Sr. , patriarch of the Bluth family , is the founder and former CEO of the Bluth Company which markets and builds mini-mansions among many other activities . is patriarch of George Bluth Sr. the Bluth family
-George Bluth Sr. , patriarch of the Bluth family , is the founder and former CEO of the Bluth Company which markets and builds mini-mansions among many other activities . is the founder of George Bluth Sr. the Bluth Company
-George Bluth Sr. , patriarch of the Bluth family , is the founder and former CEO of the Bluth Company which markets and builds mini-mansions among many other activities . is the former CEO of George Bluth Sr. the Bluth Company
-George Bluth Sr. , patriarch of the Bluth family , is the founder and former CEO of the Bluth Company which markets and builds mini-mansions among many other activities . was CEO of George Bluth Sr. the Bluth Company formerly
-George Bluth Sr. , patriarch of the Bluth family , is the founder and former CEO of the Bluth Company which markets and builds mini-mansions among many other activities . markets the Bluth Company mini-mansions
-George Bluth Sr. , patriarch of the Bluth family , is the founder and former CEO of the Bluth Company which markets and builds mini-mansions among many other activities . builds the Bluth Company mini-mansions
-George Bluth Sr. , patriarch of the Bluth family , is the founder and former CEO of the Bluth Company which markets and builds mini-mansions among many other activities . has the Bluth Company many other activities
-Godzilla and Battra battled on the ocean floor , until they caused a rift to open between tectonic plates . battled Godzilla Battra on the ocean floor
-Godzilla and Battra battled on the ocean floor , until they caused a rift to open between tectonic plates . battled Battra Godzilla on the ocean floor
-Godzilla and Battra battled on the ocean floor , until they caused a rift to open between tectonic plates . caused to open Godzilla and Battra a rift between tectonic plates
-Godzilla and Battra battled on the ocean floor , until they caused a rift to open between tectonic plates . battled Godzilla and Battra on the ocean floor until they caused a rift to open
-Good 1H NMR spectra can be acquired with 16 repeats , which takes only minutes . can be acquired with Good 1H NMR spectra 16 repeats
-Good 1H NMR spectra can be acquired with 16 repeats , which takes only minutes . takes 16 repeats only minutes
-HTB 's aim is for an Alpha course to be accessible to anyone who would like to attend the course , and in this way HTB seeks to spread the teachings of Christianity . seeks to spread HTB the teachings of Christianity
-HTB 's aim is for an Alpha course to be accessible to anyone who would like to attend the course , and in this way HTB seeks to spread the teachings of Christianity . is for an Alpha course to be accessible to HTB 's aim anyone who would like to attend the course
-HTB 's aim is for an Alpha course to be accessible to anyone who would like to attend the course , and in this way HTB seeks to spread the teachings of Christianity . has HTB an aim
-Hapoel Lod played in the top division during the 1960s and 1980s , and won the State Cup in 1984 . played in Hapoel Lod the top division during the 1960s
-Hapoel Lod played in the top division during the 1960s and 1980s , and won the State Cup in 1984 . played in Hapoel Lod the top division during the 1980s
-Hapoel Lod played in the top division during the 1960s and 1980s , and won the State Cup in 1984 . won Hapoel Lod the State Cup in 1984
-Having been directed to found a monastery of his order in the United States in 1873 , Fr . was directed to found in the United States Fr a monastery of his order in 1873
-Having been directed to found a monastery of his order in the United States in 1873 , Fr . will be found a monastery in the United States
-Having been directed to found a monastery of his order in the United States in 1873 , Fr . has Fr an order
-Hawker Pacific Aerospace is a MRO-Service company which offers landing gear and hydraulic MRO services for all major aircraft types . is Hawker Pacific Aerospace a MRO-Service company
-Hawker Pacific Aerospace is a MRO-Service company which offers landing gear and hydraulic MRO services for all major aircraft types . offers Hawker Pacific Aerospace landing gear for all major aircraft types
-Hawker Pacific Aerospace is a MRO-Service company which offers landing gear and hydraulic MRO services for all major aircraft types . offers Hawker Pacific Aerospace hydraulic MRO services for all major aircraft types
-He also possesses enhanced senses and can track people for great distances over open terrain and his feet are sensitive enough to detect electronic signals through solid walls and floors . also possesses He enhanced senses
-He also possesses enhanced senses and can track people for great distances over open terrain and his feet are sensitive enough to detect electronic signals through solid walls and floors . can track for great distances He people over open terrain
-He also possesses enhanced senses and can track people for great distances over open terrain and his feet are sensitive enough to detect electronic signals through solid walls and floors . are sensitive enough to detect his feet electronic signals through solid walls
-He also possesses enhanced senses and can track people for great distances over open terrain and his feet are sensitive enough to detect electronic signals through solid walls and floors . are sensitive enough to detect his feet electronic signals through floors
-He also possesses enhanced senses and can track people for great distances over open terrain and his feet are sensitive enough to detect electronic signals through solid walls and floors . has He feet sensitive enough to detect electronic signals through solid walls
-He also possesses enhanced senses and can track people for great distances over open terrain and his feet are sensitive enough to detect electronic signals through solid walls and floors . has He feet sensitive enough to detect electronic signals through floors
-He also took 124 wickets , with 7 for 39 and 6 for 44 against Sargodha in 1962-63 his best bowling figures . also took He 124 wickets
-He also took 124 wickets , with 7 for 39 and 6 for 44 against Sargodha in 1962-63 his best bowling figures . took 7 for 39 wickets against He Sargodha in 1962-63
-He also took 124 wickets , with 7 for 39 and 6 for 44 against Sargodha in 1962-63 his best bowling figures . took 6 for 44 wickets against He Sargodha in 1962-63
-He also took 124 wickets , with 7 for 39 and 6 for 44 against Sargodha in 1962-63 his best bowling figures . was 7 for 39 wickets against Sargodha in 1962-63 one of his best bowling figures
-He also took 124 wickets , with 7 for 39 and 6 for 44 against Sargodha in 1962-63 his best bowling figures . was 6 for 44 wickets against Sargodha in 1962-63 one of his best bowling figures
-He appeared in that game alongside his Arsenal midfield colleague Brian Marwood , who had joined them from Sheffield Wednesday eight months earlier . appeared in He that game
-He appeared in that game alongside his Arsenal midfield colleague Brian Marwood , who had joined them from Sheffield Wednesday eight months earlier . appeared alongside He his Arsenal midfield colleague Brian Marwood
-He appeared in that game alongside his Arsenal midfield colleague Brian Marwood , who had joined them from Sheffield Wednesday eight months earlier . had joined his Arsenal midfield colleague Brian Marwood them from Sheffield Wednesday eight months earlier
-He appeared in that game alongside his Arsenal midfield colleague Brian Marwood , who had joined them from Sheffield Wednesday eight months earlier . is his Arsenal midfield colleague Brian Marwood
-He appeared in that game alongside his Arsenal midfield colleague Brian Marwood , who had joined them from Sheffield Wednesday eight months earlier . is in Brian Marwood Arsenal midfield
-He appeared in that game alongside his Arsenal midfield colleague Brian Marwood , who had joined them from Sheffield Wednesday eight months earlier . is in He Arsenal midfield
-He defines Wild Cards as ` Low Probability , High Impact events that , were they to occur , would severely impact the human condition ' . defines Wild Cards as He ` Low Probability , High Impact events that , were they to occur , would severely impact the human condition
-He defines Wild Cards as ` Low Probability , High Impact events that , were they to occur , would severely impact the human condition ' . are Wild Cards Low Probability events
-He defines Wild Cards as ` Low Probability , High Impact events that , were they to occur , would severely impact the human condition ' . are Wild Cards High Impact events
-He defines Wild Cards as ` Low Probability , High Impact events that , were they to occur , would severely impact the human condition ' . would severely impact Wild Cards the human condition
-He finds himself in a desert as a group of Neo Arcadians surround him , ending the game . finds He himself in a desert
-He finds himself in a desert as a group of Neo Arcadians surround him , ending the game . surround a group of Neo Arcadians him in a desert
-He finds himself in a desert as a group of Neo Arcadians surround him , ending the game . is ending a group of Neo Arcadians surrounding him the game
-He finds himself in a desert as a group of Neo Arcadians surround him , ending the game . is ending the game
-He had spent 11 years in jail despite having been acquitted twice . had spent He in jail 11 years
-He had spent 11 years in jail despite having been acquitted twice . had been acquitted twice He
-He had spent 11 years in jail despite having been acquitted twice . despite He had spent 11 years in jail having been acquitted twice
-He is idolized , receiving the name of `` God '' . is He idolized
-He is idolized , receiving the name of `` God '' . is receiving He the name of `` God ''
-He left his old company , V2 records , wanting to expand his career into something bigger . left his He old company to expand his career into something bigger at V2 records
-He left his old company , V2 records , wanting to expand his career into something bigger . wanted to He expand his career into something bigger
-He left only a small contingent to guard the defile , and took his entire army to destroy the plain that lay ahead of Alexander 's army . left only He a small contingent to guard defile
-He left only a small contingent to guard the defile , and took his entire army to destroy the plain that lay ahead of Alexander 's army . took his He entire army
-He left only a small contingent to guard the defile , and took his entire army to destroy the plain that lay ahead of Alexander 's army . left only Alexander a small contingent in defile
-He left only a small contingent to guard the defile , and took his entire army to destroy the plain that lay ahead of Alexander 's army . destroyed Alexander the entire army that lay ahead
-He lodged near the hospital at 28 St Thomas 's Street in Southwark , with other medical students , including Henry Stephens who became a famous inventor and ink magnate . lodged He with other medical students near the hospital
-He lodged near the hospital at 28 St Thomas 's Street in Southwark , with other medical students , including Henry Stephens who became a famous inventor and ink magnate . lodged He with other medical students at 28 St Thomas 's Street
-He lodged near the hospital at 28 St Thomas 's Street in Southwark , with other medical students , including Henry Stephens who became a famous inventor and ink magnate . lodged He with Henry Stephens in Southwark
-He lodged near the hospital at 28 St Thomas 's Street in Southwark , with other medical students , including Henry Stephens who became a famous inventor and ink magnate . became a He famous inventor
-He lodged near the hospital at 28 St Thomas 's Street in Southwark , with other medical students , including Henry Stephens who became a famous inventor and ink magnate . became a He ink magnate
-He lodged near the hospital at 28 St Thomas 's Street in Southwark , with other medical students , including Henry Stephens who became a famous inventor and ink magnate . lodged with Henry Stephens other medical students in Southwark
-He lodged near the hospital at 28 St Thomas 's Street in Southwark , with other medical students , including Henry Stephens who became a famous inventor and ink magnate . became a Henry Stephens famous inventor
-He played Perker in the 1985 adaptation of `` The Pickwick Papers '' . played He Perker in the adaptation of "The Pickwick Papers" in 1985
-He played Perker in the 1985 adaptation of `` The Pickwick Papers '' . was Perker in in adaptation of `` The Pickwick Papers '' in 1985
-He represented the riding of Nickel Belt in the Sudbury , Ontario area . represented He Nickel Belt in Sudbury
-He represented the riding of Nickel Belt in the Sudbury , Ontario area . represented He Nickel Belt in Ontario
-He represented the riding of Nickel Belt in the Sudbury , Ontario area . was riding He with Nickel Belt in Sudbury
-He talked to McGee about using his name and received permission , which is confirmed by correspondence between McGee and his family . talked to He McGee
-He talked to McGee about using his name and received permission , which is confirmed by correspondence between McGee and his family . about He talked to McGee using his name
-He talked to McGee about using his name and received permission , which is confirmed by correspondence between McGee and his family . received permission to use his name He from McGee
-He talked to McGee about using his name and received permission , which is confirmed by correspondence between McGee and his family . had correspondence between McGee his family
-He was a member of the European Convention , which drafted the text of the European Constitution that never entered into force . was a member of He the European Convention
-He was a member of the European Convention , which drafted the text of the European Constitution that never entered into force . drafted the European Convention the text of the European Constitution that never entered into force
-He was buried in the Abbey of the Psalms mausoleum at the Hollywood Forever Cemetery . was He buried in the Abbey of the Psalms mausoleum at the Hollywood Forever Cemetery
-He was subsequently reprieved for a month , and then again for a week . was subsequently He reprieved for a month , and then again for a week
-Her image held aloft signifies the Earth , which `` hangs in the air '' . signifies Her image held aloft the Earth , which `` hangs in the air ''
-Her image held aloft signifies the Earth , which `` hangs in the air '' . held Her image aloft
-Her image held aloft signifies the Earth , which `` hangs in the air '' . hangs the Earth in the air
-Hilf al-Fudul was a 7th-century alliance created by various Meccans , including the Islamic prophet Muhammad , to establish fair commercial dealing . was a alliance created by various Meccans including Hilf al-Fudul the Islamic prophet Muhammad to establish fair commercial dealing 7th-century
-Hilf al-Fudul was a 7th-century alliance created by various Meccans , including the Islamic prophet Muhammad , to establish fair commercial dealing . to establish fair commercial dealing Hilf al-Fudul Islamic prophet Muhammad 7th-century
-Hilf al-Fudul was a 7th-century alliance created by various Meccans , including the Islamic prophet Muhammad , to establish fair commercial dealing . created by various Meccans Hilf al-Fudul the Islamic prophet Muhammad 7th-century
-Historically , Aiseau was a village dedicated to agriculture , logging , but also to the industry . was a village Aiseau dedicated to agriculture
-Historically , Aiseau was a village dedicated to agriculture , logging , but also to the industry . logging to the industry Aiseau Historically
-Hoechst 33342 and 33258 are quenched by Bromodeoxyuridine , which is commonly used to detect dividing cells . are quenched Hoechst 33342 and 33258
-Hoechst 33342 and 33258 are quenched by Bromodeoxyuridine , which is commonly used to detect dividing cells . used to detect dividing cells Hoechst Bromodeoxyuridine
-Hofmann was a below-average high school student , but he had many hobbies including magic , electronics , chemistry , and stamp and coin collecting . electronics chemistry stamp coin collecting Hofmann high school student
-However , after pressure campaigns from various human rights groups , BAE Systems recently stated it no longer produces land mines or cluster bombs . recently stated it no longer produces BAE Systems land mines
-However , after pressure campaigns from various human rights groups , BAE Systems recently stated it no longer produces land mines or cluster bombs . from various human rights groups BAE Systems
-However , after pressure campaigns from various human rights groups , BAE Systems recently stated it no longer produces land mines or cluster bombs . after pressure campaigns from various human rights groups BAE Systems
-However , comic relief sidekick `` Mike McGurk '' bears some resemblance to Tracy 's partner from the strip , Pat Patton ; Tracy 's secretary , Gwen Andrews , provides the same kind of feminine interest as Tess Trueheart ; and FBI Director Clive Anderson is the same kind of avuncular superior as Chief Brandon . bears some resemblance to comic relief sidekick `` Mike McGurk '' Tracy 's partner from the strip , Pat Patton
-However , comic relief sidekick `` Mike McGurk '' bears some resemblance to Tracy 's partner from the strip , Pat Patton ; Tracy 's secretary , Gwen Andrews , provides the same kind of feminine interest as Tess Trueheart ; and FBI Director Clive Anderson is the same kind of avuncular superior as Chief Brandon . is `` Mike McGurk '' the comic relief sidekick
-However , comic relief sidekick `` Mike McGurk '' bears some resemblance to Tracy 's partner from the strip , Pat Patton ; Tracy 's secretary , Gwen Andrews , provides the same kind of feminine interest as Tess Trueheart ; and FBI Director Clive Anderson is the same kind of avuncular superior as Chief Brandon . has Tracy partner from the strip
-However , comic relief sidekick `` Mike McGurk '' bears some resemblance to Tracy 's partner from the strip , Pat Patton ; Tracy 's secretary , Gwen Andrews , provides the same kind of feminine interest as Tess Trueheart ; and FBI Director Clive Anderson is the same kind of avuncular superior as Chief Brandon . is Pat Patton Tracy 's partner from the strip
-However , comic relief sidekick `` Mike McGurk '' bears some resemblance to Tracy 's partner from the strip , Pat Patton ; Tracy 's secretary , Gwen Andrews , provides the same kind of feminine interest as Tess Trueheart ; and FBI Director Clive Anderson is the same kind of avuncular superior as Chief Brandon . provides the same kind of feminine interest as Tracy 's secretary , Gwen Andrews Tess Trueheart
-However , comic relief sidekick `` Mike McGurk '' bears some resemblance to Tracy 's partner from the strip , Pat Patton ; Tracy 's secretary , Gwen Andrews , provides the same kind of feminine interest as Tess Trueheart ; and FBI Director Clive Anderson is the same kind of avuncular superior as Chief Brandon . has Tracy secretary
-However , comic relief sidekick `` Mike McGurk '' bears some resemblance to Tracy 's partner from the strip , Pat Patton ; Tracy 's secretary , Gwen Andrews , provides the same kind of feminine interest as Tess Trueheart ; and FBI Director Clive Anderson is the same kind of avuncular superior as Chief Brandon . is Gwen Andrews Tracy 's secretary
-However , comic relief sidekick `` Mike McGurk '' bears some resemblance to Tracy 's partner from the strip , Pat Patton ; Tracy 's secretary , Gwen Andrews , provides the same kind of feminine interest as Tess Trueheart ; and FBI Director Clive Anderson is the same kind of avuncular superior as Chief Brandon . provides Tess Trueheart feminine interest
-However , comic relief sidekick `` Mike McGurk '' bears some resemblance to Tracy 's partner from the strip , Pat Patton ; Tracy 's secretary , Gwen Andrews , provides the same kind of feminine interest as Tess Trueheart ; and FBI Director Clive Anderson is the same kind of avuncular superior as Chief Brandon . is the same kind of avuncular superior as FBI Director Clive Anderson Chief Brandon
-However , comic relief sidekick `` Mike McGurk '' bears some resemblance to Tracy 's partner from the strip , Pat Patton ; Tracy 's secretary , Gwen Andrews , provides the same kind of feminine interest as Tess Trueheart ; and FBI Director Clive Anderson is the same kind of avuncular superior as Chief Brandon . is Chief Brandon an avuncular superior
-However , comic relief sidekick `` Mike McGurk '' bears some resemblance to Tracy 's partner from the strip , Pat Patton ; Tracy 's secretary , Gwen Andrews , provides the same kind of feminine interest as Tess Trueheart ; and FBI Director Clive Anderson is the same kind of avuncular superior as Chief Brandon . is Clive Anderson FBI Director
-However , during his rehearsal , Knievel lost control of the motorcycle and crashed into a cameraman . lost control of Knievel the motorcycle during his rehearsal
-However , during his rehearsal , Knievel lost control of the motorcycle and crashed into a cameraman . had Knievel a rehearsal
-However , during his rehearsal , Knievel lost control of the motorcycle and crashed into a cameraman . crashed into Knievel a cameraman during his rehearsal
-However , it became far less safe for the Nationals from 1983 onward , and strong population growth over the last three decades has seen it progressively lose its rural territory and reduced it to a more coastal-based and urbanised division . was population growth strong over the last three decades
-However , it became far less safe for the Nationals from 1983 onward , and strong population growth over the last three decades has seen it progressively lose its rural territory and reduced it to a more coastal-based and urbanised division . has seen it progressively lose strong population growth its rural territory over the last three decades
-However , it became far less safe for the Nationals from 1983 onward , and strong population growth over the last three decades has seen it progressively lose its rural territory and reduced it to a more coastal-based and urbanised division . has reduced it to strong population growth a more coastal-based division over the last three decades
-However , it became far less safe for the Nationals from 1983 onward , and strong population growth over the last three decades has seen it progressively lose its rural territory and reduced it to a more coastal-based and urbanised division . has reduced it to strong population growth a more urbanised division over the last three decades
-However , it became far less safe for the Nationals from 1983 onward , and strong population growth over the last three decades has seen it progressively lose its rural territory and reduced it to a more coastal-based and urbanised division . became far less safe for it the Nationals from 1983 onward
-However , when the antigenicities of the seed strains and wild viruses do not match , vaccines fail to protect the vaccinees . fail to protect the vaccinees when vaccines the antigenicities of the seed strains and wild viruses do not match
-However , when the antigenicities of the seed strains and wild viruses do not match , vaccines fail to protect the vaccinees . have seed strains antigenicities
-However , when the antigenicities of the seed strains and wild viruses do not match , vaccines fail to protect the vaccinees . have wild viruses antigenicities
-If given this data , the Germans would be able to adjust their aim and correct any shortfall . would be able to adjust their aim If given the Germans this data
-If given this data , the Germans would be able to adjust their aim and correct any shortfall . would be able to correct any shortfall If given the Germans this data
-If the second excitation pulse is sent prematurely before the relaxation is complete , the average magnetization vector still points in a nonparallel direction , giving suboptimal absorption and emission of the pulse . points in a the average magnetization vector nonparallel direction before the relaxation is complete
-If the second excitation pulse is sent prematurely before the relaxation is complete , the average magnetization vector still points in a nonparallel direction , giving suboptimal absorption and emission of the pulse . giving the average magnetization vector points in a nonparallel direction suboptimal absorption of the pulse before the relaxation is complete
-If the second excitation pulse is sent prematurely before the relaxation is complete , the average magnetization vector still points in a nonparallel direction , giving suboptimal absorption and emission of the pulse . giving the average magnetization vector still points in a nonparallel direction suboptimal emission of the pulse before the relaxation is complete
-In 1005 for example , the governor of the important Adriatic port of Dyrrhachium had surrendered the town to Basil II . had surrendered the town to the governor of the important Adriatic port of Dyrrhachium Basil II In 1005
-In 1866 , he began a second term as Lord Chancellor , which ended with his death in the next year . began a second term as he Lord Chancellor In 1866
-In 1866 , he began a second term as Lord Chancellor , which ended with his death in the next year . died the Lord Chancellor in 1867
-In 1911 , with Francis La Flesche , she published `` The Omaha Tribe '' . published she `` The Omaha Tribe '' In 1911
-In 1911 , with Francis La Flesche , she published `` The Omaha Tribe '' . published `` The Omaha Tribe '' with she Francis La Flesche In 1911
-In 1926 , `` The News and Courier '' was bought by the owners of Charleston 's main evening paper , `` The Evening Post . '' was bought by `` The News and Courier '' the owners of Charleston 's main evening paper In 1926
-In 1926 , `` The News and Courier '' was bought by the owners of Charleston 's main evening paper , `` The Evening Post . '' is Charleston 's main evening paper `` The Evening Post . '' In 1926
-In 1954 , a KOMO news photographer discovered a way to develop color film in a new process that took just a few hours instead of days . discovered a KOMO news photographer a way to develop color film In 1954
-In 1954 , a KOMO news photographer discovered a way to develop color film in a new process that took just a few hours instead of days . discovered a KOMO news photographer a way to develop color film in a new process that took just a few hours instead of days In 1954
-In 1954 , a KOMO news photographer discovered a way to develop color film in a new process that took just a few hours instead of days . discovered a KOMO news photographer a way to develop color film in a new process In 1954
-In 1964 Barrie appeared in two episodes of `` Alfred Hitchcock Presents '' . appeared in Barrie two episodes of `` Alfred Hitchcock Presents '' In 1964
-In 1964 Barrie appeared in two episodes of `` Alfred Hitchcock Presents '' . appeared in Barrie an episode of `` Alfred Hitchcock Presents '' In 1964
-In 1972 , he won from Yakutpura and later in 1978 , again from Charminar . won from he Yakutpura In 1972
-In 1972 , he won from Yakutpura and later in 1978 , again from Charminar . won from he Charminar in 1978
-In 1972 , researchers found metallic conductivity in the charge-transfer complex TTF-TCNQ . found researchers metallic conductivity in the charge-transfer complex TTF-TCNQ In 1972
-In 1975 Barrie was directed by Lee Grant in the television movie `` For The Use Of The Hall '' as `` Charlotte '' . was directed by Barrie Lee Grant in a television movie In 1975
-In 1975 Barrie was directed by Lee Grant in the television movie `` For The Use Of The Hall '' as `` Charlotte '' . was directed by Barrie Lee Grant in the television movie `` For The Use Of The Hall '' In 1975
-In 1975 Barrie was directed by Lee Grant in the television movie `` For The Use Of The Hall '' as `` Charlotte '' . was in Barrie the television movie `` For The Use Of The Hall '' In 1975
-In 1975 Barrie was directed by Lee Grant in the television movie `` For The Use Of The Hall '' as `` Charlotte '' . was `` Charlotte '' in Barrie the television movie `` For The Use Of The Hall '' In 1975
-In 1975 Barrie was directed by Lee Grant in the television movie `` For The Use Of The Hall '' as `` Charlotte '' . was directed by Barrie Lee Grant in the television movie `` For The Use Of The Hall '' as `` Charlotte '' In 1975
-In 1977 she appeared in two television films , as the mother of Lesley Ann Warren 's character in `` 79 Park Avenue '' and as Emily McPhail in `` Tell Me My Name '' . appeared in she two television films In 1977
-In 1977 she appeared in two television films , as the mother of Lesley Ann Warren 's character in `` 79 Park Avenue '' and as Emily McPhail in `` Tell Me My Name '' . appeared as she the mother of Lesley Ann Warren 's character in `` 79 Park Avenue '' In 1977
-In 1977 she appeared in two television films , as the mother of Lesley Ann Warren 's character in `` 79 Park Avenue '' and as Emily McPhail in `` Tell Me My Name '' . appeared as she Emily McPhail in `` Tell Me My Name '' In 1977
-In 1977 she appeared in two television films , as the mother of Lesley Ann Warren 's character in `` 79 Park Avenue '' and as Emily McPhail in `` Tell Me My Name '' . was in Lesley Ann Warren 's character `` 79 Park Avenue '' In 1977
-In 1977 she appeared in two television films , as the mother of Lesley Ann Warren 's character in `` 79 Park Avenue '' and as Emily McPhail in `` Tell Me My Name '' . was a character in Emily McPhail `` Tell Me My Name '' In 1977
-In 1977 she appeared in two television films , as the mother of Lesley Ann Warren 's character in `` 79 Park Avenue '' and as Emily McPhail in `` Tell Me My Name '' . was in Lesley Ann Warren `` 79 Park Avenue '' In 1977
-In 1987 , Rodan became president of the American Society for Bone and Mineral Research . became president of Rodan the American Society for Bone and Mineral Research In 1987
-In 1990 Kelsang Gyatso became also outspoken against the Geshe Studies Programme , and `` made the pursuit of his new programmes compulsory . '' became also outspoken against Kelsang Gyatso the Geshe Studies Programme In 1990
-In 1990 Kelsang Gyatso became also outspoken against the Geshe Studies Programme , and `` made the pursuit of his new programmes compulsory . '' made compulsory Kelsang Gyatso the pursuit of his new programmes In 1990
-In 2004 the Brumbies finished at the top of the Super 12 table , six points clear of the next best team . finished at the top of the Brumbies the Super 12 table In 2004
-In 2004 the Brumbies finished at the top of the Super 12 table , six points clear of the next best team . were six points clear of the Brumbies the next best team In 2004
-In 2006 they applied for National League Three , finishing in 5th place and qualifying for the play-offs , where they lost to St Albans Centurions . applied for they National League Three In 2006
-In 2006 they applied for National League Three , finishing in 5th place and qualifying for the play-offs , where they lost to St Albans Centurions . were finishing in they 5th place In 2006
-In 2006 they applied for National League Three , finishing in 5th place and qualifying for the play-offs , where they lost to St Albans Centurions . were qualifying for they the play-offs In 2006
-In 2006 they applied for National League Three , finishing in 5th place and qualifying for the play-offs , where they lost to St Albans Centurions . lost to they St Albans Centurions in the play-offs In 2006
-In 2007 , Sun announced `` Project Indiana '' with several goals , including providing an open source binary distribution of the OpenSolaris project , replacing SXDE . announced Sun `` Project Indiana '' In 2007
-In 2007 , Sun announced `` Project Indiana '' with several goals , including providing an open source binary distribution of the OpenSolaris project , replacing SXDE . has `` Project Indiana '' several goals
-In 2007 , Sun announced `` Project Indiana '' with several goals , including providing an open source binary distribution of the OpenSolaris project , replacing SXDE . include providing several goals of `` Project Indiana '' an open source binary distribution of the OpenSolaris project
-In 2007 , Sun announced `` Project Indiana '' with several goals , including providing an open source binary distribution of the OpenSolaris project , replacing SXDE . will be replacing an open source binary distribution of the OpenSolaris project SXDE
-In 2010 , scam websites co-opted a photograph of her to promote health treatments , the ubiquitous `` 1 weird old tip '' belly fat diets , and penny auctions , unauthorized usage of which Theuriau was initially unaware . co-opted scam websites a photograph of her In 2010
-In 2010 , scam websites co-opted a photograph of her to promote health treatments , the ubiquitous `` 1 weird old tip '' belly fat diets , and penny auctions , unauthorized usage of which Theuriau was initially unaware . was co-opted to promote a photograph of her health treatments
-In 2010 , scam websites co-opted a photograph of her to promote health treatments , the ubiquitous `` 1 weird old tip '' belly fat diets , and penny auctions , unauthorized usage of which Theuriau was initially unaware . was co-opted to promote a photograph of her the ubiquitous `` 1 weird old tip '' belly fat diets
-In 2010 , scam websites co-opted a photograph of her to promote health treatments , the ubiquitous `` 1 weird old tip '' belly fat diets , and penny auctions , unauthorized usage of which Theuriau was initially unaware . was co-opted to promote a photograph of her penny auctions
-In 2010 , scam websites co-opted a photograph of her to promote health treatments , the ubiquitous `` 1 weird old tip '' belly fat diets , and penny auctions , unauthorized usage of which Theuriau was initially unaware . was unaware of Theuriau unauthorized usage of a photograph of her initially
-In 2010 , scam websites co-opted a photograph of her to promote health treatments , the ubiquitous `` 1 weird old tip '' belly fat diets , and penny auctions , unauthorized usage of which Theuriau was initially unaware . are ubiquitous `` 1 weird old tip '' belly fat diets
-In 2010 , scam websites co-opted a photograph of her to promote health treatments , the ubiquitous `` 1 weird old tip '' belly fat diets , and penny auctions , unauthorized usage of which Theuriau was initially unaware . was Theuriau her
-In 2011 , major vendors launched several consumer-oriented motherboards using the Intel 6-series LGA 1155 chipset and AMD 9 Series AM3 + chipsets with UEFI . launched major vendors several consumer-oriented motherboards In 2011
-In 2011 , major vendors launched several consumer-oriented motherboards using the Intel 6-series LGA 1155 chipset and AMD 9 Series AM3 + chipsets with UEFI . are using several consumer-oriented motherboards the Intel 6-series LGA 1155 chipset
-In 2011 , major vendors launched several consumer-oriented motherboards using the Intel 6-series LGA 1155 chipset and AMD 9 Series AM3 + chipsets with UEFI . are using several consumer-oriented motherboards the AMD 9 Series AM3 + chipsets with UEFI
-In 2011 , major vendors launched several consumer-oriented motherboards using the Intel 6-series LGA 1155 chipset and AMD 9 Series AM3 + chipsets with UEFI . are consumer-oriented several motherboards
-In 2012 , Bloomberg Businessweek voted San Francisco as America 's Best City . voted as America 's Best City Bloomberg Businessweek San Francisco In 2012
-In 2012 , Bloomberg Businessweek voted San Francisco as America 's Best City . is a City in San Francisco America
-In 54 BC , Marcus Perperna is mentioned as one of the consulars who bore testimony on behalf of Marcus Aemilius Scaurus at his trial . is mentioned as Marcus Perperna one of the consulars who bore testimony on behalf of Marcus Aemilius Scaurus at his trial In 54 BC
-In 54 BC , Marcus Perperna is mentioned as one of the consulars who bore testimony on behalf of Marcus Aemilius Scaurus at his trial . is one of Marcus Perperna the consulars who bore testimony on behalf of Marcus Aemilius Scaurus at his trial
-In 54 BC , Marcus Perperna is mentioned as one of the consulars who bore testimony on behalf of Marcus Aemilius Scaurus at his trial . had Marcus Aemilius Scaurus a trial
-In 54 BC , Marcus Perperna is mentioned as one of the consulars who bore testimony on behalf of Marcus Aemilius Scaurus at his trial . bore testimony on behalf of Marcus Perperna Marcus Aemilius Scaurus at his trial
-In Canada , there are two organizations that regulate university and collegiate athletics . regulate two organizations university athletics In Canada
-In Canada , there are two organizations that regulate university and collegiate athletics . regulate two organizations collegiate athletics In Canada
-In French , `` droit '' can mean `` the whole body of the Law '' , as in the motto `` dieu et mon droit , '' which is to say `` God and my whole body of Law . '' can mean `` droit '' `` the whole body of the Law ''
-In French , `` droit '' can mean `` the whole body of the Law '' , as in the motto `` dieu et mon droit , '' which is to say `` God and my whole body of Law . '' is in `` droit '' French
-In French , `` droit '' can mean `` the whole body of the Law '' , as in the motto `` dieu et mon droit , '' which is to say `` God and my whole body of Law . '' is to say the motto `` dieu et mon droit '' `` God and my whole body of Law ''
-In French , `` droit '' can mean `` the whole body of the Law '' , as in the motto `` dieu et mon droit , '' which is to say `` God and my whole body of Law . '' is `` dieu et mon droit '' a motto
-In French , `` droit '' can mean `` the whole body of the Law '' , as in the motto `` dieu et mon droit , '' which is to say `` God and my whole body of Law . '' is In `` dieu et mon droit '' French
-In Jewish Hebrew , the Samaritans are called `` Shomronim '' , while in Samaritan Hebrew they call themselves `` Shamerim '' . are called In Jewish Hebrew the Samaritans `` Shomronim ''
-In Jewish Hebrew , the Samaritans are called `` Shomronim '' , while in Samaritan Hebrew they call themselves `` Shamerim '' . call themselves in Samaritan Hebrew the Samaritans `` Shamerim ''
-In Jewish Hebrew , the Samaritans are called `` Shomronim '' , while in Samaritan Hebrew they call themselves `` Shamerim '' . is in `` Shomronim '' Jewish Hebrew
-In Jewish Hebrew , the Samaritans are called `` Shomronim '' , while in Samaritan Hebrew they call themselves `` Shamerim '' . is in `` Shamerim '' Samaritan Hebrew
-In Jewish belief , its fulfilment will be revealed in the cumulation of Creation , in the era of resurrection , in the physical World . In Jewish belief will be revealed in its fulfilment the cumulation of Creation in the physical World in the era of resurrection
-In June , Nasser took control of the interior ministry post from Naguib loyalist Sulayman Hafez , and pressured Naguib to conclude the abolition of the monarchy . took control of Nasser the interior ministry In June
-In June , Nasser took control of the interior ministry post from Naguib loyalist Sulayman Hafez , and pressured Naguib to conclude the abolition of the monarchy . took control from Nasser Naguib loyalist Sulayman Hafez
-In June , Nasser took control of the interior ministry post from Naguib loyalist Sulayman Hafez , and pressured Naguib to conclude the abolition of the monarchy . was Sulayman Hafez a Naguib loyalist
-In June , Nasser took control of the interior ministry post from Naguib loyalist Sulayman Hafez , and pressured Naguib to conclude the abolition of the monarchy . had Naguib loyalist Sulayman Hafez interior ministry post
-In June , Nasser took control of the interior ministry post from Naguib loyalist Sulayman Hafez , and pressured Naguib to conclude the abolition of the monarchy . pressured to conclude the abolition of the monarchy Nasser Naguib In June
-In October 2009 it was confirmed that the Byrom Street cutting was a hitching and unhitching point for trains being cable hauled to Edge Hill via the Victoria Tunnel . was confirmed a hitching point for the Byrom Street cutting trains being cable hauled to Edge Hill via the Victoria Tunnel In October 2009
-In October 2009 it was confirmed that the Byrom Street cutting was a hitching and unhitching point for trains being cable hauled to Edge Hill via the Victoria Tunnel . was confirmed an unhitching point for the Byrom Street cutting trains being cable hauled to Edge Hill via the Victoria Tunnel In October 2009
-In October 2009 it was confirmed that the Byrom Street cutting was a hitching and unhitching point for trains being cable hauled to Edge Hill via the Victoria Tunnel . are being cable hauled to trains Edge Hill
-In October 2009 it was confirmed that the Byrom Street cutting was a hitching and unhitching point for trains being cable hauled to Edge Hill via the Victoria Tunnel . are being cable hauled via trains the Victoria Tunnel
-In September 1941 , she joined the Women 's Auxiliary Air Force , working at the Department of the Chief of Air Staff as Assistant Section Officer for Intelligence duties , before being posted in July 1942 to Moreton-in-Marsh , where she was promoted to Section officer . joined she the Women 's Auxiliary Air Force In September 1941
-In September 1941 , she joined the Women 's Auxiliary Air Force , working at the Department of the Chief of Air Staff as Assistant Section Officer for Intelligence duties , before being posted in July 1942 to Moreton-in-Marsh , where she was promoted to Section officer . was working at she the Department of the Chief of Air Staff In September 1941
-In September 1941 , she joined the Women 's Auxiliary Air Force , working at the Department of the Chief of Air Staff as Assistant Section Officer for Intelligence duties , before being posted in July 1942 to Moreton-in-Marsh , where she was promoted to Section officer . was working as she Assistant Section Officer for Intelligence duties at the Department of the Chief of Air Staff In September 1941
-In September 1941 , she joined the Women 's Auxiliary Air Force , working at the Department of the Chief of Air Staff as Assistant Section Officer for Intelligence duties , before being posted in July 1942 to Moreton-in-Marsh , where she was promoted to Section officer . was posted to she Moreton-in-Marsh in July 1942
-In September 1941 , she joined the Women 's Auxiliary Air Force , working at the Department of the Chief of Air Staff as Assistant Section Officer for Intelligence duties , before being posted in July 1942 to Moreton-in-Marsh , where she was promoted to Section officer . was promoted to she Section officer at Moreton-in-Marsh
-In Van Howe 's study , all cases of meatal stenosis were among circumcised boys . were among all cases of meatal stenosis circumcised boys In Van Howe 's study
-In Van Howe 's study , all cases of meatal stenosis were among circumcised boys . had Van Howe a study
-In Van Howe 's study , all cases of meatal stenosis were among circumcised boys . were circumcised boys
-In `` The Andromeda Strain '' , Michael Crichton 's first novel published under his real name , only two people exposed to a pathogenic extraterrestrial microbe survive . was Michael Crichton 's first novel published under his real name `` The Andromeda Strain ''
-In `` The Andromeda Strain '' , Michael Crichton 's first novel published under his real name , only two people exposed to a pathogenic extraterrestrial microbe survive . published under his real name Michael Crichton `` The Andromeda Strain ''
-In `` The Andromeda Strain '' , Michael Crichton 's first novel published under his real name , only two people exposed to a pathogenic extraterrestrial microbe survive . survive only two people exposed to a pathogenic extraterrestrial microbe In `` The Andromeda Strain ''
-In `` The Andromeda Strain '' , Michael Crichton 's first novel published under his real name , only two people exposed to a pathogenic extraterrestrial microbe survive . are exposed to people a pathogenic extraterrestrial microbe In `` The Andromeda Strain ''
-In `` The Andromeda Strain '' , Michael Crichton 's first novel published under his real name , only two people exposed to a pathogenic extraterrestrial microbe survive . is a pathogenic microbe extraterrestrial In `` The Andromeda Strain ''
-In `` The Andromeda Strain '' , Michael Crichton 's first novel published under his real name , only two people exposed to a pathogenic extraterrestrial microbe survive . has Michael Crichton a first novel
-In a news post , Holkins stated that he reserved the right to bring Carl back any time Krahulik goes to France . stated that Holkins he reserved the right to bring Carl back any time Krahulik goes to France In a news post
-In a news post , Holkins stated that he reserved the right to bring Carl back any time Krahulik goes to France . reserved the right to bring Carl back Holkins any time Krahulik goes to France
-In a typical case of substrate interference , a Language A occupies a given territory and another Language B arrives in the same territory . occupies In a typical case of substrate interference a Language A a given territory
-In a typical case of substrate interference , a Language A occupies a given territory and another Language B arrives in the same territory . arrives In a typical case of substrate interference another Language B in the same territory
-In addition , as John Cecil Masterman , chairman of the Twenty Committee , commented , `` If , for example , St Paul 's Cathedral were hit , it was useless and harmful to report that the bomb had descended upon a cinema in Islington , since the truth would inevitably get through to Germany ... '' commented John Cecil Masterman , chairman of the Twenty Committee `` If , for example , St Paul 's Cathedral were hit , it was useless and harmful to report that the bomb had descended upon a cinema in Islington , since the truth would inevitably get through to Germany ... ''
-In addition , as John Cecil Masterman , chairman of the Twenty Committee , commented , `` If , for example , St Paul 's Cathedral were hit , it was useless and harmful to report that the bomb had descended upon a cinema in Islington , since the truth would inevitably get through to Germany ... '' was chairman of John Cecil Masterman the Twenty Committee
-In athletics , Boston College left the Big East Conference and joined the Atlantic Coast Conference on July 1 , 2005 . left Boston College the Big East Conference on July 1 , 2005
-In athletics , Boston College left the Big East Conference and joined the Atlantic Coast Conference on July 1 , 2005 . joined Boston College the Atlantic Coast Conference on July 1 , 2005
-In athletics , Boston College left the Big East Conference and joined the Atlantic Coast Conference on July 1 , 2005 . is in Boston College athletics
-In both cases this specialized function replaces the basic rifleman position in the fireteam . replaces In both cases this specialized function the basic rifleman position in the fireteam
-In both cases this specialized function replaces the basic rifleman position in the fireteam . is basic the rifleman position in the fireteam
-In its first six months , RCPO concluded 858 cases convictions in 88 % of cases . concluded RCPO 858 cases In its first six months
-In its first six months , RCPO concluded 858 cases convictions in 88 % of cases . had convictions in RCPO 88 % of cases In its first six months
-In its first six months , RCPO concluded 858 cases convictions in 88 % of cases . were convictions 88 % of 858 cases
-In modern classifications , it is often treated as a subfamily of the Glyphipterigidae family . is often treated as it a subfamily of the Glyphipterigidae family In modern classifications
-In modern classifications , it is often treated as a subfamily of the Glyphipterigidae family . has the Glyphipterigidae family a subfamily
-In more recent years , this policy has apparently relaxed somewhat . has apparently relaxed somewhat this policy In more recent years
-In order to support planned TRAX expansion , UTA ordered 77 Siemens S70 light rail vehicles from Siemens AG . ordered UTA 77 Siemens S70 light rail vehicles
-In order to support planned TRAX expansion , UTA ordered 77 Siemens S70 light rail vehicles from Siemens AG . ordered from UTA Siemens AG
-In order to support planned TRAX expansion , UTA ordered 77 Siemens S70 light rail vehicles from Siemens AG . ordered to support UTA planned TRAX expansion
-In order to support planned TRAX expansion , UTA ordered 77 Siemens S70 light rail vehicles from Siemens AG . was planned TRAX expansion
-In order to support planned TRAX expansion , UTA ordered 77 Siemens S70 light rail vehicles from Siemens AG . will support 77 Siemens S70 light rail vehicles planned TRAX expansion
-In particular , Cyprinidae of southwestern North America have been severely affected ; a considerable number went entirely extinct after settlement by Europeans . have been severely affected Cyprinidae in southwestern North America
-In particular , Cyprinidae of southwestern North America have been severely affected ; a considerable number went entirely extinct after settlement by Europeans . went entirely extinct a considerable number of Cyprinidae in southwestern North America after settlement by Europeans
-In the 1901 election , after which the Oppositionists under George Leake were able to form a minority government , Frank Wilson , formerly the member for Canning , won the seat . were under the Oppositionists George Leake
-In the 1901 election , after which the Oppositionists under George Leake were able to form a minority government , Frank Wilson , formerly the member for Canning , won the seat . were able to form the Oppositionists a minority government after the 1901 election
-In the 1901 election , after which the Oppositionists under George Leake were able to form a minority government , Frank Wilson , formerly the member for Canning , won the seat . was formerly Frank Wilson the member for Canning
-In the 1901 election , after which the Oppositionists under George Leake were able to form a minority government , Frank Wilson , formerly the member for Canning , won the seat . won Frank Wilson the seat In the election in 1901
-In the 1960s and 70s most of Kabul 's economy depended on tourism . depended on most of the economy tourism in Kabul In the 1960s
-In the 1960s and 70s most of Kabul 's economy depended on tourism . depended on most of the economy tourism in Kabul In the 1970s
-In the 1986 television series `` War and Remembrance '' , Johns took the role of the senior Nazi SS officer Adolf Eichmann . was a `` War and Remembrance '' television series in 1986
-In the 1986 television series `` War and Remembrance '' , Johns took the role of the senior Nazi SS officer Adolf Eichmann . took the role of Johns the senior Nazi SS officer Adolf Eichmann In the 1986 television series `` War and Remembrance ''
-In the 1986 television series `` War and Remembrance '' , Johns took the role of the senior Nazi SS officer Adolf Eichmann . was a Adolf Eichmann senior Nazi SS officer
-In the Civil War , he advocated strong prosecution of the Union War effort , the end of slavery , and civil rights for freed African Americans . advocated he strong prosecution of the Union War effort In the Civil War
-In the Civil War , he advocated strong prosecution of the Union War effort , the end of slavery , and civil rights for freed African Americans . advocated he the end of slavery In the Civil War
-In the Civil War , he advocated strong prosecution of the Union War effort , the end of slavery , and civil rights for freed African Americans . advocated he civil rights for freed African Americans In the Civil War
-In the Crimean War , the 5th Dragoon Guards formed part of the Heavy Cavalry Brigade and was sent to the Black Sea in 1854 . formed part of the 5th Dragoon Guards the Heavy Cavalry Brigade In the Crimean War
-In the Crimean War , the 5th Dragoon Guards formed part of the Heavy Cavalry Brigade and was sent to the Black Sea in 1854 . was sent to the 5th Dragoon Guards the Black Sea in 1854 In the Crimean War
-In the early 19th century the Welsh Methodists broke away from the Anglican church and established their own denomination , now the Presbyterian Church of Wales . broke away from the Welsh Methodists the Anglican church In the early 19th century
-In the early 19th century the Welsh Methodists broke away from the Anglican church and established their own denomination , now the Presbyterian Church of Wales . established the Welsh Methodists their own denomination In the early 19th century
-In the early 19th century the Welsh Methodists broke away from the Anglican church and established their own denomination , now the Presbyterian Church of Wales . is the Welsh Methodists' own denomination the Presbyterian Church of Wales now
-In the early 19th century the Welsh Methodists broke away from the Anglican church and established their own denomination , now the Presbyterian Church of Wales . is the Welsh Methodists' own denomination the Presbyterian Church of Wales now
-In the north and east inhabitants speak Bumthangkha , and in the extreme southeast Khengkha is spoken . speak inhabitants Bumthangkha In the north
-In the north and east inhabitants speak Bumthangkha , and in the extreme southeast Khengkha is spoken . speak inhabitants Bumthangkha In the east
-In the north and east inhabitants speak Bumthangkha , and in the extreme southeast Khengkha is spoken . speak inhabitants Khengkha in the extreme southeast
-In the north and east inhabitants speak Bumthangkha , and in the extreme southeast Khengkha is spoken . is spoken Khengkha in the extreme southeast
-In the winter of 1976 , Knievel was scheduled for a major jump in Chicago , Illinois . was scheduled for Knievel a major jump in Chicago , Illinois In the winter of 1976
-In the winter of 1976 , Knievel was scheduled for a major jump in Chicago , Illinois . is in Chicago Illinois
-In this explanation the purpose of Creation is that `` God desired a dwelling place in the lower realms '' - it is man who transforms the mundane , lowest World into an abode for God 's essence . is that the purpose of Creation In this explanation `` God desired a dwelling place in the lower realms ''
-In this explanation the purpose of Creation is that `` God desired a dwelling place in the lower realms '' - it is man who transforms the mundane , lowest World into an abode for God 's essence . transforms into an abode for man God 's essence the mundane , lowest World
-In this explanation the purpose of Creation is that `` God desired a dwelling place in the lower realms '' - it is man who transforms the mundane , lowest World into an abode for God 's essence . is transformed into the mundane , lowest World an abode for God 's essence
-In this explanation the purpose of Creation is that `` God desired a dwelling place in the lower realms '' - it is man who transforms the mundane , lowest World into an abode for God 's essence . desired a dwelling place God in the lower realms
-In those years , he began to collaborate with some newspapers . began to collaborate with he some newspapers In those years
-Initially flying the A-4B Skyhawk , the squadron later transitioned to the A-4L Skyhawk . transitioned to flying the squadron the A-4L Skyhawk later
-Initially flying the A-4B Skyhawk , the squadron later transitioned to the A-4L Skyhawk . was flying the squadron the A-4B Skyhawk Initially
-Initially flying the A-4B Skyhawk , the squadron later transitioned to the A-4L Skyhawk . is a A-4B Skyhawk
-Initially flying the A-4B Skyhawk , the squadron later transitioned to the A-4L Skyhawk . is a A-4L Skyhawk
-Initially his chances of surviving were thought to be no better than 50-50 . were thought to be his chances of surviving no better than 50-50 Initially
-Initially his chances of surviving were thought to be no better than 50-50 . were of his chances surviving
-It has long hind legs and a long , slender , scaly tail that it uses to communicate by making drumming noises . has It long hind legs
-It has long hind legs and a long , slender , scaly tail that it uses to communicate by making drumming noises . has It a long tail
-It has long hind legs and a long , slender , scaly tail that it uses to communicate by making drumming noises . has It a slender tail
-It has long hind legs and a long , slender , scaly tail that it uses to communicate by making drumming noises . has It a scaly tail
-It has long hind legs and a long , slender , scaly tail that it uses to communicate by making drumming noises . uses to communicate by making drumming noises it a long , slender , scaly tail
-It has long hind legs and a long , slender , scaly tail that it uses to communicate by making drumming noises . makes it drumming noises
-It is essentially the same as the dialect spoken in Xiamen , and is unintelligible with Standard Chinese . is essentially the same as It the dialect spoken in Xiamen
-It is essentially the same as the dialect spoken in Xiamen , and is unintelligible with Standard Chinese . is spoken in the dialect Xiamen
-It is essentially the same as the dialect spoken in Xiamen , and is unintelligible with Standard Chinese . is unintelligible with It Standard Chinese
-It is not really passable , and must be done on foot if attempted . is not really passable It
-It is not really passable , and must be done on foot if attempted . if attempted must be done on It foot
-It is part of the Surrey Hills Area of Outstanding Beauty and situated on the Green Sand Way . is part of It the Surrey Hills Area of Outstanding Beauty
-It is part of the Surrey Hills Area of Outstanding Beauty and situated on the Green Sand Way . is situated on It the Green Sand Way
-It should be noted that these numbers are inclusive of any of the childminders own children . are inclusive of any of numbers the childminders own children
-It should be noted that these numbers are inclusive of any of the childminders own children . are inclusive of these numbers the childminders own children
-It was chosen in 1901 because it was a triangulation station at the junction of the trancontinental triangulation arc of 1899 on the 39th parallel north and the triangulation arc along the 98th meridian west that was near the geographic center of the contiguous United States . was chosen because it was a It triangulation station at the junction of the trancontinental triangulation arc of 1899 on the 39th parallel north and the triangulation arc along the 98th meridian west that was near the geographic center of the contiguous United States in 1901
-It was named for Gen. Eleazer Wheelock Ripley , an officer in the War of 1812 , who was mainly remembered for the Battle of Lundy 's Lane and the Siege of Fort Erie , in 1814 . was named for It an officer Gen. Eleazer Wheelock Ripley who was mainly remembered for the Battle of Lundy 's Lane and the Siege of Fort Erie in the War of 1812
-It was named for Gen. Eleazer Wheelock Ripley , an officer in the War of 1812 , who was mainly remembered for the Battle of Lundy 's Lane and the Siege of Fort Erie , in 1814 . was mainly remembered for an officer Gen. Eleazer Wheelock Ripley the Battle of Lundy 's Lane in 1814
-It was named for Gen. Eleazer Wheelock Ripley , an officer in the War of 1812 , who was mainly remembered for the Battle of Lundy 's Lane and the Siege of Fort Erie , in 1814 . was mainly remembered for an officer Gen. Eleazer Wheelock Ripley the Siege of Fort Erie in 1814
-It was named for Gen. Eleazer Wheelock Ripley , an officer in the War of 1812 , who was mainly remembered for the Battle of Lundy 's Lane and the Siege of Fort Erie , in 1814 . was Gen. Eleazer Wheelock Ripley an officer in 1812
-It was originally aimed at mature entrants to the teaching profession , who could not afford to give up work and undertake a traditional method of teacher training such as the PGCE . was originally aimed at It mature entrants to the teaching profession
-It was originally aimed at mature entrants to the teaching profession , who could not afford to give up work and undertake a traditional method of teacher training such as the PGCE . was originally aimed at It mature entrants who could not afford to give up work and undertake a traditional method of teacher training such as the PGCE
-Its cultivation even declined in favour of the Asian species , which was introduced to East Africa early in the common era and spread westward . declined in favour of the cultivation Asian species East Africa early in the common era
-Its cultivation even declined in favour of the Asian species , which was introduced to East Africa early in the common era and spread westward . declined in favour of the cultivation Asian species which spread westward East Africa early in the common era
-Its cultivation even declined in favour of the Asian species , which was introduced to East Africa early in the common era and spread westward . was introduced to cultivation East Africa early in the common era
-JAL introduced jet service on the Fukuoka-Tokyo route in 1961 . introduced JAL jet service on the Fukuoka-Tokyo route in 1961
-James Arthur Hogue is a US impostor who most famously entered Princeton University by posing as a self-taught orphan . is an James Arthur Hogue impostor
-James Arthur Hogue is a US impostor who most famously entered Princeton University by posing as a self-taught orphan . is in James Arthur Hogue US
-James Arthur Hogue is a US impostor who most famously entered Princeton University by posing as a self-taught orphan . most famously entered James Arthur Hogue Princeton University
-James Arthur Hogue is a US impostor who most famously entered Princeton University by posing as a self-taught orphan . entered Princeton University by posing as James Arthur Hogue a self-taught orphan
-John Stewart and Guy Gardner brought down New Warworld and the Yellow Central Power Battery , which were detonated next to the Anti-Monitor , and contained by a shield created by hundreds of Green Lanterns to contain the explosion ; even this was not enough to kill him . was detonated New Warworld next to the Anti-Monitor
-John Stewart and Guy Gardner brought down New Warworld and the Yellow Central Power Battery , which were detonated next to the Anti-Monitor , and contained by a shield created by hundreds of Green Lanterns to contain the explosion ; even this was not enough to kill him . was detonated the Yellow Central Power Battery next to the Anti-Monitor
-John Stewart and Guy Gardner brought down New Warworld and the Yellow Central Power Battery , which were detonated next to the Anti-Monitor , and contained by a shield created by hundreds of Green Lanterns to contain the explosion ; even this was not enough to kill him . was created by a shield hundreds of Green Lanterns
-John Stewart and Guy Gardner brought down New Warworld and the Yellow Central Power Battery , which were detonated next to the Anti-Monitor , and contained by a shield created by hundreds of Green Lanterns to contain the explosion ; even this was not enough to kill him . was created to contain a shield the explosion
-John Stewart and Guy Gardner brought down New Warworld and the Yellow Central Power Battery , which were detonated next to the Anti-Monitor , and contained by a shield created by hundreds of Green Lanterns to contain the explosion ; even this was not enough to kill him . brought down John Stewart New Warworld
-John Stewart and Guy Gardner brought down New Warworld and the Yellow Central Power Battery , which were detonated next to the Anti-Monitor , and contained by a shield created by hundreds of Green Lanterns to contain the explosion ; even this was not enough to kill him . brought down John Stewart the Yellow Central Power Battery
-John Stewart and Guy Gardner brought down New Warworld and the Yellow Central Power Battery , which were detonated next to the Anti-Monitor , and contained by a shield created by hundreds of Green Lanterns to contain the explosion ; even this was not enough to kill him . brought down Guy Gardner New Warworld
-John Stewart and Guy Gardner brought down New Warworld and the Yellow Central Power Battery , which were detonated next to the Anti-Monitor , and contained by a shield created by hundreds of Green Lanterns to contain the explosion ; even this was not enough to kill him . brought down Guy Gardner the Yellow Central Power Battery
-John Stewart and Guy Gardner brought down New Warworld and the Yellow Central Power Battery , which were detonated next to the Anti-Monitor , and contained by a shield created by hundreds of Green Lanterns to contain the explosion ; even this was not enough to kill him . was not enough to kill the explosion him
-John Stewart and Guy Gardner brought down New Warworld and the Yellow Central Power Battery , which were detonated next to the Anti-Monitor , and contained by a shield created by hundreds of Green Lanterns to contain the explosion ; even this was not enough to kill him . was the Anti-Monitor him
-John Stewart and Guy Gardner brought down New Warworld and the Yellow Central Power Battery , which were detonated next to the Anti-Monitor , and contained by a shield created by hundreds of Green Lanterns to contain the explosion ; even this was not enough to kill him . was not enough to kill the explosion the Anti-Monitor
-John Stewart and Guy Gardner brought down New Warworld and the Yellow Central Power Battery , which were detonated next to the Anti-Monitor , and contained by a shield created by hundreds of Green Lanterns to contain the explosion ; even this was not enough to kill him . was contained by New Warworld a shield created by hundreds of Green Lanterns
-John Stewart and Guy Gardner brought down New Warworld and the Yellow Central Power Battery , which were detonated next to the Anti-Monitor , and contained by a shield created by hundreds of Green Lanterns to contain the explosion ; even this was not enough to kill him . was contained by the Yellow Central Power Battery a shield created by hundreds of Green Lanterns
-Johns also appeared as an Imperial Officer in the 1980 `` Star Wars sequel '' , `` The Empire Strikes Back '' . also appeared as Johns an Imperial Officer
-Johns also appeared as an Imperial Officer in the 1980 `` Star Wars sequel '' , `` The Empire Strikes Back '' . also appeared in Johns the 1980 `` Star Wars sequel '' , `` The Empire Strikes Back ''
-Johns also appeared as an Imperial Officer in the 1980 `` Star Wars sequel '' , `` The Empire Strikes Back '' . was `` The Empire Strikes Back '' the `` Star Wars sequel ''
-Johns also appeared as an Imperial Officer in the 1980 `` Star Wars sequel '' , `` The Empire Strikes Back '' . was in an Imperial Officer the 1980 `` Star Wars sequel '' , `` The Empire Strikes Back ''
-Johns also appeared as an Imperial Officer in the 1980 `` Star Wars sequel '' , `` The Empire Strikes Back '' . had a Star Wars sequel in 1980
-Johns also appeared as an Imperial Officer in the 1980 `` Star Wars sequel '' , `` The Empire Strikes Back '' . was `` The Empire Strikes Back '' in 1980
-Keats 's long and expensive medical training with Hammond and at Guy 's Hospital led his family to assume he would pursue a lifelong career in medicine , assuring financial security , and it seems that at this point Keats had a genuine desire to become a doctor . assumed he would pursue Keats 's family a lifelong career in medicine
-Keats 's long and expensive medical training with Hammond and at Guy 's Hospital led his family to assume he would pursue a lifelong career in medicine , assuring financial security , and it seems that at this point Keats had a genuine desire to become a doctor . it seems had a genuine desire to become Keats a doctor at this point
-Keats 's long and expensive medical training with Hammond and at Guy 's Hospital led his family to assume he would pursue a lifelong career in medicine , assuring financial security , and it seems that at this point Keats had a genuine desire to become a doctor . had medical training with Keats Hammond
-Keats 's long and expensive medical training with Hammond and at Guy 's Hospital led his family to assume he would pursue a lifelong career in medicine , assuring financial security , and it seems that at this point Keats had a genuine desire to become a doctor . had medical training at Keats Guy 's Hospital
-Keats 's long and expensive medical training with Hammond and at Guy 's Hospital led his family to assume he would pursue a lifelong career in medicine , assuring financial security , and it seems that at this point Keats had a genuine desire to become a doctor . had Keats long medical training
-Keats 's long and expensive medical training with Hammond and at Guy 's Hospital led his family to assume he would pursue a lifelong career in medicine , assuring financial security , and it seems that at this point Keats had a genuine desire to become a doctor . had Keats expensive medical training
-Keats 's long and expensive medical training with Hammond and at Guy 's Hospital led his family to assume he would pursue a lifelong career in medicine , assuring financial security , and it seems that at this point Keats had a genuine desire to become a doctor . will be assuring a lifelong career in medicine financial security
-Keats 's long and expensive medical training with Hammond and at Guy 's Hospital led his family to assume he would pursue a lifelong career in medicine , assuring financial security , and it seems that at this point Keats had a genuine desire to become a doctor . led his family to assume Keats 's long and expensive medical training with Hammond and at Guy 's Hospital he would pursue a lifelong career in medicine
-Keibler then asked for time off to appear on `` Dancing with the Stars '' . asked for Keibler time off then
-Keibler then asked for time off to appear on `` Dancing with the Stars '' . asked to appear on Keibler `` Dancing with the Stars ''
-Kim graduated from Ballard High School in Louisville , Kentucky , in 1989 and from Oberlin College in Ohio in 1993 where he double-majored in Government and English and played for the varsity lacrosse team . graduated from Kim Ballard High School in Louisville , Kentucky in 1989
-Kim graduated from Ballard High School in Louisville , Kentucky , in 1989 and from Oberlin College in Ohio in 1993 where he double-majored in Government and English and played for the varsity lacrosse team . graduated from Kim Oberlin College in Ohio in 1993
-Kim graduated from Ballard High School in Louisville , Kentucky , in 1989 and from Oberlin College in Ohio in 1993 where he double-majored in Government and English and played for the varsity lacrosse team . double-majored in Kim Government and English at Oberlin College in Ohio
-Kim graduated from Ballard High School in Louisville , Kentucky , in 1989 and from Oberlin College in Ohio in 1993 where he double-majored in Government and English and played for the varsity lacrosse team . played for Kim the varsity lacrosse team at Oberlin College in Ohio
-Kim graduated from Ballard High School in Louisville , Kentucky , in 1989 and from Oberlin College in Ohio in 1993 where he double-majored in Government and English and played for the varsity lacrosse team . is in Ballard High School Louisville , Kentucky
-Kim graduated from Ballard High School in Louisville , Kentucky , in 1989 and from Oberlin College in Ohio in 1993 where he double-majored in Government and English and played for the varsity lacrosse team . is in Louisville Kentucky
-Kim graduated from Ballard High School in Louisville , Kentucky , in 1989 and from Oberlin College in Ohio in 1993 where he double-majored in Government and English and played for the varsity lacrosse team . is in Oberlin College Ohio
-Kostabi 's other releases include : `` Songs For Sumera '' , `` New Alliance '' and `` The Spectre Of Modernism '' . include Kostabi 's other releases `` Songs For Sumera ''
-Kostabi 's other releases include : `` Songs For Sumera '' , `` New Alliance '' and `` The Spectre Of Modernism '' . include Kostabi 's other releases `` New Alliance ''
-Kostabi 's other releases include : `` Songs For Sumera '' , `` New Alliance '' and `` The Spectre Of Modernism '' . include Kostabi 's other releases `` The Spectre Of Modernism ''
-Kostabi 's other releases include : `` Songs For Sumera '' , `` New Alliance '' and `` The Spectre Of Modernism '' . has Kostabi other releases
-Langford kept Walcott at a distance with his longer reach and used his footwork to evade all of Walcott 's attacks . kept with his longer reach Langford Walcott at a distance
-Langford kept Walcott at a distance with his longer reach and used his footwork to evade all of Walcott 's attacks . used his footwork to evade Langford all of Walcott 's attacks
-Langford kept Walcott at a distance with his longer reach and used his footwork to evade all of Walcott 's attacks . had Langford a longer reach
-Language B then begins to supplant language A : the speakers of Language A abandon their own language in favor of the other language , generally because they believe that it will help them achieve certain goals within government , the workplace , and in social settings . begins to supplant Language B language A then
-Language B then begins to supplant language A : the speakers of Language A abandon their own language in favor of the other language , generally because they believe that it will help them achieve certain goals within government , the workplace , and in social settings . abandon in favor of the other language the speakers of Language A their own language
-Language B then begins to supplant language A : the speakers of Language A abandon their own language in favor of the other language , generally because they believe that it will help them achieve certain goals within government , the workplace , and in social settings . believe that abandoning their own language language in favor of the other language will help them achieve the speakers of Language A certain goals within government
-Language B then begins to supplant language A : the speakers of Language A abandon their own language in favor of the other language , generally because they believe that it will help them achieve certain goals within government , the workplace , and in social settings . believe that abandoning their own language language in favor of the other language will help them achieve the speakers of Language A certain goals within the workplace
-Language B then begins to supplant language A : the speakers of Language A abandon their own language in favor of the other language , generally because they believe that it will help them achieve certain goals within government , the workplace , and in social settings . believe that abandoning their own language language in favor of the other language will help them achieve the speakers of Language A certain goals in social settings
-Language B then begins to supplant language A : the speakers of Language A abandon their own language in favor of the other language , generally because they believe that it will help them achieve certain goals within government , the workplace , and in social settings . are certain goals within government
-Language B then begins to supplant language A : the speakers of Language A abandon their own language in favor of the other language , generally because they believe that it will help them achieve certain goals within government , the workplace , and in social settings . are certain goals within the workplace
-Language B then begins to supplant language A : the speakers of Language A abandon their own language in favor of the other language , generally because they believe that it will help them achieve certain goals within government , the workplace , and in social settings . are certain goals in social settings
-Lemmy believes that if Will Reid Dick had not been there , they could have worked through the problems , but ended up exchanging a few words and Clarke left the studio . believes that if Lemmy Will Reid Dick had not been there , they could have worked through the problems
-Lemmy believes that if Will Reid Dick had not been there , they could have worked through the problems , but ended up exchanging a few words and Clarke left the studio . ended up exchanging they a few words
-Lemmy believes that if Will Reid Dick had not been there , they could have worked through the problems , but ended up exchanging a few words and Clarke left the studio . left Clarke the studio
-Lemmy believes that if Will Reid Dick had not been there , they could have worked through the problems , but ended up exchanging a few words and Clarke left the studio . had been Will Reid Dick there
-Lemmy believes that if Will Reid Dick had not been there , they could have worked through the problems , but ended up exchanging a few words and Clarke left the studio . had been Will Reid Dick in the studio
-Lens subluxation is also seen in dogs and is characterized by a partial displacement of the lens . is also seen in Lens subluxation dogs
-Lens subluxation is also seen in dogs and is characterized by a partial displacement of the lens . is characterized by Lens subluxation a partial displacement of the lens
-Li Hongzhi began his public teachings of Falun Gong on 13 May 1992 in Changchun , and subsequently gave lectures and taught Falun Gong exercises across China . began Li Hongzhi his public teachings of Falun Gong in Changchun on 13 May 1992
-Li Hongzhi began his public teachings of Falun Gong on 13 May 1992 in Changchun , and subsequently gave lectures and taught Falun Gong exercises across China . gave Li Hongzhi lectures subsequently
-Li Hongzhi began his public teachings of Falun Gong on 13 May 1992 in Changchun , and subsequently gave lectures and taught Falun Gong exercises across China . taught Li Hongzhi Falun Gong exercises across China subsequently
-Like other BBC content of the mid-1990s , it often lampooned the low-budget quality of satellite television available in the UK at the time . often lampooned it the low-budget quality of satellite television available in the UK at the time
-Like other BBC content of the mid-1990s , it often lampooned the low-budget quality of satellite television available in the UK at the time . was Like it other BBC content of the mid-1990s
-Like other BBC content of the mid-1990s , it often lampooned the low-budget quality of satellite television available in the UK at the time . was of other BBC content the mid-1990s
-Like other BBC content of the mid-1990s , it often lampooned the low-budget quality of satellite television available in the UK at the time . had available satellite television low-budget quality in the UK at the time
-Luke Robert Ravenstahl is an American politician who served as the 59th Mayor of Pittsburgh from 2006 until 2014 . is Luke Robert Ravenstahl an American politician
-Luke Robert Ravenstahl is an American politician who served as the 59th Mayor of Pittsburgh from 2006 until 2014 . served as Luke Robert Ravenstahl the 59th Mayor of Pittsburgh from 2006
-Luke Robert Ravenstahl is an American politician who served as the 59th Mayor of Pittsburgh from 2006 until 2014 . served as Luke Robert Ravenstahl the 59th Mayor of Pittsburgh until 2014
-Males had a median income of $ 28,750 versus $ 16,250 for females . had a median income of Males $ 28,750
-Males had a median income of $ 28,750 versus $ 16,250 for females . had a median income of females $ 16,250
-Males had a median income of $ 28,750 versus $ 16,250 for females . is versus median income of Males median income of females
-Males had a median income of $ 28,750 versus $ 16,250 for females . is versus $ 28,750 for Males $ 16,250 for females
-Males had a median income of $ 36,016 versus $ 32,679 for females . had a median income of Males $ 36,016
-Males had a median income of $ 36,016 versus $ 32,679 for females . had a median income of females $ 32,679
-Males had a median income of $ 36,016 versus $ 32,679 for females . is versus median income of Males median income of females
-Males had a median income of $ 36,016 versus $ 32,679 for females . is versus $ 36,016 for Males $ 32,679 for females
-Many are surgically removed for aesthetics and relief of psychosocial burden , but larger ones are also excised for prevention of cancer , although the benefit is impossible to assess for any individual patient . are surgically removed for Many aesthetics
-Many are surgically removed for aesthetics and relief of psychosocial burden , but larger ones are also excised for prevention of cancer , although the benefit is impossible to assess for any individual patient . are surgically removed for Many relief of psychosocial burden
-Many are surgically removed for aesthetics and relief of psychosocial burden , but larger ones are also excised for prevention of cancer , although the benefit is impossible to assess for any individual patient . are also excised for larger ones prevention of cancer
-Many are surgically removed for aesthetics and relief of psychosocial burden , but larger ones are also excised for prevention of cancer , although the benefit is impossible to assess for any individual patient . is impossible to assess for the benefit of larger ones excised for prevention of cancer any individual patient
-Many overseas Chinese whose ancestors came from the Quanzhou area , especially those in Southeast Asia , often speak mainly Hokkien at home . often speak Many overseas Chinese whose ancestors came from the Quanzhou area mainly Hokkien at home
-Many overseas Chinese whose ancestors came from the Quanzhou area , especially those in Southeast Asia , often speak mainly Hokkien at home . often speak especially those overseas Chinese in Southeast Asia whose ancestors came from the Quanzhou area mainly Hokkien at home
-Many overseas Chinese whose ancestors came from the Quanzhou area , especially those in Southeast Asia , often speak mainly Hokkien at home . are Many Chinese overseas
-Many overseas Chinese whose ancestors came from the Quanzhou area , especially those in Southeast Asia , often speak mainly Hokkien at home . have ancestors from Many overseas Chinese the Quanzhou area
-Many overseas Chinese whose ancestors came from the Quanzhou area , especially those in Southeast Asia , often speak mainly Hokkien at home . often speak at home especially those overseas Chinese mainly Hokkien in Southeast Asia
-Meanwhile , the Mason City Division continued to operate as usual . continued to operate as usual the Mason City Division Meanwhile
-Models , taking into account the size and room number of the barrack blocks in the Gorgan Wall forts and likely occupation density , produce figures between 15,000 and 36,000 soldiers . produce figures between Models 15,000 soldiers
-Models , taking into account the size and room number of the barrack blocks in the Gorgan Wall forts and likely occupation density , produce figures between 15,000 and 36,000 soldiers . produce figures between Models 36,000 soldiers
-Models , taking into account the size and room number of the barrack blocks in the Gorgan Wall forts and likely occupation density , produce figures between 15,000 and 36,000 soldiers . are in the barrack blocks the Gorgan Wall forts
-Models , taking into account the size and room number of the barrack blocks in the Gorgan Wall forts and likely occupation density , produce figures between 15,000 and 36,000 soldiers . is taken into account the size of the barrack blocks in the Gorgan Wall forts
-Models , taking into account the size and room number of the barrack blocks in the Gorgan Wall forts and likely occupation density , produce figures between 15,000 and 36,000 soldiers . is taken into account the room number of the barrack blocks in the Gorgan Wall forts
-Models , taking into account the size and room number of the barrack blocks in the Gorgan Wall forts and likely occupation density , produce figures between 15,000 and 36,000 soldiers . is taken into account likely occupation density
-Models , taking into account the size and room number of the barrack blocks in the Gorgan Wall forts and likely occupation density , produce figures between 15,000 and 36,000 soldiers . taking into account Models produce figures between 15,000 and 36,000 soldiers the size of the barrack blocks in the Gorgan Wall forts
-Models , taking into account the size and room number of the barrack blocks in the Gorgan Wall forts and likely occupation density , produce figures between 15,000 and 36,000 soldiers . taking into account Models produce figures between 15,000 and 36,000 soldiers the room number of the barrack blocks in the Gorgan Wall forts
-Models , taking into account the size and room number of the barrack blocks in the Gorgan Wall forts and likely occupation density , produce figures between 15,000 and 36,000 soldiers . taking into account Models produce figures between 15,000 and 36,000 soldiers likely occupation density
-Modern educational methods were more widely spread throughout the Empire , and the country embarked on a development scheme and plans for modernization , tempered by Ethiopian traditions , and within the framework of the ancient monarchical structure of the state . were more widely spread Modern educational methods throughout the Empire
-Modern educational methods were more widely spread throughout the Empire , and the country embarked on a development scheme and plans for modernization , tempered by Ethiopian traditions , and within the framework of the ancient monarchical structure of the state . embarked on the country a development scheme
-Modern educational methods were more widely spread throughout the Empire , and the country embarked on a development scheme and plans for modernization , tempered by Ethiopian traditions , and within the framework of the ancient monarchical structure of the state . embarked on the country plans for modernization
-Modern educational methods were more widely spread throughout the Empire , and the country embarked on a development scheme and plans for modernization , tempered by Ethiopian traditions , and within the framework of the ancient monarchical structure of the state . were tempered by plans for modernization Ethiopian traditions
-Modern educational methods were more widely spread throughout the Empire , and the country embarked on a development scheme and plans for modernization , tempered by Ethiopian traditions , and within the framework of the ancient monarchical structure of the state . were within the framework of plans for modernization the ancient monarchical structure of the state
-Modern educational methods were more widely spread throughout the Empire , and the country embarked on a development scheme and plans for modernization , tempered by Ethiopian traditions , and within the framework of the ancient monarchical structure of the state . are traditions Ethiopian
-Modern educational methods were more widely spread throughout the Empire , and the country embarked on a development scheme and plans for modernization , tempered by Ethiopian traditions , and within the framework of the ancient monarchical structure of the state . has the state ancient monarchical structure
-Modernity has been blended without sacrificing on the traditional Buddhist ethos . has been blended without sacrificing on Modernity the traditional Buddhist ethos
-Modernity has been blended without sacrificing on the traditional Buddhist ethos . is traditional Buddhist ethos
-Modification of the river began in earnest with the arrival of the Florida East Coast Railway in Miami in 1896 . began in earnest with Modification of the river the arrival of the Florida East Coast Railway in Miami in 1896
-Modification of the river began in earnest with the arrival of the Florida East Coast Railway in Miami in 1896 . is in the Florida East Coast Railway Miami
-Moore briefly dropped Marciano in the second round , but Marciano recovered and knocked Moore down five times , knocking him out in the ninth to retain the belt . briefly dropped Moore Marciano in the second round
-Moore briefly dropped Marciano in the second round , but Marciano recovered and knocked Moore down five times , knocking him out in the ninth to retain the belt . knocked down five times Marciano Moore
-Moore briefly dropped Marciano in the second round , but Marciano recovered and knocked Moore down five times , knocking him out in the ninth to retain the belt . knocked out to retain the belt Marciano Moore in the ninth
-Moore briefly dropped Marciano in the second round , but Marciano recovered and knocked Moore down five times , knocking him out in the ninth to retain the belt . retained Marciano the belt
-Much of the station remains in the disused subway but there is no public access . remains the station in the disused subway but there is no public access
-Newhan split the season between Triple-A Round Rock , where he hit .308 . split Newhan the season between Triple-A Round Rock , where he hit .308
-No announcement from UTV was made about the decision to close the station earlier than planned . made UTV No announcement about the decision to close the station earlier than planned
-No announcement from UTV was made about the decision to close the station earlier than planned . was to close the decision the station earlier than planned
-No announcement from UTV was made about the decision to close the station earlier than planned . is UTV the station
-Noatak has a gravel public airstrip and is primarily reached by air . has Noatak a gravel public airstrip
-Noatak has a gravel public airstrip and is primarily reached by air . is primarily reached by Noatak air
-Noatak has a gravel public airstrip and is primarily reached by air . is in a gravel public airstrip Noatak
-Noatak has a gravel public airstrip and is primarily reached by air . is gravel Noatak's public airstrip
-Not everyone completely trusted Vakama 's vision - Matau was particularly frustrated at following what he considered the delusions of a `` fire-spitter '' - but with nothing else to go on they decided to track the Matoran down . completely trusted Not everyone Vakama 's vision
-Not everyone completely trusted Vakama 's vision - Matau was particularly frustrated at following what he considered the delusions of a `` fire-spitter '' - but with nothing else to go on they decided to track the Matoran down . was particularly frustrated at following Matau what he considered the delusions of a `` fire-spitter ''
-Not everyone completely trusted Vakama 's vision - Matau was particularly frustrated at following what he considered the delusions of a `` fire-spitter '' - but with nothing else to go on they decided to track the Matoran down . decided to track down they the Matoran
-Not everyone completely trusted Vakama 's vision - Matau was particularly frustrated at following what he considered the delusions of a `` fire-spitter '' - but with nothing else to go on they decided to track the Matoran down . considered Vakama 's vision Matau the delusions of a `` fire-spitter ''
-Not everyone completely trusted Vakama 's vision - Matau was particularly frustrated at following what he considered the delusions of a `` fire-spitter '' - but with nothing else to go on they decided to track the Matoran down . considered Vakama Matau a `` fire-spitter ''
-Not everyone completely trusted Vakama 's vision - Matau was particularly frustrated at following what he considered the delusions of a `` fire-spitter '' - but with nothing else to go on they decided to track the Matoran down . had they nothing else to go on
-Not everyone completely trusted Vakama 's vision - Matau was particularly frustrated at following what he considered the delusions of a `` fire-spitter '' - but with nothing else to go on they decided to track the Matoran down . had Vakama a vision
-Nothing is known for certain about his life before about 1580 , but contemporary or near-contemporary accounts suggest that he was brought up as a member of the Church of Scotland , spent some time in Argyll before leaving for the Continent , and was converted to Catholicism in Spain . is known for certain about Nothing his life before about 1580
-Nothing is known for certain about his life before about 1580 , but contemporary or near-contemporary accounts suggest that he was brought up as a member of the Church of Scotland , spent some time in Argyll before leaving for the Continent , and was converted to Catholicism in Spain . suggest that contemporary or near-contemporary accounts he was brought up as a member of the Church of Scotland
-Nothing is known for certain about his life before about 1580 , but contemporary or near-contemporary accounts suggest that he was brought up as a member of the Church of Scotland , spent some time in Argyll before leaving for the Continent , and was converted to Catholicism in Spain . suggest that contemporary or near-contemporary accounts he spent some time in Argyll before leaving for the Continent
-Nothing is known for certain about his life before about 1580 , but contemporary or near-contemporary accounts suggest that he was brought up as a member of the Church of Scotland , spent some time in Argyll before leaving for the Continent , and was converted to Catholicism in Spain . suggest that contemporary or near-contemporary accounts he was converted to Catholicism in Spain
-Obviously the epilogue was not an afterthought supplied too late for the English edition , for it is referred to in `` The Castaway '' : `` in the sequel of the narrative , it will then be seen what like abandonment befell myself . '' was not the epilogue an afterthought supplied too late for the English edition
-Obviously the epilogue was not an afterthought supplied too late for the English edition , for it is referred to in `` The Castaway '' : `` in the sequel of the narrative , it will then be seen what like abandonment befell myself . '' is referred to in the epilogue `` The Castaway ''
-Obviously the epilogue was not an afterthought supplied too late for the English edition , for it is referred to in `` The Castaway '' : `` in the sequel of the narrative , it will then be seen what like abandonment befell myself . '' is the epilogue `` in the sequel of the narrative , it will then be seen what like abandonment befell myself . ''
-Of the rest of the population , there was 1 individual who belonged to the Christian Catholic faith . belonged to 1 individual the Christian Catholic faith
-Of the rest of the population , there was 1 individual who belonged to the Christian Catholic faith . was Of 1 individual the rest of the population
-Of the rest of the population , there was 1 individual who belonged to the Christian Catholic faith . belonged to 1 individual Of the rest of the population the Christian Catholic faith
-Of the rest of the population , there was 1 individual who belonged to the Christian Catholic faith . is Christian the Catholic faith
-On 16 June 1944 , British double agent `` Garbo '' was requested by his German controllers to give information on the sites and times of V-1 impacts , with similar requests made to the other German agents in Britain , `` Brutus '' and `` Tate '' . was requested to give information on British double agent `` Garbo '' the sites of V-1 impacts On 16 June 1944
-On 16 June 1944 , British double agent `` Garbo '' was requested by his German controllers to give information on the sites and times of V-1 impacts , with similar requests made to the other German agents in Britain , `` Brutus '' and `` Tate '' . was requested to give information on British double agent `` Garbo '' the times of V-1 impacts On 16 June 1944
-On 16 June 1944 , British double agent `` Garbo '' was requested by his German controllers to give information on the sites and times of V-1 impacts , with similar requests made to the other German agents in Britain , `` Brutus '' and `` Tate '' . was requested by British double agent `` Garbo '' his German controllers On 16 June 1944
-On 16 June 1944 , British double agent `` Garbo '' was requested by his German controllers to give information on the sites and times of V-1 impacts , with similar requests made to the other German agents in Britain , `` Brutus '' and `` Tate '' . was a `` Garbo '' British double agent
-On 16 June 1944 , British double agent `` Garbo '' was requested by his German controllers to give information on the sites and times of V-1 impacts , with similar requests made to the other German agents in Britain , `` Brutus '' and `` Tate '' . had British double agent `` Garbo '' German controllers
-On 16 June 1944 , British double agent `` Garbo '' was requested by his German controllers to give information on the sites and times of V-1 impacts , with similar requests made to the other German agents in Britain , `` Brutus '' and `` Tate '' . were made to similar requests the other German agents in Britain On 16 June 1944
-On 16 June 1944 , British double agent `` Garbo '' was requested by his German controllers to give information on the sites and times of V-1 impacts , with similar requests made to the other German agents in Britain , `` Brutus '' and `` Tate '' . were made to similar requests `` Brutus '' On 16 June 1944
-On 16 June 1944 , British double agent `` Garbo '' was requested by his German controllers to give information on the sites and times of V-1 impacts , with similar requests made to the other German agents in Britain , `` Brutus '' and `` Tate '' . were made to similar requests `` Tate '' On 16 June 1944
-On 16 June 1944 , British double agent `` Garbo '' was requested by his German controllers to give information on the sites and times of V-1 impacts , with similar requests made to the other German agents in Britain , `` Brutus '' and `` Tate '' . was a German agent `` Brutus '' in Britain
-On 16 June 1944 , British double agent `` Garbo '' was requested by his German controllers to give information on the sites and times of V-1 impacts , with similar requests made to the other German agents in Britain , `` Brutus '' and `` Tate '' . was a German agent `` Tate '' in Britain
-On May 13 , 2010 , Yost was named manager of the Kansas City Royals , replacing Trey Hillman . was named manager of Yost the Kansas City Royals On May 13 , 2010
-On May 13 , 2010 , Yost was named manager of the Kansas City Royals , replacing Trey Hillman . was replacing Yost Trey Hillman On May 13 , 2010
-On May 13 , 2010 , Yost was named manager of the Kansas City Royals , replacing Trey Hillman . are in the Royals Kansas City
-On May 13 , 2010 , Yost was named manager of the Kansas City Royals , replacing Trey Hillman . was Trey Hillman a manager of the Kansas City Royals
-On May 15 , 2007 , XM suspended Opie & Anthony for 30 days , in response to a broadcast featuring a homeless man who wandered into the studio . suspended for 30 days XM Opie & Anthony On May 15 , 2007
-On May 15 , 2007 , XM suspended Opie & Anthony for 30 days , in response to a broadcast featuring a homeless man who wandered into the studio . suspended in response to XM a broadcast featuring a homeless man who wandered into the studio On May 15 , 2007
-On May 15 , 2007 , XM suspended Opie & Anthony for 30 days , in response to a broadcast featuring a homeless man who wandered into the studio . had a broadcast featuring Opie & Anthony a homeless man who wandered into the studio
-On May 15 , 2007 , XM suspended Opie & Anthony for 30 days , in response to a broadcast featuring a homeless man who wandered into the studio . wandered into a homeless man the studio
-On May 15 , 2007 , XM suspended Opie & Anthony for 30 days , in response to a broadcast featuring a homeless man who wandered into the studio . was homeless a man
-On November 2 , 2005 , Brown ended his contract early and left the federal government . ended early Brown his contract On November 2 , 2005
-On November 2 , 2005 , Brown ended his contract early and left the federal government . left Brown the federal government On November 2 , 2005
-On November 2 , 2005 , Brown ended his contract early and left the federal government . had a contract with Brown the federal government
-One candidate is a wreck at the western end of Manitoulin Island in Lake Huron , with another wreck near Escanaba , Michigan , also proposed . is One candidate a wreck at the western end of Manitoulin Island in Lake Huron
-One candidate is a wreck at the western end of Manitoulin Island in Lake Huron , with another wreck near Escanaba , Michigan , also proposed . is also proposed another wreck near Escanaba , Michigan
-One candidate is a wreck at the western end of Manitoulin Island in Lake Huron , with another wreck near Escanaba , Michigan , also proposed . is another wreck near Escanaba , Michigan
-One candidate is a wreck at the western end of Manitoulin Island in Lake Huron , with another wreck near Escanaba , Michigan , also proposed . is a wreck at the western end of Manitoulin Island in Lake Huron
-One candidate is a wreck at the western end of Manitoulin Island in Lake Huron , with another wreck near Escanaba , Michigan , also proposed . is Manitoulin Island in Lake Huron
-One candidate is a wreck at the western end of Manitoulin Island in Lake Huron , with another wreck near Escanaba , Michigan , also proposed . is Escanaba in Michigan
-One example could be `` Time '' , the fifth song from Pink Floyd 's 1973 album `` The Dark Side Of The Moon '' , which contains a reprise of `` Breathe '' , the first song of the same album . is the fifth song from `` Time '' Pink Floyd 's 1973 album `` The Dark Side Of The Moon ''
-One example could be `` Time '' , the fifth song from Pink Floyd 's 1973 album `` The Dark Side Of The Moon '' , which contains a reprise of `` Breathe '' , the first song of the same album . is the first song of `` Breathe '' the same album
-One example could be `` Time '' , the fifth song from Pink Floyd 's 1973 album `` The Dark Side Of The Moon '' , which contains a reprise of `` Breathe '' , the first song of the same album . is the first song of `` Breathe '' Pink Floyd 's 1973 album `` The Dark Side Of The Moon ''
-One example could be `` Time '' , the fifth song from Pink Floyd 's 1973 album `` The Dark Side Of The Moon '' , which contains a reprise of `` Breathe '' , the first song of the same album . is the same album Pink Floyd 's 1973 album `` The Dark Side Of The Moon ''
-One example could be `` Time '' , the fifth song from Pink Floyd 's 1973 album `` The Dark Side Of The Moon '' , which contains a reprise of `` Breathe '' , the first song of the same album . could be One example `` Time ''
-One example could be `` Time '' , the fifth song from Pink Floyd 's 1973 album `` The Dark Side Of The Moon '' , which contains a reprise of `` Breathe '' , the first song of the same album . contains a reprise of `` Time '' `` Breathe ''
-One example could be `` Time '' , the fifth song from Pink Floyd 's 1973 album `` The Dark Side Of The Moon '' , which contains a reprise of `` Breathe '' , the first song of the same album . is `` The Dark Side Of The Moon '' Pink Floyd 's 1973 album
-One example could be `` Time '' , the fifth song from Pink Floyd 's 1973 album `` The Dark Side Of The Moon '' , which contains a reprise of `` Breathe '' , the first song of the same album . has album Pink Floyd `` The Dark Side Of The Moon ''
-One example could be `` Time '' , the fifth song from Pink Floyd 's 1973 album `` The Dark Side Of The Moon '' , which contains a reprise of `` Breathe '' , the first song of the same album . Pink Floyd 's album `` The Dark Side Of The Moon '' is from 1973
-One example could be `` Time '' , the fifth song from Pink Floyd 's 1973 album `` The Dark Side Of The Moon '' , which contains a reprise of `` Breathe '' , the first song of the same album . released Pink Floyd album `` The Dark Side Of The Moon '' 1973.0
-Only Ballard and Williams are left after Sergeant Jericho and the other officers , along with the two train operators , are killed when they try to finish the fight . is left Ballard after Sergeant Jericho and the other officers are killed
-Only Ballard and Williams are left after Sergeant Jericho and the other officers , along with the two train operators , are killed when they try to finish the fight . is left Williams after Sergeant Jericho and the other officers are killed
-Only Ballard and Williams are left after Sergeant Jericho and the other officers , along with the two train operators , are killed when they try to finish the fight . is killed Sergeant Jericho when they try to finish the fight
-Only Ballard and Williams are left after Sergeant Jericho and the other officers , along with the two train operators , are killed when they try to finish the fight . are killed the other officers when they try to finish the fight
-Only Ballard and Williams are left after Sergeant Jericho and the other officers , along with the two train operators , are killed when they try to finish the fight . is killed when they try to finish the fight Sergeant Jericho
-Only Ballard and Williams are left after Sergeant Jericho and the other officers , along with the two train operators , are killed when they try to finish the fight . are killed when they try to finish the fight the other officers
-Only Ballard and Williams are left after Sergeant Jericho and the other officers , along with the two train operators , are killed when they try to finish the fight . is an officer Sergeant Jericho
-Only Ballard and Williams are left after Sergeant Jericho and the other officers , along with the two train operators , are killed when they try to finish the fight . are killed the two train operators when they try to finish the fight
-Only Ballard and Williams are left after Sergeant Jericho and the other officers , along with the two train operators , are killed when they try to finish the fight . are killed when they try to finish the fight the two train operators
-Only Ballard and Williams are left after Sergeant Jericho and the other officers , along with the two train operators , are killed when they try to finish the fight . are train operators two
-Only Ballard and Williams are left after Sergeant Jericho and the other officers , along with the two train operators , are killed when they try to finish the fight . are officers the others
-Only Ballard and Williams are left after Sergeant Jericho and the other officers , along with the two train operators , are killed when they try to finish the fight . is a Sergeant Jericho
-Only Ballard and Williams are left after Sergeant Jericho and the other officers , along with the two train operators , are killed when they try to finish the fight . tried to finish Sergeant Jericho the fight
-Only Ballard and Williams are left after Sergeant Jericho and the other officers , along with the two train operators , are killed when they try to finish the fight . tried to finish the other officers the fight
-Opponents of religious freedom sometimes referred to it as `` Rogue 's Island '' , and Cotton Mather called it `` the sewer of New England . '' called it Cotton Mather `` the sewer of New England ''
-Opponents of religious freedom sometimes referred to it as `` Rogue 's Island '' , and Cotton Mather called it `` the sewer of New England . '' sometimes referred to it as Opponents of religious freedom `` Rogue 's Island ''
-Opponents of religious freedom sometimes referred to it as `` Rogue 's Island '' , and Cotton Mather called it `` the sewer of New England . '' referred to it as Opponents of religious freedom `` Rogue 's Island '' sometimes
-Opponents of religious freedom sometimes referred to it as `` Rogue 's Island '' , and Cotton Mather called it `` the sewer of New England . '' is in the sewer New England
-Opponents of religious freedom sometimes referred to it as `` Rogue 's Island '' , and Cotton Mather called it `` the sewer of New England . '' is `` Rogue 's Island '' `` the sewer of New England ''
-Opponents of religious freedom sometimes referred to it as `` Rogue 's Island '' , and Cotton Mather called it `` the sewer of New England . '' is in `` Rogue 's Island '' New England
-Originally , Hank McCoy retains the basic features of a normal human alongside a generally simian physiology equivalent to that of a Great Ape . retains the basic features of Hank McCoy a normal human Originally
-Originally , Hank McCoy retains the basic features of a normal human alongside a generally simian physiology equivalent to that of a Great Ape . has Hank McCoy a generally simian physiology equivalent to that of a Great Ape
-Originally , Hank McCoy retains the basic features of a normal human alongside a generally simian physiology equivalent to that of a Great Ape . are alongside the basic features of a normal human a generally simian physiology equivalent to that of a Great Ape
-Originally , Hank McCoy retains the basic features of a normal human alongside a generally simian physiology equivalent to that of a Great Ape . are the basic features of a normal human a generally simian physiology equivalent to that of a Great Ape alongside
-Originally , Hank McCoy retains the basic features of a normal human alongside a generally simian physiology equivalent to that of a Great Ape . has simian physiology a Great Ape
-Other signs of lens subluxation include mild conjunctival redness , vitreous humour degeneration , prolapse of the vitreous into the anterior chamber , and an increase or decrease of anterior chamber depth . include Other signs of lens subluxation mild conjunctival redness
-Other signs of lens subluxation include mild conjunctival redness , vitreous humour degeneration , prolapse of the vitreous into the anterior chamber , and an increase or decrease of anterior chamber depth . include Other signs of lens subluxation vitreous humour degeneration
-Other signs of lens subluxation include mild conjunctival redness , vitreous humour degeneration , prolapse of the vitreous into the anterior chamber , and an increase or decrease of anterior chamber depth . include Other signs of lens subluxation prolapse of the vitreous into the anterior chamber
-Other signs of lens subluxation include mild conjunctival redness , vitreous humour degeneration , prolapse of the vitreous into the anterior chamber , and an increase or decrease of anterior chamber depth . include Other signs of lens subluxation an increase of anterior chamber depth
-Other signs of lens subluxation include mild conjunctival redness , vitreous humour degeneration , prolapse of the vitreous into the anterior chamber , and an increase or decrease of anterior chamber depth . include Other signs of lens subluxation a decrease of anterior chamber depth
-Other signs of lens subluxation include mild conjunctival redness , vitreous humour degeneration , prolapse of the vitreous into the anterior chamber , and an increase or decrease of anterior chamber depth . has lens subluxation Other signs
-Other signs of lens subluxation include mild conjunctival redness , vitreous humour degeneration , prolapse of the vitreous into the anterior chamber , and an increase or decrease of anterior chamber depth . prolapses into the vitreous the anterior chamber
-Other signs of lens subluxation include mild conjunctival redness , vitreous humour degeneration , prolapse of the vitreous into the anterior chamber , and an increase or decrease of anterior chamber depth . has depth the anterior chamber
-Pakistan Chrome Mines Ltd. is a mining company incorporated in the Islamic Republic of Pakistan . is Pakistan Chrome Mines Ltd. a mining company
-Pakistan Chrome Mines Ltd. is a mining company incorporated in the Islamic Republic of Pakistan . is incorporated in Pakistan Chrome Mines Ltd. the Islamic Republic of Pakistan
-Pakistan Chrome Mines Ltd. is a mining company incorporated in the Islamic Republic of Pakistan . is the Republic of Pakistan Islamic
-Parental investment is any expenditure of resources to benefit one offspring . is Parental investment any expenditure of resources to benefit one offspring
-Parental investment is any expenditure of resources to benefit one offspring . is to benefit an expenditure of resources one offspring
-Piffaro generally performs a concert series of four to five concerts a year in Philadelphia , in addition to touring throughout the United States , Canada , Europe and elsewhere . generally performs Piffaro a concert series in Philadelphia
-Piffaro generally performs a concert series of four to five concerts a year in Philadelphia , in addition to touring throughout the United States , Canada , Europe and elsewhere . generally performs Piffaro four to five concerts in Philadelphia a year
-Piffaro generally performs a concert series of four to five concerts a year in Philadelphia , in addition to touring throughout the United States , Canada , Europe and elsewhere . in addition will be touring throughout Piffaro the United States
-Piffaro generally performs a concert series of four to five concerts a year in Philadelphia , in addition to touring throughout the United States , Canada , Europe and elsewhere . in addition will be touring throughout Piffaro Canada
-Piffaro generally performs a concert series of four to five concerts a year in Philadelphia , in addition to touring throughout the United States , Canada , Europe and elsewhere . in addition will be touring throughout Piffaro Europe
-Piffaro generally performs a concert series of four to five concerts a year in Philadelphia , in addition to touring throughout the United States , Canada , Europe and elsewhere . in addition will be touring Piffaro elsewhere
-Plants have been planted marking parts of the foundations of the castle , so the positions of some of the buildings can still be inferred . have been planted marking Plants parts of the foundations of the castle
-Plants have been planted marking parts of the foundations of the castle , so the positions of some of the buildings can still be inferred . can still be inferred of the positions some of the buildings
-Prior to the 2012 season , the Royals signed Yost to a contract extension through the 2013 season . signed to a contract extension through the 2013 season the Royals Yost Prior to the 2012 season
-Prior to the 2012 season , the Royals signed Yost to a contract extension through the 2013 season . was signed to a contract extension Yost through the 2013 season
-Prior to the Playmaker tool , the Player could only call one of four available `` hot routes . '' could only call the Player one of four available `` hot routes '' Prior to the Playmaker tool
-Prior to the Playmaker tool , the Player could only call one of four available `` hot routes . '' is Playmaker a tool
-Prior to the Playmaker tool , the Player could only call one of four available `` hot routes . '' are available four `` hot routes ''
-Proliferative nodules are usually biopsied and are regularly but not systematically found to be benign . are usually biopsied Proliferative nodules
-Proliferative nodules are usually biopsied and are regularly but not systematically found to be benign . are regularly found to be benign Proliferative nodules
-Proliferative nodules are usually biopsied and are regularly but not systematically found to be benign . are not systematically found to be benign Proliferative nodules
-RedHat engineers identified problems with ProPolice though , and in 2005 re-implemented stack-smashing protection for inclusion in GCC 4.1 . identified problems with RedHat engineers ProPolice
-RedHat engineers identified problems with ProPolice though , and in 2005 re-implemented stack-smashing protection for inclusion in GCC 4.1 . re-implemented RedHat engineers stack-smashing protection for inclusion in GCC 4.1 in 2005
-RedHat engineers identified problems with ProPolice though , and in 2005 re-implemented stack-smashing protection for inclusion in GCC 4.1 . re-implemented RedHat engineers stack-smashing protection for inclusion in GCC 4.1
-Reptiles identified during surveys include marbled geckos on both island groups while the following are limited to the main island in the Northern group - four-toed earless skink , bull skinks and western brown snakes . include Reptiles identified during surveys marbled geckos on both island groups
-Reptiles identified during surveys include marbled geckos on both island groups while the following are limited to the main island in the Northern group - four-toed earless skink , bull skinks and western brown snakes . are marbled geckos on both island groups
-Reptiles identified during surveys include marbled geckos on both island groups while the following are limited to the main island in the Northern group - four-toed earless skink , bull skinks and western brown snakes . were identified Reptiles during surveys
-Reptiles identified during surveys include marbled geckos on both island groups while the following are limited to the main island in the Northern group - four-toed earless skink , bull skinks and western brown snakes . are limited to four-toed earless skink the main island in the Northern group
-Reptiles identified during surveys include marbled geckos on both island groups while the following are limited to the main island in the Northern group - four-toed earless skink , bull skinks and western brown snakes . are limited to bull skinks the main island in the Northern group
-Reptiles identified during surveys include marbled geckos on both island groups while the following are limited to the main island in the Northern group - four-toed earless skink , bull skinks and western brown snakes . are limited to western brown snakes the main island in the Northern group
-Reptiles identified during surveys include marbled geckos on both island groups while the following are limited to the main island in the Northern group - four-toed earless skink , bull skinks and western brown snakes . include Reptiles identified during surveys four-toed earless skink
-Reptiles identified during surveys include marbled geckos on both island groups while the following are limited to the main island in the Northern group - four-toed earless skink , bull skinks and western brown snakes . include Reptiles identified during surveys bull skinks
-Reptiles identified during surveys include marbled geckos on both island groups while the following are limited to the main island in the Northern group - four-toed earless skink , bull skinks and western brown snakes . include Reptiles identified during surveys western brown snakes
-Reptiles identified during surveys include marbled geckos on both island groups while the following are limited to the main island in the Northern group - four-toed earless skink , bull skinks and western brown snakes . are marbled geckos Reptiles
-Reptiles identified during surveys include marbled geckos on both island groups while the following are limited to the main island in the Northern group - four-toed earless skink , bull skinks and western brown snakes . are four-toed earless skink Reptiles
-Reptiles identified during surveys include marbled geckos on both island groups while the following are limited to the main island in the Northern group - four-toed earless skink , bull skinks and western brown snakes . are bull skinks Reptiles
-Reptiles identified during surveys include marbled geckos on both island groups while the following are limited to the main island in the Northern group - four-toed earless skink , bull skinks and western brown snakes . are western brown snakes Reptiles
-Results like these indicate acoustic mimicry complexes , both Batesian and Mullerian , may be widespread in the auditory world . may be Batesian and Mullerian Results widespread in the auditory world
-Results like these indicate acoustic mimicry complexes , both Batesian and Mullerian , may be widespread in the auditory world . indicate Batesian and Mullerian Results acoustic mimicry complexes in the auditory world
-Results like these indicate acoustic mimicry complexes , both Batesian and Mullerian , may be widespread in the auditory world . may be Batesian Results widespread in the auditory world
-Results like these indicate acoustic mimicry complexes , both Batesian and Mullerian , may be widespread in the auditory world . may be Mullerian Results widespread in the auditory world
-Results like these indicate acoustic mimicry complexes , both Batesian and Mullerian , may be widespread in the auditory world . may be acoustic mimicry complexes widespread in the auditory world
-Results like these indicate acoustic mimicry complexes , both Batesian and Mullerian , may be widespread in the auditory world . indicate Batesian Results acoustic mimicry complexes in the auditory world
-Results like these indicate acoustic mimicry complexes , both Batesian and Mullerian , may be widespread in the auditory world . indicate Mullerian Results acoustic mimicry complexes in the auditory world
-Returning home , Ballard delivers her report , which her superiors refuse to believe . is Returning Ballard home
-Returning home , Ballard delivers her report , which her superiors refuse to believe . refuse to believe Ballard's superiors Ballard's report
-Returning home , Ballard delivers her report , which her superiors refuse to believe . delivers Ballard her report at home
-Robert Charles `` Jack '' Russell , MBE , is a retired English international cricketer , now known for his abilities as an artist , as a cricket wicketkeeping coach , and a football goalkeeping coach . is Robert Charles `` Jack '' Russell , MBE , a retired English international cricketer
-Robert Charles `` Jack '' Russell , MBE , is a retired English international cricketer , now known for his abilities as an artist , as a cricket wicketkeeping coach , and a football goalkeeping coach . is now known for Robert Charles `` Jack '' Russell , MBE , his abilities as an artist
-Robert Charles `` Jack '' Russell , MBE , is a retired English international cricketer , now known for his abilities as an artist , as a cricket wicketkeeping coach , and a football goalkeeping coach . is now known for Robert Charles `` Jack '' Russell , MBE , his abilities as a cricket wicketkeeping coach
-Robert Charles `` Jack '' Russell , MBE , is a retired English international cricketer , now known for his abilities as an artist , as a cricket wicketkeeping coach , and a football goalkeeping coach . is now known for Robert Charles `` Jack '' Russell , MBE , his abilities as a football goalkeeping coach
-Rosen argues that one of the most important provisions of the Constitution in Exile is limitations on the interstate commerce clause , which were undermined by the Supreme Court 's `` expansive interpretation of Congress 's power to regulate interstate commerce ... extended to include any activities that might affect commerce indirectly '' during the New Deal . argues that Rosen one of the most important provisions of the Constitution in Exile is limitations on the interstate commerce clause
-San Francisco 's diversity of cultures along with its eccentricities are so great that they have greatly influenced the country and the world at large over the years . has a San Francisco diversity of cultures
-San Francisco 's diversity of cultures along with its eccentricities are so great that they have greatly influenced the country and the world at large over the years . has San Francisco eccentricities
-San Francisco 's diversity of cultures along with its eccentricities are so great that they have greatly influenced the country and the world at large over the years . has greatly influenced San Francisco the country over the years
-San Francisco 's diversity of cultures along with its eccentricities are so great that they have greatly influenced the country and the world at large over the years . has greatly influenced San Francisco the world at large over the years
-San Francisco 's diversity of cultures along with its eccentricities are so great that they have greatly influenced the country and the world at large over the years . are so great that San Francisco 's diversity of cultures along with its eccentricities they have greatly influenced the country and the world at large over the years
-Scarpetta returns to Virginia in `` Trace '' , convincing herself that she was fired from her position , at the request of her replacement , Dr. Joel Marcus . returns to Scarpetta Virginia
-Scarpetta returns to Virginia in `` Trace '' , convincing herself that she was fired from her position , at the request of her replacement , Dr. Joel Marcus . convinces herself that Scarpetta she was fired from her position
-Scarpetta returns to Virginia in `` Trace '' , convincing herself that she was fired from her position , at the request of her replacement , Dr. Joel Marcus . returns in Scarpetta `` Trace ''
-Scarpetta returns to Virginia in `` Trace '' , convincing herself that she was fired from her position , at the request of her replacement , Dr. Joel Marcus . returns at the request of Scarpetta her replacement , Dr. Joel Marcus
-Scarpetta returns to Virginia in `` Trace '' , convincing herself that she was fired from her position , at the request of her replacement , Dr. Joel Marcus . is the replacement of Dr. Joel Marcus Scarpetta
-Scarpetta returns to Virginia in `` Trace '' , convincing herself that she was fired from her position , at the request of her replacement , Dr. Joel Marcus . is Joel Marcus Dr.
-Several isomers of octene are known , depending on the position and the geometry of the double bond in the carbon chain . are known Several isomers of octene
-Several isomers of octene are known , depending on the position and the geometry of the double bond in the carbon chain . depend on known isomers of octene the position of the double bond in the carbon chain
-Several isomers of octene are known , depending on the position and the geometry of the double bond in the carbon chain . depend on known isomers of octene the geometry of the double bond in the carbon chain
-Several isomers of octene are known , depending on the position and the geometry of the double bond in the carbon chain . has Several known octene isomers
-She died in October 1915 of a heart attack . died in She October 1915
-She died in October 1915 of a heart attack . died of She a heart attack
-She provided an audio commentary for the episode on the DVD release of the show 's third series alongside David Tennant . provided She an audio commentary for the episode
-She provided an audio commentary for the episode on the DVD release of the show 's third series alongside David Tennant . provided an audio commentary for the episode alongside She David Tennant
-She provided an audio commentary for the episode on the DVD release of the show 's third series alongside David Tennant . was provided for an audio commentary the episode
-She provided an audio commentary for the episode on the DVD release of the show 's third series alongside David Tennant . was provided on an audio commentary the DVD release of the show 's third series
-She provided an audio commentary for the episode on the DVD release of the show 's third series alongside David Tennant . had a DVD release the show 's third series
-She published more than 15 research publications , including International Journals , International Conferences , National Conferences , workshops and seminars . published more than 15 She research publications
-She published more than 15 research publications , including International Journals , International Conferences , National Conferences , workshops and seminars . published research publications , including She International Journals
-She published more than 15 research publications , including International Journals , International Conferences , National Conferences , workshops and seminars . published research publications , including She International Conferences
-She published more than 15 research publications , including International Journals , International Conferences , National Conferences , workshops and seminars . published research publications , including She National Conferences
-She published more than 15 research publications , including International Journals , International Conferences , National Conferences , workshops and seminars . published research publications , including She workshops
-She published more than 15 research publications , including International Journals , International Conferences , National Conferences , workshops and seminars . published research publications , including She seminars
-She returned to that Thames River base 9 February 1931 and for the remainder of the decade served as a training ship primarily for the Submarine School at New London and occasionally for NROTC units in the southern New England area . returned to She that Thames River base 9 February 1931
-She returned to that Thames River base 9 February 1931 and for the remainder of the decade served as a training ship primarily for the Submarine School at New London and occasionally for NROTC units in the southern New England area . served as She a training ship for the remainder of the decade
-She returned to that Thames River base 9 February 1931 and for the remainder of the decade served as a training ship primarily for the Submarine School at New London and occasionally for NROTC units in the southern New England area . served primarily for She the Submarine School at New London
-She returned to that Thames River base 9 February 1931 and for the remainder of the decade served as a training ship primarily for the Submarine School at New London and occasionally for NROTC units in the southern New England area . served occasionally for She NROTC units in the southern New England area
-She returned to that Thames River base 9 February 1931 and for the remainder of the decade served as a training ship primarily for the Submarine School at New London and occasionally for NROTC units in the southern New England area . was at the Submarine School New London
-She returned to that Thames River base 9 February 1931 and for the remainder of the decade served as a training ship primarily for the Submarine School at New London and occasionally for NROTC units in the southern New England area . were in NROTC units the southern New England area
-She was ordered to be rebuilt on 9 March 1724 , and was taken in hand at Deptford Dockyard by Master Shipwright Richard Stacey . was ordered to be rebuilt on She 9 March 1724
-She was ordered to be rebuilt on 9 March 1724 , and was taken in hand at Deptford Dockyard by Master Shipwright Richard Stacey . was taken in hand at She Deptford Dockyard
-She was ordered to be rebuilt on 9 March 1724 , and was taken in hand at Deptford Dockyard by Master Shipwright Richard Stacey . was taken in hand by She Master Shipwright Richard Stacey
-She was ordered to be rebuilt on 9 March 1724 , and was taken in hand at Deptford Dockyard by Master Shipwright Richard Stacey . was Richard Stacey Master Shipwright
-Shea was born on September 5 , 1900 in San Francisco , California . was born on Shea September 5 , 1900
-Shea was born on September 5 , 1900 in San Francisco , California . was born in Shea San Francisco , California
-Shea was born on September 5 , 1900 in San Francisco , California . is in San Francisco California
-Since joining the competition in 1908 , Richmond has won ten premierships , the most recent victory being in 1980 . has won Richmond ten premierships Since joining the competition in 1908
-Since joining the competition in 1908 , Richmond has won ten premierships , the most recent victory being in 1980 . joined the competition in Richmond 1908
-Since joining the competition in 1908 , Richmond has won ten premierships , the most recent victory being in 1980 . was in the most recent victory of Richmond 1980
-Sometimes extra payments were specified by which a freed slave could liberate himself from these residual duties . were specified by which extra payments a freed slave could liberate himself from these residual duties Sometimes
-Sometimes extra payments were specified by which a freed slave could liberate himself from these residual duties . could liberate himself from a freed slave these residual duties
-Sometimes extra payments were specified by which a freed slave could liberate himself from these residual duties . were residual these duties
-Sometimes extra payments were specified by which a freed slave could liberate himself from these residual duties . were extra specified payments
-Sometimes extra payments were specified by which a freed slave could liberate himself from these residual duties . was freed a slave
-Specifically , knowledge and interest in the event affects the level of personal importance for the individual , which also affects the individual 's level of emotional arousal . Specifically affects knowledge in the event the level of personal importance for the individual
-Specifically , knowledge and interest in the event affects the level of personal importance for the individual , which also affects the individual 's level of emotional arousal . Specifically affects interest in the event the level of personal importance for the individual
-Specifically , knowledge and interest in the event affects the level of personal importance for the individual , which also affects the individual 's level of emotional arousal . also affects knowledge in the event the individual 's level of emotional arousal
-Specifically , knowledge and interest in the event affects the level of personal importance for the individual , which also affects the individual 's level of emotional arousal . also affects interest in the event the individual 's level of emotional arousal
-Spennymoor Town F.C. are the main local football team and won the FA Carlsberg Vase , after winning 2-1 in the final at Wembley Stadium against Tunbridge Wells in May 2013 . are the main Spennymoor Town F.C. football team local
-Spennymoor Town F.C. are the main local football team and won the FA Carlsberg Vase , after winning 2-1 in the final at Wembley Stadium against Tunbridge Wells in May 2013 . won Spennymoor Town F.C. the FA Carlsberg Vase after winning 2-1 in the final at Wembley Stadium against Tunbridge Wells in May 2013
-Spennymoor Town F.C. are the main local football team and won the FA Carlsberg Vase , after winning 2-1 in the final at Wembley Stadium against Tunbridge Wells in May 2013 . won 2-1 in Spennymoor Town F.C. the final against Tunbridge Wells at Wembley Stadium in May 2013
-Spennymoor Town F.C. are the main local football team and won the FA Carlsberg Vase , after winning 2-1 in the final at Wembley Stadium against Tunbridge Wells in May 2013 . was against the final Tunbridge Wells at Wembley Stadium in May 2013
-Sukhum functioned as the capital of the `` Union treaty '' Abkhaz Soviet Socialist Republic associated with the Georgian SSR from 1921 until 1931 , when it became the capital of the Abkhazian Autonomous Soviet Socialist Republic within the Georgian SSR . functioned as Sukhum the capital of the `` Union treaty '' Abkhaz Soviet Socialist Republic associated with the Georgian SSR from 1921
-Sukhum functioned as the capital of the `` Union treaty '' Abkhaz Soviet Socialist Republic associated with the Georgian SSR from 1921 until 1931 , when it became the capital of the Abkhazian Autonomous Soviet Socialist Republic within the Georgian SSR . was in the capital of the `` Union treaty '' Sukhum
-Sukhum functioned as the capital of the `` Union treaty '' Abkhaz Soviet Socialist Republic associated with the Georgian SSR from 1921 until 1931 , when it became the capital of the Abkhazian Autonomous Soviet Socialist Republic within the Georgian SSR . became Sukhum the capital of the Abkhazian Autonomous Soviet Socialist Republic within the Georgian SSR
-Superboy-Prime , seeing an opportunity to defeat the now-weakened Anti-Monitor , flew through the Anti-Monitor 's chest and hurled his shattered body into space . flew through Superboy-Prime the Anti-Monitor 's chest
-Superboy-Prime , seeing an opportunity to defeat the now-weakened Anti-Monitor , flew through the Anti-Monitor 's chest and hurled his shattered body into space . hurled Superboy-Prime Anti-Monitor 's shattered body into space
-Superboy-Prime , seeing an opportunity to defeat the now-weakened Anti-Monitor , flew through the Anti-Monitor 's chest and hurled his shattered body into space . had the Anti-Monitor a shattered body
-Superboy-Prime , seeing an opportunity to defeat the now-weakened Anti-Monitor , flew through the Anti-Monitor 's chest and hurled his shattered body into space . was seeing an opportunity to defeat Superboy-Prime the now-weakened Anti-Monitor
-Superboy-Prime , seeing an opportunity to defeat the now-weakened Anti-Monitor , flew through the Anti-Monitor 's chest and hurled his shattered body into space . was weakened the Anti-Monitor now
-Swinburne moves in his writing program from the philosophical to the theological , building his case rigorously . moves from Swinburne the philosophical in his writing program
-Swinburne moves in his writing program from the philosophical to the theological , building his case rigorously . moves to Swinburne the theological in his writing program
-Swinburne moves in his writing program from the philosophical to the theological , building his case rigorously . is building rigorously Swinburne his case
-Team Racing is a NASCAR Craftsman Truck Series team . is Team Racing a NASCAR Craftsman Truck Series team
-That same year saw an outbreak of plague in Venice , one that lasted two years and caused Franco to leave the city and to lose many of her possessions . had Venice an outbreak of plague That same year
-That same year saw an outbreak of plague in Venice , one that lasted two years and caused Franco to leave the city and to lose many of her possessions . lasted an outbreak of plague two years in Venice
-That same year saw an outbreak of plague in Venice , one that lasted two years and caused Franco to leave the city and to lose many of her possessions . caused Franco to leave an outbreak of plague the city
-That same year saw an outbreak of plague in Venice , one that lasted two years and caused Franco to leave the city and to lose many of her possessions . caused Franco to leave an outbreak of plague Venice
-That same year saw an outbreak of plague in Venice , one that lasted two years and caused Franco to leave the city and to lose many of her possessions . caused Franco to lose an outbreak of plague many of her possessions
-The 2nd Battalion of the 13th Light Infantry was raised at Winchester in January 1858 . was raised The 2nd Battalion of the 13th Light Infantry at Winchester in January 1858
-The 2nd Battalion of the 13th Light Infantry was raised at Winchester in January 1858 . was of the 13th Light Infantry The 2nd Battalion
-The Acrolepiidae family of moths are also known as False Diamondback moths . are also known as The Acrolepiidae family of moths False Diamondback moths
-The Acrolepiidae family of moths are also known as False Diamondback moths . are False Diamondback moths
-The Acrolepiidae family of moths are also known as False Diamondback moths . are a family of The Acrolepiidae moths
-The Alarm are an alternative rock/new wave band that formed in Rhyl , North Wales , in 1981 . are The Alarm an alternative rock/new wave band
-The Alarm are an alternative rock/new wave band that formed in Rhyl , North Wales , in 1981 . formed The Alarm in Rhyl , North Wales in 1981
-The Alarm are an alternative rock/new wave band that formed in Rhyl , North Wales , in 1981 . is in Rhyl North Wales
-The Alarm are an alternative rock/new wave band that formed in Rhyl , North Wales , in 1981 . formed an alternative rock/new wave band in Rhyl , North Wales in 1981
-The Bourbons built additional reception rooms and reconstructed the Sala d'Ercole , named for its frescos depicted the mythological hero , Hercules . built The Bourbons additional reception rooms
-The Bourbons built additional reception rooms and reconstructed the Sala d'Ercole , named for its frescos depicted the mythological hero , Hercules . reconstructed The Bourbons the Sala d'Ercole
-The Bourbons built additional reception rooms and reconstructed the Sala d'Ercole , named for its frescos depicted the mythological hero , Hercules . was named for the Sala d'Ercole its frescos depicting the mythological hero , Hercules
-The Bourbons built additional reception rooms and reconstructed the Sala d'Ercole , named for its frescos depicted the mythological hero , Hercules . depicted its frescos the mythological hero , Hercules
-The Bourbons built additional reception rooms and reconstructed the Sala d'Ercole , named for its frescos depicted the mythological hero , Hercules . was Hercules a mythological hero
-The Bureau of Alcohol , Tobacco , Firearms and Explosives , formed in 1886 , is a federal law enforcement organization within the United States Department of Justice . formed The Bureau of Alcohol , Tobacco , Firearms and Explosives in 1886
-The Bureau of Alcohol , Tobacco , Firearms and Explosives , formed in 1886 , is a federal law enforcement organization within the United States Department of Justice . is The Bureau of Alcohol , Tobacco , Firearms and Explosives a federal law enforcement organization
-The Bureau of Alcohol , Tobacco , Firearms and Explosives , formed in 1886 , is a federal law enforcement organization within the United States Department of Justice . is within The Bureau of Alcohol , Tobacco , Firearms and Explosives the United States Department of Justice
-The CRZ was organized by the Nepal and Indian members of the Naxalite movement , in a meeting at Siliguri in the Indian State of West Bengal during August 2001 . was organized by The CRZ the Nepal members of the Naxalite movement
-The CRZ was organized by the Nepal and Indian members of the Naxalite movement , in a meeting at Siliguri in the Indian State of West Bengal during August 2001 . was organized by The CRZ the Indian members of the Naxalite movement
-The CRZ was organized by the Nepal and Indian members of the Naxalite movement , in a meeting at Siliguri in the Indian State of West Bengal during August 2001 . has the Naxalite movement Nepal members
-The CRZ was organized by the Nepal and Indian members of the Naxalite movement , in a meeting at Siliguri in the Indian State of West Bengal during August 2001 . has the Naxalite movement Indian members
-The CRZ was organized by the Nepal and Indian members of the Naxalite movement , in a meeting at Siliguri in the Indian State of West Bengal during August 2001 . was organized in The CRZ a meeting at Siliguri in the Indian State of West Bengal during August 2001
-The CRZ was organized by the Nepal and Indian members of the Naxalite movement , in a meeting at Siliguri in the Indian State of West Bengal during August 2001 . was at a meeting Siliguri in the Indian State of West Bengal during August 2001
-The CRZ was organized by the Nepal and Indian members of the Naxalite movement , in a meeting at Siliguri in the Indian State of West Bengal during August 2001 . is in Siliguri the Indian State of West Bengal
-The CRZ was organized by the Nepal and Indian members of the Naxalite movement , in a meeting at Siliguri in the Indian State of West Bengal during August 2001 . is West Bengal an Indian State
-The CRZ was organized by the Nepal and Indian members of the Naxalite movement , in a meeting at Siliguri in the Indian State of West Bengal during August 2001 . is a State in West Bengal India
-The Charles City equipment was transferred to Mason City to replace equipment burned in the November 24 , 1967 shop fire . was transferred to The Charles City equipment Mason City
-The Charles City equipment was transferred to Mason City to replace equipment burned in the November 24 , 1967 shop fire . was to replace The Charles City equipment equipment burned in the November 24 , 1967 shop fire
-The Charles City equipment was transferred to Mason City to replace equipment burned in the November 24 , 1967 shop fire . burned in equipment the shop fire November 24 , 1967
-The Hamburg Concathedral with chapterhouse and capitular residential courts formed a `` Cathedral Immunity District '' of the Prince-Archbishopric of Bremen too . formed The Hamburg Concathedral with chapterhouse and capitular residential courts a `` Cathedral Immunity District '' of the Prince-Archbishopric of Bremen
-The Hamburg Concathedral with chapterhouse and capitular residential courts formed a `` Cathedral Immunity District '' of the Prince-Archbishopric of Bremen too . was with The Hamburg Concathedral chapterhouse
-The Hamburg Concathedral with chapterhouse and capitular residential courts formed a `` Cathedral Immunity District '' of the Prince-Archbishopric of Bremen too . was with The Hamburg Concathedral capitular residential courts
-The Hamburg Concathedral with chapterhouse and capitular residential courts formed a `` Cathedral Immunity District '' of the Prince-Archbishopric of Bremen too . was of a `` Cathedral Immunity District '' the Prince-Archbishopric of Bremen
-The Hamburg Concathedral with chapterhouse and capitular residential courts formed a `` Cathedral Immunity District '' of the Prince-Archbishopric of Bremen too . was of the Prince-Archbishopric Bremen
-The Hamburg Concathedral with chapterhouse and capitular residential courts formed a `` Cathedral Immunity District '' of the Prince-Archbishopric of Bremen too . was in The Concathedral Hamburg
-The Main Street Tunnel , located in Welland , Ontario , Canada , is an underwater tunnel , carrying Niagara Road 27 and the unsigned designation of Highway 7146 under the Welland Canal . is located in The Main Street Tunnel Welland , Ontario , Canada
-The Main Street Tunnel , located in Welland , Ontario , Canada , is an underwater tunnel , carrying Niagara Road 27 and the unsigned designation of Highway 7146 under the Welland Canal . is in Welland Ontario , Canada
-The Main Street Tunnel , located in Welland , Ontario , Canada , is an underwater tunnel , carrying Niagara Road 27 and the unsigned designation of Highway 7146 under the Welland Canal . is in Ontario Canada
-The Main Street Tunnel , located in Welland , Ontario , Canada , is an underwater tunnel , carrying Niagara Road 27 and the unsigned designation of Highway 7146 under the Welland Canal . is The Main Street Tunnel an underwater tunnel
-The Main Street Tunnel , located in Welland , Ontario , Canada , is an underwater tunnel , carrying Niagara Road 27 and the unsigned designation of Highway 7146 under the Welland Canal . is carrying The Main Street Tunnel Niagara Road 27 under the Welland Canal
-The Main Street Tunnel , located in Welland , Ontario , Canada , is an underwater tunnel , carrying Niagara Road 27 and the unsigned designation of Highway 7146 under the Welland Canal . is carrying The Main Street Tunnel the unsigned designation of Highway 7146 under the Welland Canal
-The Main Street Tunnel , located in Welland , Ontario , Canada , is an underwater tunnel , carrying Niagara Road 27 and the unsigned designation of Highway 7146 under the Welland Canal . has Highway 7146 an unsigned designation
-The Nadvorna dynasty is notable inasmuch as many of its descendants become rebbes . is notable The Nadvorna dynasty
-The Nadvorna dynasty is notable inasmuch as many of its descendants become rebbes . become many of The Nadvorna dynasty's descendants rebbes
-The Nadvorna dynasty is notable inasmuch as many of its descendants become rebbes . is a Nadvorna dynasty
-The Nadvorna dynasty is notable inasmuch as many of its descendants become rebbes . has Nadvorna dynasty descendants
-The PAC bulletins were widely distributed at these meetings . were widely distributed The PAC bulletins at these meetings
-The Persian contingent that was supposed to guard the defile soon abandoned it , and Alexander passed through without any problems . passed through without any problems Alexander the defile
-The Persian contingent that was supposed to guard the defile soon abandoned it , and Alexander passed through without any problems . was supposed to guard The Persian contingent the defile
-The Persian contingent that was supposed to guard the defile soon abandoned it , and Alexander passed through without any problems . abandoned The Persian contingent the defile soon
-The Persian contingent that was supposed to guard the defile soon abandoned it , and Alexander passed through without any problems . is The contingent Persian
-The Rev. William Alfred Quayle was honored by his alma mater , Baker University , with the degrees Litt.D . was honored by The Rev. William Alfred Quayle his alma mater , Baker University
-The Rev. William Alfred Quayle was honored by his alma mater , Baker University , with the degrees Litt.D . was honored with The Rev. William Alfred Quayle the degrees Litt.D
-The Rev. William Alfred Quayle was honored by his alma mater , Baker University , with the degrees Litt.D . is William Alfred Quayle The Rev.
-The Rev. William Alfred Quayle was honored by his alma mater , Baker University , with the degrees Litt.D . is William Alfred Quayle's alma mater Baker University
-The River Stour Trust , formed in 1968 , has its headquarters in Sudbury , and a purpose built Visitor Centre located at Cornard Lock . was formed The River Stour Trust in 1968
-The River Stour Trust , formed in 1968 , has its headquarters in Sudbury , and a purpose built Visitor Centre located at Cornard Lock . has The River Stour Trust headquarters in Sudbury
-The River Stour Trust , formed in 1968 , has its headquarters in Sudbury , and a purpose built Visitor Centre located at Cornard Lock . has The River Stour Trust a purpose built Visitor Centre located at Cornard Lock
-The River Stour Trust , formed in 1968 , has its headquarters in Sudbury , and a purpose built Visitor Centre located at Cornard Lock . is purpose built The River Stour Trust Visitor Centre
-The SAS killed a total of 14 Provisional Irish Republican Army and Irish National Liberation Army members at these locations . killed The SAS Provisional Irish Republican Army members at these locations
-The SAS killed a total of 14 Provisional Irish Republican Army and Irish National Liberation Army members at these locations . killed The SAS Irish National Liberation Army members at these locations
-The SAS killed a total of 14 Provisional Irish Republican Army and Irish National Liberation Army members at these locations . killed The SAS a total of 14 at these locations
-The Steinbrenner family added a monument to Monument Park on September 20 , 2010 to honor Steinbrenner . added The Steinbrenner family a monument to honor Steinbrenner Monument Park on September 20 , 2010
-The Steinbrenner family added a monument to Monument Park on September 20 , 2010 to honor Steinbrenner . was to honor a monument added to Monument Park Steinbrenner
-The Summer Programs Office runs these programs , and many Wardlaw-Hartridge Students attend camp or classes over the summer . runs The Summer Programs Office these programs
-The Summer Programs Office runs these programs , and many Wardlaw-Hartridge Students attend camp or classes over the summer . attend many Wardlaw-Hartridge Students camp over the summer
-The Summer Programs Office runs these programs , and many Wardlaw-Hartridge Students attend camp or classes over the summer . attend many Wardlaw-Hartridge Students classes over the summer
-The Triple-A Baseball National Championship Game was established in 2006 . was established The Triple-A Baseball National Championship Game in 2006
-The Venezuelan government required that all private television stations dedicate at least 25 % of their airtime to programs created by community groups , non-profits , and other independent producers . required that all private television stations dedicate at least 25 of their airtime to The Venezuelan government programs created by community groups , non-profits , and other independent producers
-The Venezuelan government required that all private television stations dedicate at least 25 % of their airtime to programs created by community groups , non-profits , and other independent producers . is in The government Venezuela
-The Venezuelan government required that all private television stations dedicate at least 25 % of their airtime to programs created by community groups , non-profits , and other independent producers . are required to dedicate airtime to all private television stations programs created by community groups
-The Venezuelan government required that all private television stations dedicate at least 25 % of their airtime to programs created by community groups , non-profits , and other independent producers . are required to dedicate airtime to all private television stations programs created by non-profits
-The Venezuelan government required that all private television stations dedicate at least 25 % of their airtime to programs created by community groups , non-profits , and other independent producers . are required to dedicate airtime all private television stations programs created by other independent producers
-The Venezuelan government required that all private television stations dedicate at least 25 % of their airtime to programs created by community groups , non-profits , and other independent producers . are created by programs community groups
-The Venezuelan government required that all private television stations dedicate at least 25 % of their airtime to programs created by community groups , non-profits , and other independent producers . are created by programs non-profits
-The Venezuelan government required that all private television stations dedicate at least 25 % of their airtime to programs created by community groups , non-profits , and other independent producers . are created by programs other independent producers
-The Venezuelan government required that all private television stations dedicate at least 25 % of their airtime to programs created by community groups , non-profits , and other independent producers . are community groups independent producers
-The Venezuelan government required that all private television stations dedicate at least 25 % of their airtime to programs created by community groups , non-profits , and other independent producers . are non-profits independent producers
-The Venezuelan government required that all private television stations dedicate at least 25 % of their airtime to programs created by community groups , non-profits , and other independent producers . are television stations private
-The Venezuelan government required that all private television stations dedicate at least 25 % of their airtime to programs created by community groups , non-profits , and other independent producers . have private television stations airtime
-The Wilbur Cross Highway formerly ended in Sturbridge ; locals sometimes call Haynes Street and portions of Mashapaug Road `` Old Route 15 '' . ended The Wilbur Cross Highway in Sturbridge formerly
-The Wilbur Cross Highway formerly ended in Sturbridge ; locals sometimes call Haynes Street and portions of Mashapaug Road `` Old Route 15 '' . sometimes call Haynes Street locals `` Old Route 15 ''
-The Wilbur Cross Highway formerly ended in Sturbridge ; locals sometimes call Haynes Street and portions of Mashapaug Road `` Old Route 15 '' . sometimes call portions of Mashapaug Road locals `` Old Route 15 ''
-The `` Charleston Courier , '' founded in 1803 , and `` Charleston Daily News , '' founded in 1865 , merged to form the `` News and Courier '' in 1873 . was founded The `` Charleston Courier '' in 1803
-The `` Charleston Courier , '' founded in 1803 , and `` Charleston Daily News , '' founded in 1865 , merged to form the `` News and Courier '' in 1873 . was founded The `` Charleston Daily News '' in 1865
-The `` Charleston Courier , '' founded in 1803 , and `` Charleston Daily News , '' founded in 1865 , merged to form the `` News and Courier '' in 1873 . merged to form The `` Charleston Courier '' and `` Charleston Daily News '' the `` News and Courier '' in 1873
-The album , produced by Roy Thomas Baker , was promoted with American and European tours . was produced by The album Roy Thomas Baker
-The album , produced by Roy Thomas Baker , was promoted with American and European tours . was promoted with The album tours in America
-The album , produced by Roy Thomas Baker , was promoted with American and European tours . was promoted with The album tours in Europe
-The band also confirmed that the album would be self-released . also confirmed that The band the album would be self-released
-The band also confirmed that the album would be self-released . would be the album self-released
-The canal was dammed off from the river for most of the construction period . was dammed off from The canal the river for most of the construction period
-The car used in `` Stealth '' was a band member 's car , and recorded just outside the studio in the parking lot . was The car used in `` Stealth '' a band member 's car
-The car used in `` Stealth '' was a band member 's car , and recorded just outside the studio in the parking lot . was recorded The car used in `` Stealth '' just outside the studio in the parking lot
-The car used in `` Stealth '' was a band member 's car , and recorded just outside the studio in the parking lot . was used in The car `` Stealth ''
-The car used in `` Stealth '' was a band member 's car , and recorded just outside the studio in the parking lot . had a band member a car
-The city was founded by the Western Town Lot Company in 1880 , and originally named Nordland , with the platted streets given Norwegian names . was founded by The city the Western Town Lot Company in 1880
-The city was founded by the Western Town Lot Company in 1880 , and originally named Nordland , with the platted streets given Norwegian names . was originally named The city founded by the Western Town Lot Company in 1880 Nordland
-The city was founded by the Western Town Lot Company in 1880 , and originally named Nordland , with the platted streets given Norwegian names . were given the platted streets of The city originally named Nordland Norwegian names
-The city was founded by the Western Town Lot Company in 1880 , and originally named Nordland , with the platted streets given Norwegian names . were the names of the platted streets Norwegian
-The closest Watson ever got was when Republicans had 12 seats in the State House in 2003 . had Republicans 12 seats in the State House in 2003
-The closest Watson ever got was when Republicans had 12 seats in the State House in 2003 . was when Republicans had 12 seats in the State House The closest Watson ever got in 2003
-The community is served by the United States Postal Service Hinsdale Post Office . is served by The community the United States Postal Service Hinsdale Post Office
-The community is served by the United States Postal Service Hinsdale Post Office . has the United States Postal Service Post Office in Hinsdale
-The dialects they speak are similar but have different intonations . The dialects they speak are similar but have different intonations
-The dialects they speak are similar but have different intonations . The dialects they speak are similar but have different intonations
-The diocese was originally erected as the Prefecture Apostolic of Hpyeng-yang on 17 March 1927 , and renamed as the Prefecture Apostolic of Peng-yang on 17 March 1929 . was originally erected as The diocese the Prefecture Apostolic of Hpyeng-yang on 17 March 1927
-The diocese was originally erected as the Prefecture Apostolic of Hpyeng-yang on 17 March 1927 , and renamed as the Prefecture Apostolic of Peng-yang on 17 March 1929 . was renamed as The Prefecture Apostolic of Hpyeng-yang the Prefecture Apostolic of Peng-yang on 17 March 1929
-The economy of Ostrov is based on food , electronic , and textile industries . is based on The economy of Ostrov food industries
-The economy of Ostrov is based on food , electronic , and textile industries . is based on The economy of Ostrov electronic industries
-The economy of Ostrov is based on food , electronic , and textile industries . is based on The economy of Ostrov textile industries
-The engine had twin turbochargers , and produced an advertised at 5700 rpm and of torque on 8 lbs of boost . had The engine twin turbochargers
-The engine had twin turbochargers , and produced an advertised at 5700 rpm and of torque on 8 lbs of boost . produced The engine an advertised 5700 rpm of torque
-The engine had twin turbochargers , and produced an advertised at 5700 rpm and of torque on 8 lbs of boost . produced an advertised 5700 rpm of torque on The engine 8 lbs of boost
-The ensemble also has extensive recordings with Deutsche Grammophon , Dorian Recordings , Newport Classic , Navona Records , and under their own label . also has extensive recordings with The ensemble Deutsche Grammophon
-The ensemble also has extensive recordings with Deutsche Grammophon , Dorian Recordings , Newport Classic , Navona Records , and under their own label . also has extensive recordings with The ensemble Dorian Recordings
-The ensemble also has extensive recordings with Deutsche Grammophon , Dorian Recordings , Newport Classic , Navona Records , and under their own label . also has extensive recordings with The ensemble Newport Classic
-The ensemble also has extensive recordings with Deutsche Grammophon , Dorian Recordings , Newport Classic , Navona Records , and under their own label . also has extensive recordings with The ensemble Navona Records
-The ensemble also has extensive recordings with Deutsche Grammophon , Dorian Recordings , Newport Classic , Navona Records , and under their own label . also has extensive recordings with The ensemble their own label
-The establishment of a museum had first been planned in 1821 by the Philosophical Society of Australasia , and although specimens were collected , the Society folded in 1822 . had first been planned in The establishment of a museum 1821
-The establishment of a museum had first been planned in 1821 by the Philosophical Society of Australasia , and although specimens were collected , the Society folded in 1822 . had first been planned by The establishment of a museum the Philosophical Society of Australasia in 1821
-The establishment of a museum had first been planned in 1821 by the Philosophical Society of Australasia , and although specimens were collected , the Society folded in 1822 . folded the Philosophical Society of Australasia in 1822
-The establishment of a museum had first been planned in 1821 by the Philosophical Society of Australasia , and although specimens were collected , the Society folded in 1822 . is in the Philosophical Society Australasia
-The establishment of a museum had first been planned in 1821 by the Philosophical Society of Australasia , and although specimens were collected , the Society folded in 1822 . were collected specimens
-The establishment of a museum had first been planned in 1821 by the Philosophical Society of Australasia , and although specimens were collected , the Society folded in 1822 . although specimens were collected the Philosophical Society of Australasia folded in 1822
-The extension of the University Library can be found on the second floor , and parking for 120 cars on the third to sixth floors . can be found The extension of the University Library on the second floor
-The extension of the University Library can be found on the second floor , and parking for 120 cars on the third to sixth floors . can be found parking for 120 cars on the third to sixth floors
-The external gauge is usually readable directly , and most also incorporate an electronic sender to operate a fuel gauge on the dashboard . is usually readable directly The external gauge
-The external gauge is usually readable directly , and most also incorporate an electronic sender to operate a fuel gauge on the dashboard . also incorporate an electronic sender to operate most external gauges a fuel gauge on the dashboard
-The external gauge is usually readable directly , and most also incorporate an electronic sender to operate a fuel gauge on the dashboard . is on a fuel gauge the dashboard
-The failure of 1st Armored to arrive intact and deploy as a single entity would have important consequences in later action against German forces in Tunisia . would have important consequences in The failure of 1st Armored to arrive intact and deploy as a single entity later action against German forces in Tunisia
-The failure of 1st Armored to arrive intact and deploy as a single entity would have important consequences in later action against German forces in Tunisia . failed to arrive intact 1st Armored
-The failure of 1st Armored to arrive intact and deploy as a single entity would have important consequences in later action against German forces in Tunisia . failed to deploy as a single entity 1st Armored
-The failure of 1st Armored to arrive intact and deploy as a single entity would have important consequences in later action against German forces in Tunisia . was against action German forces in Tunisia
-The failure of 1st Armored to arrive intact and deploy as a single entity would have important consequences in later action against German forces in Tunisia . were in German forces Tunisia
-The field at the Lake Elsinore Diamond is named the Pete Lehr Field . is at The field the Lake Elsinore Diamond
-The field at the Lake Elsinore Diamond is named the Pete Lehr Field . is named The field at the Lake Elsinore Diamond the Pete Lehr Field
-The first comes from when Sweden 's Royal Couple lived there during the 1992 Barcelona Summer Olympics . lived Sweden 's Royal Couple there during the 1992 Barcelona Summer Olympics
-The first comes from when Sweden 's Royal Couple lived there during the 1992 Barcelona Summer Olympics . comes from when The first Sweden 's Royal Couple lived there during the 1992 Barcelona Summer Olympics
-The first comes from when Sweden 's Royal Couple lived there during the 1992 Barcelona Summer Olympics . was in the Barcelona Summer Olympics 1992
-The first comes from when Sweden 's Royal Couple lived there during the 1992 Barcelona Summer Olympics . was in the 1992 Summer Olympics Barcelona
-The first comes from when Sweden 's Royal Couple lived there during the 1992 Barcelona Summer Olympics . are of the Royal Couple Sweden
-The first comes from when Sweden 's Royal Couple lived there during the 1992 Barcelona Summer Olympics . has Sweden a Royal Couple
-The first five laps would be added to the second part of the race and the overall result would be decided on aggregate . would be added to The first five laps the second part of the race
-The first five laps would be added to the second part of the race and the overall result would be decided on aggregate . would be decided the overall result on aggregate
-The first library in Huntington Beach opened in 1909 and has since evolved to a five location library system : Central , Main Street , Oak View , Helen Murphy , and Banning . opened The first library in Huntington Beach in 1909
-The first library in Huntington Beach opened in 1909 and has since evolved to a five location library system : Central , Main Street , Oak View , Helen Murphy , and Banning . has evolved to The first library a five location library system in Huntington Beach since 1909
-The first library in Huntington Beach opened in 1909 and has since evolved to a five location library system : Central , Main Street , Oak View , Helen Murphy , and Banning . has a location the library system on Central
-The first library in Huntington Beach opened in 1909 and has since evolved to a five location library system : Central , Main Street , Oak View , Helen Murphy , and Banning . has a location the library system on Main Street
-The first library in Huntington Beach opened in 1909 and has since evolved to a five location library system : Central , Main Street , Oak View , Helen Murphy , and Banning . has a location the library system on Helen Murphy
-The first library in Huntington Beach opened in 1909 and has since evolved to a five location library system : Central , Main Street , Oak View , Helen Murphy , and Banning . has a location the library system on Banning
-The first library in Huntington Beach opened in 1909 and has since evolved to a five location library system : Central , Main Street , Oak View , Helen Murphy , and Banning . is in Central Huntington Beach
-The first library in Huntington Beach opened in 1909 and has since evolved to a five location library system : Central , Main Street , Oak View , Helen Murphy , and Banning . is in Main Street Huntington Beach
-The first library in Huntington Beach opened in 1909 and has since evolved to a five location library system : Central , Main Street , Oak View , Helen Murphy , and Banning . is in Oak View Huntington Beach
-The first library in Huntington Beach opened in 1909 and has since evolved to a five location library system : Central , Main Street , Oak View , Helen Murphy , and Banning . is in Helen Murphy Huntington Beach
-The first library in Huntington Beach opened in 1909 and has since evolved to a five location library system : Central , Main Street , Oak View , Helen Murphy , and Banning . is in Banning Huntington Beach
-The following tour featured extensive dates in East Asia , where the group played Tokyo , Osaka , Fukuoka , and Southeast Asia including Jakarta , Manila as well as Singapore and Guam . featured The following tour extensive dates in East Asia
-The following tour featured extensive dates in East Asia , where the group played Tokyo , Osaka , Fukuoka , and Southeast Asia including Jakarta , Manila as well as Singapore and Guam . played the group Tokyo
-The following tour featured extensive dates in East Asia , where the group played Tokyo , Osaka , Fukuoka , and Southeast Asia including Jakarta , Manila as well as Singapore and Guam . played the group Osaka
-The following tour featured extensive dates in East Asia , where the group played Tokyo , Osaka , Fukuoka , and Southeast Asia including Jakarta , Manila as well as Singapore and Guam . played the group Fukuoka
-The following tour featured extensive dates in East Asia , where the group played Tokyo , Osaka , Fukuoka , and Southeast Asia including Jakarta , Manila as well as Singapore and Guam . is in Tokyo Southeast Asia
-The following tour featured extensive dates in East Asia , where the group played Tokyo , Osaka , Fukuoka , and Southeast Asia including Jakarta , Manila as well as Singapore and Guam . is in Osaka Southeast Asia
-The following tour featured extensive dates in East Asia , where the group played Tokyo , Osaka , Fukuoka , and Southeast Asia including Jakarta , Manila as well as Singapore and Guam . is in Fukuoka Southeast Asia
-The following tour featured extensive dates in East Asia , where the group played Tokyo , Osaka , Fukuoka , and Southeast Asia including Jakarta , Manila as well as Singapore and Guam . featured The following tour extensive dates in Southeast Asia
-The following tour featured extensive dates in East Asia , where the group played Tokyo , Osaka , Fukuoka , and Southeast Asia including Jakarta , Manila as well as Singapore and Guam . played the group Jakarta
-The following tour featured extensive dates in East Asia , where the group played Tokyo , Osaka , Fukuoka , and Southeast Asia including Jakarta , Manila as well as Singapore and Guam . played the group Manila
-The following tour featured extensive dates in East Asia , where the group played Tokyo , Osaka , Fukuoka , and Southeast Asia including Jakarta , Manila as well as Singapore and Guam . played the group Singapore
-The following tour featured extensive dates in East Asia , where the group played Tokyo , Osaka , Fukuoka , and Southeast Asia including Jakarta , Manila as well as Singapore and Guam . played the group Guam
-The following tour featured extensive dates in East Asia , where the group played Tokyo , Osaka , Fukuoka , and Southeast Asia including Jakarta , Manila as well as Singapore and Guam . is in Guam Southeast Asia
-The following tour featured extensive dates in East Asia , where the group played Tokyo , Osaka , Fukuoka , and Southeast Asia including Jakarta , Manila as well as Singapore and Guam . is in Singapore Southeast Asia
-The following tour featured extensive dates in East Asia , where the group played Tokyo , Osaka , Fukuoka , and Southeast Asia including Jakarta , Manila as well as Singapore and Guam . is in Jakarta Southeast Asia
-The following tour featured extensive dates in East Asia , where the group played Tokyo , Osaka , Fukuoka , and Southeast Asia including Jakarta , Manila as well as Singapore and Guam . is in Manila Southeast Asia
-The following tour featured extensive dates in East Asia , where the group played Tokyo , Osaka , Fukuoka , and Southeast Asia including Jakarta , Manila as well as Singapore and Guam . featured The following tour extensive dates including Jakarta in Southeast Asia
-The following tour featured extensive dates in East Asia , where the group played Tokyo , Osaka , Fukuoka , and Southeast Asia including Jakarta , Manila as well as Singapore and Guam . featured The following tour extensive dates including Manila in Southeast Asia
-The following tour featured extensive dates in East Asia , where the group played Tokyo , Osaka , Fukuoka , and Southeast Asia including Jakarta , Manila as well as Singapore and Guam . featured The following tour extensive dates including Singapore in Southeast Asia
-The following tour featured extensive dates in East Asia , where the group played Tokyo , Osaka , Fukuoka , and Southeast Asia including Jakarta , Manila as well as Singapore and Guam . featured The following tour extensive dates including Guam in Southeast Asia
-The following tour featured extensive dates in East Asia , where the group played Tokyo , Osaka , Fukuoka , and Southeast Asia including Jakarta , Manila as well as Singapore and Guam . was The tour following
-The founder had pledged himself to honour the Blessed Virgin in a special manner . had pledged himself to honour in a special manner The founder the Blessed Virgin
-The fundraiser was successful , and the trip occurred from June through September of 2014 . was successful The fundraiser
-The fundraiser was successful , and the trip occurred from June through September of 2014 . occurred the trip from June through September of 2014
-The fuselage had an oval cross-section and housed a water-cooled inverted-V V-12 engine . had The fuselage an oval cross-section
-The fuselage had an oval cross-section and housed a water-cooled inverted-V V-12 engine . housed The fuselage a water-cooled inverted-V V-12 engine
-The gauge sender is usually a magnetically coupled arrangement , with a float arm inside the tank rotating a magnet , which rotates an external gauge . is usually a magnetically coupled arrangement The gauge sender with a float arm inside the tank rotating a magnet
-The gauge sender is usually a magnetically coupled arrangement , with a float arm inside the tank rotating a magnet , which rotates an external gauge . rotating a float arm inside the tank a magnet
-The gauge sender is usually a magnetically coupled arrangement , with a float arm inside the tank rotating a magnet , which rotates an external gauge . rotates a magnet an external gauge
-The insurer sponsored the golf tournament known as the New Orleans Open beginning in 1981 . sponsored The insurer the golf tournament known as the New Orleans Open beginning in 1981
-The insurer sponsored the golf tournament known as the New Orleans Open beginning in 1981 . is known as the golf tournament beginning in 1981 the New Orleans Open
-The insurer sponsored the golf tournament known as the New Orleans Open beginning in 1981 . is the New Orleans Open a golf tournament
-The lodge is open from mid-May to mid-October , with two weeks starting in the end of August reserved for the Dartmouth First-Year Trips . is open The lodge from mid-May to mid-October
-The lodge is open from mid-May to mid-October , with two weeks starting in the end of August reserved for the Dartmouth First-Year Trips . are reserved two weeks starting in the end of August for the Dartmouth First-Year Trips
-The opening credits sequence for the collection was directed by Hanada Daizaburo . was directed by The opening credits sequence for the collection Hanada Daizaburo
-The opening credits sequence for the collection was directed by Hanada Daizaburo . has the collection opening credits sequence
-The permanent members are the provost , the Carl H. Pforzheimer University Professor and the deans or designees from the following Schools : the Faculty of Arts and Sciences , Harvard Business School , Harvard Law School and Harvard Medical School . has Harvard Business School
-The permanent members are the provost , the Carl H. Pforzheimer University Professor and the deans or designees from the following Schools : the Faculty of Arts and Sciences , Harvard Business School , Harvard Law School and Harvard Medical School . has Harvard Law School
-The permanent members are the provost , the Carl H. Pforzheimer University Professor and the deans or designees from the following Schools : the Faculty of Arts and Sciences , Harvard Business School , Harvard Law School and Harvard Medical School . has Harvard Medical School
-The permanent members are the provost , the Carl H. Pforzheimer University Professor and the deans or designees from the following Schools : the Faculty of Arts and Sciences , Harvard Business School , Harvard Law School and Harvard Medical School . are from deans or designees the Faculty of Arts and Sciences
-The permanent members are the provost , the Carl H. Pforzheimer University Professor and the deans or designees from the following Schools : the Faculty of Arts and Sciences , Harvard Business School , Harvard Law School and Harvard Medical School . are from deans or designees Harvard Business School
-The permanent members are the provost , the Carl H. Pforzheimer University Professor and the deans or designees from the following Schools : the Faculty of Arts and Sciences , Harvard Business School , Harvard Law School and Harvard Medical School . are from deans or designees Harvard Law School
-The permanent members are the provost , the Carl H. Pforzheimer University Professor and the deans or designees from the following Schools : the Faculty of Arts and Sciences , Harvard Business School , Harvard Law School and Harvard Medical School . are from deans or designees Harvard Medical School
-The permanent members are the provost , the Carl H. Pforzheimer University Professor and the deans or designees from the following Schools : the Faculty of Arts and Sciences , Harvard Business School , Harvard Law School and Harvard Medical School . are deans or designees from the Faculty of Arts and Sciences permanent members
-The permanent members are the provost , the Carl H. Pforzheimer University Professor and the deans or designees from the following Schools : the Faculty of Arts and Sciences , Harvard Business School , Harvard Law School and Harvard Medical School . are deans or designees from Harvard Business School permanent members
-The permanent members are the provost , the Carl H. Pforzheimer University Professor and the deans or designees from the following Schools : the Faculty of Arts and Sciences , Harvard Business School , Harvard Law School and Harvard Medical School . are deans or designees from Harvard Law School permanent members
-The permanent members are the provost , the Carl H. Pforzheimer University Professor and the deans or designees from the following Schools : the Faculty of Arts and Sciences , Harvard Business School , Harvard Law School and Harvard Medical School . are deans or designees from Harvard Medical School permanent members
-The permanent members are the provost , the Carl H. Pforzheimer University Professor and the deans or designees from the following Schools : the Faculty of Arts and Sciences , Harvard Business School , Harvard Law School and Harvard Medical School . is a the Carl H. Pforzheimer University Professor permanent member
-The permanent members are the provost , the Carl H. Pforzheimer University Professor and the deans or designees from the following Schools : the Faculty of Arts and Sciences , Harvard Business School , Harvard Law School and Harvard Medical School . is a the provost permanent member
-The pillars in a line on its both sides are according to Doric or Greek style and their decorations are according to the Meenakshi Temple at Madurai in Tamil Nadu . is at the Meenakshi Temple Madurai in Tamil Nadu
-The pillars in a line on its both sides are according to Doric or Greek style and their decorations are according to the Meenakshi Temple at Madurai in Tamil Nadu . is in Madurai Tamil Nadu
-The pillars in a line on its both sides are according to Doric or Greek style and their decorations are according to the Meenakshi Temple at Madurai in Tamil Nadu . are in The pillars a line
-The pillars in a line on its both sides are according to Doric or Greek style and their decorations are according to the Meenakshi Temple at Madurai in Tamil Nadu . are in a line on The pillars its both sides
-The pillars in a line on its both sides are according to Doric or Greek style and their decorations are according to the Meenakshi Temple at Madurai in Tamil Nadu . are according to The pillars Doric or Greek style
-The pillars in a line on its both sides are according to Doric or Greek style and their decorations are according to the Meenakshi Temple at Madurai in Tamil Nadu . have The pillars decorations
-The pillars in a line on its both sides are according to Doric or Greek style and their decorations are according to the Meenakshi Temple at Madurai in Tamil Nadu . are according to The pillars' decorations the Meenakshi Temple
-The race is in mixed eights , and usually held in late February / early March . is usually held in The race late February / early March
-The race is in mixed eights , and usually held in late February / early March . is in The race mixed eights
-The rapids at the head of the South Fork were removed in 1908 . are at The rapids the head of the South Fork
-The rapids at the head of the South Fork were removed in 1908 . were removed in The rapids 1908
-The redesigned 2006 Ram SRT-10 came in Mineral Gray Metallic , Inferno Red , and Brilliant Black Crystal Clear Coat . came in The redesigned 2006 Ram SRT-10 Mineral Gray Metallic
-The redesigned 2006 Ram SRT-10 came in Mineral Gray Metallic , Inferno Red , and Brilliant Black Crystal Clear Coat . came in The redesigned 2006 Ram SRT-10 Inferno Red
-The redesigned 2006 Ram SRT-10 came in Mineral Gray Metallic , Inferno Red , and Brilliant Black Crystal Clear Coat . came in The redesigned 2006 Ram SRT-10 Brilliant Black Crystal Clear Coat
-The redesigned 2006 Ram SRT-10 came in Mineral Gray Metallic , Inferno Red , and Brilliant Black Crystal Clear Coat . was redesigned The 2006 Ram SRT-10
-The redesigned 2006 Ram SRT-10 came in Mineral Gray Metallic , Inferno Red , and Brilliant Black Crystal Clear Coat . was redesigned The Ram SRT-10 in 2006
-The redesigned 2006 Ram SRT-10 came in Mineral Gray Metallic , Inferno Red , and Brilliant Black Crystal Clear Coat . was The redesigned 2006 Ram an SRT-10
-The residue can be reprocessed for more dripping and strained through a cheesecloth lined sieve as an ingredient for a fine beef stock . can be reprocessed for The residue more dripping
-The residue can be reprocessed for more dripping and strained through a cheesecloth lined sieve as an ingredient for a fine beef stock . can be strained through The residue a cheesecloth lined sieve
-The residue can be reprocessed for more dripping and strained through a cheesecloth lined sieve as an ingredient for a fine beef stock . can be reprocessed for more dripping and strained through a cheesecloth lined sieve as The residue an ingredient for a fine beef stock
-The rest of the group reach a small shop , where Brady attempts to phone the Sheriff , but the crocodile breaks through a wall and devours Annabelle . reach The rest of the group a small shop
-The rest of the group reach a small shop , where Brady attempts to phone the Sheriff , but the crocodile breaks through a wall and devours Annabelle . attempts to phone Brady the Sheriff at a small shop
-The rest of the group reach a small shop , where Brady attempts to phone the Sheriff , but the crocodile breaks through a wall and devours Annabelle . breaks through the crocodile a wall
-The rest of the group reach a small shop , where Brady attempts to phone the Sheriff , but the crocodile breaks through a wall and devours Annabelle . devours the crocodile Annabelle
-The rest of the group reach a small shop , where Brady attempts to phone the Sheriff , but the crocodile breaks through a wall and devours Annabelle . was small a shop
-The restrictions against eating meat and drinking wine , besides reducing a person 's pleasure , recall the cessation of the `` Korban Tamid '' and the `` Nesach Hayayin '' on the Temple Altar with the destruction of the Temple . are against The restrictions eating meat
-The restrictions against eating meat and drinking wine , besides reducing a person 's pleasure , recall the cessation of the `` Korban Tamid '' and the `` Nesach Hayayin '' on the Temple Altar with the destruction of the Temple . are against The restrictions drinking wine
-The restrictions against eating meat and drinking wine , besides reducing a person 's pleasure , recall the cessation of the `` Korban Tamid '' and the `` Nesach Hayayin '' on the Temple Altar with the destruction of the Temple . are reducing The restrictions a person 's pleasure
-The restrictions against eating meat and drinking wine , besides reducing a person 's pleasure , recall the cessation of the `` Korban Tamid '' and the `` Nesach Hayayin '' on the Temple Altar with the destruction of the Temple . recall the cessation of The restrictions the `` Korban Tamid '' on the Temple Altar
-The restrictions against eating meat and drinking wine , besides reducing a person 's pleasure , recall the cessation of the `` Korban Tamid '' and the `` Nesach Hayayin '' on the Temple Altar with the destruction of the Temple . recall the cessation of The restrictions the `` Nesach Hayayin '' on the Temple Altar
-The restrictions against eating meat and drinking wine , besides reducing a person 's pleasure , recall the cessation of the `` Korban Tamid '' and the `` Nesach Hayayin '' on the Temple Altar with the destruction of the Temple . had cessation with the `` Korban Tamid '' on the Temple Altar the destruction of the Temple
-The restrictions against eating meat and drinking wine , besides reducing a person 's pleasure , recall the cessation of the `` Korban Tamid '' and the `` Nesach Hayayin '' on the Temple Altar with the destruction of the Temple . had cessation with the `` Nesach Hayayin '' on the Temple Altar the destruction of the Temple
-The riders climbed off and began walking , shouting protests in general and in particular abuse at the race doctor , Pierre Dumas , whom some demanded should also take a test to see if he 'd been drinking wine or taking aspirin to make his own job easier . climbed The riders off
-The riders climbed off and began walking , shouting protests in general and in particular abuse at the race doctor , Pierre Dumas , whom some demanded should also take a test to see if he 'd been drinking wine or taking aspirin to make his own job easier . began walking The riders
-The riders climbed off and began walking , shouting protests in general and in particular abuse at the race doctor , Pierre Dumas , whom some demanded should also take a test to see if he 'd been drinking wine or taking aspirin to make his own job easier . were shouting in general The riders protests
-The riders climbed off and began walking , shouting protests in general and in particular abuse at the race doctor , Pierre Dumas , whom some demanded should also take a test to see if he 'd been drinking wine or taking aspirin to make his own job easier . were shouting in particular The riders abuse at the race doctor , Pierre Dumas
-The riders climbed off and began walking , shouting protests in general and in particular abuse at the race doctor , Pierre Dumas , whom some demanded should also take a test to see if he 'd been drinking wine or taking aspirin to make his own job easier . was Pierre Dumas the race doctor
-The riders climbed off and began walking , shouting protests in general and in particular abuse at the race doctor , Pierre Dumas , whom some demanded should also take a test to see if he 'd been drinking wine or taking aspirin to make his own job easier . demanded should also take a test to see if he 'd been drinking wine to make his own job easier some of The riders race doctor Pierre Dumas
-The riders climbed off and began walking , shouting protests in general and in particular abuse at the race doctor , Pierre Dumas , whom some demanded should also take a test to see if he 'd been drinking wine or taking aspirin to make his own job easier . demanded should also take a test to see if he 'd been taking aspirin to make his own job easier some of The riders race doctor Pierre Dumas
-The riders climbed off and began walking , shouting protests in general and in particular abuse at the race doctor , Pierre Dumas , whom some demanded should also take a test to see if he 'd been drinking wine or taking aspirin to make his own job easier . will be to see if a test race doctor Pierre Dumas had been drinking wine to make his own job easier
-The riders climbed off and began walking , shouting protests in general and in particular abuse at the race doctor , Pierre Dumas , whom some demanded should also take a test to see if he 'd been drinking wine or taking aspirin to make his own job easier . will be to see if a test race doctor Pierre Dumas had been taking aspirin to make his own job easier
-The riders climbed off and began walking , shouting protests in general and in particular abuse at the race doctor , Pierre Dumas , whom some demanded should also take a test to see if he 'd been drinking wine or taking aspirin to make his own job easier . would make drinking wine race doctor Pierre Dumas' job easier
-The riders climbed off and began walking , shouting protests in general and in particular abuse at the race doctor , Pierre Dumas , whom some demanded should also take a test to see if he 'd been drinking wine or taking aspirin to make his own job easier . would make taking aspirin race doctor Pierre Dumas' job easier
-The riders climbed off and began walking , shouting protests in general and in particular abuse at the race doctor , Pierre Dumas , whom some demanded should also take a test to see if he 'd been drinking wine or taking aspirin to make his own job easier . was doctor Pierre Dumas at the race
-The second was named after former US President George H. W. Bush stayed aboard in November 1995 . was named after The second former US President George H. W. Bush stayed aboard
-The second was named after former US President George H. W. Bush stayed aboard in November 1995 . stayed former US President George H. W. Bush aboard in November 1995
-The second was named after former US President George H. W. Bush stayed aboard in November 1995 . is George H. W. Bush former US President
-The second was named after former US President George H. W. Bush stayed aboard in November 1995 . is George H. W. Bush former President in US
-The second was titled `` Consider Her Ways '' and also starred Barrie as the lead named Jane Waterleigh . was titled The second `` Consider Her Ways ''
-The second was titled `` Consider Her Ways '' and also starred Barrie as the lead named Jane Waterleigh . also starred The second Barrie
-The second was titled `` Consider Her Ways '' and also starred Barrie as the lead named Jane Waterleigh . starred as Barrie the lead named Jane Waterleigh
-The second was titled `` Consider Her Ways '' and also starred Barrie as the lead named Jane Waterleigh . was named the lead Jane Waterleigh
-The series of three constitutional amendments in 1933 severely curtailed the role of the Governor-General of the Irish Free State . was The series of three constitutional amendments in 1933
-The series of three constitutional amendments in 1933 severely curtailed the role of the Governor-General of the Irish Free State . severely curtailed The series of three constitutional amendments the role of the Governor-General of the Irish Free State
-The series of three constitutional amendments in 1933 severely curtailed the role of the Governor-General of the Irish Free State . was of the Governor-General the Irish Free State
-The series of three constitutional amendments in 1933 severely curtailed the role of the Governor-General of the Irish Free State . was of The series three constitutional amendments
-The site consists of three subterranean Grotto follies , constructed in the 18th century , split between two areas , one on the western side of the lake , at and one on the eastern side at . consists of The site three subterranean Grotto follies
-The site consists of three subterranean Grotto follies , constructed in the 18th century , split between two areas , one on the western side of the lake , at and one on the eastern side at . were constructed three subterranean Grotto follies in the 18th century
-The site consists of three subterranean Grotto follies , constructed in the 18th century , split between two areas , one on the western side of the lake , at and one on the eastern side at . are split between three subterranean Grotto follies two areas
-The site consists of three subterranean Grotto follies , constructed in the 18th century , split between two areas , one on the western side of the lake , at and one on the eastern side at . is on one of the two areas the western side of the lake
-The site consists of three subterranean Grotto follies , constructed in the 18th century , split between two areas , one on the western side of the lake , at and one on the eastern side at . is on one of the two areas the eastern side of the lake
-The site consists of three subterranean Grotto follies , constructed in the 18th century , split between two areas , one on the western side of the lake , at and one on the eastern side at . are subterranean three Grotto follies
-The staff provides a family-style , home-cooked dinner every night , which is attended not only by Dartmouth students , but by community members , Appalachian Trail thru-hikers , tourists , and even Dartmouth professors . provides The staff a family-style dinner every night
-The staff provides a family-style , home-cooked dinner every night , which is attended not only by Dartmouth students , but by community members , Appalachian Trail thru-hikers , tourists , and even Dartmouth professors . provides The staff a home-cooked dinner every night
-The staff provides a family-style , home-cooked dinner every night , which is attended not only by Dartmouth students , but by community members , Appalachian Trail thru-hikers , tourists , and even Dartmouth professors . is attended by a family-style , home-cooked dinner Dartmouth students
-The staff provides a family-style , home-cooked dinner every night , which is attended not only by Dartmouth students , but by community members , Appalachian Trail thru-hikers , tourists , and even Dartmouth professors . is attended by a family-style , home-cooked dinner community members
-The staff provides a family-style , home-cooked dinner every night , which is attended not only by Dartmouth students , but by community members , Appalachian Trail thru-hikers , tourists , and even Dartmouth professors . is attended by a family-style , home-cooked dinner Appalachian Trail thru-hikers
-The staff provides a family-style , home-cooked dinner every night , which is attended not only by Dartmouth students , but by community members , Appalachian Trail thru-hikers , tourists , and even Dartmouth professors . is attended by a family-style , home-cooked dinner tourists
-The staff provides a family-style , home-cooked dinner every night , which is attended not only by Dartmouth students , but by community members , Appalachian Trail thru-hikers , tourists , and even Dartmouth professors . is attended by a family-style , home-cooked dinner Dartmouth professors
-The station has a concourse and ticket office area which was internally redesigned and reopened in mid-2012 . has The station a concourse
-The station has a concourse and ticket office area which was internally redesigned and reopened in mid-2012 . has The station a ticket office area
-The station has a concourse and ticket office area which was internally redesigned and reopened in mid-2012 . was internally redesigned The concourse at The station
-The station has a concourse and ticket office area which was internally redesigned and reopened in mid-2012 . was internally redesigned The ticket office area at The station
-The station has a concourse and ticket office area which was internally redesigned and reopened in mid-2012 . reopened The concourse at The station in mid-2012
-The station has a concourse and ticket office area which was internally redesigned and reopened in mid-2012 . reopened The ticket office area at The station in mid-2012
-The stations were both called `` Midsomer Norton and Welton '' ; under British Railways , the S&D station was renamed as Midsomer Norton South after a short period as Midsomer Norton Upper ; and is currently being restored with occasional open weekends with engines in steam . were both called The stations `` Midsomer Norton and Welton ''
-The stations were both called `` Midsomer Norton and Welton '' ; under British Railways , the S&D station was renamed as Midsomer Norton South after a short period as Midsomer Norton Upper ; and is currently being restored with occasional open weekends with engines in steam . was renamed under British Railways as the S&D station Midsomer Norton South
-The stations were both called `` Midsomer Norton and Welton '' ; under British Railways , the S&D station was renamed as Midsomer Norton South after a short period as Midsomer Norton Upper ; and is currently being restored with occasional open weekends with engines in steam . was renamed under British Railways as the S&D station Midsomer Norton Upper after a short period
-The stations were both called `` Midsomer Norton and Welton '' ; under British Railways , the S&D station was renamed as Midsomer Norton South after a short period as Midsomer Norton Upper ; and is currently being restored with occasional open weekends with engines in steam . is being restored the S&D station currently
-The stations were both called `` Midsomer Norton and Welton '' ; under British Railways , the S&D station was renamed as Midsomer Norton South after a short period as Midsomer Norton Upper ; and is currently being restored with occasional open weekends with engines in steam . has the S&D station open weekends with engines in steam occasional
-The stations were both called `` Midsomer Norton and Welton '' ; under British Railways , the S&D station was renamed as Midsomer Norton South after a short period as Midsomer Norton Upper ; and is currently being restored with occasional open weekends with engines in steam . have open weekends engines in steam at S&D station
-The stock pot should be chilled and the solid lump of dripping which settles when chilled should be scraped clean and re-chilled for future use . should be chilled The stock pot
-The stock pot should be chilled and the solid lump of dripping which settles when chilled should be scraped clean and re-chilled for future use . settles the solid lump of dripping when chilled
-The stock pot should be chilled and the solid lump of dripping which settles when chilled should be scraped clean and re-chilled for future use . should be scraped clean the solid lump of dripping
-The stock pot should be chilled and the solid lump of dripping which settles when chilled should be scraped clean and re-chilled for future use . should be re-chilled for use the solid lump of dripping in the future
-The suit alleged that they conspired to fix prices for e-books , and weaken Amazon.com 's position in the market , in violation of antitrust law . alleged that The suit they conspired to fix prices for e-books
-The suit alleged that they conspired to fix prices for e-books , and weaken Amazon.com 's position in the market , in violation of antitrust law . alleged that The suit they conspired to weaken Amazon.com 's position in the market
-The suit alleged that they conspired to fix prices for e-books , and weaken Amazon.com 's position in the market , in violation of antitrust law . alleged that The suit they were in violation of antitrust law
-The suit alleged that they conspired to fix prices for e-books , and weaken Amazon.com 's position in the market , in violation of antitrust law . was in violation of conspiring to fix prices for e-books antitrust law
-The suit alleged that they conspired to fix prices for e-books , and weaken Amazon.com 's position in the market , in violation of antitrust law . was in violation of conspiring to weaken Amazon.com 's position in the market antitrust law
-The suit alleged that they conspired to fix prices for e-books , and weaken Amazon.com 's position in the market , in violation of antitrust law . has a position Amazon.com in the market
-The third known version is part number 2189014-00-212 , with at least one model being produced in February 1993 . is The third known version part number 2189014-00-212
-The third known version is part number 2189014-00-212 , with at least one model being produced in February 1993 . was being produced at least one model in February 1993
-The third known version is part number 2189014-00-212 , with at least one model being produced in February 1993 . was being produced part number 2189014-00-212 in February 1993
-The third known version is part number 2189014-00-212 , with at least one model being produced in February 1993 . is known a third version
-The town was previously served by a station on the Somerset and Dorset Railway but this closed in 1966 , and by a second station on the Bristol and North Somerset Railway at Welton in the valley . was served by The town a station on the Somerset and Dorset Railway previously
-The town was previously served by a station on the Somerset and Dorset Railway but this closed in 1966 , and by a second station on the Bristol and North Somerset Railway at Welton in the valley . is a station on the Somerset and Dorset Railway
-The town was previously served by a station on the Somerset and Dorset Railway but this closed in 1966 , and by a second station on the Bristol and North Somerset Railway at Welton in the valley . closed a station on the Somerset and Dorset Railway in 1966
-The town was previously served by a station on the Somerset and Dorset Railway but this closed in 1966 , and by a second station on the Bristol and North Somerset Railway at Welton in the valley . was served by The town a second station on the Bristol and North Somerset Railway at Welton in the valley previously
-The town was previously served by a station on the Somerset and Dorset Railway but this closed in 1966 , and by a second station on the Bristol and North Somerset Railway at Welton in the valley . is a second station on the Bristol and North Somerset Railway at Welton in the valley
-The very large piers at the crossing signify that there was once a tower . signify that there was The very large piers at the crossing a tower once
-The very large piers at the crossing signify that there was once a tower . was a tower at the crossing once
-The very large piers at the crossing signify that there was once a tower . are The very large piers at the crossing
-The very large piers at the crossing signify that there was once a tower . are very large The piers
-The video was the first ever to feature the use of dialogue . was the first to feature The video the use of dialogue ever
-The video was the first ever to feature the use of dialogue . featured The video the use of dialogue
-Their mission was always for a specific mandate and lasted for a limited period . was for Their mission a specific mandate always
-Their mission was always for a specific mandate and lasted for a limited period . lasted for Their mission a limited period
-Their mission was always for a specific mandate and lasted for a limited period . was specific a mandate
-Their mission was always for a specific mandate and lasted for a limited period . was limited a period
-Their numbers continued to increase each year as rumours about immigration restrictions appeared in much of the Cypriot media . continued to increase Their numbers each year
-Their numbers continued to increase each year as rumours about immigration restrictions appeared in much of the Cypriot media . increase as Their numbers rumours about immigration restrictions appeared in much of the Cypriot media each year
-Their numbers continued to increase each year as rumours about immigration restrictions appeared in much of the Cypriot media . are about rumours immigration restrictions
-Their numbers continued to increase each year as rumours about immigration restrictions appeared in much of the Cypriot media . appeared in rumours about immigration restrictions much of the media in Cyprus
-Then the fillets are put in a mix of olive oil , vinegar , sugar , garlic , chill peppers , and lots of parsley or celery . are put in the fillets a mix of olive oil , vinegar , sugar , garlic , chill peppers , and lots of parsley or celery Then
-Then the fillets are put in a mix of olive oil , vinegar , sugar , garlic , chill peppers , and lots of parsley or celery . is of a mix olive oil
-Then the fillets are put in a mix of olive oil , vinegar , sugar , garlic , chill peppers , and lots of parsley or celery . is of a mix vinegar
-Then the fillets are put in a mix of olive oil , vinegar , sugar , garlic , chill peppers , and lots of parsley or celery . is of a mix sugar
-Then the fillets are put in a mix of olive oil , vinegar , sugar , garlic , chill peppers , and lots of parsley or celery . is of a mix garlic
-Then the fillets are put in a mix of olive oil , vinegar , sugar , garlic , chill peppers , and lots of parsley or celery . is of a mix chill peppers
-Then the fillets are put in a mix of olive oil , vinegar , sugar , garlic , chill peppers , and lots of parsley or celery . is of a mix lots of parsley or celery
-There have been two crashes involving fatalities at the airfield since it was established . have been at two crashes involving fatalities the airfield since the airfield was established
-There have been two crashes involving fatalities at the airfield since it was established . have involved two crashes fatalities at the airfield since the airfield was established
-There used to be a Youth Hostel but it closed in October 2008 and the building has since reopened as Keld Lodge , a hotel with bar and restaurant . closed a Youth Hostel in October 2008
-There used to be a Youth Hostel but it closed in October 2008 and the building has since reopened as Keld Lodge , a hotel with bar and restaurant . has reopened as the Youth Hostel building Keld Lodge since October 2008
-There used to be a Youth Hostel but it closed in October 2008 and the building has since reopened as Keld Lodge , a hotel with bar and restaurant . is Keld Lodge a hotel with bar and restaurant
-There used to be a Youth Hostel but it closed in October 2008 and the building has since reopened as Keld Lodge , a hotel with bar and restaurant . used to be There a Youth Hostel
-There used to be a Youth Hostel but it closed in October 2008 and the building has since reopened as Keld Lodge , a hotel with bar and restaurant . has Keld Lodge bar and restaurant
-There were 143 households out of which 30.1 % had children under the age of 18 living with them , 49.7 % were married couples living together , 11.9 % had a female householder with no husband present , and 36.4 % were non-families . had 30.1 % out of 143 households children under the age of 18 living with them
-There were 143 households out of which 30.1 % had children under the age of 18 living with them , 49.7 % were married couples living together , 11.9 % had a female householder with no husband present , and 36.4 % were non-families . were 49.7 % out of 143 households married couples living together
-There were 143 households out of which 30.1 % had children under the age of 18 living with them , 49.7 % were married couples living together , 11.9 % had a female householder with no husband present , and 36.4 % were non-families . had 11.9 % out of 143 households a female householder with no husband present
-There were 143 households out of which 30.1 % had children under the age of 18 living with them , 49.7 % were married couples living together , 11.9 % had a female householder with no husband present , and 36.4 % were non-families . were 36.4 % out of 143 households non-families
-There were 143 households out of which 30.1 % had children under the age of 18 living with them , 49.7 % were married couples living together , 11.9 % had a female householder with no husband present , and 36.4 % were non-families . were There 143 households
-There were 47,604 households out of which 35.00 % had children under the age of 18 living with them , 56.30 % were married couples living together , 7.50 % had a female householder with no husband present , and 32.50 % were non-families . had 35.00 % out of 47,604 households children under the age of 18 living with them
-There were 47,604 households out of which 35.00 % had children under the age of 18 living with them , 56.30 % were married couples living together , 7.50 % had a female householder with no husband present , and 32.50 % were non-families . were 56.30 % out of 47,604 households married couples living together
-There were 47,604 households out of which 35.00 % had children under the age of 18 living with them , 56.30 % were married couples living together , 7.50 % had a female householder with no husband present , and 32.50 % were non-families . had 7.50 % out of 47,604 households a female householder with no husband present
-There were 47,604 households out of which 35.00 % had children under the age of 18 living with them , 56.30 % were married couples living together , 7.50 % had a female householder with no husband present , and 32.50 % were non-families . were 32.50 % out of 47,604 households non-families
-There were 47,604 households out of which 35.00 % had children under the age of 18 living with them , 56.30 % were married couples living together , 7.50 % had a female householder with no husband present , and 32.50 % were non-families . were There 47,604 households
-There were 6,524 households out of which 35.3 % had children under the age of 18 living with them , 31.7 % were married couples living together , 31.5 % had a female householder with no husband present , and 30.6 % were non-families . were There 6,524 households
-There were 6,524 households out of which 35.3 % had children under the age of 18 living with them , 31.7 % were married couples living together , 31.5 % had a female householder with no husband present , and 30.6 % were non-families . were out of 35.3 % 6,524 households
-There were 6,524 households out of which 35.3 % had children under the age of 18 living with them , 31.7 % were married couples living together , 31.5 % had a female householder with no husband present , and 30.6 % were non-families . had living with them 35.3 out of 6,524 households children under the age of 18
-There were 6,524 households out of which 35.3 % had children under the age of 18 living with them , 31.7 % were married couples living together , 31.5 % had a female householder with no husband present , and 30.6 % were non-families . were out of 31.7 % 6,524 households
-There were 6,524 households out of which 35.3 % had children under the age of 18 living with them , 31.7 % were married couples living together , 31.5 % had a female householder with no husband present , and 30.6 % were non-families . were 31.7 % out of 6,524 households married couples living together
-There were 6,524 households out of which 35.3 % had children under the age of 18 living with them , 31.7 % were married couples living together , 31.5 % had a female householder with no husband present , and 30.6 % were non-families . were out of 31.5 % 6,524 households
-There were 6,524 households out of which 35.3 % had children under the age of 18 living with them , 31.7 % were married couples living together , 31.5 % had a female householder with no husband present , and 30.6 % were non-families . had 31.5 out of 6,524 households a female householder with no husband present
-There were 6,524 households out of which 35.3 % had children under the age of 18 living with them , 31.7 % were married couples living together , 31.5 % had a female householder with no husband present , and 30.6 % were non-families . were out of 30.6 % 6,524 households
-There were 6,524 households out of which 35.3 % had children under the age of 18 living with them , 31.7 % were married couples living together , 31.5 % had a female householder with no husband present , and 30.6 % were non-families . were 30.6 out of 6,524 households non-families
-These and other attempts supplied a bridge between the literature of the two languages . supplied These attempts a bridge between the literature of the two languages
-These and other attempts supplied a bridge between the literature of the two languages . supplied other attempts a bridge between the literature of the two languages
-These and other attempts supplied a bridge between the literature of the two languages . was between a bridge the literature of the two languages
-These and other attempts supplied a bridge between the literature of the two languages . had the two languages literature
-These are visually very similar to part number 2189014-00-211 , with the same AT style plug and chassis , silver label on the reverse bearing the AnyKey moniker , screws holding the keyboard together , macro programming requiring the control key , and lacking the AnyKey inscription on their face . are visually very similar to These part number 2189014-00-211
-These are visually very similar to part number 2189014-00-211 , with the same AT style plug and chassis , silver label on the reverse bearing the AnyKey moniker , screws holding the keyboard together , macro programming requiring the control key , and lacking the AnyKey inscription on their face . have These the same AT style plug
-These are visually very similar to part number 2189014-00-211 , with the same AT style plug and chassis , silver label on the reverse bearing the AnyKey moniker , screws holding the keyboard together , macro programming requiring the control key , and lacking the AnyKey inscription on their face . have These the same AT style chassis
-These are visually very similar to part number 2189014-00-211 , with the same AT style plug and chassis , silver label on the reverse bearing the AnyKey moniker , screws holding the keyboard together , macro programming requiring the control key , and lacking the AnyKey inscription on their face . have These the same silver label bearing the AnyKey moniker on the reverse
-These are visually very similar to part number 2189014-00-211 , with the same AT style plug and chassis , silver label on the reverse bearing the AnyKey moniker , screws holding the keyboard together , macro programming requiring the control key , and lacking the AnyKey inscription on their face . is the silver label bearing the AnyKey moniker on the reverse
-These are visually very similar to part number 2189014-00-211 , with the same AT style plug and chassis , silver label on the reverse bearing the AnyKey moniker , screws holding the keyboard together , macro programming requiring the control key , and lacking the AnyKey inscription on their face . is bearing the silver label on the reverse the AnyKey moniker
-These are visually very similar to part number 2189014-00-211 , with the same AT style plug and chassis , silver label on the reverse bearing the AnyKey moniker , screws holding the keyboard together , macro programming requiring the control key , and lacking the AnyKey inscription on their face . have These the same screws holding the keyboard together
-These are visually very similar to part number 2189014-00-211 , with the same AT style plug and chassis , silver label on the reverse bearing the AnyKey moniker , screws holding the keyboard together , macro programming requiring the control key , and lacking the AnyKey inscription on their face . are holding together screws the keyboard
-These are visually very similar to part number 2189014-00-211 , with the same AT style plug and chassis , silver label on the reverse bearing the AnyKey moniker , screws holding the keyboard together , macro programming requiring the control key , and lacking the AnyKey inscription on their face . have These the same macro programming requiring the control key
-These are visually very similar to part number 2189014-00-211 , with the same AT style plug and chassis , silver label on the reverse bearing the AnyKey moniker , screws holding the keyboard together , macro programming requiring the control key , and lacking the AnyKey inscription on their face . is requiring macro programming the control key
-These are visually very similar to part number 2189014-00-211 , with the same AT style plug and chassis , silver label on the reverse bearing the AnyKey moniker , screws holding the keyboard together , macro programming requiring the control key , and lacking the AnyKey inscription on their face . are lacking These the AnyKey inscription on their face
-These are visually very similar to part number 2189014-00-211 , with the same AT style plug and chassis , silver label on the reverse bearing the AnyKey moniker , screws holding the keyboard together , macro programming requiring the control key , and lacking the AnyKey inscription on their face . has part number 2189014-00-211 an AT style plug
-These are visually very similar to part number 2189014-00-211 , with the same AT style plug and chassis , silver label on the reverse bearing the AnyKey moniker , screws holding the keyboard together , macro programming requiring the control key , and lacking the AnyKey inscription on their face . has part number 2189014-00-211 an AT style chassis
-These are visually very similar to part number 2189014-00-211 , with the same AT style plug and chassis , silver label on the reverse bearing the AnyKey moniker , screws holding the keyboard together , macro programming requiring the control key , and lacking the AnyKey inscription on their face . has part number 2189014-00-211 a silver label bearing the AnyKey moniker on the reverse
-These are visually very similar to part number 2189014-00-211 , with the same AT style plug and chassis , silver label on the reverse bearing the AnyKey moniker , screws holding the keyboard together , macro programming requiring the control key , and lacking the AnyKey inscription on their face . has part number 2189014-00-211 screws holding the keyboard together
-These are visually very similar to part number 2189014-00-211 , with the same AT style plug and chassis , silver label on the reverse bearing the AnyKey moniker , screws holding the keyboard together , macro programming requiring the control key , and lacking the AnyKey inscription on their face . has part number 2189014-00-211 macro programming requiring the control key
-These are visually very similar to part number 2189014-00-211 , with the same AT style plug and chassis , silver label on the reverse bearing the AnyKey moniker , screws holding the keyboard together , macro programming requiring the control key , and lacking the AnyKey inscription on their face . is lacking part number 2189014-00-211 the AnyKey inscription on their face
-These beams stem from a cosmic energy source called the `` Omega Effect '' . stem from These beams a cosmic energy source called the `` Omega Effect ''
-These beams stem from a cosmic energy source called the `` Omega Effect '' . is called a cosmic energy source the `` Omega Effect ''
-These objects are thrown away if their screen projection is too small . are thrown away if These objects their screen projection is too small
-These orientations allow easy movement , i.e. degrees of freedom , and thus lowers entropy minimally . allow These orientations easy movement
-These orientations allow easy movement , i.e. degrees of freedom , and thus lowers entropy minimally . is easy movement degrees of freedom
-These orientations allow easy movement , i.e. degrees of freedom , and thus lowers entropy minimally . allow These orientations degrees of freedom
-These orientations allow easy movement , i.e. degrees of freedom , and thus lowers entropy minimally . lowers minimally easy movement entropy
-These orientations allow easy movement , i.e. degrees of freedom , and thus lowers entropy minimally . thus lower minimally These orientations entropy
-These orientations allow easy movement , i.e. degrees of freedom , and thus lowers entropy minimally . are These orientations
-These were often related to European conflict , as the Stuart Pretenders were aided and encouraged by Britain 's continental enemies for their own ends . were often related to These European conflict
-These were often related to European conflict , as the Stuart Pretenders were aided and encouraged by Britain 's continental enemies for their own ends . were aided by the Stuart Pretenders Britain 's continental enemies
-These were often related to European conflict , as the Stuart Pretenders were aided and encouraged by Britain 's continental enemies for their own ends . were encouraged by the Stuart Pretenders Britain 's continental enemies
-These were often related to European conflict , as the Stuart Pretenders were aided and encouraged by Britain 's continental enemies for their own ends . were aided for the Stuart Pretenders Britain 's continental enemies' own ends
-These were often related to European conflict , as the Stuart Pretenders were aided and encouraged by Britain 's continental enemies for their own ends . were encouraged for the Stuart Pretenders Britain 's continental enemies' own ends
-These were often related to European conflict , as the Stuart Pretenders were aided and encouraged by Britain 's continental enemies for their own ends . has Britain continental enemies
-They beat Milligan 1-0 , Grand View 3-0 , Webber International 1-0 and Azusa Pacific 0-0 to win the NAIA National Championships . beat 1-0 They Milligan
-They beat Milligan 1-0 , Grand View 3-0 , Webber International 1-0 and Azusa Pacific 0-0 to win the NAIA National Championships . beat 3-0 They Grand View
-They beat Milligan 1-0 , Grand View 3-0 , Webber International 1-0 and Azusa Pacific 0-0 to win the NAIA National Championships . beat 0-0 They Azusa Pacific
-They beat Milligan 1-0 , Grand View 3-0 , Webber International 1-0 and Azusa Pacific 0-0 to win the NAIA National Championships . beat to win They the NAIA National Championships
-They have included some of the most dangerous assassins in the world including Lady Shiva , David Cain , and Merlyn . have included They some of the most dangerous assassins in the world
-They have included some of the most dangerous assassins in the world including Lady Shiva , David Cain , and Merlyn . are in some of the most dangerous assassins the world
-They have included some of the most dangerous assassins in the world including Lady Shiva , David Cain , and Merlyn . are including some of the most dangerous assassins Lady Shiva
-They have included some of the most dangerous assassins in the world including Lady Shiva , David Cain , and Merlyn . are including some of the most dangerous assassins David Cain
-They have included some of the most dangerous assassins in the world including Lady Shiva , David Cain , and Merlyn . are including some of the most dangerous assassins Merlyn
-They have included some of the most dangerous assassins in the world including Lady Shiva , David Cain , and Merlyn . are dangerous assassins
-They usually go through a period of dormancy after flowering . usually go through They a period of dormancy after flowering
-Third TV drama series was broadcast in 2008 - , featuring Mao Inoue as Anmitsu . was broadcast Third TV drama series featuring Mao Inoue as Anmitsu in 2008
-This attire has also become popular with women of other communities . has also become popular This attire with women of other communities
-This can be further generalized by defining a Q-valued Euler characteristic for certain finite categories , a notion compatible with the Euler characteristics of graphs , orbifolds and posets mentioned above . by defining a Q-valued Euler characteristic This can be further generalized for certain finite categories , a notion compatible with the Euler characteristics of graphs, orbifolds and posets mentioned above
-This change was soon picked up by Huguenot writers , who began to expand on Calvin and promote the idea of the sovereignty of the people , ideas to which Catholic writers and preachers responded fiercely . by Huguenot writers who began to expand on Calvin and promote the idea of the sovereignty of the people , ideas to which This change was soon picked up Catholic writers and preachers responded fiercely
-This engine was equipped with an electronically controlled carburetor . was equipped with This engine an electronically controlled carburetor
-This had considerable implications for the Welsh language as it was the main language of the nonconformist churches in Wales . was the main language of the Welsh language the nonconformist churches in Wales
-This had considerable implications for the Welsh language as it was the main language of the nonconformist churches in Wales . had considerable implications for This the Welsh language
-This is most common in Western countries in those with Barrett 's esophagus , and occurs in the cuboidal cells . is most common in This those with Barrett 's esophagus in Western countries
-This is most common in Western countries in those with Barrett 's esophagus , and occurs in the cuboidal cells . occurs This in those with Barrett 's esophagus in the cuboidal cells
-This line was extended east by the Prahran & Malvern Tramways Trust from Hawthorn Road to Darling Road , Malvern East on 13 November 1913 . was extended This line east on 13 November 1913
-This line was extended east by the Prahran & Malvern Tramways Trust from Hawthorn Road to Darling Road , Malvern East on 13 November 1913 . was extended This line by the Prahran & Malvern Tramways Trust on 13 November 1913
-This line was extended east by the Prahran & Malvern Tramways Trust from Hawthorn Road to Darling Road , Malvern East on 13 November 1913 . was extended This line from Hawthorn Road on 13 November 1913
-This line was extended east by the Prahran & Malvern Tramways Trust from Hawthorn Road to Darling Road , Malvern East on 13 November 1913 . was extended This line to Darling Road , Malvern East on 13 November 1913
-This line was extended east by the Prahran & Malvern Tramways Trust from Hawthorn Road to Darling Road , Malvern East on 13 November 1913 . is in Darling Road Malvern East
-This mutation gives him superhuman strength , speed , reflexes , agility , flexibility , dexterity , coordination , balance , and endurance . gives him This mutation superhuman strength
-This mutation gives him superhuman strength , speed , reflexes , agility , flexibility , dexterity , coordination , balance , and endurance . gives him This mutation superhuman speed
-This mutation gives him superhuman strength , speed , reflexes , agility , flexibility , dexterity , coordination , balance , and endurance . gives him This mutation superhuman reflexes
-This mutation gives him superhuman strength , speed , reflexes , agility , flexibility , dexterity , coordination , balance , and endurance . gives him This mutation superhuman agility
-This mutation gives him superhuman strength , speed , reflexes , agility , flexibility , dexterity , coordination , balance , and endurance . gives him This mutation superhuman flexibility
-This mutation gives him superhuman strength , speed , reflexes , agility , flexibility , dexterity , coordination , balance , and endurance . gives him This mutation superhuman dexterity
-This mutation gives him superhuman strength , speed , reflexes , agility , flexibility , dexterity , coordination , balance , and endurance . gives him This mutation superhuman coordination
-This mutation gives him superhuman strength , speed , reflexes , agility , flexibility , dexterity , coordination , balance , and endurance . gives him This mutation superhuman balance
-This mutation gives him superhuman strength , speed , reflexes , agility , flexibility , dexterity , coordination , balance , and endurance . gives him This mutation superhuman endurance
-This policy was , however , opposed by the miners who demanded that the inspections be carried out by experienced colliers . was however opposed by This policy the miners
-This policy was , however , opposed by the miners who demanded that the inspections be carried out by experienced colliers . demanded that the inspections be carried out by the miners experienced colliers
-To assist the pope in the many calls for his help and charity , Pascalina organized and led the `` Magazzino '' , a private papal charity office which employed up to 40 helpers and continued until 1959 . organized Pascalina the `` Magazzino ''
-To assist the pope in the many calls for his help and charity , Pascalina organized and led the `` Magazzino '' , a private papal charity office which employed up to 40 helpers and continued until 1959 . led Pascalina the `` Magazzino ''
-To assist the pope in the many calls for his help and charity , Pascalina organized and led the `` Magazzino '' , a private papal charity office which employed up to 40 helpers and continued until 1959 . is a private papal charity office the `` Magazzino ''
-To assist the pope in the many calls for his help and charity , Pascalina organized and led the `` Magazzino '' , a private papal charity office which employed up to 40 helpers and continued until 1959 . continued the `` Magazzino '' until 1959
-To assist the pope in the many calls for his help and charity , Pascalina organized and led the `` Magazzino '' , a private papal charity office which employed up to 40 helpers and continued until 1959 . employed up to 40 helpers the `` Magazzino ''
-To assist the pope in the many calls for his help and charity , Pascalina organized and led the `` Magazzino '' , a private papal charity office which employed up to 40 helpers and continued until 1959 . assisted the `` Magazzino '' the pope
-To assist the pope in the many calls for his help and charity , Pascalina organized and led the `` Magazzino '' , a private papal charity office which employed up to 40 helpers and continued until 1959 . had many calls for his help the pope
-To assist the pope in the many calls for his help and charity , Pascalina organized and led the `` Magazzino '' , a private papal charity office which employed up to 40 helpers and continued until 1959 . had many calls for his charity the pope
-To assist the pope in the many calls for his help and charity , Pascalina organized and led the `` Magazzino '' , a private papal charity office which employed up to 40 helpers and continued until 1959 . employed up to 40 helpers a private papal charity office
-To assist the pope in the many calls for his help and charity , Pascalina organized and led the `` Magazzino '' , a private papal charity office which employed up to 40 helpers and continued until 1959 . continued a private papal charity office until 1959
-To assist the pope in the many calls for his help and charity , Pascalina organized and led the `` Magazzino '' , a private papal charity office which employed up to 40 helpers and continued until 1959 . organized the `` Magazzino '' To assist Pascalina the pope
-To assist the pope in the many calls for his help and charity , Pascalina organized and led the `` Magazzino '' , a private papal charity office which employed up to 40 helpers and continued until 1959 . led the `` Magazzino '' To assist Pascalina the pope
-To keep the family together , Michael asks his self-centered twin sister Lindsay , her husband Tobias and their daughter Maeby to live together in the Bluth model home with him and George Michael . asks to live together in the Bluth model home with him and George Michael To keep the family together Michael his self-centered twin sister Lindsay
-To keep the family together , Michael asks his self-centered twin sister Lindsay , her husband Tobias and their daughter Maeby to live together in the Bluth model home with him and George Michael . asks to live together in the Bluth model home with him and George Michael To keep the family together Michael his self-centered twin sister Lindsay's husband Tobias
-To keep the family together , Michael asks his self-centered twin sister Lindsay , her husband Tobias and their daughter Maeby to live together in the Bluth model home with him and George Michael . is Lindsay Michael's self-centered twin sister
-To keep the family together , Michael asks his self-centered twin sister Lindsay , her husband Tobias and their daughter Maeby to live together in the Bluth model home with him and George Michael . is Tobias Lindsay's husband
-To keep the family together , Michael asks his self-centered twin sister Lindsay , her husband Tobias and their daughter Maeby to live together in the Bluth model home with him and George Michael . is daughter of Lindsay Maeby
-To keep the family together , Michael asks his self-centered twin sister Lindsay , her husband Tobias and their daughter Maeby to live together in the Bluth model home with him and George Michael . is daughter of Tobias Maeby
-To keep the family together , Michael asks his self-centered twin sister Lindsay , her husband Tobias and their daughter Maeby to live together in the Bluth model home with him and George Michael . asks to live together in the Bluth model home with him and George Michael To keep the family together Michael their daughter Maeby
-To keep the family together , Michael asks his self-centered twin sister Lindsay , her husband Tobias and their daughter Maeby to live together in the Bluth model home with him and George Michael . is self-centered Lindsay
-To keep the family together , Michael asks his self-centered twin sister Lindsay , her husband Tobias and their daughter Maeby to live together in the Bluth model home with him and George Michael . lives Michael in the Bluth model home
-To keep the family together , Michael asks his self-centered twin sister Lindsay , her husband Tobias and their daughter Maeby to live together in the Bluth model home with him and George Michael . lives George Michael in the Bluth model home
-To keep the family together , Michael asks his self-centered twin sister Lindsay , her husband Tobias and their daughter Maeby to live together in the Bluth model home with him and George Michael . lives with Michael George Michael in the Bluth model home
-To the Medieval school of Jewish Philosophy , that framed Judaism in light of Greek thought and human intellect , God the Infinite has no needs . framed Judaism in light of Greek thought the Medieval school of Jewish Philosophy
-To the Medieval school of Jewish Philosophy , that framed Judaism in light of Greek thought and human intellect , God the Infinite has no needs . framed Judaism in light of human intellect the Medieval school of Jewish Philosophy
-To the Medieval school of Jewish Philosophy , that framed Judaism in light of Greek thought and human intellect , God the Infinite has no needs . has no needs To God the Infinite the Medieval school of Jewish Philosophy
-To the north , along and across the same border , live speakers of Lakha . live speakers of Lakha To the north
-To the north , along and across the same border , live speakers of Lakha . live speakers of Lakha along the same border
-To the north , along and across the same border , live speakers of Lakha . live speakers of Lakha across the same border
-Total ` Fresh Food Story ' constructed at the end of the North Mall . is constructed at Total ` Fresh Food Story ' the end of the North Mall
-Transferred to Key West , Florida , on 1 June 1941 , `` R-11 '' continued her training ship duties throughout the remainder of her career . Transferred to `` R-11 '' Key West , Florida on 1 June 1941
-Transferred to Key West , Florida , on 1 June 1941 , `` R-11 '' continued her training ship duties throughout the remainder of her career . continued `` R-11 '' her training ship duties throughout the remainder of her career
-Transferred to Key West , Florida , on 1 June 1941 , `` R-11 '' continued her training ship duties throughout the remainder of her career . had `` R-11 '' training ship duties
-Transferred to Key West , Florida , on 1 June 1941 , `` R-11 '' continued her training ship duties throughout the remainder of her career . is in Key West Florida
-Transferred to Key West , Florida , on 1 June 1941 , `` R-11 '' continued her training ship duties throughout the remainder of her career . had a `` R-11 '' career
-Transferred to Key West , Florida , on 1 June 1941 , `` R-11 '' continued her training ship duties throughout the remainder of her career . was `` R-11 '' her
-Trumbull was often incorrectly credited in print as being the sole special-effects creator for 2001 . was often incorrectly credited as being Trumbull the sole special-effects creator for 2001 in print
-Twice divorced and currently married , Ladd is the mother of actress Laura Dern , by her ex-husband , actor Bruce Dern . was Ladd Twice divorced
-Twice divorced and currently married , Ladd is the mother of actress Laura Dern , by her ex-husband , actor Bruce Dern . is Ladd married currently
-Twice divorced and currently married , Ladd is the mother of actress Laura Dern , by her ex-husband , actor Bruce Dern . is the mother of Ladd actress Laura Dern
-Twice divorced and currently married , Ladd is the mother of actress Laura Dern , by her ex-husband , actor Bruce Dern . is the mother by Ladd her ex-husband , actor Bruce Dern
-Twice divorced and currently married , Ladd is the mother of actress Laura Dern , by her ex-husband , actor Bruce Dern . is Laura Dern an actress
-Twice divorced and currently married , Ladd is the mother of actress Laura Dern , by her ex-husband , actor Bruce Dern . is actor Bruce Dern Ladd's ex-husband
-Twice divorced and currently married , Ladd is the mother of actress Laura Dern , by her ex-husband , actor Bruce Dern . is Bruce Dern an actor
-Two seats were won by the Labor-Progressive Party on its own with the re-election of A.A. MacLeod and J.B. Salsberg . was of the re-election A.A. MacLeod
-Two seats were won by the Labor-Progressive Party on its own with the re-election of A.A. MacLeod and J.B. Salsberg . was of the re-election J.B. Salsberg
-Two seats were won by the Labor-Progressive Party on its own with the re-election of A.A. MacLeod and J.B. Salsberg . won on its own the Labor-Progressive Party Two seats
-Two seats were won by the Labor-Progressive Party on its own with the re-election of A.A. MacLeod and J.B. Salsberg . won A.A. MacLeod a seat
-Two seats were won by the Labor-Progressive Party on its own with the re-election of A.A. MacLeod and J.B. Salsberg . won J.B. Salsberg a seat
-Two seats were won by the Labor-Progressive Party on its own with the re-election of A.A. MacLeod and J.B. Salsberg . is in A.A. MacLeod Labor-Progressive Party
-Two seats were won by the Labor-Progressive Party on its own with the re-election of A.A. MacLeod and J.B. Salsberg . is in J.B. Salsberg Labor-Progressive Party
-Tyabb also has Tyabb Airport , a private airfield which has been operating for more than thirty years . also has Tyabb Tyabb Airport
-Tyabb also has Tyabb Airport , a private airfield which has been operating for more than thirty years . is Tyabb Airport a private airfield which has been operating for more than thirty years
-Tyabb also has Tyabb Airport , a private airfield which has been operating for more than thirty years . has been operating for Tyabb Airport more than thirty years
-Tyabb also has Tyabb Airport , a private airfield which has been operating for more than thirty years . is in Tyabb Airport Tyabb
-US 258 intersects NC 222 in Fountain before entering Edgecombe County . US 258 intersects NC 222 in Fountain
-US 258 intersects NC 222 in Fountain before entering Edgecombe County . US 258 intersects NC 222 Edgecombe County before entering
-Under the Comanche program , each company built different parts of the aircraft . built each company different parts of the aircraft
-Under the Comanche program , each company built different parts of the aircraft . Under each company built different parts of the aircraft the Comanche program
-Unlike Uncle Sam later , he is not a figure of authority but rather a yeoman who prefers his small beer and domestic peace , possessed of neither patriarchal power nor heroic defiance . is not he a figure of authority
-Unlike Uncle Sam later , he is not a figure of authority but rather a yeoman who prefers his small beer and domestic peace , possessed of neither patriarchal power nor heroic defiance . is rather he a yeoman who prefers his small beer and domestic peace
-Unlike Uncle Sam later , he is not a figure of authority but rather a yeoman who prefers his small beer and domestic peace , possessed of neither patriarchal power nor heroic defiance . is rather he possessed of neither patriarchal power nor heroic defiance
-Unlike Uncle Sam later , he is not a figure of authority but rather a yeoman who prefers his small beer and domestic peace , possessed of neither patriarchal power nor heroic defiance . is possessed of he neither patriarchal power nor heroic defiance
-Unlike Uncle Sam later , he is not a figure of authority but rather a yeoman who prefers his small beer and domestic peace , possessed of neither patriarchal power nor heroic defiance . is Unlike he Uncle Sam
-Unlike Uncle Sam later , he is not a figure of authority but rather a yeoman who prefers his small beer and domestic peace , possessed of neither patriarchal power nor heroic defiance . is Uncle Sam a figure of authority later
-Unlike Uncle Sam later , he is not a figure of authority but rather a yeoman who prefers his small beer and domestic peace , possessed of neither patriarchal power nor heroic defiance . prefers he his small beer
-Unlike Uncle Sam later , he is not a figure of authority but rather a yeoman who prefers his small beer and domestic peace , possessed of neither patriarchal power nor heroic defiance . prefers he his domestic peace
-Unruly passengers are often put off here to be taken into custody . are often put off Unruly passengers here
-Unruly passengers are often put off here to be taken into custody . are often put off to be Unruly passengers taken into custody
-Wakeboarding is practiced by both men and women at the competitive level , but they compete in separate categories . is practiced by Wakeboarding men
-Wakeboarding is practiced by both men and women at the competitive level , but they compete in separate categories . is practiced by Wakeboarding women
-Wakeboarding is practiced by both men and women at the competitive level , but they compete in separate categories . is practiced at Wakeboarding the competitive level
-Wakeboarding is practiced by both men and women at the competitive level , but they compete in separate categories . compete in men separate categories
-Wakeboarding is practiced by both men and women at the competitive level , but they compete in separate categories . compete in women separate categories
-Wakeboarding is practiced by both men and women at the competitive level , but they compete in separate categories . compete in they separate categories
-Wakeboarding is practiced by both men and women at the competitive level , but they compete in separate categories . but Wakeboarding is practiced by both men and women at the competitive level they compete in separate categories
-Watson has served as Minority Leader since elected by his caucus in November 1998 . has served as Watson Minority Leader since elected by his caucus in November 1998
-Watson has served as Minority Leader since elected by his caucus in November 1998 . was elected by Watson his caucus in November 1998
-Watson has served as Minority Leader since elected by his caucus in November 1998 . was elected as Watson Minority Leader in November 1998
-Watson was the founder and editor of `` newcritics.com , '' an online journal of media and arts criticism launched in January , 2007 and shuttered in June , 2009 . was the founder of Watson `` newcritics.com , '' an online journal of media and arts criticism launched in January , 2007 and shuttered in June , 2009
-Watson was the founder and editor of `` newcritics.com , '' an online journal of media and arts criticism launched in January , 2007 and shuttered in June , 2009 . was the editor of Watson `` newcritics.com , '' an online journal of media and arts criticism launched in January , 2007 and shuttered in June , 2009
-Watson was the founder and editor of `` newcritics.com , '' an online journal of media and arts criticism launched in January , 2007 and shuttered in June , 2009 . was launched `` newcritics.com , '' an online journal of media and arts criticism in January , 2007
-Watson was the founder and editor of `` newcritics.com , '' an online journal of media and arts criticism launched in January , 2007 and shuttered in June , 2009 . was shuttered `` newcritics.com , '' an online journal of media and arts criticism in June , 2009
-Watson was the founder and editor of `` newcritics.com , '' an online journal of media and arts criticism launched in January , 2007 and shuttered in June , 2009 . was an online journal of media criticism `` newcritics.com ''
-Watson was the founder and editor of `` newcritics.com , '' an online journal of media and arts criticism launched in January , 2007 and shuttered in June , 2009 . was an online journal of arts criticism `` newcritics.com ''
-When Naguib began showing signs of independence from Nasser by distancing himself from the RCC 's land reform decrees and drawing closer to Egypt 's established political forces , namely the Wafd and the Brotherhood , Nasser resolved to depose him . began showing Naguib signs of independence from Nasser
-When Naguib began showing signs of independence from Nasser by distancing himself from the RCC 's land reform decrees and drawing closer to Egypt 's established political forces , namely the Wafd and the Brotherhood , Nasser resolved to depose him . began showing signs of independence by Naguib distancing himself from the RCC 's land reform decrees
-When Naguib began showing signs of independence from Nasser by distancing himself from the RCC 's land reform decrees and drawing closer to Egypt 's established political forces , namely the Wafd and the Brotherhood , Nasser resolved to depose him . began showing signs of independence by Naguib drawing closer to Egypt 's established political forces , namely the Wafd and the Brotherhood
-When Naguib began showing signs of independence from Nasser by distancing himself from the RCC 's land reform decrees and drawing closer to Egypt 's established political forces , namely the Wafd and the Brotherhood , Nasser resolved to depose him . resolved to Nasser depose him When Naguib began showing signs of independence from Nasser by distancing himself from the RCC 's land reform decrees and drawing closer to Egypt 's established political forces
-When Naguib began showing signs of independence from Nasser by distancing himself from the RCC 's land reform decrees and drawing closer to Egypt 's established political forces , namely the Wafd and the Brotherhood , Nasser resolved to depose him . are established political forces the Wafd and the Brotherhood Egypt
-When Naguib began showing signs of independence from Nasser by distancing himself from the RCC 's land reform decrees and drawing closer to Egypt 's established political forces , namely the Wafd and the Brotherhood , Nasser resolved to depose him . has land reform decrees RCC
-When civilian government was introduced in Romblon by the Americans in 16 March 1901 , Banton was one of 11 new municipalities reinstated or created . was introduced by civilian government the Americans in Romblon in 16 March 1901
-When civilian government was introduced in Romblon by the Americans in 16 March 1901 , Banton was one of 11 new municipalities reinstated or created . was one of Banton 11 new municipalities reinstated or created in Romblon When civilian government was introduced by the Americans in 16 March 1901
-When civilian government was introduced in Romblon by the Americans in 16 March 1901 , Banton was one of 11 new municipalities reinstated or created . were reinstated new municipalities Romblon When civilian government was introduced by the Americans in 16 March 1901
-When civilian government was introduced in Romblon by the Americans in 16 March 1901 , Banton was one of 11 new municipalities reinstated or created . were created new municipalities Romblon When civilian government was introduced by the Americans in 16 March 1901
-When the explosion tore through the hut , Stauffenberg was convinced that no one in the room could have survived . was convinced that Stauffenberg no one in the room could have survived When the explosion tore through the hut
-When the explosion tore through the hut , Stauffenberg was convinced that no one in the room could have survived . tore through the explosion the hut
-When the explosion tore through the hut , Stauffenberg was convinced that no one in the room could have survived . could have survived no one in the room When the explosion tore through the hut
-While pursuing his MFA at Columbia in New York , Scieszka painted apartments . painted Scieszka apartments While pursuing his MFA at Columbia in New York
-While pursuing his MFA at Columbia in New York , Scieszka painted apartments . was pursuing Scieszka his MFA at Columbia in New York
-While pursuing his MFA at Columbia in New York , Scieszka painted apartments . is Columbia in New York
-Why the `` Epilogue '' is missing is unknown . is unknown Why the `` Epilogue '' is missing
-Why the `` Epilogue '' is missing is unknown . is missing the `` Epilogue ''
-Wide acceptance of zero-energy building technology may require more government incentives or building code regulations , the development of recognized standards , or significant increases in the cost of conventional energy . may require more Wide acceptance of zero-energy building technology government incentives
-Wide acceptance of zero-energy building technology may require more government incentives or building code regulations , the development of recognized standards , or significant increases in the cost of conventional energy . may require more Wide acceptance of zero-energy building technology building code regulations
-Wide acceptance of zero-energy building technology may require more government incentives or building code regulations , the development of recognized standards , or significant increases in the cost of conventional energy . may require Wide acceptance of zero-energy building technology the development of recognized standards
-Wide acceptance of zero-energy building technology may require more government incentives or building code regulations , the development of recognized standards , or significant increases in the cost of conventional energy . may require Wide acceptance of zero-energy building technology significant increases in the cost of conventional energy
-With no assigned task , the Cosmos expressed concern for what Battra might do . expressed concern for the Cosmos what Battra might do
-With no assigned task , the Cosmos expressed concern for what Battra might do . had no assigned task Battra
-With no assigned task , the Cosmos expressed concern for what Battra might do . was assigned no task
-With no assigned task , the Cosmos expressed concern for what Battra might do . was expressed concern
-With the help of Morena , the goddess of the underworld , she has captivated Yaromir . has captivated she Yaromir
-With the help of Morena , the goddess of the underworld , she has captivated Yaromir . is the goddess of Morena the underworld
-With the help of Morena , the goddess of the underworld , she has captivated Yaromir . has had the help of she Morena
-With the help of Morena , the goddess of the underworld , she has captivated Yaromir . has a goddess the underworld
-With this act , Russia was officially transformed from an absolute monarchy into a constitutional one , though the exact extent of just `` how '' constitutional quickly became the subject of debate , based upon the emperor 's subsequent actions . was officially transformed from Russia an absolute monarchy With this act
-With this act , Russia was officially transformed from an absolute monarchy into a constitutional one , though the exact extent of just `` how '' constitutional quickly became the subject of debate , based upon the emperor 's subsequent actions . was officially transformed into Russia a constitutional monarchy With this act
-With this act , Russia was officially transformed from an absolute monarchy into a constitutional one , though the exact extent of just `` how '' constitutional quickly became the subject of debate , based upon the emperor 's subsequent actions . quickly became the exact extent of just `` how '' constitutional the subject of debate
-With this act , Russia was officially transformed from an absolute monarchy into a constitutional one , though the exact extent of just `` how '' constitutional quickly became the subject of debate , based upon the emperor 's subsequent actions . based upon the exact extent of just `` how '' constitutional became the subject of debate the emperor 's subsequent actions
-With versions in 1/48 , 1/72 , 1/96 , and 1/144 scale , Big Gun Model Warship combat clubs have rules that make provisions for cannon caliber and armor thickness to be scaled according to that which existed on the prototype vessel . has combat clubs Big Gun Model Warship
-With versions in 1/48 , 1/72 , 1/96 , and 1/144 scale , Big Gun Model Warship combat clubs have rules that make provisions for cannon caliber and armor thickness to be scaled according to that which existed on the prototype vessel . have rules Big Gun Model Warship combat clubs
-With versions in 1/48 , 1/72 , 1/96 , and 1/144 scale , Big Gun Model Warship combat clubs have rules that make provisions for cannon caliber and armor thickness to be scaled according to that which existed on the prototype vessel . make provisions for Big Gun Model Warship combat clubs' rules cannon caliber to be scaled according to that which existed on the prototype vessel
-With versions in 1/48 , 1/72 , 1/96 , and 1/144 scale , Big Gun Model Warship combat clubs have rules that make provisions for cannon caliber and armor thickness to be scaled according to that which existed on the prototype vessel . make provisions for Big Gun Model Warship combat clubs rules armor thickness to be scaled according to that which existed on the prototype vessel
-With versions in 1/48 , 1/72 , 1/96 , and 1/144 scale , Big Gun Model Warship combat clubs have rules that make provisions for cannon caliber and armor thickness to be scaled according to that which existed on the prototype vessel . has versions in Big Gun Model Warship 1/48 scale
-With versions in 1/48 , 1/72 , 1/96 , and 1/144 scale , Big Gun Model Warship combat clubs have rules that make provisions for cannon caliber and armor thickness to be scaled according to that which existed on the prototype vessel . has versions in Big Gun Model Warship 1/72 scale
-With versions in 1/48 , 1/72 , 1/96 , and 1/144 scale , Big Gun Model Warship combat clubs have rules that make provisions for cannon caliber and armor thickness to be scaled according to that which existed on the prototype vessel . has versions in Big Gun Model Warship 1/96 scale
-With versions in 1/48 , 1/72 , 1/96 , and 1/144 scale , Big Gun Model Warship combat clubs have rules that make provisions for cannon caliber and armor thickness to be scaled according to that which existed on the prototype vessel . has versions in Big Gun Model Warship 1/144 scale
-Wright was the subject of `` This Is Your Life '' on two occasions : in May 1961 when he was surprised by Eamonn Andrews , and in January 1990 , when Michael Aspel surprised him at Thames Television 's Teddington Studios . was the subject of Wright `` This Is Your Life ''
-Wright was the subject of `` This Is Your Life '' on two occasions : in May 1961 when he was surprised by Eamonn Andrews , and in January 1990 , when Michael Aspel surprised him at Thames Television 's Teddington Studios . was the subject on Wright two occasions
-Wright was the subject of `` This Is Your Life '' on two occasions : in May 1961 when he was surprised by Eamonn Andrews , and in January 1990 , when Michael Aspel surprised him at Thames Television 's Teddington Studios . was the subject in Wright May 1961
-Wright was the subject of `` This Is Your Life '' on two occasions : in May 1961 when he was surprised by Eamonn Andrews , and in January 1990 , when Michael Aspel surprised him at Thames Television 's Teddington Studios . was the subject in Wright January 1990
-Wright was the subject of `` This Is Your Life '' on two occasions : in May 1961 when he was surprised by Eamonn Andrews , and in January 1990 , when Michael Aspel surprised him at Thames Television 's Teddington Studios . was surprised by Wright Eamonn Andrews in May 1961
-Wright was the subject of `` This Is Your Life '' on two occasions : in May 1961 when he was surprised by Eamonn Andrews , and in January 1990 , when Michael Aspel surprised him at Thames Television 's Teddington Studios . surprised Michael Aspel Wright at Thames Television 's Teddington Studios in January 1990
-Wright was the subject of `` This Is Your Life '' on two occasions : in May 1961 when he was surprised by Eamonn Andrews , and in January 1990 , when Michael Aspel surprised him at Thames Television 's Teddington Studios . has Thames Television Teddington Studios
-`` Black Water '' became one of the few records by any act released as a B-side to another Hot 100 hit `` before '' topping the Hot 100 itself . became `` Black Water '' one of the few records by any act released as a B-side to another Hot 100 hit `` before '' topping the Hot 100 itself
-`` Black Water '' became one of the few records by any act released as a B-side to another Hot 100 hit `` before '' topping the Hot 100 itself . was released as `` Black Water '' a B-side to another Hot 100 hit before topping the Hot 100
-`` Black Water '' became one of the few records by any act released as a B-side to another Hot 100 hit `` before '' topping the Hot 100 itself . topped `` Black Water '' the Hot 100 itself
-`` For a list of all medalists , please see the List of Great American Beer Festival medalists '' see the List of Great American Beer Festival medalists For a list of all medalists
-`` Greenfish '' was launched by the Electric Boat Co. , Groton , Conn. , 21 December 1945 ; sponsored by Mrs. Thomas J. Doyle ; and commissioned 7 June 1946 , Comdr. R. M. Metcalf commanding . was launched by Greenfish the Electric Boat Co. Groton Conn. 21 December 1945
-`` Greenfish '' was launched by the Electric Boat Co. , Groton , Conn. , 21 December 1945 ; sponsored by Mrs. Thomas J. Doyle ; and commissioned 7 June 1946 , Comdr. R. M. Metcalf commanding . was sponsored by Greenfish Mrs. Thomas J. Doyle Groton Conn. 21 December 1945
-`` Greenfish '' was launched by the Electric Boat Co. , Groton , Conn. , 21 December 1945 ; sponsored by Mrs. Thomas J. Doyle ; and commissioned 7 June 1946 , Comdr. R. M. Metcalf commanding . was commissioned by Greenfish the Electric Boat Co. Groton Conn. 7 June 1946
-`` Greenfish '' was launched by the Electric Boat Co. , Groton , Conn. , 21 December 1945 ; sponsored by Mrs. Thomas J. Doyle ; and commissioned 7 June 1946 , Comdr. R. M. Metcalf commanding . was commanding Comdr. R. M. Metcalf Greenfish Groton Conn. 7 June 1946
-`` It started from modest beginnings and became a gigantic charity '' . started from It modest beginnings
-`` It started from modest beginnings and became a gigantic charity '' . became It a gigantic charity
-`` Le Griffon '' is reported to be the `` Holy Grail '' of Great Lakes shipwreck hunters . is reported to be Le Griffon the Holy Grail of Great Lakes shipwreck hunters
-`` See also : Grand Duke of Luxembourg , List of Prime Ministers of Luxembourg '' has Luxembourg a Grand Duke
-`` See also : Grand Duke of Luxembourg , List of Prime Ministers of Luxembourg '' has Luxembourg Prime Ministers
-`` The Cure '' topped the online music sales charts . topped The Cure the online music sales charts
-he was one of only a few concert organists worldwide who supported themselves exclusively by giving recitals , concerts and master classes , without any supplement from teaching or church position . was he one of only a few concert organists worldwide who supported themselves exclusively by giving recitals , concerts and master classes , without any supplement from teaching or church position
-he was one of only a few concert organists worldwide who supported themselves exclusively by giving recitals , concerts and master classes , without any supplement from teaching or church position . was one of only a few concert organists worldwide who supported he themselves exclusively by giving recitals , concerts and master classes , without any supplement from teaching or church position
-he was one of only a few concert organists worldwide who supported themselves exclusively by giving recitals , concerts and master classes , without any supplement from teaching or church position . was only a few concert organists worldwide who supported themselves exclusively by giving he recitals , without any supplement from teaching or church position
-he was one of only a few concert organists worldwide who supported themselves exclusively by giving recitals , concerts and master classes , without any supplement from teaching or church position . was one of only a few concert organists worldwide who supported themselves exclusively by giving he concerts , without any supplement from teaching or church position
-he was one of only a few concert organists worldwide who supported themselves exclusively by giving recitals , concerts and master classes , without any supplement from teaching or church position . was one of only a few concert organists worldwide who supported themselves exclusively by giving he master classes , without any supplement from teaching or church position
-he was one of only a few concert organists worldwide who supported themselves exclusively by giving recitals , concerts and master classes , without any supplement from teaching or church position . supported himself without any supplement from he teaching
-he was one of only a few concert organists worldwide who supported themselves exclusively by giving recitals , concerts and master classes , without any supplement from teaching or church position . supported himself without any supplement from he church position
-$ 300 million of bonds due Nov. 16 , 1993 , with equity - purchase warrants , indicating a 3 3\/4 % coupon at par via Nomura International Ltd . due , with $ 300 million of bonds equity - purchase warrants , indicating a 3 3\/4 % coupon at par via Nomura International Ltd equity - purchase warrants on Nov. 16 , 1993
-$ 300 million of bonds due Nov. 16 , 1993 , with equity - purchase warrants , indicating a 3 3\/4 % coupon at par via Nomura International Ltd . indicate $ 300 million of bonds a 3 3\/4 % coupon at par via Nomura International Ltd Nov. 16 , 1993
-$ 300 million of bonds due Nov. 16 , 1993 , with equity - purchase warrants , indicating a 3 3\/4 % coupon at par via Nomura International Ltd . is via 3 3\/4 % coupon at par Nomura International Ltd
-$ 300 million of bonds due Nov. 16 , 1993 , with equity - purchase warrants , indicating a 3 3\/4 % coupon at par via Nomura International Ltd . is with $ 300 million of bonds equity - purchase warrants
-( Separately , the Senate last week passed a bill permitting execution of terrorists who kill Americans abroad . ) Separately passed ( the Senate a bill permitting execution of terrorists who kill Americans abroad , last week . )
-( Separately , the Senate last week passed a bill permitting execution of terrorists who kill Americans abroad . ) permitting execution of a bill terrorists who kill Americans abroad
-( Separately , the Senate last week passed a bill permitting execution of terrorists who kill Americans abroad . ) kill terrorists Americans abroad
-A San Francisco lawyer , Mr. Panelli rowed religiously when he first got the machine , but , he complains , it left grease marks on his carpet , `` and it was boring . is Mr. Panelli A San Francisco lawyer
-A San Francisco lawyer , Mr. Panelli rowed religiously when he first got the machine , but , he complains , it left grease marks on his carpet , `` and it was boring . rowed religiously when he first got A San Francisco lawyer , Mr. Panelli the machine , but , he complains , it left grease marks on his carpet , `` and it was boring
-A San Francisco lawyer , Mr. Panelli rowed religiously when he first got the machine , but , he complains , it left grease marks on his carpet , `` and it was boring . complains A San Francisco lawyer , Mr. Panelli the machine left grease marks on his carpet
-A San Francisco lawyer , Mr. Panelli rowed religiously when he first got the machine , but , he complains , it left grease marks on his carpet , `` and it was boring . complains A San Francisco lawyer , Mr. Panelli the machine was boring
-A San Francisco lawyer , Mr. Panelli rowed religiously when he first got the machine , but , he complains , it left grease marks on his carpet , `` and it was boring . rowed religiously when he first got A San Francisco lawyer , Mr. Panelli the machine
-A San Francisco lawyer , Mr. Panelli rowed religiously when he first got the machine , but , he complains , it left grease marks on his carpet , `` and it was boring . left grease marks on the machine his carpet
-A half - dozen Soviet space officials , in Tokyo in July for an exhibit , stopped by to see their counterparts at the National Space Development Agency of Japan . in Tokyo for an exhibit , stopped by to see A half - dozen Soviet space officials their counterparts at the National Space Development Agency of Japan in Tokyo in July
-A half - dozen Soviet space officials , in Tokyo in July for an exhibit , stopped by to see their counterparts at the National Space Development Agency of Japan . were at A half - dozen Soviet space officials an exhibit in Tokyo in July
-A half - dozen Soviet space officials , in Tokyo in July for an exhibit , stopped by to see their counterparts at the National Space Development Agency of Japan . are at their counterparts the National Space Development Agency of Japan in Tokyo
-A month ago , when Beatrice first filed to sell debt , the company had planned to offer $ 200 million of its senior subordinated reset notes at a yield of 12 3\/4 % . first filed to sell Beatrice debt A month ago
-A month ago , when Beatrice first filed to sell debt , the company had planned to offer $ 200 million of its senior subordinated reset notes at a yield of 12 3\/4 % . had planned to offer the company $ 200 million of its senior subordinated reset notes at a yield of 12 3\/4 %
-A month ago , when Beatrice first filed to sell debt , the company had planned to offer $ 200 million of its senior subordinated reset notes at a yield of 12 3\/4 % . has the company senior subordinated reset notes
-A month ago , when Beatrice first filed to sell debt , the company had planned to offer $ 200 million of its senior subordinated reset notes at a yield of 12 3\/4 % . will be at yield of senior subordinated reset notes 12 3\/4 %
-A similar technique is almost impossible to apply to other crops , such as cotton , soybeans and rice . is almost impossible to apply to A similar technique other crops
-A similar technique is almost impossible to apply to other crops , such as cotton , soybeans and rice . is almost impossible to apply to A similar technique cotton
-A similar technique is almost impossible to apply to other crops , such as cotton , soybeans and rice . is almost impossible to apply to A similar technique soybeans
-A similar technique is almost impossible to apply to other crops , such as cotton , soybeans and rice . is almost impossible to apply to A similar technique rice
-A similar technique is almost impossible to apply to other crops , such as cotton , soybeans and rice . are such as other crops cotton
-A similar technique is almost impossible to apply to other crops , such as cotton , soybeans and rice . are such as other crops soybeans
-A similar technique is almost impossible to apply to other crops , such as cotton , soybeans and rice . are such as other crops rice
-A specialist is an exchange member designated to maintain a fair and orderly market in a specified stock . is A specialist an exchange member designated to maintain a fair and orderly market in a specified stock
-A specialist is an exchange member designated to maintain a fair and orderly market in a specified stock . is designated to maintain an exchange member a fair and orderly market in a specified stock
-A specialist is an exchange member designated to maintain a fair and orderly market in a specified stock . is designated to maintain an exchange member a fair market in a specified stock
-A specialist is an exchange member designated to maintain a fair and orderly market in a specified stock . is designated to maintain an exchange member an orderly market in a specified stock
-A state judge postponed a decision on a move by holders of Telerate Inc. to block the tender offer of Dow Jones & Co. for the 33 % of Telerate it does n't already own . postponed a decision on A state judge a move by holders of Telerate Inc. to block the tender offer of Dow Jones & Co. for the 33 % of Telerate it does n't already own
-A state judge postponed a decision on a move by holders of Telerate Inc. to block the tender offer of Dow Jones & Co. for the 33 % of Telerate it does n't already own . has holders Telerate Inc.
-A state judge postponed a decision on a move by holders of Telerate Inc. to block the tender offer of Dow Jones & Co. for the 33 % of Telerate it does n't already own . has tender offer for Dow Jones & Co. the 33 % of Telerate it does n't already own
-A state judge postponed a decision on a move by holders of Telerate Inc. to block the tender offer of Dow Jones & Co. for the 33 % of Telerate it does n't already own . does n't already own Dow Jones & Co. 33 % of Telerate
-A state judge postponed a decision on a move by holders of Telerate Inc. to block the tender offer of Dow Jones & Co. for the 33 % of Telerate it does n't already own . was postponed a decision on a move by holders of Telerate Inc. to block the tender offer of Dow Jones & Co. for the 33 % of Telerate it does n't already own
-A year earlier UniFirst earned $ 2.4 million , or 24 cents a share adjusted for the split . earned UniFirst $ 2.4 million A year earlier
-A year earlier UniFirst earned $ 2.4 million , or 24 cents a share adjusted for the split . earned UniFirst 24 cents a share adjusted for the split A year earlier
-About $ 70 billion is estimated to be tied up in the short - term money market , which acts both as a hedge against inflation for consumers and an accelerator of inflation and deficits for the government . acts as the short - term money market a hedge against inflation for consumers
-About $ 70 billion is estimated to be tied up in the short - term money market , which acts both as a hedge against inflation for consumers and an accelerator of inflation and deficits for the government . acts as the short - term money market an accelerator of inflation for the government
-About $ 70 billion is estimated to be tied up in the short - term money market , which acts both as a hedge against inflation for consumers and an accelerator of inflation and deficits for the government . acts as the short - term money market an accelerator of deficits for the government
-About $ 70 billion is estimated to be tied up in the short - term money market , which acts both as a hedge against inflation for consumers and an accelerator of inflation and deficits for the government . is estimated to be tied up in About $ 70 billion the short - term money market
-According to one person familiar with the airline , the buy - out group -- led by United 's pilots union and UAL Chairman Stephen Wolf -- has begun billing UAL for fees and expenses it owes to investment bankers , law firms and banks . According to the buy - out group has begun billing UAL for fees and expenses it owes to investment bankers , law firms and banks one person familiar with the airline
-According to one person familiar with the airline , the buy - out group -- led by United 's pilots union and UAL Chairman Stephen Wolf -- has begun billing UAL for fees and expenses it owes to investment bankers , law firms and banks . is led by the buy - out group United 's pilots union
-According to one person familiar with the airline , the buy - out group -- led by United 's pilots union and UAL Chairman Stephen Wolf -- has begun billing UAL for fees and expenses it owes to investment bankers , law firms and banks . is led by the buy - out group UAL Chairman Stephen Wolf
-According to one person familiar with the airline , the buy - out group -- led by United 's pilots union and UAL Chairman Stephen Wolf -- has begun billing UAL for fees and expenses it owes to investment bankers , law firms and banks . is Chairman Stephen Wolf UAL
-According to one person familiar with the airline , the buy - out group -- led by United 's pilots union and UAL Chairman Stephen Wolf -- has begun billing UAL for fees and expenses it owes to investment bankers , law firms and banks . has begun billing the buy - out group UAL
-According to one person familiar with the airline , the buy - out group -- led by United 's pilots union and UAL Chairman Stephen Wolf -- has begun billing UAL for fees and expenses it owes to investment bankers , law firms and banks . has begun billing for the buy - out group fees it owes to investment bankers , law firms and banks
-According to one person familiar with the airline , the buy - out group -- led by United 's pilots union and UAL Chairman Stephen Wolf -- has begun billing UAL for fees and expenses it owes to investment bankers , law firms and banks . has begun billing for the buy - out group expenses it owes to investment bankers , law firms and banks
-According to one person familiar with the airline , the buy - out group -- led by United 's pilots union and UAL Chairman Stephen Wolf -- has begun billing UAL for fees and expenses it owes to investment bankers , law firms and banks . owes expenses to the buy - out group investment bankers
-According to one person familiar with the airline , the buy - out group -- led by United 's pilots union and UAL Chairman Stephen Wolf -- has begun billing UAL for fees and expenses it owes to investment bankers , law firms and banks . owes expenses to the buy - out group law firms
-According to one person familiar with the airline , the buy - out group -- led by United 's pilots union and UAL Chairman Stephen Wolf -- has begun billing UAL for fees and expenses it owes to investment bankers , law firms and banks . owes expenses to the buy - out group banks
-According to one person familiar with the airline , the buy - out group -- led by United 's pilots union and UAL Chairman Stephen Wolf -- has begun billing UAL for fees and expenses it owes to investment bankers , law firms and banks . owes fees to the buy - out group investment bankers
-According to one person familiar with the airline , the buy - out group -- led by United 's pilots union and UAL Chairman Stephen Wolf -- has begun billing UAL for fees and expenses it owes to investment bankers , law firms and banks . owes fees to the buy - out group law firms
-According to one person familiar with the airline , the buy - out group -- led by United 's pilots union and UAL Chairman Stephen Wolf -- has begun billing UAL for fees and expenses it owes to investment bankers , law firms and banks . owes fees to the buy - out group banks
-According to one person familiar with the airline , the buy - out group -- led by United 's pilots union and UAL Chairman Stephen Wolf -- has begun billing UAL for fees and expenses it owes to investment bankers , law firms and banks . is familiar with one person the airline
-According to one person familiar with the airline , the buy - out group -- led by United 's pilots union and UAL Chairman Stephen Wolf -- has begun billing UAL for fees and expenses it owes to investment bankers , law firms and banks . has United pilots union
-According to one person familiar with the airline , the buy - out group -- led by United 's pilots union and UAL Chairman Stephen Wolf -- has begun billing UAL for fees and expenses it owes to investment bankers , law firms and banks . has UAL Chairman
-After practicing law locally , he was elected to his first 10 - year term as judge in 1971 ; in 1981 , he was effectively re - elected . was elected to he his first 10 - year term as judge in 1971
-After practicing law locally , he was elected to his first 10 - year term as judge in 1971 ; in 1981 , he was effectively re - elected . was effectively re - elected he in 1981
-After practicing law locally , he was elected to his first 10 - year term as judge in 1971 ; in 1981 , he was effectively re - elected . was elected to he his first 10 - year term as judge After practicing law locally
-After practicing law locally , he was elected to his first 10 - year term as judge in 1971 ; in 1981 , he was effectively re - elected . was elected After practicing he law locally
-After practicing law locally , he was elected to his first 10 - year term as judge in 1971 ; in 1981 , he was effectively re - elected . was practicing law he locally
-After years of talking about selling in Japan , more and more U.S. companies are seriously pouring in . are seriously pouring in more and more U.S. companies After years of talking about selling in Japan
-After years of talking about selling in Japan , more and more U.S. companies are seriously pouring in . were talking about more and more U.S. companies selling in Japan
-Although Heathrow authorities have been watching a group of allegedly crooked baggage handlers for some time , the Gauguin may be `` lost . '' have been watching Heathrow authorities a group of allegedly crooked baggage handlers for some time
-Although Heathrow authorities have been watching a group of allegedly crooked baggage handlers for some time , the Gauguin may be `` lost . '' are allegedly crooked a group of baggage handlers
-Although Heathrow authorities have been watching a group of allegedly crooked baggage handlers for some time , the Gauguin may be `` lost . '' are in authorities Heathrow
-Although Heathrow authorities have been watching a group of allegedly crooked baggage handlers for some time , the Gauguin may be `` lost . '' may be `` lost '' the Gauguin
-Although the Treasury will announce details of the November refunding tomorrow , it could be delayed if Congress and President Bush fail to increase the Treasury 's borrowing capacity . will announce the Treasury details of the November refunding tomorrow
-Although the Treasury will announce details of the November refunding tomorrow , it could be delayed if Congress and President Bush fail to increase the Treasury 's borrowing capacity . could be delayed if November refunding President Bush and Congress fail to increase the Treasury 's borrowing capacity
-Although the Treasury will announce details of the November refunding tomorrow , it could be delayed if Congress and President Bush fail to increase the Treasury 's borrowing capacity . is President Bush
-And , since the public has always been fascinated by gossip and voyeurism , reporters and editors will strain for creative angles to justify the inclusion of collateral facts about private lives including sexual activities and domestic relationships , activities of family members , and all matters about mental and physical health . has been fascinated by the public gossip always
-And , since the public has always been fascinated by gossip and voyeurism , reporters and editors will strain for creative angles to justify the inclusion of collateral facts about private lives including sexual activities and domestic relationships , activities of family members , and all matters about mental and physical health . has been fascinated by the public voyeurism always
-And , since the public has always been fascinated by gossip and voyeurism , reporters and editors will strain for creative angles to justify the inclusion of collateral facts about private lives including sexual activities and domestic relationships , activities of family members , and all matters about mental and physical health . will strain for reporters creative angles to justify the inclusion of collateral facts about private lives including sexual activities and domestic relationships , activities of family members , and all matters about mental and physical health
-And , since the public has always been fascinated by gossip and voyeurism , reporters and editors will strain for creative angles to justify the inclusion of collateral facts about private lives including sexual activities and domestic relationships , activities of family members , and all matters about mental and physical health . will strain for editors creative angles to justify the inclusion of collateral facts about private lives including sexual activities and domestic relationships , activities of family members , and all matters about mental and physical health
-And , since the public has always been fascinated by gossip and voyeurism , reporters and editors will strain for creative angles to justify the inclusion of collateral facts about private lives including sexual activities and domestic relationships , activities of family members , and all matters about mental and physical health . including collateral facts about private lives sexual activities and domestic relationships , activities of family members , and all matters about mental and physical health
-And , since the public has always been fascinated by gossip and voyeurism , reporters and editors will strain for creative angles to justify the inclusion of collateral facts about private lives including sexual activities and domestic relationships , activities of family members , and all matters about mental and physical health . including collateral facts about private lives sexual activities
-And , since the public has always been fascinated by gossip and voyeurism , reporters and editors will strain for creative angles to justify the inclusion of collateral facts about private lives including sexual activities and domestic relationships , activities of family members , and all matters about mental and physical health . including collateral facts about private lives domestic relationships
-And , since the public has always been fascinated by gossip and voyeurism , reporters and editors will strain for creative angles to justify the inclusion of collateral facts about private lives including sexual activities and domestic relationships , activities of family members , and all matters about mental and physical health . including collateral facts about private lives activities of family members
-And , since the public has always been fascinated by gossip and voyeurism , reporters and editors will strain for creative angles to justify the inclusion of collateral facts about private lives including sexual activities and domestic relationships , activities of family members , and all matters about mental and physical health . including collateral facts about private lives all matters about mental health
-And , since the public has always been fascinated by gossip and voyeurism , reporters and editors will strain for creative angles to justify the inclusion of collateral facts about private lives including sexual activities and domestic relationships , activities of family members , and all matters about mental and physical health . including collateral facts about private lives all matters about physical health
-And , since the public has always been fascinated by gossip and voyeurism , reporters and editors will strain for creative angles to justify the inclusion of collateral facts about private lives including sexual activities and domestic relationships , activities of family members , and all matters about mental and physical health . since reporters will strain for creative angles to justify the inclusion of collateral facts about private lives including sexual activities and domestic relationships , activities of family members , and all matters about mental and physical health the public has always been fascinated by gossip and voyeurism
-And , since the public has always been fascinated by gossip and voyeurism , reporters and editors will strain for creative angles to justify the inclusion of collateral facts about private lives including sexual activities and domestic relationships , activities of family members , and all matters about mental and physical health . since editors will strain for creative angles to justify the inclusion of collateral facts about private lives including sexual activities and domestic relationships , activities of family members , and all matters about mental and physical health the public has always been fascinated by gossip and voyeurism
-And , since the public has always been fascinated by gossip and voyeurism , reporters and editors will strain for creative angles to justify the inclusion of collateral facts about private lives including sexual activities and domestic relationships , activities of family members , and all matters about mental and physical health . facts about private lives including sexual activities and domestic relationships , activities of family members , and all matters about mental and physical health are collateral
-And Dewar 's gave discounts on Scottish merchandise to people who sent in bottle labels . gave discounts on Dewar 's Scottish merchandise
-And Dewar 's gave discounts on Scottish merchandise to people who sent in bottle labels . gave Dewar 's discounts on Scottish merchandise
-And Dewar 's gave discounts on Scottish merchandise to people who sent in bottle labels . gave discounts on Scottish merchandise to Dewar 's people who sent in bottle labels
-And do n't expect many complete games by pitchers -- perhaps three out of 288 , laughs Mr. Fingers , the former Oakland reliever . laughs Mr. Fingers , the former Oakland reliever
-And do n't expect many complete games by pitchers -- perhaps three out of 288 , laughs Mr. Fingers , the former Oakland reliever . is the former Oakland reliever Mr. Fingers
-And do n't expect many complete games by pitchers -- perhaps three out of 288 , laughs Mr. Fingers , the former Oakland reliever . do n't expect many complete games by pitchers
-And do n't expect many complete games by pitchers -- perhaps three out of 288 , laughs Mr. Fingers , the former Oakland reliever . by pitchers complete games
-And do n't expect many complete games by pitchers -- perhaps three out of 288 , laughs Mr. Fingers , the former Oakland reliever . by complete games pitchers
-And do n't expect many complete games by pitchers -- perhaps three out of 288 , laughs Mr. Fingers , the former Oakland reliever . do n't expect many complete games by pitchers
-And do n't expect many complete games by pitchers -- perhaps three out of 288 , laughs Mr. Fingers , the former Oakland reliever . out of perhaps three complete games by pitchers 288 games by pitchers
-And do n't expect many complete games by pitchers -- perhaps three out of 288 , laughs Mr. Fingers , the former Oakland reliever . is the Oakland reliever Mr. Fingers former
-And do n't expect many complete games by pitchers -- perhaps three out of 288 , laughs Mr. Fingers , the former Oakland reliever . is the former reliever Mr. Fingers Oakland
-And he got rid of low - margin businesses that just were n't making money for the company . got rid of he low - margin businesses that just were n't making money for the company
-And he got rid of low - margin businesses that just were n't making money for the company . were n't making low - margin businesses money for the company
-And he got rid of low - margin businesses that just were n't making money for the company . were low - margin businesses
-And he got rid of low - margin businesses that just were n't making money for the company . were n't making for low - margin businesses the company
-And he got rid of low - margin businesses that just were n't making money for the company . just were n't low - margin businesses making money for the company
-Annualized interest rates on certain investments as reported by the Federal Reserve Board on a weekly - average basis : are on Annualized interest rates certain investments
-Annualized interest rates on certain investments as reported by the Federal Reserve Board on a weekly - average basis : are reported by Annualized interest rates on certain investments the Federal Reserve
-Annualized interest rates on certain investments as reported by the Federal Reserve Board on a weekly - average basis : are reported on Annualized interest rates on certain investments a weekly - average basis
-Annualized interest rates on certain investments as reported by the Federal Reserve Board on a weekly - average basis : are Annualized interest rates
-Annualized interest rates on certain investments as reported by the Federal Reserve Board on a weekly - average basis : is weekly - average basis
-Annualized interest rates on certain investments as reported by the Federal Reserve Board on a weekly - average basis : is basis average weekly
-As of Sept. 30 , American Brands had 95.2 million shares outstanding . had American Brands 95.2 million shares outstanding As of Sept. 30
-As the London trading session drew to a close , the market was still listening to the parliamentary debate on the economy , with new Chancellor of the Exchequer John Major expected to clarify his approach to the British economy and currency issues . drew to a close the London trading session
-As the London trading session drew to a close , the market was still listening to the parliamentary debate on the economy , with new Chancellor of the Exchequer John Major expected to clarify his approach to the British economy and currency issues . drew to a close the trading session in London
-As the London trading session drew to a close , the market was still listening to the parliamentary debate on the economy , with new Chancellor of the Exchequer John Major expected to clarify his approach to the British economy and currency issues . was still listening to the market the parliamentary debate on the economy As the London trading session drew to a close
-As the London trading session drew to a close , the market was still listening to the parliamentary debate on the economy , with new Chancellor of the Exchequer John Major expected to clarify his approach to the British economy and currency issues . was expected to clarify new Chancellor of the Exchequer John Major his approach to the British economy
-As the London trading session drew to a close , the market was still listening to the parliamentary debate on the economy , with new Chancellor of the Exchequer John Major expected to clarify his approach to the British economy and currency issues . was expected to clarify new Chancellor of the Exchequer John Major his approach to currency issues
-As the London trading session drew to a close , the market was still listening to the parliamentary debate on the economy , with new Chancellor of the Exchequer John Major expected to clarify his approach to the British economy and currency issues . is John Major new Chancellor of the Exchequer
-As the London trading session drew to a close , the market was still listening to the parliamentary debate on the economy , with new Chancellor of the Exchequer John Major expected to clarify his approach to the British economy and currency issues . has approach to new Chancellor of the Exchequer John Major the British economy
-As the London trading session drew to a close , the market was still listening to the parliamentary debate on the economy , with new Chancellor of the Exchequer John Major expected to clarify his approach to the British economy and currency issues . has approach to new Chancellor of the Exchequer John Major currency issues
-As the London trading session drew to a close , the market was still listening to the parliamentary debate on the economy , with new Chancellor of the Exchequer John Major expected to clarify his approach to the British economy and currency issues . is in the trading session London
-As the London trading session drew to a close , the market was still listening to the parliamentary debate on the economy , with new Chancellor of the Exchequer John Major expected to clarify his approach to the British economy and currency issues . is on parliamentary debate the economy
-At Giant Bicycle Inc. , Rancho Dominguez , Calif. , sales have tripled since the company entered the U.S. mountain - bike business in 1987 . have tripled sales At Giant Bicycle Inc. , Rancho Dominguez , Calif. since the company entered the U.S. mountain - bike business in 1987
-At Giant Bicycle Inc. , Rancho Dominguez , Calif. , sales have tripled since the company entered the U.S. mountain - bike business in 1987 . is in Giant Bicycle Inc. Rancho Dominguez , Calif.
-At Giant Bicycle Inc. , Rancho Dominguez , Calif. , sales have tripled since the company entered the U.S. mountain - bike business in 1987 . is in Rancho Dominguez Calif.
-At Giant Bicycle Inc. , Rancho Dominguez , Calif. , sales have tripled since the company entered the U.S. mountain - bike business in 1987 . entered Giant Bicycle Inc. the U.S. mountain - bike business in 1987
-At Giant Bicycle Inc. , Rancho Dominguez , Calif. , sales have tripled since the company entered the U.S. mountain - bike business in 1987 . entered Giant Bicycle Inc. the mountain - bike business in the U.S. in 1987
-At one point , almost all of the shares in the 20 - stock Major Market Index , which mimics the industrial average , were sharply higher . were sharply higher almost all of the shares in the 20 - stock Major Market Index At one point
-At one point , almost all of the shares in the 20 - stock Major Market Index , which mimics the industrial average , were sharply higher . were sharply higher almost all of the shares in the 20 - stock Major Market Index At one point
-At one point , almost all of the shares in the 20 - stock Major Market Index , which mimics the industrial average , were sharply higher . has Major Market Index 20 stocks
-At one point , almost all of the shares in the 20 - stock Major Market Index , which mimics the industrial average , were sharply higher . mimics the 20 - stock Major Market Index the industrial average
-Because patients require less attention from nurses and other staff , room charges are lower -- about $ 100 less per day than a regular room at the Vermont hospital . require less patients attention from nurses
-Because patients require less attention from nurses and other staff , room charges are lower -- about $ 100 less per day than a regular room at the Vermont hospital . require less patients attention from other staff
-Because patients require less attention from nurses and other staff , room charges are lower -- about $ 100 less per day than a regular room at the Vermont hospital . are lower Because room charges patients require less attention from nurses
-Because patients require less attention from nurses and other staff , room charges are lower -- about $ 100 less per day than a regular room at the Vermont hospital . are lower than room charges a regular room at the Vermont hospital
-Because patients require less attention from nurses and other staff , room charges are lower -- about $ 100 less per day than a regular room at the Vermont hospital . are about $ 100 less per day than room charges a regular room at the Vermont hospital
-Between flashes , certain areas in subjects ' brains are jolted with a magnetic stimulator . are jolted with certain areas a magnetic stimulator in subjects ' brains Between flashes
-Between flashes , certain areas in subjects ' brains are jolted with a magnetic stimulator . is magnetic stimulator
-Between flashes , certain areas in subjects ' brains are jolted with a magnetic stimulator . have brains subjects
-Both reflect the dismissal of lower - level and shorter - tenure executives . reflect Both the dismissal of lower - level and shorter - tenure executives
-British government bonds ended moderately higher , encouraged by a steadier pound and a rise in British stocks . had a rise British stocks
-British government bonds ended moderately higher , encouraged by a steadier pound and a rise in British stocks . are British government bonds
-British government bonds ended moderately higher , encouraged by a steadier pound and a rise in British stocks . are British stocks
-British government bonds ended moderately higher , encouraged by a steadier pound and a rise in British stocks . ended moderately higher British government bonds
-British government bonds ended moderately higher , encouraged by a steadier pound and a rise in British stocks . were encouraged by British government bonds a steadier pound
-British government bonds ended moderately higher , encouraged by a steadier pound and a rise in British stocks . were encouraged by British government bonds a rise in British stocks
-British government bonds ended moderately higher , encouraged by a steadier pound and a rise in British stocks . is steadier pound
-But , with the state offering only $ 39,000 a year and California 's high standard of living , `` there are n't too many to choose from , '' says Brent Scott , a recruiting officer . is offering the state only $ 39,000 a year
-But , with the state offering only $ 39,000 a year and California 's high standard of living , `` there are n't too many to choose from , '' says Brent Scott , a recruiting officer . has California high standard of living
-But , with the state offering only $ 39,000 a year and California 's high standard of living , `` there are n't too many to choose from , '' says Brent Scott , a recruiting officer . says Brent Scott , a recruiting officer `` there are n't too many to choose from ''
-But , with the state offering only $ 39,000 a year and California 's high standard of living , `` there are n't too many to choose from , '' says Brent Scott , a recruiting officer . is a recruiting officer Brent Scott
-But although the golden share has been waived , a hostile bidder for Jaguar would still have to alter the British concern 's articles of association which ban shareholdings of more than 15 % . has been waived the golden share
-But although the golden share has been waived , a hostile bidder for Jaguar would still have to alter the British concern 's articles of association which ban shareholdings of more than 15 % . ban the British concern 's articles of association shareholdings of more than 15 %
-But although the golden share has been waived , a hostile bidder for Jaguar would still have to alter the British concern 's articles of association which ban shareholdings of more than 15 % . would still have to alter a hostile bidder for Jaguar the British concern 's articles of association
-But although the golden share has been waived , a hostile bidder for Jaguar would still have to alter the British concern 's articles of association which ban shareholdings of more than 15 % . has articles of association the British concern
-But although the golden share has been waived , a hostile bidder for Jaguar would still have to alter the British concern 's articles of association which ban shareholdings of more than 15 % . is hostile bidder for Jaguar
-But although the golden share has been waived , a hostile bidder for Jaguar would still have to alter the British concern 's articles of association which ban shareholdings of more than 15 % . has Jaguar a hostile bidder
-But amid the two dozen bureaucrats and secretaries sits only one real - life PC . sits amid only one real - life PC the two dozen bureaucrats and secretaries
-But fully 90 % of those polled felt they did n't need to belong to a health club . did n't need to fully 90 % of those polled belong to a health club
-But fully 90 % of those polled felt they did n't need to belong to a health club . felt fully 90 % of those polled they did n't need to belong to a health club
-But he emphasized that new accounts , new sales , inquiries and subsequent sales of stock funds are all up this month from September 's level . emphasized he that new accounts , new sales , inquiries and subsequent sales of stock funds are all up this month from September 's level
-But he emphasized that new accounts , new sales , inquiries and subsequent sales of stock funds are all up this month from September 's level . are up new accounts this month
-But he emphasized that new accounts , new sales , inquiries and subsequent sales of stock funds are all up this month from September 's level . are up new sales this month
-But he emphasized that new accounts , new sales , inquiries and subsequent sales of stock funds are all up this month from September 's level . are up inquiries this month
-But he emphasized that new accounts , new sales , inquiries and subsequent sales of stock funds are all up this month from September 's level . are up subsequent sales of stock funds this month
-But he emphasized that new accounts , new sales , inquiries and subsequent sales of stock funds are all up this month from September 's level . are up from new accounts September 's level this month
-But he emphasized that new accounts , new sales , inquiries and subsequent sales of stock funds are all up this month from September 's level . are up from new sales September 's level this month
-But he emphasized that new accounts , new sales , inquiries and subsequent sales of stock funds are all up this month from September 's level . are up from inquiries September 's level this month
-But he emphasized that new accounts , new sales , inquiries and subsequent sales of stock funds are all up this month from September 's level . are up from subsequent sales of stock funds September 's level this month
-But he emphasized that new accounts , new sales , inquiries and subsequent sales of stock funds are all up this month from September 's level . are subsequent sales of stock funds
-But it appears to be the sort of hold one makes while heading for the door . appears to be it the sort of hold one makes the door while heading for
-But it appears to be the sort of hold one makes while heading for the door . appears to be it the sort of hold one makes while heading for the door
-But it appears to be the sort of hold one makes while heading for the door . is heading for one the door
-But it does that at the cost of deepening the taxpayer 's exposure if the FHA is forced to pay for more loans going sour . if the taxpayer 's exposure will be deepened the FHA is forced to pay for more loans going sour
-But it does that at the cost of deepening the taxpayer 's exposure if the FHA is forced to pay for more loans going sour . has exposure the taxpayer
-But it does that at the cost of deepening the taxpayer 's exposure if the FHA is forced to pay for more loans going sour . will be forced to pay for the FHA more loans going sour
-But it does that at the cost of deepening the taxpayer 's exposure if the FHA is forced to pay for more loans going sour . does that at the cost of deepening it the taxpayer 's exposure
-But it does that at the cost of deepening the taxpayer 's exposure if the FHA is forced to pay for more loans going sour . were loans going sour
-But it does that at the cost of deepening the taxpayer 's exposure if the FHA is forced to pay for more loans going sour . will be deepening the taxpayer 's exposure if the FHA is forced to pay for more loans going sour
-But it does that at the cost of deepening the taxpayer 's exposure if the FHA is forced to pay for more loans going sour . But it does that at the cost of deepening the taxpayer 's exposure if the FHA is forced to pay for more loans going sour
-But then Judge O'Kicki often behaved like a man who would be king -- and , some say , an arrogant and abusive one . behaved like Judge O'Kicki a man who would be king often
-But then Judge O'Kicki often behaved like a man who would be king -- and , some say , an arrogant and abusive one . is Judge O'Kicki
-But then Judge O'Kicki often behaved like a man who would be king -- and , some say , an arrogant and abusive one . say some Judge O'Kicki behaved like a man who would be an arrogant and abusive king
-But we can think of many reasons to stay out for the foreseeable future and well beyond . can think of we many reasons to stay out for the foreseeable future and well beyond
-But we can think of many reasons to stay out for the foreseeable future and well beyond . are to stay out for many reasons the foreseeable future and well beyond
-But when they arrived at the door , all were afraid to go in , fearing that they would be out of place . were afraid to go in all when they arrived at the door
-But when they arrived at the door , all were afraid to go in , fearing that they would be out of place . were fearing that all they would be out of place at the door when they arrived
-But when they arrived at the door , all were afraid to go in , fearing that they would be out of place . were afraid to go all in
-But when they arrived at the door , all were afraid to go in , fearing that they would be out of place . were afraid to go in all at the door when they arrived
-But when they arrived at the door , all were afraid to go in , fearing that they would be out of place . arrived at they the door
-But when they arrived at the door , all were afraid to go in , fearing that they would be out of place . were afraid to go they in
-But when they arrived at the door , all were afraid to go in , fearing that they would be out of place . were fearing they that they would be out of place at the door when they arrived
-But wire transfers from a standing account -- including those bigger than $ 10,000 -- are n't reported . are n't reported wire transfers from a standing account
-But wire transfers from a standing account -- including those bigger than $ 10,000 -- are n't reported . are n't reported wire transfers bigger than $ 10,000 from a standing account
-But you ca n't dismiss Mr. Stoltzman 's music or his motives as merely commercial and lightweight . ca n't dismiss Mr. Stoltzman 's music as you merely commercial
-But you ca n't dismiss Mr. Stoltzman 's music or his motives as merely commercial and lightweight . ca n't dismiss Mr. Stoltzman 's music as you merely lightweight
-But you ca n't dismiss Mr. Stoltzman 's music or his motives as merely commercial and lightweight . ca n't dismiss Mr. Stoltzman 's motives as you merely commercial
-But you ca n't dismiss Mr. Stoltzman 's music or his motives as merely commercial and lightweight . ca n't dismiss Mr. Stoltzman 's motives as you merely lightweight
-By increasing the number of PCs it uses from 66 to 1,000 , Omron Tateishi Electronics Co. , of Kyoto , hopes not only to make certain tasks easier but also to transform the way the company is run . hopes Omron Tateishi Electronics Co. not only to make certain tasks easier
-By increasing the number of PCs it uses from 66 to 1,000 , Omron Tateishi Electronics Co. , of Kyoto , hopes not only to make certain tasks easier but also to transform the way the company is run . hopes Omron Tateishi Electronics Co. to transform the way the company is run
-By increasing the number of PCs it uses from 66 to 1,000 , Omron Tateishi Electronics Co. , of Kyoto , hopes not only to make certain tasks easier but also to transform the way the company is run . uses Omron Tateishi Electronics Co. PCs
-By increasing the number of PCs it uses from 66 to 1,000 , Omron Tateishi Electronics Co. , of Kyoto , hopes not only to make certain tasks easier but also to transform the way the company is run . is Omron Tateishi Electronics Co. in Kyoto
-By increasing the number of PCs it uses from 66 to 1,000 , Omron Tateishi Electronics Co. , of Kyoto , hopes not only to make certain tasks easier but also to transform the way the company is run . hopes to make certain tasks easier By increasing Omron Tateishi Electronics Co. the number of PCs it uses from 66
-By increasing the number of PCs it uses from 66 to 1,000 , Omron Tateishi Electronics Co. , of Kyoto , hopes not only to make certain tasks easier but also to transform the way the company is run . hopes to transform the way the company is run By increasing Omron Tateishi Electronics Co. the number of PCs it uses to 1,000
-By increasing the number of PCs it uses from 66 to 1,000 , Omron Tateishi Electronics Co. , of Kyoto , hopes not only to make certain tasks easier but also to transform the way the company is run . hopes to make certain tasks easier By increasing Omron Tateishi Electronics Co. the number of PCs it uses to 1,000
-By increasing the number of PCs it uses from 66 to 1,000 , Omron Tateishi Electronics Co. , of Kyoto , hopes not only to make certain tasks easier but also to transform the way the company is run . hopes to transform the way the company is run By increasing Omron Tateishi Electronics Co. the number of PCs it uses from 66
-By increasing the number of PCs it uses from 66 to 1,000 , Omron Tateishi Electronics Co. , of Kyoto , hopes not only to make certain tasks easier but also to transform the way the company is run . is the company Omron Tateishi Electronics Co. , of Kyoto
-Combined PC and work - station use in Japan will jump as much as 25 % annually over the next five years , according to some analysts , compared with about 10 % in the U.S. . will jump as much as Combined PC and work - station use 25 % annually in Japan over the next five years
-Combined PC and work - station use in Japan will jump as much as 25 % annually over the next five years , according to some analysts , compared with about 10 % in the U.S. . according to some analysts Combined PC and work - station use in Japan will jump as much as 25 % annually over the next five years compared with about 10 % in the U.S
-Combined PC and work - station use in Japan will jump as much as 25 % annually over the next five years , according to some analysts , compared with about 10 % in the U.S. . will jump about Combined PC and work - station use 10 % in the U.S over the next five years
-Combined PC and work - station use in Japan will jump as much as 25 % annually over the next five years , according to some analysts , compared with about 10 % in the U.S. . are Combined PC and work - station use
-Crouched at shortstop , Bert Campaneris , once Oakland 's master thief , effortlessly scoops up a groundball and flips it to second . is Crouched Bert Campaneris at shortstop
-Crouched at shortstop , Bert Campaneris , once Oakland 's master thief , effortlessly scoops up a groundball and flips it to second . was Oakland 's master thief Bert Campaneris once
-Crouched at shortstop , Bert Campaneris , once Oakland 's master thief , effortlessly scoops up a groundball and flips it to second . effortlessly scoops up Bert Campaneris a groundball
-Crouched at shortstop , Bert Campaneris , once Oakland 's master thief , effortlessly scoops up a groundball and flips it to second . effortlessly flips it to Bert Campaneris second
-During the past 25 years , the number of balloonists ( those who have passed a Federal Aviation Authority lighter - than - air test ) have swelled from a couple hundred to several thousand , with some estimates running as high as 10,000 . have swelled from the number of balloonists who have passed a Federal Aviation Authority lighter - than - air test a couple hundred During the past 25 years
-During the past 25 years , the number of balloonists ( those who have passed a Federal Aviation Authority lighter - than - air test ) have swelled from a couple hundred to several thousand , with some estimates running as high as 10,000 . have swelled to the number of balloonists who have passed a Federal Aviation Authority lighter - than - air test several thousand During the past 25 years
-During the past 25 years , the number of balloonists ( those who have passed a Federal Aviation Authority lighter - than - air test ) have swelled from a couple hundred to several thousand , with some estimates running as high as 10,000 . run as high as some estimates 10,000 balloonists who have passed a Federal Aviation Authority lighter - than - air test During the past 25 years
-During the past 25 years , the number of balloonists ( those who have passed a Federal Aviation Authority lighter - than - air test ) have swelled from a couple hundred to several thousand , with some estimates running as high as 10,000 . have passed balloonists a Federal Aviation Authority lighter - than - air test
-During the past 25 years , the number of balloonists ( those who have passed a Federal Aviation Authority lighter - than - air test ) have swelled from a couple hundred to several thousand , with some estimates running as high as 10,000 . has a Federal Aviation Authority lighter - than - air test
-Each company 's share of liability would be based on their share of the national DES market . would be based on Each company 's share of liability their share of the national DES market
-Each company 's share of liability would be based on their share of the national DES market . has share of Each company liability
-Each company 's share of liability would be based on their share of the national DES market . has share of Each company the national DES market
-Earlier this year , Blackstone Group , a New York investment bank , had no trouble selling out a special $ 570 million mortgage - securities trust it created for Japanese investors . had no trouble selling out Blackstone Group a special $ 570 million mortgage - securities trust it created for Japanese investors Earlier this year
-Earlier this year , Blackstone Group , a New York investment bank , had no trouble selling out a special $ 570 million mortgage - securities trust it created for Japanese investors . is Blackstone Group a New York investment bank
-Earlier this year , Blackstone Group , a New York investment bank , had no trouble selling out a special $ 570 million mortgage - securities trust it created for Japanese investors . is in investment bank New York
-Earlier this year , Blackstone Group , a New York investment bank , had no trouble selling out a special $ 570 million mortgage - securities trust it created for Japanese investors . is in Blackstone Group New York
-Earlier this year , Blackstone Group , a New York investment bank , had no trouble selling out a special $ 570 million mortgage - securities trust it created for Japanese investors . is special mortgage - securities trust
-Earlier this year , Blackstone Group , a New York investment bank , had no trouble selling out a special $ 570 million mortgage - securities trust it created for Japanese investors . is $ 570 million mortgage - securities trust
-Earlier this year , Blackstone Group , a New York investment bank , had no trouble selling out a special $ 570 million mortgage - securities trust it created for Japanese investors . created Blackstone Group a special $ 570 million mortgage - securities trust
-Earlier this year , Blackstone Group , a New York investment bank , had no trouble selling out a special $ 570 million mortgage - securities trust it created for Japanese investors . created for Blackstone Group Japanese investors a special $ 570 million mortgage - securities trust
-Early in the morning Mr. Sider , an estate lawyer , pores over last wills and testaments . pores over Mr. Sider last wills and testaments Early in the morning
-Early in the morning Mr. Sider , an estate lawyer , pores over last wills and testaments . is Mr. Sider an estate lawyer
-Employers could also pay a subminimum `` training wage '' for 90 days to new workers who are up to 19 years old , and then for another 90 days if the company institutes a specific training program for the newcomers . could also pay Employers a subminimum `` training wage '' to new workers who are up to 19 years old for 90 days
-Employers could also pay a subminimum `` training wage '' for 90 days to new workers who are up to 19 years old , and then for another 90 days if the company institutes a specific training program for the newcomers . could also pay Employers a subminimum `` training wage '' to new workers who are up to 19 years old if the company institutes a specific training program for the newcomers for another 90 days
-Employers could also pay a subminimum `` training wage '' for 90 days to new workers who are up to 19 years old , and then for another 90 days if the company institutes a specific training program for the newcomers . is subminimum `` training wage ''
-Ever since , the remaining members have been desperate for the United States to rejoin this dreadful group . the remaining members have been desperate for the United States to rejoin this dreadful group Ever since
-Feeling the naggings of a culture imperative , I promptly signed up . signed up I promptly
-Feeling the naggings of a culture imperative , I promptly signed up . was Feeling I the naggings of a culture imperative promptly
-Few people in the advertising business have raised as many hackles as Alvin A. Achenbaum . have raised Few people as many hackles as Alvin A. Achenbaum in the advertising business
-Few people in the advertising business have raised as many hackles as Alvin A. Achenbaum . raised Alvin A. Achenbaum hackles in the advertising business
-Finally , Mitsubishi Estate has no plans to interfere with Rockefeller 's management beyond taking a place on the board . has no plans to interfere with Mitsubishi Estate Rockefeller 's management
-Finally , Mitsubishi Estate has no plans to interfere with Rockefeller 's management beyond taking a place on the board . has management Rockefeller
-Finally , Mitsubishi Estate has no plans to interfere with Rockefeller 's management beyond taking a place on the board . a place is on the board Rockefeller
-Finally , Mitsubishi Estate has no plans to interfere with Rockefeller 's management beyond taking a place on the board . has no plans to interfere beyond Mitsubishi Estate taking a place on the board
-Finally , Mitsubishi Estate has no plans to interfere with Rockefeller 's management beyond taking a place on the board . Finally Mitsubishi Estate has no plans to interfere with Rockefeller 's management beyond taking a place on the board
-Finally , Mitsubishi Estate has no plans to interfere with Rockefeller 's management beyond taking a place on the board . is taking a place on the board Mitsubishi Estate Rockefeller
-First Boston incurred millions of dollars of losses on Campeau securities it owned as well as on special securities it could n't sell . incurred First Boston millions of dollars of losses
-First Boston incurred millions of dollars of losses on Campeau securities it owned as well as on special securities it could n't sell . incurred losses on First Boston Campeau securities it owned
-First Boston incurred millions of dollars of losses on Campeau securities it owned as well as on special securities it could n't sell . incurred losses on First Boston special securities it could n't sell
-First Boston incurred millions of dollars of losses on Campeau securities it owned as well as on special securities it could n't sell . could n't sell First Boston special securities
-First Boston incurred millions of dollars of losses on Campeau securities it owned as well as on special securities it could n't sell . owned First Boston Campeau securities
-For example , a passenger can fly from Chardon , Neb. , to Denver for as little as $ 89 to $ 109 , according to prices quoted by the company . can fly from a passenger Chardon , Neb.
-For example , a passenger can fly from Chardon , Neb. , to Denver for as little as $ 89 to $ 109 , according to prices quoted by the company . can fly to a passenger Denver
-For example , a passenger can fly from Chardon , Neb. , to Denver for as little as $ 89 to $ 109 , according to prices quoted by the company . can fly for as little as a passenger $ 89
-For example , a passenger can fly from Chardon , Neb. , to Denver for as little as $ 89 to $ 109 , according to prices quoted by the company . can fly for a passenger as little as $ 89 to $ 109 from Chardon , Neb. , to Denver
-For example , a passenger can fly from Chardon , Neb. , to Denver for as little as $ 89 to $ 109 , according to prices quoted by the company . according to a passenger can fly from Chardon , Neb. , to Denver for as little as $ 89 to $ 109 prices quoted by the company
-For example , a passenger can fly from Chardon , Neb. , to Denver for as little as $ 89 to $ 109 , according to prices quoted by the company . were quoted by prices the company
-For the past five years , unions have n't managed to win wage increases as large as those granted to nonunion workers . have n't managed to win unions wage increases as large as those granted to nonunion workers For the past five years
-For the past five years , unions have n't managed to win wage increases as large as those granted to nonunion workers . were granted to large wage increases nonunion workers
-Fraser & Neave , which also has interests in packaging , beer and dairy products , holds the Coke licenses for Malaysia and Brunei , where per - capita consumption is n't as high as in Singapore . has interests in Fraser & Neave packaging
-Fraser & Neave , which also has interests in packaging , beer and dairy products , holds the Coke licenses for Malaysia and Brunei , where per - capita consumption is n't as high as in Singapore . has interests in Fraser & Neave beer
-Fraser & Neave , which also has interests in packaging , beer and dairy products , holds the Coke licenses for Malaysia and Brunei , where per - capita consumption is n't as high as in Singapore . has interests in Fraser & Neave dairy products
-Fraser & Neave , which also has interests in packaging , beer and dairy products , holds the Coke licenses for Malaysia and Brunei , where per - capita consumption is n't as high as in Singapore . holds Fraser & Neave the Coke licenses for Malaysia
-Fraser & Neave , which also has interests in packaging , beer and dairy products , holds the Coke licenses for Malaysia and Brunei , where per - capita consumption is n't as high as in Singapore . holds Fraser & Neave the Coke licenses for Brunei
-Fraser & Neave , which also has interests in packaging , beer and dairy products , holds the Coke licenses for Malaysia and Brunei , where per - capita consumption is n't as high as in Singapore . is n't as high as in per - capita consumption Singapore in Malaysia
-Fraser & Neave , which also has interests in packaging , beer and dairy products , holds the Coke licenses for Malaysia and Brunei , where per - capita consumption is n't as high as in Singapore . is n't as high as in per - capita consumption Singapore in Brunei
-Fraser & Neave , which also has interests in packaging , beer and dairy products , holds the Coke licenses for Malaysia and Brunei , where per - capita consumption is n't as high as in Singapore . is n't as high as per - capita consumption in Malaysia in Singapore
-Fraser & Neave , which also has interests in packaging , beer and dairy products , holds the Coke licenses for Malaysia and Brunei , where per - capita consumption is n't as high as in Singapore . is n't as high as per - capita consumption in Brunei in Singapore
-Fraser & Neave , which also has interests in packaging , beer and dairy products , holds the Coke licenses for Malaysia and Brunei , where per - capita consumption is n't as high as in Singapore . holds Coke licenses Fraser & Neave Malaysia
-Fraser & Neave , which also has interests in packaging , beer and dairy products , holds the Coke licenses for Malaysia and Brunei , where per - capita consumption is n't as high as in Singapore . holds Coke licenses Fraser & Neave Brunei
-Fraser & Neave , which also has interests in packaging , beer and dairy products , holds the Coke licenses for Malaysia and Brunei , where per - capita consumption is n't as high as in Singapore . also has interests in packaging , beer and dairy products Fraser & Neave
-Hani Zayadi was appointed president and chief executive officer of this financially troubled department store chain , effective Nov. 15 , succeeding Frank Robertson , who is retiring early . was appointed Hani Zayadi president of this financially troubled department store chain
-Hani Zayadi was appointed president and chief executive officer of this financially troubled department store chain , effective Nov. 15 , succeeding Frank Robertson , who is retiring early . was appointed Hani Zayadi chief executive officer of this financially troubled department store chain
-Hani Zayadi was appointed president and chief executive officer of this financially troubled department store chain , effective Nov. 15 , succeeding Frank Robertson , who is retiring early . is financially troubled this department store chain
-Hani Zayadi was appointed president and chief executive officer of this financially troubled department store chain , effective Nov. 15 , succeeding Frank Robertson , who is retiring early . is succeeding Hani Zayadi Frank Robertson
-Hani Zayadi was appointed president and chief executive officer of this financially troubled department store chain , effective Nov. 15 , succeeding Frank Robertson , who is retiring early . is retiring early Frank Robertson
-Hani Zayadi was appointed president and chief executive officer of this financially troubled department store chain , effective Nov. 15 , succeeding Frank Robertson , who is retiring early . was appointed effective Hani Zayadi Nov. 15
-Hani Zayadi was appointed president and chief executive officer of this financially troubled department store chain , effective Nov. 15 , succeeding Frank Robertson , who is retiring early . is retiring Frank Robertson early
-Hani Zayadi was appointed president and chief executive officer of this financially troubled department store chain , effective Nov. 15 , succeeding Frank Robertson , who is retiring early . has a chief executive officer this financially troubled department store chain
-Hani Zayadi was appointed president and chief executive officer of this financially troubled department store chain , effective Nov. 15 , succeeding Frank Robertson , who is retiring early . has a president this financially troubled department store chain
-He also contended that the plaintiffs failed to cite any legal authority that would justify such an injunction . contended that He the plaintiffs failed to cite any legal authority that would justify such an injunction
-He also contended that the plaintiffs failed to cite any legal authority that would justify such an injunction . failed to cite the plaintiffs any legal authority that would justify such an injunction
-He also contended that the plaintiffs failed to cite any legal authority that would justify such an injunction . would justify legal authority such an injunction
-He also unfortunately illustrated this intricate , jazzy tapestry with Mr. Pearson 's images , this time of geometric or repeating objects , in a kitschy mirroring of the musical structure that was thoroughly distracting from Mr. Reich 's piece and Mr. Stoltzman 's elegant execution of it . illustrated He this intricate , jazzy tapestry
-He also unfortunately illustrated this intricate , jazzy tapestry with Mr. Pearson 's images , this time of geometric or repeating objects , in a kitschy mirroring of the musical structure that was thoroughly distracting from Mr. Reich 's piece and Mr. Stoltzman 's elegant execution of it . unfortunately illustrated with He Mr. Pearson 's images
-He also unfortunately illustrated this intricate , jazzy tapestry with Mr. Pearson 's images , this time of geometric or repeating objects , in a kitschy mirroring of the musical structure that was thoroughly distracting from Mr. Reich 's piece and Mr. Stoltzman 's elegant execution of it . was thoroughly distracting from a kitschy mirroring of the musical structure Mr. Reich 's piece
-He also unfortunately illustrated this intricate , jazzy tapestry with Mr. Pearson 's images , this time of geometric or repeating objects , in a kitschy mirroring of the musical structure that was thoroughly distracting from Mr. Reich 's piece and Mr. Stoltzman 's elegant execution of it . was thoroughly distracting from a kitschy mirroring of the musical structure Mr. Stoltzman 's elegant execution
-He also unfortunately illustrated this intricate , jazzy tapestry with Mr. Pearson 's images , this time of geometric or repeating objects , in a kitschy mirroring of the musical structure that was thoroughly distracting from Mr. Reich 's piece and Mr. Stoltzman 's elegant execution of it . was kitschy mirroring of the musical structure
-He also unfortunately illustrated this intricate , jazzy tapestry with Mr. Pearson 's images , this time of geometric or repeating objects , in a kitschy mirroring of the musical structure that was thoroughly distracting from Mr. Reich 's piece and Mr. Stoltzman 's elegant execution of it . has Mr. Reich a piece
-He also unfortunately illustrated this intricate , jazzy tapestry with Mr. Pearson 's images , this time of geometric or repeating objects , in a kitschy mirroring of the musical structure that was thoroughly distracting from Mr. Reich 's piece and Mr. Stoltzman 's elegant execution of it . has Mr. Stoltzman elegant execution
-He also unfortunately illustrated this intricate , jazzy tapestry with Mr. Pearson 's images , this time of geometric or repeating objects , in a kitschy mirroring of the musical structure that was thoroughly distracting from Mr. Reich 's piece and Mr. Stoltzman 's elegant execution of it . is elegant Mr. Stoltzman 's execution
-He also unfortunately illustrated this intricate , jazzy tapestry with Mr. Pearson 's images , this time of geometric or repeating objects , in a kitschy mirroring of the musical structure that was thoroughly distracting from Mr. Reich 's piece and Mr. Stoltzman 's elegant execution of it . are repeating objects
-He also unfortunately illustrated this intricate , jazzy tapestry with Mr. Pearson 's images , this time of geometric or repeating objects , in a kitschy mirroring of the musical structure that was thoroughly distracting from Mr. Reich 's piece and Mr. Stoltzman 's elegant execution of it . are geometric objects
-He also unfortunately illustrated this intricate , jazzy tapestry with Mr. Pearson 's images , this time of geometric or repeating objects , in a kitschy mirroring of the musical structure that was thoroughly distracting from Mr. Reich 's piece and Mr. Stoltzman 's elegant execution of it . is intricate this tapestry
-He also unfortunately illustrated this intricate , jazzy tapestry with Mr. Pearson 's images , this time of geometric or repeating objects , in a kitschy mirroring of the musical structure that was thoroughly distracting from Mr. Reich 's piece and Mr. Stoltzman 's elegant execution of it . is jazzy this tapestry
-He also unfortunately illustrated this intricate , jazzy tapestry with Mr. Pearson 's images , this time of geometric or repeating objects , in a kitschy mirroring of the musical structure that was thoroughly distracting from Mr. Reich 's piece and Mr. Stoltzman 's elegant execution of it . has Mr. Pearson images
-He also unfortunately illustrated this intricate , jazzy tapestry with Mr. Pearson 's images , this time of geometric or repeating objects , in a kitschy mirroring of the musical structure that was thoroughly distracting from Mr. Reich 's piece and Mr. Stoltzman 's elegant execution of it . are of Mr. Pearson 's images geometric objects
-He also unfortunately illustrated this intricate , jazzy tapestry with Mr. Pearson 's images , this time of geometric or repeating objects , in a kitschy mirroring of the musical structure that was thoroughly distracting from Mr. Reich 's piece and Mr. Stoltzman 's elegant execution of it . are of Mr. Pearson 's images repeating objects
-He also unfortunately illustrated this intricate , jazzy tapestry with Mr. Pearson 's images , this time of geometric or repeating objects , in a kitschy mirroring of the musical structure that was thoroughly distracting from Mr. Reich 's piece and Mr. Stoltzman 's elegant execution of it . illustrated with He Mr. Pearson 's images of geometric or repeating objects this time
-He also unfortunately illustrated this intricate , jazzy tapestry with Mr. Pearson 's images , this time of geometric or repeating objects , in a kitschy mirroring of the musical structure that was thoroughly distracting from Mr. Reich 's piece and Mr. Stoltzman 's elegant execution of it . unfortunately he also illustrated this intricate , jazzy tapestry with Mr. Pearson 's images
-He also unfortunately illustrated this intricate , jazzy tapestry with Mr. Pearson 's images , this time of geometric or repeating objects , in a kitschy mirroring of the musical structure that was thoroughly distracting from Mr. Reich 's piece and Mr. Stoltzman 's elegant execution of it . was a kitschy mirroring of illustrating with Mr. Pearson 's images of geometric or repeating objects the musical structure
-He also unfortunately illustrated this intricate , jazzy tapestry with Mr. Pearson 's images , this time of geometric or repeating objects , in a kitschy mirroring of the musical structure that was thoroughly distracting from Mr. Reich 's piece and Mr. Stoltzman 's elegant execution of it . was illustrated with this intricate , jazzy tapestry Mr. Pearson 's images
-He also unfortunately illustrated this intricate , jazzy tapestry with Mr. Pearson 's images , this time of geometric or repeating objects , in a kitschy mirroring of the musical structure that was thoroughly distracting from Mr. Reich 's piece and Mr. Stoltzman 's elegant execution of it . was illustrated with images of this intricate , jazzy tapestry geometric objects
-He also unfortunately illustrated this intricate , jazzy tapestry with Mr. Pearson 's images , this time of geometric or repeating objects , in a kitschy mirroring of the musical structure that was thoroughly distracting from Mr. Reich 's piece and Mr. Stoltzman 's elegant execution of it . was illustrated with images of this intricate , jazzy tapestry repeating objects
-He also unfortunately illustrated this intricate , jazzy tapestry with Mr. Pearson 's images , this time of geometric or repeating objects , in a kitschy mirroring of the musical structure that was thoroughly distracting from Mr. Reich 's piece and Mr. Stoltzman 's elegant execution of it . were a kitschy mirroring of images of geometric or repeating objects the musical structure
-He also unfortunately illustrated this intricate , jazzy tapestry with Mr. Pearson 's images , this time of geometric or repeating objects , in a kitschy mirroring of the musical structure that was thoroughly distracting from Mr. Reich 's piece and Mr. Stoltzman 's elegant execution of it . was kitschy mirroring of the musical structure
-He discovered a 75 - cent discrepancy in the charges made to various departments for computer time and traced it to a user named `` Hunter , '' who had no valid billing address . discovered He a 75 - cent discrepancy in the charges made to various departments for computer time
-He discovered a 75 - cent discrepancy in the charges made to various departments for computer time and traced it to a user named `` Hunter , '' who had no valid billing address . traced a 75 - cent discrepancy in the charges made to various departments to He a user named `` Hunter ''
-He discovered a 75 - cent discrepancy in the charges made to various departments for computer time and traced it to a user named `` Hunter , '' who had no valid billing address . was traced to a 75 - cent discrepancy in the charges made to various departments for computer time a user named `` Hunter ''
-He discovered a 75 - cent discrepancy in the charges made to various departments for computer time and traced it to a user named `` Hunter , '' who had no valid billing address . were made to charges various departments
-He discovered a 75 - cent discrepancy in the charges made to various departments for computer time and traced it to a user named `` Hunter , '' who had no valid billing address . were made for charges computer time
-He discovered a 75 - cent discrepancy in the charges made to various departments for computer time and traced it to a user named `` Hunter , '' who had no valid billing address . had no Hunter valid billing address
-He discovered a 75 - cent discrepancy in the charges made to various departments for computer time and traced it to a user named `` Hunter , '' who had no valid billing address . was named a user `` Hunter ''
-He discovered a 75 - cent discrepancy in the charges made to various departments for computer time and traced it to a user named `` Hunter , '' who had no valid billing address . had no a user valid billing address
-He discovered a 75 - cent discrepancy in the charges made to various departments for computer time and traced it to a user named `` Hunter , '' who had no valid billing address . was in a 75 - cent discrepancy the charges made to various departments for computer time
-He discovered a 75 - cent discrepancy in the charges made to various departments for computer time and traced it to a user named `` Hunter , '' who had no valid billing address . was 75 cents the discrepancy in the charges made to various departments for computer time
-He has n't been able to replace the M'Bow cabal . has n't been able to replace He the M'Bow cabal
-He has n't been able to replace the M'Bow cabal . is M'Bow a cabal
-Her recent report classifies the stock as a `` hold . '' classifies Her recent report the stock
-Her recent report classifies the stock as a `` hold . '' is classified as the stock a `` hold ''
-Her recent report classifies the stock as a `` hold . '' classifies as Her recent report a `` hold ''
-Here are price trends on the world 's major stock markets , as calculated by Morgan Stanley Capital International Perspective , Geneva . are price trends on the world 's major stock markets Here
-Here are price trends on the world 's major stock markets , as calculated by Morgan Stanley Capital International Perspective , Geneva . are on price trends the world 's major stock markets
-Here are price trends on the world 's major stock markets , as calculated by Morgan Stanley Capital International Perspective , Geneva . are in major stock markets the world
-Here are price trends on the world 's major stock markets , as calculated by Morgan Stanley Capital International Perspective , Geneva . has the world major stock markets
-Here are price trends on the world 's major stock markets , as calculated by Morgan Stanley Capital International Perspective , Geneva . are calculated by price trends on the world 's major stock markets Morgan Stanley Capital International Perspective
-Here are price trends on the world 's major stock markets , as calculated by Morgan Stanley Capital International Perspective , Geneva . is in Morgan Stanley Capital International Perspective Geneva
-However , StatesWest is n't abandoning its pursuit of the much - larger Mesa . is n't abandoning StatesWest its pursuit of the much - larger Mesa
-However , StatesWest is n't abandoning its pursuit of the much - larger Mesa . is in pursuit of StatesWest the much - larger Mesa
-However , StatesWest is n't abandoning its pursuit of the much - larger Mesa . is much larger Mesa
-However , the problem is that once most poison pills are adopted , they survive forever . survive forever most poison pills once they are adopted
-However , the problem is that once most poison pills are adopted , they survive forever . is the problem that once most poison pills are adopted , they survive forever .
-Humana contends that $ 8,000 represents an extreme case and that its regular charge for lithotripsy is $ 4,900 . contends that Humana $ 8,000 represents an extreme case
-Humana contends that $ 8,000 represents an extreme case and that its regular charge for lithotripsy is $ 4,900 . represents Humana contends that $ 8,000 an extreme case
-Humana contends that $ 8,000 represents an extreme case and that its regular charge for lithotripsy is $ 4,900 . regular charge for lithotripsy is Humana contends that $ 4,900
-Humana contends that $ 8,000 represents an extreme case and that its regular charge for lithotripsy is $ 4,900 . contends that Humana its regular charge for lithotripsy is $ 4,900
-Humana contends that $ 8,000 represents an extreme case and that its regular charge for lithotripsy is $ 4,900 . regular charge is Humana contends that $ 4,900 for lithotripsy
-Hungary 's Parliament voted to hold a national referendum on an election to fill the new post of president . voted to hold Hungary 's Parliament a national referendum on an election to fill the new post of president
-Hungary 's Parliament voted to hold a national referendum on an election to fill the new post of president . to fill a national referendum on an election the new post of president
-Hungary 's Parliament voted to hold a national referendum on an election to fill the new post of president . referendum on a national an election to fill the new post of president
-Hungary 's Parliament voted to hold a national referendum on an election to fill the new post of president . voted to Hungary 's Parliament hold a national referendum on an election to fill the new post of president
-I do n't think that is the case . '' do n't think I that is the case
-I was pleased to note that your Oct. 23 Centennial Journal item recognized the money - fund concept as one of the significant events of the past century . was pleased to note that I your Oct. 23 Centennial Journal item recognized the money - fund concept as one of the significant events
-I was pleased to note that your Oct. 23 Centennial Journal item recognized the money - fund concept as one of the significant events of the past century . recognized your item the money - fund concept as one of the significant events Centennial Journal Oct. 23
-I was pleased to note that your Oct. 23 Centennial Journal item recognized the money - fund concept as one of the significant events of the past century . as one of the money - fund concept recognized the significant events Centennial Journal item Oct. 23
-If there 's something ' weird and it do n't look good . do n't look it good
-If there 's something ' weird and it do n't look good . 's there something weird
-In 1988 , a year and a half after Mrs. Marcos and her late husband , Ferdinand Marcos , the ousted president of the Philippines , fled the Philippines for Hawaii , they were charged with racketeering , conspiracy , obstruction of justice and mail fraud in a scheme in which they allegedly embezzled more than $ 100 million from their homeland . fled Mrs. Marcos the Philippines
-In 1988 , a year and a half after Mrs. Marcos and her late husband , Ferdinand Marcos , the ousted president of the Philippines , fled the Philippines for Hawaii , they were charged with racketeering , conspiracy , obstruction of justice and mail fraud in a scheme in which they allegedly embezzled more than $ 100 million from their homeland . fled for Mrs. Marcos Hawaii
-In 1988 , a year and a half after Mrs. Marcos and her late husband , Ferdinand Marcos , the ousted president of the Philippines , fled the Philippines for Hawaii , they were charged with racketeering , conspiracy , obstruction of justice and mail fraud in a scheme in which they allegedly embezzled more than $ 100 million from their homeland . fled Ferdinand Marcos , the ousted president of the Philippines , the Philippines
-In 1988 , a year and a half after Mrs. Marcos and her late husband , Ferdinand Marcos , the ousted president of the Philippines , fled the Philippines for Hawaii , they were charged with racketeering , conspiracy , obstruction of justice and mail fraud in a scheme in which they allegedly embezzled more than $ 100 million from their homeland . fled for Ferdinand Marcos , the ousted president of the Philippines Hawaii
-In 1988 , a year and a half after Mrs. Marcos and her late husband , Ferdinand Marcos , the ousted president of the Philippines , fled the Philippines for Hawaii , they were charged with racketeering , conspiracy , obstruction of justice and mail fraud in a scheme in which they allegedly embezzled more than $ 100 million from their homeland . fled her late husband the Philippines
-In 1988 , a year and a half after Mrs. Marcos and her late husband , Ferdinand Marcos , the ousted president of the Philippines , fled the Philippines for Hawaii , they were charged with racketeering , conspiracy , obstruction of justice and mail fraud in a scheme in which they allegedly embezzled more than $ 100 million from their homeland . fled for her late husband Hawaii
-In 1988 , a year and a half after Mrs. Marcos and her late husband , Ferdinand Marcos , the ousted president of the Philippines , fled the Philippines for Hawaii , they were charged with racketeering , conspiracy , obstruction of justice and mail fraud in a scheme in which they allegedly embezzled more than $ 100 million from their homeland . was charged with Mrs. Marcos racketeering In 1988
-In 1988 , a year and a half after Mrs. Marcos and her late husband , Ferdinand Marcos , the ousted president of the Philippines , fled the Philippines for Hawaii , they were charged with racketeering , conspiracy , obstruction of justice and mail fraud in a scheme in which they allegedly embezzled more than $ 100 million from their homeland . was charged with Mrs. Marcos conspiracy In 1988
-In 1988 , a year and a half after Mrs. Marcos and her late husband , Ferdinand Marcos , the ousted president of the Philippines , fled the Philippines for Hawaii , they were charged with racketeering , conspiracy , obstruction of justice and mail fraud in a scheme in which they allegedly embezzled more than $ 100 million from their homeland . was charged with Mrs. Marcos obstruction of justice In 1988
-In 1988 , a year and a half after Mrs. Marcos and her late husband , Ferdinand Marcos , the ousted president of the Philippines , fled the Philippines for Hawaii , they were charged with racketeering , conspiracy , obstruction of justice and mail fraud in a scheme in which they allegedly embezzled more than $ 100 million from their homeland . was charged with Mrs. Marcos mail fraud In 1988
-In 1988 , a year and a half after Mrs. Marcos and her late husband , Ferdinand Marcos , the ousted president of the Philippines , fled the Philippines for Hawaii , they were charged with racketeering , conspiracy , obstruction of justice and mail fraud in a scheme in which they allegedly embezzled more than $ 100 million from their homeland . was charged with her late husband , Ferdinand Marcos , the ousted president of the Philippines racketeering In 1988
-In 1988 , a year and a half after Mrs. Marcos and her late husband , Ferdinand Marcos , the ousted president of the Philippines , fled the Philippines for Hawaii , they were charged with racketeering , conspiracy , obstruction of justice and mail fraud in a scheme in which they allegedly embezzled more than $ 100 million from their homeland . was charged with her late husband , Ferdinand Marcos , the ousted president of the Philippines conspiracy In 1988
-In 1988 , a year and a half after Mrs. Marcos and her late husband , Ferdinand Marcos , the ousted president of the Philippines , fled the Philippines for Hawaii , they were charged with racketeering , conspiracy , obstruction of justice and mail fraud in a scheme in which they allegedly embezzled more than $ 100 million from their homeland . was charged with her late husband , Ferdinand Marcos , the ousted president of the Philippines obstruction of justice In 1988
-In 1988 , a year and a half after Mrs. Marcos and her late husband , Ferdinand Marcos , the ousted president of the Philippines , fled the Philippines for Hawaii , they were charged with racketeering , conspiracy , obstruction of justice and mail fraud in a scheme in which they allegedly embezzled more than $ 100 million from their homeland . was charged with her late husband , Ferdinand Marcos , the ousted president of the Philippines mail fraud In 1988
-In 1988 , a year and a half after Mrs. Marcos and her late husband , Ferdinand Marcos , the ousted president of the Philippines , fled the Philippines for Hawaii , they were charged with racketeering , conspiracy , obstruction of justice and mail fraud in a scheme in which they allegedly embezzled more than $ 100 million from their homeland . is the ousted president of the Philippines her late husband , Ferdinand Marcos
-In 1988 , a year and a half after Mrs. Marcos and her late husband , Ferdinand Marcos , the ousted president of the Philippines , fled the Philippines for Hawaii , they were charged with racketeering , conspiracy , obstruction of justice and mail fraud in a scheme in which they allegedly embezzled more than $ 100 million from their homeland . is her late husband Ferdinand Marcos , the ousted president of the Philippines
-In 1988 , a year and a half after Mrs. Marcos and her late husband , Ferdinand Marcos , the ousted president of the Philippines , fled the Philippines for Hawaii , they were charged with racketeering , conspiracy , obstruction of justice and mail fraud in a scheme in which they allegedly embezzled more than $ 100 million from their homeland . allegedly embezzled from Mrs. Marcos and her late husband , Ferdinand Marcos , the ousted president of the Philippines their homeland
-In 1988 , a year and a half after Mrs. Marcos and her late husband , Ferdinand Marcos , the ousted president of the Philippines , fled the Philippines for Hawaii , they were charged with racketeering , conspiracy , obstruction of justice and mail fraud in a scheme in which they allegedly embezzled more than $ 100 million from their homeland . allegedly embezzled more than $ 100 million Mrs. Marcos
-In 1988 , a year and a half after Mrs. Marcos and her late husband , Ferdinand Marcos , the ousted president of the Philippines , fled the Philippines for Hawaii , they were charged with racketeering , conspiracy , obstruction of justice and mail fraud in a scheme in which they allegedly embezzled more than $ 100 million from their homeland . allegedly embezzled more than $ 100 million her late husband , Ferdinand Marcos , the ousted president of the Philippines
-In 1988 , a year and a half after Mrs. Marcos and her late husband , Ferdinand Marcos , the ousted president of the Philippines , fled the Philippines for Hawaii , they were charged with racketeering , conspiracy , obstruction of justice and mail fraud in a scheme in which they allegedly embezzled more than $ 100 million from their homeland . was charged with Mrs. Marcos racketeering a year and a half after Mrs. Marcos and her late husband , Ferdinand Marcos , the ousted president of the Philippines , fled the Philippines for Hawaii
-In 1988 , a year and a half after Mrs. Marcos and her late husband , Ferdinand Marcos , the ousted president of the Philippines , fled the Philippines for Hawaii , they were charged with racketeering , conspiracy , obstruction of justice and mail fraud in a scheme in which they allegedly embezzled more than $ 100 million from their homeland . was charged with Mrs. Marcos conspiracy a year and a after Mrs. Marcos and her late husband , Ferdinand Marcos , the ousted president of the Philippines , fled the Philippines for Hawaii
-In 1988 , a year and a half after Mrs. Marcos and her late husband , Ferdinand Marcos , the ousted president of the Philippines , fled the Philippines for Hawaii , they were charged with racketeering , conspiracy , obstruction of justice and mail fraud in a scheme in which they allegedly embezzled more than $ 100 million from their homeland . was alleged it they embezzled more than $ 100 million from their homeland
-In 1988 , a year and a half after Mrs. Marcos and her late husband , Ferdinand Marcos , the ousted president of the Philippines , fled the Philippines for Hawaii , they were charged with racketeering , conspiracy , obstruction of justice and mail fraud in a scheme in which they allegedly embezzled more than $ 100 million from their homeland . was ousted Ferdinand Marcos , president of the Philippines
-In 1988 , a year and a half after Mrs. Marcos and her late husband , Ferdinand Marcos , the ousted president of the Philippines , fled the Philippines for Hawaii , they were charged with racketeering , conspiracy , obstruction of justice and mail fraud in a scheme in which they allegedly embezzled more than $ 100 million from their homeland . was charged with Mrs. Marcos obstruction of justice a year and a half after Mrs. Marcos and her late husband , Ferdinand Marcos , the ousted president of the Philippines , fled the Philippines for Hawaii
-In 1988 , a year and a half after Mrs. Marcos and her late husband , Ferdinand Marcos , the ousted president of the Philippines , fled the Philippines for Hawaii , they were charged with racketeering , conspiracy , obstruction of justice and mail fraud in a scheme in which they allegedly embezzled more than $ 100 million from their homeland . was charged with Mrs. Marcos mail fraud a year and a half after Mrs. Marcos and her late husband , Ferdinand Marcos , the ousted president of the Philippines , fled the Philippines for Hawaii
-In 1988 , a year and a half after Mrs. Marcos and her late husband , Ferdinand Marcos , the ousted president of the Philippines , fled the Philippines for Hawaii , they were charged with racketeering , conspiracy , obstruction of justice and mail fraud in a scheme in which they allegedly embezzled more than $ 100 million from their homeland . a scheme in which they allegedly embezzled more than $ 100 million from their homeland
-In 1988 , a year and a half after Mrs. Marcos and her late husband , Ferdinand Marcos , the ousted president of the Philippines , fled the Philippines for Hawaii , they were charged with racketeering , conspiracy , obstruction of justice and mail fraud in a scheme in which they allegedly embezzled more than $ 100 million from their homeland . were charged in they a scheme in which they allegedly embezzled more than $ 100 million from their homeland In 1988
-In 1988 , a year and a half after Mrs. Marcos and her late husband , Ferdinand Marcos , the ousted president of the Philippines , fled the Philippines for Hawaii , they were charged with racketeering , conspiracy , obstruction of justice and mail fraud in a scheme in which they allegedly embezzled more than $ 100 million from their homeland . were charged in they a scheme in which they allegedly embezzled more than $ 100 million from their homeland a year and a half after Mrs. Marcos and her late husband , Ferdinand Marcos , the ousted president of the Philippines
-In 1988 , a year and a half after Mrs. Marcos and her late husband , Ferdinand Marcos , the ousted president of the Philippines , fled the Philippines for Hawaii , they were charged with racketeering , conspiracy , obstruction of justice and mail fraud in a scheme in which they allegedly embezzled more than $ 100 million from their homeland . is late husband of Ferdinand Marcos , the ousted president of the Philippines Mrs. Marcos
-In Japan , those functions account for only about a third of the software market . those functions account for only about a third of the software market In Japan
-In Japan , those functions account for only about a third of the software market . is of software market In Japan
-In the U.S. , more than half the PC software sold is either for spreadsheets or for database analysis , according to Lotus . is sold PC software In the U.S.
-In the U.S. , more than half the PC software sold is either for spreadsheets or for database analysis , according to Lotus . In the U.S. , more than half the PC software sold is either for spreadsheets or for database analysis according to Lotus
-In the U.S. , more than half the PC software sold is either for spreadsheets or for database analysis , according to Lotus . PC software is sold for spreadsheets
-In the U.S. , more than half the PC software sold is either for spreadsheets or for database analysis , according to Lotus . PC software is sold for database analysis
-In the U.S. , more than half the PC software sold is either for spreadsheets or for database analysis , according to Lotus . PC software more than half is sold either for spreadsheets or database analysis In the U.S.
-In the corporate market , an expected debt offering today by International Business Machines Corp. generated considerable attention . generated an expected debt offering by International Business Machines Corp. considerable attention In the corporate market today
-In the corporate market , an expected debt offering today by International Business Machines Corp. generated considerable attention . expected by debt offering International Business Machines Corp. today
-In the first nine months , profit rose 10 % to $ 313.2 million , or $ 3.89 a share , from $ 283.9 million , or $ 3.53 a share . rose from profit $ 283.9 million In the first nine months
-In the first nine months , profit rose 10 % to $ 313.2 million , or $ 3.89 a share , from $ 283.9 million , or $ 3.53 a share . rose from profit $ 3.53 a share In the first nine months
-In the first nine months , profit rose 10 % to $ 313.2 million , or $ 3.89 a share , from $ 283.9 million , or $ 3.53 a share . rose by profit 10 % In the first nine months
-In the first nine months , profit rose 10 % to $ 313.2 million , or $ 3.89 a share , from $ 283.9 million , or $ 3.53 a share . rose 10 % to profit $ 313.2 million In the first nine months
-In the first nine months , profit rose 10 % to $ 313.2 million , or $ 3.89 a share , from $ 283.9 million , or $ 3.53 a share . rose 10 % to profit $ 3.89 a share In the first nine months
-Indeed , the insurance adjusters had already bolted out of the courtroom . had bolted out of the insurance adjusters the courtroom already
-Indeed , the insurance adjusters had already bolted out of the courtroom . had Indeed the insurance adjusters bolted out of the courtroom already
-Industrial Bank of Japan , which claims to be the biggest Japanese buyer of U.S. mortgage securities , says it will more than double its purchases this year , to an amount one official puts at several billion dollars . says Industrial Bank of Japan it will more than double its purchases this year
-Industrial Bank of Japan , which claims to be the biggest Japanese buyer of U.S. mortgage securities , says it will more than double its purchases this year , to an amount one official puts at several billion dollars . claims to be Industrial Bank of Japan the biggest Japanese buyer of U.S. mortgage securities
-Industrial Bank of Japan , which claims to be the biggest Japanese buyer of U.S. mortgage securities , says it will more than double its purchases this year , to an amount one official puts at several billion dollars . will more than double Industrial Bank of Japan its purchases this year
-Industrial Bank of Japan , which claims to be the biggest Japanese buyer of U.S. mortgage securities , says it will more than double its purchases this year , to an amount one official puts at several billion dollars . will more than double its purchases to Industrial Bank of Japan an amount one official puts at several billion dollars
-Industrial Bank of Japan , which claims to be the biggest Japanese buyer of U.S. mortgage securities , says it will more than double its purchases this year , to an amount one official puts at several billion dollars . puts one official amount at several billion dollars
-It came in London 's `` Big Bang '' 1986 deregulation ; and Toronto 's `` Little Bang '' the same year . came in It London 's `` Big Bang '' deregulation 1986
-It came in London 's `` Big Bang '' 1986 deregulation ; and Toronto 's `` Little Bang '' the same year . came in It Toronto 's `` Little Bang '' deregulation the same year
-It rose 4.8 % for the 12 months ended in June and 4.7 % in the 12 months ended in September 1988 . rose by It 4.8 % for the 12 months ended in June 1988
-It rose 4.8 % for the 12 months ended in June and 4.7 % in the 12 months ended in September 1988 . rose by It 4.7 % in the 12 months ended in September 1988
-It surged 2 3\/4 to 6 on volume of more than 1.7 million shares after the company agreed to be acquired by Japan 's Chugai Pharmaceutical for about $ 110 million -- almost double the market price of Gen - Probe 's stock . surged It 2 3\/4 to 6
-It surged 2 3\/4 to 6 on volume of more than 1.7 million shares after the company agreed to be acquired by Japan 's Chugai Pharmaceutical for about $ 110 million -- almost double the market price of Gen - Probe 's stock . surged to It 6
-It surged 2 3\/4 to 6 on volume of more than 1.7 million shares after the company agreed to be acquired by Japan 's Chugai Pharmaceutical for about $ 110 million -- almost double the market price of Gen - Probe 's stock . surged on It volume of more than 1.7 million shares
-It surged 2 3\/4 to 6 on volume of more than 1.7 million shares after the company agreed to be acquired by Japan 's Chugai Pharmaceutical for about $ 110 million -- almost double the market price of Gen - Probe 's stock . surged It the company agreed to be acquired by Japan 's Chugai Pharmaceutical after
-It surged 2 3\/4 to 6 on volume of more than 1.7 million shares after the company agreed to be acquired by Japan 's Chugai Pharmaceutical for about $ 110 million -- almost double the market price of Gen - Probe 's stock . agreed to be acquired by the company Japan 's Chugai Pharmaceutical
-It surged 2 3\/4 to 6 on volume of more than 1.7 million shares after the company agreed to be acquired by Japan 's Chugai Pharmaceutical for about $ 110 million -- almost double the market price of Gen - Probe 's stock . agreed to be acquired for the company about $ 110 million
-It surged 2 3\/4 to 6 on volume of more than 1.7 million shares after the company agreed to be acquired by Japan 's Chugai Pharmaceutical for about $ 110 million -- almost double the market price of Gen - Probe 's stock . is $ 110 million almost double the market price of Gen - Probe 's stock
-It surged 2 3\/4 to 6 on volume of more than 1.7 million shares after the company agreed to be acquired by Japan 's Chugai Pharmaceutical for about $ 110 million -- almost double the market price of Gen - Probe 's stock . is in Chugai Pharmaceutical Japan
-It surged 2 3\/4 to 6 on volume of more than 1.7 million shares after the company agreed to be acquired by Japan 's Chugai Pharmaceutical for about $ 110 million -- almost double the market price of Gen - Probe 's stock . has stock Gen - Probe
-It surged 2 3\/4 to 6 on volume of more than 1.7 million shares after the company agreed to be acquired by Japan 's Chugai Pharmaceutical for about $ 110 million -- almost double the market price of Gen - Probe 's stock . has market price Gen - Probe stock
-It was the most active of the 100 - share index at 8.3 million shares , 6.5 million of which were traded by midday . was the most active of It the 100 - share index
-It was the most active of the 100 - share index at 8.3 million shares , 6.5 million of which were traded by midday . was the most active at It 8.3 million shares
-It was the most active of the 100 - share index at 8.3 million shares , 6.5 million of which were traded by midday . were traded 6.5 million of 8.3 million shares by midday
-It was the most active of the 100 - share index at 8.3 million shares , 6.5 million of which were traded by midday . is 100 - share index
-Jaguar 's own defenses against a hostile bid are weakened , analysts add , because fewer than 3 % of its shares are owned by employees and management . add analysts Jaguar 's own defenses against a hostile bid are weakened because fewer than 3 % of its shares are owned by employees and management
-Jaguar 's own defenses against a hostile bid are weakened , analysts add , because fewer than 3 % of its shares are owned by employees and management . are weakened because Jaguar 's own defenses against a hostile bid fewer than 3 % of its shares are owned by employees and management
-Jaguar 's own defenses against a hostile bid are weakened , analysts add , because fewer than 3 % of its shares are owned by employees and management . are owned by fewer than 3 % of Jaguar 's shares employees and management
-Jaguar 's own defenses against a hostile bid are weakened , analysts add , because fewer than 3 % of its shares are owned by employees and management . has defenses against Jaguar a hostile bid
-Jaguar 's own defenses against a hostile bid are weakened , analysts add , because fewer than 3 % of its shares are owned by employees and management . Jaguar has shares
-Jaguar 's own defenses against a hostile bid are weakened , analysts add , because fewer than 3 % of its shares are owned by employees and management . Jaguar has employees
-Jaguar 's own defenses against a hostile bid are weakened , analysts add , because fewer than 3 % of its shares are owned by employees and management . Jaguar has management
-Jaguar 's own defenses against a hostile bid are weakened , analysts add , because fewer than 3 % of its shares are owned by employees and management . Jaguar has its own defenses
-Japanese office workers use PCs at half the rate of their European counterparts and one - third that of the Americans . use PCs at half the rate of Japanese office workers their European counterparts
-Japanese office workers use PCs at half the rate of their European counterparts and one - third that of the Americans . use PCs at one - third the rate of Japanese office workers the Americans
-Japanese office workers use PCs at half the rate of their European counterparts and one - third that of the Americans . are European counterparts
-Japanese office workers use PCs at half the rate of their European counterparts and one - third that of the Americans . are Japanese office workers
-Japanese office workers use PCs at half the rate of their European counterparts and one - third that of the Americans . are European office workers
-Japanese office workers use PCs at half the rate of their European counterparts and one - third that of the Americans . are Americans office workers
-Japanese office workers use PCs at half the rate of their European counterparts and one - third that of the Americans . are in office workers Japan
-Japanese office workers use PCs at half the rate of their European counterparts and one - third that of the Americans . are in office workers Europe
-Japanese office workers use PCs at half the rate of their European counterparts and one - third that of the Americans . are in office workers America
-Japanese office workers use PCs at half the rate of their European counterparts and one - third that of the Americans . use European office workers PCs
-Japanese office workers use PCs at half the rate of their European counterparts and one - third that of the Americans . use American office workers PCs
-Keeping the Japanese happy will be one of the most important tasks facing conservative leader Ernesto Ruffo when he takes office Nov. 1 , as the first opposition governor in Mexico 's modern history . will be one of the most important tasks facing Keeping the Japanese happy conservative leader Ernesto Ruffo when he takes office Nov. 1
-Keeping the Japanese happy will be one of the most important tasks facing conservative leader Ernesto Ruffo when he takes office Nov. 1 , as the first opposition governor in Mexico 's modern history . is Ernesto Ruffo conservative leader
-Keeping the Japanese happy will be one of the most important tasks facing conservative leader Ernesto Ruffo when he takes office Nov. 1 , as the first opposition governor in Mexico 's modern history . is conservative Ernesto Ruffo
-Keeping the Japanese happy will be one of the most important tasks facing conservative leader Ernesto Ruffo when he takes office Nov. 1 , as the first opposition governor in Mexico 's modern history . is a leader Ernesto Ruffo
-Keeping the Japanese happy will be one of the most important tasks facing conservative leader Ernesto Ruffo when he takes office Nov. 1 , as the first opposition governor in Mexico 's modern history . takes office conservative leader Ernesto Ruffo Nov. 1
-Keeping the Japanese happy will be one of the most important tasks facing conservative leader Ernesto Ruffo when he takes office Nov. 1 , as the first opposition governor in Mexico 's modern history . takes office as conservative leader Ernesto Ruffo the first opposition governor in Mexico 's modern history
-Keeping the Japanese happy will be one of the most important tasks facing conservative leader Ernesto Ruffo when he takes office Nov. 1 , as the first opposition governor in Mexico 's modern history . takes office in conservative leader Ernesto Ruffo Mexico Nov. 1
-Keeping the Japanese happy will be one of the most important tasks facing conservative leader Ernesto Ruffo when he takes office Nov. 1 , as the first opposition governor in Mexico 's modern history . has modern history Mexico
-Labor costs are climbing at a far more rapid pace in the health care industry than in other industries . are climbing at Labor costs a far more rapid pace
-Labor costs are climbing at a far more rapid pace in the health care industry than in other industries . are climbing in Labor costs the health care industry
-Labor costs are climbing at a far more rapid pace in the health care industry than in other industries . are climbing in Labor costs other industries
-Labor costs are climbing at a far more rapid pace in the health care industry than in other industries . is pace costs are climbing at far more rapid in the health care industry
-Labor costs are climbing at a far more rapid pace in the health care industry than in other industries . are climbing Labor costs in the health care industry
-Labor costs are climbing at a far more rapid pace in the health care industry than in other industries . are climbing Labor costs in other industries
-Meanwhile , at home , Mitsubishi has control of some major projects . has control Mitsubishi of some major projects at home Meanwhile
-Medical cooperatives , among the most successful in the U.S.S.R. , are banned from providing general - practitioner services ( their main source of income ) , carrying out surgery , and treating cancer patients , drug addicts and pregnant women . are banned from providing Medical cooperatives general - practitioner services
-Medical cooperatives , among the most successful in the U.S.S.R. , are banned from providing general - practitioner services ( their main source of income ) , carrying out surgery , and treating cancer patients , drug addicts and pregnant women . are banned from carrying out Medical cooperatives surgery
-Medical cooperatives , among the most successful in the U.S.S.R. , are banned from providing general - practitioner services ( their main source of income ) , carrying out surgery , and treating cancer patients , drug addicts and pregnant women . are banned from treating Medical cooperatives cancer patients
-Medical cooperatives , among the most successful in the U.S.S.R. , are banned from providing general - practitioner services ( their main source of income ) , carrying out surgery , and treating cancer patients , drug addicts and pregnant women . are banned from treating Medical cooperatives pregnant women
-Medical cooperatives , among the most successful in the U.S.S.R. , are banned from providing general - practitioner services ( their main source of income ) , carrying out surgery , and treating cancer patients , drug addicts and pregnant women . are banned from treating Medical cooperatives pregnant women
-Medical cooperatives , among the most successful in the U.S.S.R. , are banned from providing general - practitioner services ( their main source of income ) , carrying out surgery , and treating cancer patients , drug addicts and pregnant women . are among Medical cooperatives the most successful in the U.S.S.R.
-Medical cooperatives , among the most successful in the U.S.S.R. , are banned from providing general - practitioner services ( their main source of income ) , carrying out surgery , and treating cancer patients , drug addicts and pregnant women . is providing general - practitioner services their main source of income
-Medical cooperatives , among the most successful in the U.S.S.R. , are banned from providing general - practitioner services ( their main source of income ) , carrying out surgery , and treating cancer patients , drug addicts and pregnant women . is providing general - practitioner services the main source of income of Medical cooperatives
-Metromedia , headed by John W. Kluge , has interests in telecommunications , robotic painting , computer software , restaurants and entertainment . has interests in Metromedia telecommunications
-Metromedia , headed by John W. Kluge , has interests in telecommunications , robotic painting , computer software , restaurants and entertainment . has interests in Metromedia robotic painting
-Metromedia , headed by John W. Kluge , has interests in telecommunications , robotic painting , computer software , restaurants and entertainment . has interests in Metromedia computer software
-Metromedia , headed by John W. Kluge , has interests in telecommunications , robotic painting , computer software , restaurants and entertainment . has interests in Metromedia restaurants
-Metromedia , headed by John W. Kluge , has interests in telecommunications , robotic painting , computer software , restaurants and entertainment . has interests in Metromedia entertainment
-Metromedia , headed by John W. Kluge , has interests in telecommunications , robotic painting , computer software , restaurants and entertainment . is headed by Metromedia John W. Kluge
-Most yields on short - term jumbo CDs , those with denominations over $ 90,000 , also moved in the opposite direction of Treasury bill yields . moved in Most yields on short - term jumbo CDs the opposite direction of Treasury bill yields
-Most yields on short - term jumbo CDs , those with denominations over $ 90,000 , also moved in the opposite direction of Treasury bill yields . have jumbo CDs denominations over $ 90,000
-Most yields on short - term jumbo CDs , those with denominations over $ 90,000 , also moved in the opposite direction of Treasury bill yields . have short - term jumbo CDs yields
-Most yields on short - term jumbo CDs , those with denominations over $ 90,000 , also moved in the opposite direction of Treasury bill yields . have Treasury bills yields
-Mr. Guber and Mr. Peters also almost certainly would n't be able to participate in future sequels to `` Batman , '' the blockbuster hit they produced for Warner . almost certainly would n't be able to participate in Mr. Guber future sequels to `` Batman ''
-Mr. Guber and Mr. Peters also almost certainly would n't be able to participate in future sequels to `` Batman , '' the blockbuster hit they produced for Warner . almost certainly would n't be able to participate in Mr. Peters future sequels to `` Batman ''
-Mr. Guber and Mr. Peters also almost certainly would n't be able to participate in future sequels to `` Batman , '' the blockbuster hit they produced for Warner . is a blockbuster hit `` Batman ''
-Mr. Guber and Mr. Peters also almost certainly would n't be able to participate in future sequels to `` Batman , '' the blockbuster hit they produced for Warner . was produced for `` Batman '' Warner
-Mr. Guber and Mr. Peters also almost certainly would n't be able to participate in future sequels to `` Batman , '' the blockbuster hit they produced for Warner . was produced for the blockbuster hit Warner
-Mr. Guber and Mr. Peters also almost certainly would n't be able to participate in future sequels to `` Batman , '' the blockbuster hit they produced for Warner . produced they `` Batman ''
-Mr. Guber and Mr. Peters also almost certainly would n't be able to participate in future sequels to `` Batman , '' the blockbuster hit they produced for Warner . produced they the blockbuster hit
-Mr. Phelan is an adroit diplomat who normally appears to be solidly in control of the Big Board 's factions . is Mr. Phelan an adroit diplomat who normally appears to be solidly in control of the Big Board 's factions
-Mr. Phelan is an adroit diplomat who normally appears to be solidly in control of the Big Board 's factions . has the Big Board factions
-Mr. Phelan is an adroit diplomat who normally appears to be solidly in control of the Big Board 's factions . normally appears to be Mr. Phelan solidly in control of the Big Board 's factions
-Mr. Ridley 's decision fires the starting pistol for perhaps a costly contest between the world 's auto giants for Britain 's leading luxury - car maker . has Mr. Ridley decision
-Mr. Ridley 's decision fires the starting pistol for perhaps a costly contest between the world 's auto giants for Britain 's leading luxury - car maker . fires Mr. Ridley 's decision the starting pistol for perhaps a costly contest between the world 's auto giants for Britain 's leading luxury - car maker
-Mr. Ridley 's decision fires the starting pistol for perhaps a costly contest between the world 's auto giants for Britain 's leading luxury - car maker . perhaps will be contest costly
-Mr. Ridley 's decision fires the starting pistol for perhaps a costly contest between the world 's auto giants for Britain 's leading luxury - car maker . is between a costly contest the world 's auto giants
-Mr. Ridley 's decision fires the starting pistol for perhaps a costly contest between the world 's auto giants for Britain 's leading luxury - car maker . is for a costly contest Britain 's leading luxury - car maker
-Mr. Ridley 's decision fires the starting pistol for perhaps a costly contest between the world 's auto giants for Britain 's leading luxury - car maker . has auto giants the world
-Mr. Ridley 's decision fires the starting pistol for perhaps a costly contest between the world 's auto giants for Britain 's leading luxury - car maker . is in leading luxury - car maker Britain
-Mr. Ridley 's decision fires the starting pistol for perhaps a costly contest between the world 's auto giants for Britain 's leading luxury - car maker . are in auto giants the world
-Mr. Stoll suspected the intruder was one of those precocious students who has fun breaking into computers . suspected Mr. Stoll the intruder was one of those precocious students who has fun breaking into computers
-Mr. Stoll suspected the intruder was one of those precocious students who has fun breaking into computers . have fun breaking into precocious students computers
-Mr. Stoll suspected the intruder was one of those precocious students who has fun breaking into computers . was one of the intruder those precocious students who has fun breaking into computers
-Mr. Stoll suspected the intruder was one of those precocious students who has fun breaking into computers . are precocious students who have fun breaking into computers
-Mr. Wathen , who says Pinkerton 's had a loss of nearly $ 8 million in 1987 under American Brands , boasts that he 's made Pinkerton 's profitable again . says Mr. Wathen Pinkerton 's had a loss of nearly $ 8 million in 1987 under American Brands
-Mr. Wathen , who says Pinkerton 's had a loss of nearly $ 8 million in 1987 under American Brands , boasts that he 's made Pinkerton 's profitable again . boasts that Mr. Wathen he 's made Pinkerton 's profitable again
-Mr. Wathen , who says Pinkerton 's had a loss of nearly $ 8 million in 1987 under American Brands , boasts that he 's made Pinkerton 's profitable again . was under Pinkerton 's loss of nearly $ 8 million American Brands in 1987
-Mr. Wathen , who says Pinkerton 's had a loss of nearly $ 8 million in 1987 under American Brands , boasts that he 's made Pinkerton 's profitable again . had a loss of Pinkerton 's nearly $ 8 million under American Brands in 1987
-Mr. Zayadi was previously president and chief operating officer of Zellers Inc. , a retail chain that is owned by Toronto - based Hudson 's Bay Co. , Canada 's largest department store operator . was previously president and chief operating officer of Mr. Zayadi Zellers Inc. in Canada
-Mr. Zayadi was previously president and chief operating officer of Zellers Inc. , a retail chain that is owned by Toronto - based Hudson 's Bay Co. , Canada 's largest department store operator . was Mr. Zayadi previously president and chief operating officer of Zellers Inc. a retail chain owned by Toronto based Hudson 's Bay Co. , Canada's largest department store operator
-Mr. Zayadi was previously president and chief operating officer of Zellers Inc. , a retail chain that is owned by Toronto - based Hudson 's Bay Co. , Canada 's largest department store operator . was previously president and chief operating officer of Zellers Inc. a Mr. Zayadi retail chain that is owned by Toronto based Hudson's Bay Co , Canada's largest department store operator
-Mrs. Marcos 's trial is expected to begin in March . is expected to begin a Mrs. Marcos trial in March
-Mrs. Marcos has n't admitted that she filed any documents such as those sought by the government . has n't admitted that she filed any documents such as those sought by Mrs. Marcos the government
-Mrs. Marcos has n't admitted that she filed any documents such as those sought by the government . has admitted that she filed Mrs. Marcos any documents such as those sought by the government
-Norris McLaughlin is a general - practice firm that has expanded recently into such specialties as banking , labor and environmental work . is a Norris McLaughlin general practice firm that has expanded recently into such specialties as banking , labor and environmental work
-Norris McLaughlin is a general - practice firm that has expanded recently into such specialties as banking , labor and environmental work . is a general - practice firm that Norris McLaughlin has expanded recently into such specialties as banking , labor and environmental
-Now Mr. Broberg , a lawyer , claims he 'd play for free . is a lawyer who claims he 'd play for Mr. Broberg free Now
-Now that the New York decision has been left intact , other states may follow suit . has been left intact the New York decision Now
-Now that the New York decision has been left intact , other states may follow suit . may follow suit other states Now that the New York decision has been left intact
-Of the self - starting vacuum cleaner , he says : `` Could be Cuddles , { Mrs. Stinnett 's dog } . '' says : he `` Could be Cuddles , { Mrs. Stinnett 's dog } . ''
-Of the self - starting vacuum cleaner , he says : `` Could be Cuddles , { Mrs. Stinnett 's dog } . '' has Mrs. Stinnett dog
-Of the self - starting vacuum cleaner , he says : `` Could be Cuddles , { Mrs. Stinnett 's dog } . '' is Cuddles Mrs. Stinnett 's dog
-Of the self - starting vacuum cleaner , he says : `` Could be Cuddles , { Mrs. Stinnett 's dog } . '' is self - starting vacuum cleaner
-On a broader scale , the ruling could encourage other states ' courts to adopt the logic of the New York court , not only in DES cases but in other product - related lawsuits , as well . could encourage the ruling other states ' courts to adopt the logic of the New York court
-On a broader scale , the ruling could encourage other states ' courts to adopt the logic of the New York court , not only in DES cases but in other product - related lawsuits , as well . are product - related lawsuits
-On a broader scale , the ruling could encourage other states ' courts to adopt the logic of the New York court , not only in DES cases but in other product - related lawsuits , as well . is broader scale
-On a broader scale , the ruling could encourage other states ' courts to adopt the logic of the New York court , not only in DES cases but in other product - related lawsuits , as well . have courts other states
-On a broader scale , the ruling could encourage other states ' courts to adopt the logic of the New York court , not only in DES cases but in other product - related lawsuits , as well . has logic the New York court
-On a broader scale , the ruling could encourage other states ' courts to adopt the logic of the New York court , not only in DES cases but in other product - related lawsuits , as well . could adopt the logic in other states ' courts DES cases
-On a broader scale , the ruling could encourage other states ' courts to adopt the logic of the New York court , not only in DES cases but in other product - related lawsuits , as well . could adopt the logic in other states ' courts other product - related lawsuits
-On a broader scale , the ruling could encourage other states ' courts to adopt the logic of the New York court , not only in DES cases but in other product - related lawsuits , as well . as well the ruling could encourage other states ' courts to adopt the logic of the New York court in other product - related lawsuits
-On a recent afternoon , Mr. Baker and a reporter go ghost - busting , visiting Kathleen Stinnett , a Lexington woman who has phoned the University of Kentucky to report mysterious happenings in her house . goes ghost - busting Mr. Baker On a recent afternoon
-On a recent afternoon , Mr. Baker and a reporter go ghost - busting , visiting Kathleen Stinnett , a Lexington woman who has phoned the University of Kentucky to report mysterious happenings in her house . goes ghost - busting a reporter On a recent afternoon
-On a recent afternoon , Mr. Baker and a reporter go ghost - busting , visiting Kathleen Stinnett , a Lexington woman who has phoned the University of Kentucky to report mysterious happenings in her house . visits Mr. Baker Kathleen Stinnett On a recent afternoon
-On a recent afternoon , Mr. Baker and a reporter go ghost - busting , visiting Kathleen Stinnett , a Lexington woman who has phoned the University of Kentucky to report mysterious happenings in her house . visits a reporter Kathleen Stinnett On a recent afternoon
-On a recent afternoon , Mr. Baker and a reporter go ghost - busting , visiting Kathleen Stinnett , a Lexington woman who has phoned the University of Kentucky to report mysterious happenings in her house . is Kathleen Stinnett a Lexington woman who has phoned the University of Kentucky to report mysterious happenings in her house
-On a recent afternoon , Mr. Baker and a reporter go ghost - busting , visiting Kathleen Stinnett , a Lexington woman who has phoned the University of Kentucky to report mysterious happenings in her house . has phoned Kathleen Stinnett the University of Kentucky
-On a recent afternoon , Mr. Baker and a reporter go ghost - busting , visiting Kathleen Stinnett , a Lexington woman who has phoned the University of Kentucky to report mysterious happenings in her house . has reported Kathleen Stinnett mysterious happenings in her house
-One had best not dance on top of a coffin until the lid is sealed tightly shut . '' had best not dance One a coffin on top of a coffin until the lid is sealed tightly shut
-One had best not dance on top of a coffin until the lid is sealed tightly shut . '' has lid coffin
-Only his factories in Japan and Korea , employing his followers at subsistence wages and producing everything from rifles to ginseng to expensive marble vases , kept the money flowing westward . are his factories in Japan
-Only his factories in Japan and Korea , employing his followers at subsistence wages and producing everything from rifles to ginseng to expensive marble vases , kept the money flowing westward . are his factories in Korea
-Only his factories in Japan and Korea , employing his followers at subsistence wages and producing everything from rifles to ginseng to expensive marble vases , kept the money flowing westward . employ his factories his followers at subsistence wages in Japan and Korea
-Only his factories in Japan and Korea , employing his followers at subsistence wages and producing everything from rifles to ginseng to expensive marble vases , kept the money flowing westward . produce his factories rifles in Japan and Korea
-Only his factories in Japan and Korea , employing his followers at subsistence wages and producing everything from rifles to ginseng to expensive marble vases , kept the money flowing westward . are marble vases expensive
-Only his factories in Japan and Korea , employing his followers at subsistence wages and producing everything from rifles to ginseng to expensive marble vases , kept the money flowing westward . are expensive vases marble
-Only his factories in Japan and Korea , employing his followers at subsistence wages and producing everything from rifles to ginseng to expensive marble vases , kept the money flowing westward . kept his factories the money flowing westward in Japan
-Only his factories in Japan and Korea , employing his followers at subsistence wages and producing everything from rifles to ginseng to expensive marble vases , kept the money flowing westward . kept his factories the money flowing westward in Korea
-Only his factories in Japan and Korea , employing his followers at subsistence wages and producing everything from rifles to ginseng to expensive marble vases , kept the money flowing westward . produce his factories ginseng in Japan and Korea
-Only his factories in Japan and Korea , employing his followers at subsistence wages and producing everything from rifles to ginseng to expensive marble vases , kept the money flowing westward . produce his factories expensive marble vases in Japan and Korea
-Only his factories in Japan and Korea , employing his followers at subsistence wages and producing everything from rifles to ginseng to expensive marble vases , kept the money flowing westward . flows money westward
-Only when one is ascending -- or in our case descending a tad trop rapidement -- does one feel , well , airborne in a picnic basket . is ascending one in a picnic basket
-Only when one is ascending -- or in our case descending a tad trop rapidement -- does one feel , well , airborne in a picnic basket . is descending one a tad trop rapidement in a picnic basket
-Only when one is ascending -- or in our case descending a tad trop rapidement -- does one feel , well , airborne in a picnic basket . feels one airborne in a picnic basket
-Only when one is ascending -- or in our case descending a tad trop rapidement -- does one feel , well , airborne in a picnic basket . Only when one feels airborne one is ascending in a picnic basket
-Only when one is ascending -- or in our case descending a tad trop rapidement -- does one feel , well , airborne in a picnic basket . Only when one feels airborne one is descending a tad trop rapidement in a picnic basket
-Osamu Nagayama , deputy president of Chugai , which spends about 15 % of its sales on research and development , was unable to pinpoint how much money Chugai would pump into Gen - Probe . spends about Chugai 15 % of its sales on research and development
-Osamu Nagayama , deputy president of Chugai , which spends about 15 % of its sales on research and development , was unable to pinpoint how much money Chugai would pump into Gen - Probe . is Osamu Nagayama deputy president of Chugai
-Osamu Nagayama , deputy president of Chugai , which spends about 15 % of its sales on research and development , was unable to pinpoint how much money Chugai would pump into Gen - Probe . was unable to pinpoint Osamu Nagayama how much money Chugai would pump into Gen - Probe
-Osamu Nagayama , deputy president of Chugai , which spends about 15 % of its sales on research and development , was unable to pinpoint how much money Chugai would pump into Gen - Probe . Chugai has deputy president
-Pennzoil 's poison pill covers five years in order to give current management enough time to put these proceeds to work in a prudent manner . covers Pennzoil 's poison pill five years
-Pennzoil 's poison pill covers five years in order to give current management enough time to put these proceeds to work in a prudent manner . is manner prudent
-Pennzoil 's poison pill covers five years in order to give current management enough time to put these proceeds to work in a prudent manner . is management current
-Pennzoil 's poison pill covers five years in order to give current management enough time to put these proceeds to work in a prudent manner . is poison pill
-Pennzoil 's poison pill covers five years in order to give current management enough time to put these proceeds to work in a prudent manner . has Pennzoil poison pill
-Pennzoil 's poison pill covers five years in order to give current management enough time to put these proceeds to work in a prudent manner . current management five years gives enough time to put these proceeds to work in a prudent manner
-Pennzoil 's poison pill covers five years in order to give current management enough time to put these proceeds to work in a prudent manner . will be put to work in these proceeds a prudent manner
-Prime Minister Lee Kuan Yew , Singapore 's leader and one of Asia 's leading statesmen for 30 years , recently announced his intention to retire next year -- though not necessarily to end his influence . is Lee Kuan Yew Prime Minister
-Prime Minister Lee Kuan Yew , Singapore 's leader and one of Asia 's leading statesmen for 30 years , recently announced his intention to retire next year -- though not necessarily to end his influence . is Lee Kuan Yew Singapore 's leader
-Prime Minister Lee Kuan Yew , Singapore 's leader and one of Asia 's leading statesmen for 30 years , recently announced his intention to retire next year -- though not necessarily to end his influence . was Lee Kuan Yew one of the leading statesmen Asia for 30 years
-Prime Minister Lee Kuan Yew , Singapore 's leader and one of Asia 's leading statesmen for 30 years , recently announced his intention to retire next year -- though not necessarily to end his influence . was Lee Kuan Yew one of Asia 's leading statesmen for 30 years
-Prime Minister Lee Kuan Yew , Singapore 's leader and one of Asia 's leading statesmen for 30 years , recently announced his intention to retire next year -- though not necessarily to end his influence . announced Lee Kuan Yew his intention to retire next year recently
-Prime Minister Lee Kuan Yew , Singapore 's leader and one of Asia 's leading statesmen for 30 years , recently announced his intention to retire next year -- though not necessarily to end his influence . has intention to retire Lee Kuan Yew next year
-Prime Minister Lee Kuan Yew , Singapore 's leader and one of Asia 's leading statesmen for 30 years , recently announced his intention to retire next year -- though not necessarily to end his influence . though Lee Kuan Yew announced his intention to retire next year not necessarily to end his influence
-Prime Minister Lee Kuan Yew , Singapore 's leader and one of Asia 's leading statesmen for 30 years , recently announced his intention to retire next year -- though not necessarily to end his influence . has Singapore leader
-Prime Minister Lee Kuan Yew , Singapore 's leader and one of Asia 's leading statesmen for 30 years , recently announced his intention to retire next year -- though not necessarily to end his influence . has Asia leading statesmen
-Prime Minister Lee Kuan Yew , Singapore 's leader and one of Asia 's leading statesmen for 30 years , recently announced his intention to retire next year -- though not necessarily to end his influence . has Singapore Prime Minister
-Prime Minister Lee Kuan Yew , Singapore 's leader and one of Asia 's leading statesmen for 30 years , recently announced his intention to retire next year -- though not necessarily to end his influence . has Lee Kuan Yew influence
-Procter & Gamble Co. recently introduced refillable versions of four products , including Tide and Mr. Clean , in Canada , but does n't plan to bring them to the U.S. . introduced Procter & Gamble Co. refillable versions of four products in Canada recently
-Procter & Gamble Co. recently introduced refillable versions of four products , including Tide and Mr. Clean , in Canada , but does n't plan to bring them to the U.S. . introduced Procter & Gamble Co. refillable versions of Tide in Canada recently
-Procter & Gamble Co. recently introduced refillable versions of four products , including Tide and Mr. Clean , in Canada , but does n't plan to bring them to the U.S. . introduced Procter & Gamble Co. refillable versions of Mr. Clean in Canada recently
-Procter & Gamble Co. recently introduced refillable versions of four products , including Tide and Mr. Clean , in Canada , but does n't plan to bring them to the U.S. . does n't plan to bring to Procter & Gamble Co. them the U.S
-Procter & Gamble Co. recently introduced refillable versions of four products , including Tide and Mr. Clean , in Canada , but does n't plan to bring them to the U.S. . does n't plan to bring to Procter & Gamble Co. refillable versions of Mr. Clean the U.S
-Procter & Gamble Co. recently introduced refillable versions of four products , including Tide and Mr. Clean , in Canada , but does n't plan to bring them to the U.S. . does n't plan to bring to Procter & Gamble Co. refillable versions of four products the U.S
-Procter & Gamble Co. recently introduced refillable versions of four products , including Tide and Mr. Clean , in Canada , but does n't plan to bring them to the U.S. . does n't plan to bring to Procter & Gamble Co. refillable versions of Tide the U.S
-Procter & Gamble Co. recently introduced refillable versions of four products , including Tide and Mr. Clean , in Canada , but does n't plan to bring them to the U.S. . have four products refillable versions in Canada
-Procter & Gamble Co. recently introduced refillable versions of four products , including Tide and Mr. Clean , in Canada , but does n't plan to bring them to the U.S. . has Tide refillable version in Canada
-Procter & Gamble Co. recently introduced refillable versions of four products , including Tide and Mr. Clean , in Canada , but does n't plan to bring them to the U.S. . has Mr. Clean refillable version in Canada
-Procter & Gamble Co. recently introduced refillable versions of four products , including Tide and Mr. Clean , in Canada , but does n't plan to bring them to the U.S. . is Tide product of Procter & Gamble Co.
-Procter & Gamble Co. recently introduced refillable versions of four products , including Tide and Mr. Clean , in Canada , but does n't plan to bring them to the U.S. . is Mr. Clean product of Procter & Gamble Co.
-Procter & Gamble Co. recently introduced refillable versions of four products , including Tide and Mr. Clean , in Canada , but does n't plan to bring them to the U.S. . does n't have Tide refillable version in the U.S
-Procter & Gamble Co. recently introduced refillable versions of four products , including Tide and Mr. Clean , in Canada , but does n't plan to bring them to the U.S. . does n't have Mr. Clean refillable version in the U.S
-Procter & Gamble Co. recently introduced refillable versions of four products , including Tide and Mr. Clean , in Canada , but does n't plan to bring them to the U.S. . does n't have four products refillable versions in the U.S
-RISC technology speeds up a computer by simplifying the internal software . speeds up RISC technology a computer
-RISC technology speeds up a computer by simplifying the internal software . simplifies RISC technology the internal software
-RISC technology speeds up a computer by simplifying the internal software . computer has internal software
-RISC technology speeds up a computer by simplifying the internal software . speeds by simplifying RISC technology the internal software
-Rather ominously , rabbit studies reveal that RU-486 can cause birth defects , Lancet , the British medical journal , reported in 1987 . reveal that rabbit studies RU-486 can cause birth defects
-Rather ominously , rabbit studies reveal that RU-486 can cause birth defects , Lancet , the British medical journal , reported in 1987 . reported Lancet rabbit studies reveal that RU-486 can cause birth defects in 1987
-Rather ominously , rabbit studies reveal that RU-486 can cause birth defects , Lancet , the British medical journal , reported in 1987 . is Lancet British medical journal
-Rather ominously , rabbit studies reveal that RU-486 can cause birth defects , Lancet , the British medical journal , reported in 1987 . is Lancet medical journal in Britain
-Rather ominously , rabbit studies reveal that RU-486 can cause birth defects , Lancet , the British medical journal , reported in 1987 . are rabbit studies revealing that RU-486 can cause birth defects Rather ominous
-Rather ominously , rabbit studies reveal that RU-486 can cause birth defects , Lancet , the British medical journal , reported in 1987 . can cause RU-486 birth defects
-Repeat customers also can purchase luxury items at reduced prices . can purchase Repeat customers luxury items at reduced prices
-Repeat customers also can purchase luxury items at reduced prices . are at luxury items reduced prices
-Repeat customers also can purchase luxury items at reduced prices . are prices reduced
-Roger M. Marino , president , was named to the new post of vice chairman . was named to Roger M. Marino the new post of vice chairman
-Roger M. Marino , president , was named to the new post of vice chairman . is Roger M. Marino president
-Roger M. Marino , president , was named to the new post of vice chairman . is new the post of vice chairman
-Roger M. Marino , president , was named to the new post of vice chairman . is Roger M. Marino vice chairman
-Ryukichi Imai , Japan 's ambassador to Mexico , agrees that Mexico may be too eager . agrees that Ryukichi Imai Mexico may be too eager
-Ryukichi Imai , Japan 's ambassador to Mexico , agrees that Mexico may be too eager . is ambassador Ryukichi Imai Japan
-Ryukichi Imai , Japan 's ambassador to Mexico , agrees that Mexico may be too eager . is Japan 's Ryukichi Imai ambassador to Mexico
-Ryukichi Imai , Japan 's ambassador to Mexico , agrees that Mexico may be too eager . is Japan 's ambassador to Ryukichi Imai Mexico
-Ryukichi Imai , Japan 's ambassador to Mexico , agrees that Mexico may be too eager . ambassador to Mexico Japan has
-Second , the dollar is showing persistent strength despite a slowdown in the U.S. economy shown by economic indicators . is showing the dollar persistent strength
-Second , the dollar is showing persistent strength despite a slowdown in the U.S. economy shown by economic indicators . despite the dollar is showing persistent strength a slowdown in the U.S. economy
-Second , the dollar is showing persistent strength despite a slowdown in the U.S. economy shown by economic indicators . is shown by a slowdown in the U.S. economy economic indicators
-Second , the dollar is showing persistent strength despite a slowdown in the U.S. economy shown by economic indicators . is in a slowdown the economy in the U.S.
-Sen. Mitchell is confident he has sufficient votes to block such a measure with procedural actions . is confident he has Sen. Mitchell sufficient votes to block such a measure with procedural actions
-Sen. Mitchell is confident he has sufficient votes to block such a measure with procedural actions . will be sufficient to block votes such a measure with procedural actions
-Senate Appropriations Committee Chairman Robert Byrd ( D. , W.Va . ) strongly resisted deeper cuts sought by the House . is Robert Byrd Senate Appropriations Committee Chairman
-Senate Appropriations Committee Chairman Robert Byrd ( D. , W.Va . ) strongly resisted deeper cuts sought by the House . is D. Robert Byrd W.Va W.Va
-Senate Appropriations Committee Chairman Robert Byrd ( D. , W.Va . ) strongly resisted deeper cuts sought by the House . strongly resisted Senate Appropriations Committee Chairman Robert Byrd deeper cuts sought by the House
-Senate Appropriations Committee Chairman Robert Byrd ( D. , W.Va . ) strongly resisted deeper cuts sought by the House . sought the House deeper cuts
-Senate Appropriations Committee Chairman Robert Byrd ( D. , W.Va . ) strongly resisted deeper cuts sought by the House . has Chairman Senate Appropriations Committee
-Senate Appropriations Committee Chairman Robert Byrd ( D. , W.Va . ) strongly resisted deeper cuts sought by the House . is in Appropriations Committee Senate
-Shaw Industries , which agreed to acquire Armstrong World Industries ' carpet operations for an undisclosed price , rose 2 1\/4 to 26 1\/8 . agreed to acquire Shaw Industries Armstrong World Industries ' carpet operations
-Shaw Industries , which agreed to acquire Armstrong World Industries ' carpet operations for an undisclosed price , rose 2 1\/4 to 26 1\/8 . agreed to acquire for Shaw Industries an undisclosed price Armstrong World Industries ' carpet operations
-Shaw Industries , which agreed to acquire Armstrong World Industries ' carpet operations for an undisclosed price , rose 2 1\/4 to 26 1\/8 . rose 2 1\/4 Shaw Industries
-Shaw Industries , which agreed to acquire Armstrong World Industries ' carpet operations for an undisclosed price , rose 2 1\/4 to 26 1\/8 . rose to 26 1\/8 Shaw Industries
-Shaw Industries , which agreed to acquire Armstrong World Industries ' carpet operations for an undisclosed price , rose 2 1\/4 to 26 1\/8 . has Armstrong World Industries carpet operations
-Shaw Industries , which agreed to acquire Armstrong World Industries ' carpet operations for an undisclosed price , rose 2 1\/4 to 26 1\/8 . is price of Armstrong World Industries ' carpet operations undisclosed
-Sidley will maintain its association with the Hashidate Law Office in Tokyo . will maintain Sidley its association with the Hashidate Law Office in Tokyo
-Sidley will maintain its association with the Hashidate Law Office in Tokyo . is in Hashidate Law Office Tokyo
-Sidley will maintain its association with the Hashidate Law Office in Tokyo . has association with Sidley Hashidate Law Office in Tokyo
-Similar studies are expected to reveal how stroke patients ' brains regroup -- a first step toward finding ways to bolster that process and speed rehabilitation . are expected to reveal Similar studies how stroke patients ' brains regroup
-Similar studies are expected to reveal how stroke patients ' brains regroup -- a first step toward finding ways to bolster that process and speed rehabilitation . is toward finding a first step ways to bolster that process
-Similar studies are expected to reveal how stroke patients ' brains regroup -- a first step toward finding ways to bolster that process and speed rehabilitation . is toward finding a first step ways to speed rehabilitation
-Similar studies are expected to reveal how stroke patients ' brains regroup -- a first step toward finding ways to bolster that process and speed rehabilitation . regroup stroke patients ' brains
-Similar studies are expected to reveal how stroke patients ' brains regroup -- a first step toward finding ways to bolster that process and speed rehabilitation . is a first step revealing how stroke patients ' brains regroup
-Since the real estate unit also includes debt , the imputed value of the real estate itself is close to $ 3 billion . also includes the real estate unit debt
-Since the real estate unit also includes debt , the imputed value of the real estate itself is close to $ 3 billion . is close to the imputed value of the real estate itself $ 3 billion
-Since the real estate unit also includes debt , the imputed value of the real estate itself is close to $ 3 billion . has imputed value the real estate itself
-Since the real estate unit also includes debt , the imputed value of the real estate itself is close to $ 3 billion . Since the imputed value of the real estate itself is close to $ 3 billion the real estate unit also includes debt
-Six years ago , Judge O'Kicki was voted president of the Pennsylvania Conference of State Trial Judges by the state 's 400 judges . was voted Judge O'Kicki president of the Pennsylvania Conference of State Trial Judges Six years ago
-Six years ago , Judge O'Kicki was voted president of the Pennsylvania Conference of State Trial Judges by the state 's 400 judges . was voted by Judge O'Kicki the state 's 400 judges Six years ago
-Six years ago , Judge O'Kicki was voted president of the Pennsylvania Conference of State Trial Judges by the state 's 400 judges . is O'Kicki Judge
-Six years ago , Judge O'Kicki was voted president of the Pennsylvania Conference of State Trial Judges by the state 's 400 judges . has Pennsylvania Conference of State Trial Judges
-Six years ago , Judge O'Kicki was voted president of the Pennsylvania Conference of State Trial Judges by the state 's 400 judges . is in Conference of State Trial Judges Pennsylvania
-Six years ago , Judge O'Kicki was voted president of the Pennsylvania Conference of State Trial Judges by the state 's 400 judges . has 400 judges Pennsylvania
-Six years ago , Judge O'Kicki was voted president of the Pennsylvania Conference of State Trial Judges by the state 's 400 judges . are in 400 judges Pennsylvania
-Sometimes , if you have a headache , you can go out and walk it right off . '' can go out if you you have a headache Sometimes
-Sometimes , if you have a headache , you can go out and walk it right off . '' can walk it right off if you you have a headache Sometimes
-Soviets remain in charge of education programs , a former head of an African military tribunal for executions is in charge of culture , and a hard - line Polish communist in exile directs the human - rights and peace division . remain in charge of Soviets education programs
-Soviets remain in charge of education programs , a former head of an African military tribunal for executions is in charge of culture , and a hard - line Polish communist in exile directs the human - rights and peace division . is in charge of a former head of an African military tribunal for executions culture
-Soviets remain in charge of education programs , a former head of an African military tribunal for executions is in charge of culture , and a hard - line Polish communist in exile directs the human - rights and peace division . directs a hard - line Polish communist in exile the human - rights and peace division
-Soviets remain in charge of education programs , a former head of an African military tribunal for executions is in charge of culture , and a hard - line Polish communist in exile directs the human - rights and peace division . is in exile a hard - line Polish communist
-Standard & Poor 's 500 - Stock Index climbed 5.29 to 340.36 , the Dow Jones Equity Market Index added 4.70 to 318.79 and the New York Stock Exchange Composite Index climbed 2.65 to climbed 5.29 Standard & Poor 's 500 - Stock Index
-Standard & Poor 's 500 - Stock Index climbed 5.29 to 340.36 , the Dow Jones Equity Market Index added 4.70 to 318.79 and the New York Stock Exchange Composite Index climbed 2.65 to climbed to 340.36 Standard & Poor 's 500 - Stock Index
-Standard & Poor 's 500 - Stock Index climbed 5.29 to 340.36 , the Dow Jones Equity Market Index added 4.70 to 318.79 and the New York Stock Exchange Composite Index climbed 2.65 to added 4.70 the Dow Jones Equity Market Index
-Standard & Poor 's 500 - Stock Index climbed 5.29 to 340.36 , the Dow Jones Equity Market Index added 4.70 to 318.79 and the New York Stock Exchange Composite Index climbed 2.65 to added to 318.79 the Dow Jones Equity Market Index
-Standard & Poor 's 500 - Stock Index climbed 5.29 to 340.36 , the Dow Jones Equity Market Index added 4.70 to 318.79 and the New York Stock Exchange Composite Index climbed 2.65 to climbed 2.65 the New York Stock Exchange Composite Index
-Standard & Poor 's 500 - Stock Index climbed 5.29 to 340.36 , the Dow Jones Equity Market Index added 4.70 to 318.79 and the New York Stock Exchange Composite Index climbed 2.65 to has Standard & Poor 500 - Stock Index
-Standard & Poor 's 500 - Stock Index climbed 5.29 to 340.36 , the Dow Jones Equity Market Index added 4.70 to 318.79 and the New York Stock Exchange Composite Index climbed 2.65 to has Dow Jones Equity Market Index
-Standard & Poor 's 500 - Stock Index climbed 5.29 to 340.36 , the Dow Jones Equity Market Index added 4.70 to 318.79 and the New York Stock Exchange Composite Index climbed 2.65 to has New York Stock Exchange Composite Index
-Standard & Poor 's 500 - Stock Index climbed 5.29 to 340.36 , the Dow Jones Equity Market Index added 4.70 to 318.79 and the New York Stock Exchange Composite Index climbed 2.65 to is in Stock Exchange New York
-Strong sales so far this year are certain to turn the tide , but even the 25 % market share that Nissan expects in 1989 will leave it far below its position at the beginning of the decade . are certain to turn Strong sales so far the tide this year
-Strong sales so far this year are certain to turn the tide , but even the 25 % market share that Nissan expects in 1989 will leave it far below its position at the beginning of the decade . expects Nissan 25 % market share in 1989
-Strong sales so far this year are certain to turn the tide , but even the 25 % market share that Nissan expects in 1989 will leave it far below its position at the beginning of the decade . will leave Nissan Strong sales so far far below its position at the beginning of the decade this year
-Strong sales so far this year are certain to turn the tide , but even the 25 % market share that Nissan expects in 1989 will leave it far below its position at the beginning of the decade . had position Nissan at the beginning of the decade
-Student job postings at Boston University slip 10 % this year following a 10 % drop in 1988 . Student job postings slip 10 at Boston University this year
-Student job postings at Boston University slip 10 % this year following a 10 % drop in 1988 . Student job postings had a 10 % drop at Boston University in 1988
-THE CHIEF NURSING officer can be responsible for more than 1,000 employees and at least one - third of a hospital 's budget ; a head nurse typically oversees up to 80 employees and $ 8 million . can be responsible for THE CHIEF NURSING officer more than 1,000 employees
-THE CHIEF NURSING officer can be responsible for more than 1,000 employees and at least one - third of a hospital 's budget ; a head nurse typically oversees up to 80 employees and $ 8 million . can be responsible for THE CHIEF NURSING officer at least one - third of a hospital 's budget
-THE CHIEF NURSING officer can be responsible for more than 1,000 employees and at least one - third of a hospital 's budget ; a head nurse typically oversees up to 80 employees and $ 8 million . has a hospital a budget
-THE CHIEF NURSING officer can be responsible for more than 1,000 employees and at least one - third of a hospital 's budget ; a head nurse typically oversees up to 80 employees and $ 8 million . typically oversees a head nurse up to 80 employees
-THE CHIEF NURSING officer can be responsible for more than 1,000 employees and at least one - third of a hospital 's budget ; a head nurse typically oversees up to 80 employees and $ 8 million . typically oversees a head nurse up to $ 8 million
-Takeover stock traders noted that with the junk - bond market in disarray , Georgia - Pacific 's bid is an indication of where the takeover game is headed : namely , industrial companies can continue bidding for one another , but financial buyers such as leveraged buy - out firms will be at a disadvantage in obtaining financing . can continue bidding for industrial companies one another
-Takeover stock traders noted that with the junk - bond market in disarray , Georgia - Pacific 's bid is an indication of where the takeover game is headed : namely , industrial companies can continue bidding for one another , but financial buyers such as leveraged buy - out firms will be at a disadvantage in obtaining financing . will be at a disadvantage in obtaining financial buyers financing
-Takeover stock traders noted that with the junk - bond market in disarray , Georgia - Pacific 's bid is an indication of where the takeover game is headed : namely , industrial companies can continue bidding for one another , but financial buyers such as leveraged buy - out firms will be at a disadvantage in obtaining financing . noted that with Takeover stock traders the junk - bond market in disarray , Georgia - Pacific 's bid is an indication of where the takeover game is headed
-Takeover stock traders noted that with the junk - bond market in disarray , Georgia - Pacific 's bid is an indication of where the takeover game is headed : namely , industrial companies can continue bidding for one another , but financial buyers such as leveraged buy - out firms will be at a disadvantage in obtaining financing . are financial buyers leveraged buy - out firms
-Takeover stock traders noted that with the junk - bond market in disarray , Georgia - Pacific 's bid is an indication of where the takeover game is headed : namely , industrial companies can continue bidding for one another , but financial buyers such as leveraged buy - out firms will be at a disadvantage in obtaining financing . is in disarray the junk - bond market
-Takeover stock traders noted that with the junk - bond market in disarray , Georgia - Pacific 's bid is an indication of where the takeover game is headed : namely , industrial companies can continue bidding for one another , but financial buyers such as leveraged buy - out firms will be at a disadvantage in obtaining financing . has a bid Georgia - Pacific
-Takeover stock traders noted that with the junk - bond market in disarray , Georgia - Pacific 's bid is an indication of where the takeover game is headed : namely , industrial companies can continue bidding for one another , but financial buyers such as leveraged buy - out firms will be at a disadvantage in obtaining financing . are industrial companies
-Takeover stock traders noted that with the junk - bond market in disarray , Georgia - Pacific 's bid is an indication of where the takeover game is headed : namely , industrial companies can continue bidding for one another , but financial buyers such as leveraged buy - out firms will be at a disadvantage in obtaining financing . is an indication of where the takeover game is headed Georgia - Pacific 's bid
-Takeover stock traders noted that with the junk - bond market in disarray , Georgia - Pacific 's bid is an indication of where the takeover game is headed : namely , industrial companies can continue bidding for one another , but financial buyers such as leveraged buy - out firms will be at a disadvantage in obtaining financing . but industrial companies can continue bidding for one another financial buyers such as leveraged buy - out firms will be at a disadvantage in obtaining financing
-Takeover stock traders noted that with the junk - bond market in disarray , Georgia - Pacific 's bid is an indication of where the takeover game is headed : namely , industrial companies can continue bidding for one another , but financial buyers such as leveraged buy - out firms will be at a disadvantage in obtaining financing . will be at a disadvantage in obtaining leveraged buy - out firms financing
-Technology stocks bore the brunt of the OTC market 's recent sell - off , and traders say it 's natural that they rebound sharply now that the market has turned around . bore Technology stocks the brunt of the OTC market 's recent sell - off
-Technology stocks bore the brunt of the OTC market 's recent sell - off , and traders say it 's natural that they rebound sharply now that the market has turned around . say traders it 's natural that they rebound sharply now that the market has turned around
-Technology stocks bore the brunt of the OTC market 's recent sell - off , and traders say it 's natural that they rebound sharply now that the market has turned around . has turned around the market now
-Technology stocks bore the brunt of the OTC market 's recent sell - off , and traders say it 's natural that they rebound sharply now that the market has turned around . had a sell - off the OTC market recent
-Technology stocks bore the brunt of the OTC market 's recent sell - off , and traders say it 's natural that they rebound sharply now that the market has turned around . is natural Technology stocks rebound sharply now that the market has turned around
-That compares with 3.5 % butterfat for whole milk . compares with That 3.5 % butterfat for whole milk
-That compares with 3.5 % butterfat for whole milk . has 3.5 % butterfat whole milk
-The $ 150 million in senior subordinated floating - rate notes were targeted to be offered at a price to float four percentage points above the three - month LIBOR . were targeted to be offered at The $ 150 million in senior subordinated floating - rate notes a price to float four percentage points above the three - month LIBOR
-The $ 150 million in senior subordinated floating - rate notes were targeted to be offered at a price to float four percentage points above the three - month LIBOR . will float a price four percentage points above the three - month LIBOR
-The 41 - year - old Mr. Azoff , a former rock 'n' roll manager , is credited with turning around MCA 's once - moribund music division in his six years at the company . is a former rock 'n' roll manager The 41 - year - old Mr. Azoff
-The 41 - year - old Mr. Azoff , a former rock 'n' roll manager , is credited with turning around MCA 's once - moribund music division in his six years at the company . is the a 41 - year - old Mr. Azoff
-The 41 - year - old Mr. Azoff , a former rock 'n' roll manager , is credited with turning around MCA 's once - moribund music division in his six years at the company . is credited with turning around The 41 - year - old Mr. Azoff MCA 's once - moribund music division at the company in his six years
-The 41 - year - old Mr. Azoff , a former rock 'n' roll manager , is credited with turning around MCA 's once - moribund music division in his six years at the company . was moribund MCA 's music division once
-The 41 - year - old Mr. Azoff , a former rock 'n' roll manager , is credited with turning around MCA 's once - moribund music division in his six years at the company . had six years The 41 - year - old Mr. Azoff at the company
-The 41 - year - old Mr. Azoff , a former rock 'n' roll manager , is credited with turning around MCA 's once - moribund music division in his six years at the company . was turned around MCA 's once - moribund music division at the company in his six years
-The Lone Star Steel lawsuit also asks the court to rule that Lone Star Technologies is jointly responsible for a $ 4.5 million Lone Star Steel pension payment that was due , but was n't paid , in September and that the parent company ca n't recover the amount from its subsidiary if the parent company makes the payment . also asks the court to rule that The Lone Star Steel lawsuit Lone Star Technologies is jointly responsible for a $ 4.5 million Lone Star Steel pension payment that was due , but was n't paid , in September
-The Lone Star Steel lawsuit also asks the court to rule that Lone Star Technologies is jointly responsible for a $ 4.5 million Lone Star Steel pension payment that was due , but was n't paid , in September and that the parent company ca n't recover the amount from its subsidiary if the parent company makes the payment . also asks the court to rule that The Lone Star Steel lawsuit the parent company ca n't recover the amount from its subsidiary if the parent company makes the payment
-The Lone Star Steel lawsuit also asks the court to rule that Lone Star Technologies is jointly responsible for a $ 4.5 million Lone Star Steel pension payment that was due , but was n't paid , in September and that the parent company ca n't recover the amount from its subsidiary if the parent company makes the payment . has a lawsuit Lone Star Steel
-The Lone Star Steel lawsuit also asks the court to rule that Lone Star Technologies is jointly responsible for a $ 4.5 million Lone Star Steel pension payment that was due , but was n't paid , in September and that the parent company ca n't recover the amount from its subsidiary if the parent company makes the payment . was due $ 4.5 million Lone Star Steel pension payment in September
-The Lone Star Steel lawsuit also asks the court to rule that Lone Star Technologies is jointly responsible for a $ 4.5 million Lone Star Steel pension payment that was due , but was n't paid , in September and that the parent company ca n't recover the amount from its subsidiary if the parent company makes the payment . was n't paid $ 4.5 million Lone Star Steel pension payment in September
-The Lone Star Steel lawsuit also asks the court to rule that Lone Star Technologies is jointly responsible for a $ 4.5 million Lone Star Steel pension payment that was due , but was n't paid , in September and that the parent company ca n't recover the amount from its subsidiary if the parent company makes the payment . is parent company Lone Star Technologies
-The Lone Star Steel lawsuit also asks the court to rule that Lone Star Technologies is jointly responsible for a $ 4.5 million Lone Star Steel pension payment that was due , but was n't paid , in September and that the parent company ca n't recover the amount from its subsidiary if the parent company makes the payment . is parent of Lone Star Technologies Lone Star Steel
-The Lone Star Steel lawsuit also asks the court to rule that Lone Star Technologies is jointly responsible for a $ 4.5 million Lone Star Steel pension payment that was due , but was n't paid , in September and that the parent company ca n't recover the amount from its subsidiary if the parent company makes the payment . is subsidiary of Lone Star Steel Lone Star Technologies
-The National Transportation Safety Board ruled that pilots failed to set the plane 's wing flaps and slats properly for takeoff and failed to make mandatory preflight checks that would have detected the error . ruled that The National Transportation Safety Board pilots failed to set the plane 's wing flaps properly for takeoff
-The National Transportation Safety Board ruled that pilots failed to set the plane 's wing flaps and slats properly for takeoff and failed to make mandatory preflight checks that would have detected the error . ruled that The National Transportation Safety Board pilots failed to make mandatory preflight checks that would have detected the error
-The National Transportation Safety Board ruled that pilots failed to set the plane 's wing flaps and slats properly for takeoff and failed to make mandatory preflight checks that would have detected the error . ruled that The National Transportation Safety Board pilots failed to set the plane 's slats properly for takeoff
-The National Transportation Safety Board ruled that pilots failed to set the plane 's wing flaps and slats properly for takeoff and failed to make mandatory preflight checks that would have detected the error . would have detected mandatory preflight checks the error
-The National Transportation Safety Board ruled that pilots failed to set the plane 's wing flaps and slats properly for takeoff and failed to make mandatory preflight checks that would have detected the error . would have detected that mandatory preflight checks pilots failed to set the plane 's wing flaps properly for takeoff
-The National Transportation Safety Board ruled that pilots failed to set the plane 's wing flaps and slats properly for takeoff and failed to make mandatory preflight checks that would have detected the error . would have detected that mandatory preflight checks pilots failed to set the plane 's slats properly for takeoff
-The National Transportation Safety Board ruled that pilots failed to set the plane 's wing flaps and slats properly for takeoff and failed to make mandatory preflight checks that would have detected the error . are mandatory preflight checks
-The National Transportation Safety Board ruled that pilots failed to set the plane 's wing flaps and slats properly for takeoff and failed to make mandatory preflight checks that would have detected the error . has wing flaps plane
-The National Transportation Safety Board ruled that pilots failed to set the plane 's wing flaps and slats properly for takeoff and failed to make mandatory preflight checks that would have detected the error . has slats plane
-The National Transportation Safety Board ruled that pilots failed to set the plane 's wing flaps and slats properly for takeoff and failed to make mandatory preflight checks that would have detected the error . failed to set pilots the plane 's wing flaps properly for takeoff
-The National Transportation Safety Board ruled that pilots failed to set the plane 's wing flaps and slats properly for takeoff and failed to make mandatory preflight checks that would have detected the error . failed to set pilots the plane 's slats properly for takeoff
-The National Transportation Safety Board ruled that pilots failed to set the plane 's wing flaps and slats properly for takeoff and failed to make mandatory preflight checks that would have detected the error . failed to make pilots mandatory preflight checks
-The National Transportation Safety Board ruled that pilots failed to set the plane 's wing flaps and slats properly for takeoff and failed to make mandatory preflight checks that would have detected the error . are preflight mandatory checks
-The New Orleans oil and gas exploration and diving operations company added that it does n't expect any further adverse financial impact from the restructuring . added that The New Orleans oil and gas exploration and diving operations company it does n't expect any further adverse financial impact from the restructuring
-The New Orleans oil and gas exploration and diving operations company added that it does n't expect any further adverse financial impact from the restructuring . does n't expect The New Orleans oil and gas exploration and diving operations company any further adverse financial impact from the restructuring
-The Second Section index , which fell 36.87 points Friday , was down 21.44 points , or 0.59 % , to close at 3636.06 . fell The Second Section index 36.87 points Friday
-The Second Section index , which fell 36.87 points Friday , was down 21.44 points , or 0.59 % , to close at 3636.06 . was down The Second Section index 21.44 points
-The Second Section index , which fell 36.87 points Friday , was down 21.44 points , or 0.59 % , to close at 3636.06 . was down The Second Section index 0.59 %
-The Second Section index , which fell 36.87 points Friday , was down 21.44 points , or 0.59 % , to close at 3636.06 . closed at The Second Section index 3636.06
-The Soviets complicated the issue by offering to include light tanks , which are as light as 10 tons . complicated the issue by offering to include The Soviets light tanks
-The Soviets complicated the issue by offering to include light tanks , which are as light as 10 tons . are as light as light tanks 10 tons
-The U.S. market , too , is dominated by a giant , International Business Machines Corp . is dominated by The U.S. market a giant , International Business Machines Corp
-The U.S. market , too , is dominated by a giant , International Business Machines Corp . is dominated by The market a giant , International Business Machines Corp U.S.
-The basket product , while it has got off to a slow start , is being supported by some big brokerage firms -- another member of Mr. Phelan 's splintered constituency . has got off to The basket product a slow start
-The basket product , while it has got off to a slow start , is being supported by some big brokerage firms -- another member of Mr. Phelan 's splintered constituency . is being supported by The basket product some big brokerage firms
-The basket product , while it has got off to a slow start , is being supported by some big brokerage firms -- another member of Mr. Phelan 's splintered constituency . is splintered Mr. Phelan 's constituency
-The basket product , while it has got off to a slow start , is being supported by some big brokerage firms -- another member of Mr. Phelan 's splintered constituency . has Mr. Phelan splintered constituency
-The campaign , a patriotic celebration of the 200th anniversary of the Bill of Rights , does n't mention cigarettes or smoking ; cigarette ads have been prohibited on television since 1971 . does n't mention The campaign cigarettes
-The campaign , a patriotic celebration of the 200th anniversary of the Bill of Rights , does n't mention cigarettes or smoking ; cigarette ads have been prohibited on television since 1971 . does n't mention The campaign smoking
-The campaign , a patriotic celebration of the 200th anniversary of the Bill of Rights , does n't mention cigarettes or smoking ; cigarette ads have been prohibited on television since 1971 . have been prohibited on cigarette ads television since 1971
-The campaign , a patriotic celebration of the 200th anniversary of the Bill of Rights , does n't mention cigarettes or smoking ; cigarette ads have been prohibited on television since 1971 . is patriotic a celebration of the 200th anniversary of the Bill of Rights
-The campaign , a patriotic celebration of the 200th anniversary of the Bill of Rights , does n't mention cigarettes or smoking ; cigarette ads have been prohibited on television since 1971 . is a patriotic celebration of The campaign the 200th anniversary of the Bill of Rights
-The centerpiece of that complex , the Landmark Tower , will be Japan 's tallest building when it is completed in 1993 . is the Landmark Tower The centerpiece of that complex
-The centerpiece of that complex , the Landmark Tower , will be Japan 's tallest building when it is completed in 1993 . will be the Landmark Tower Japan's tallest building when it is completed in 1993
-The centerpiece of that complex , the Landmark Tower , will be Japan 's tallest building when it is completed in 1993 . will be he centerpiece of that complex Japan's tallest building when it is completed in 1993
-The centerpiece of that complex , the Landmark Tower , will be Japan 's tallest building when it is completed in 1993 . has a centerpiece that complex
-The centerpiece of that complex , the Landmark Tower , will be Japan 's tallest building when it is completed in 1993 . will be completed in the Landmark Tower 1993
-The centerpiece of that complex , the Landmark Tower , will be Japan 's tallest building when it is completed in 1993 . will be completed in Japan 's tallest building 1993
-The centerpiece of that complex , the Landmark Tower , will be Japan 's tallest building when it is completed in 1993 . will be completed in The centerpiece of that complex 1993
-The conviction stemmed from federal charges of consumer fraud for sale of phony infant apple juice between 1978 and 1983 . stemmed from The conviction federal charges of consumer fraud for sale of phony infant apple juice between 1978 and 1983
-The conviction stemmed from federal charges of consumer fraud for sale of phony infant apple juice between 1978 and 1983 . were federal charges of consumer fraud for sale of phony infant apple juice
-The conviction stemmed from federal charges of consumer fraud for sale of phony infant apple juice between 1978 and 1983 . was for sale phony infant apple juice between 1978 and 1983
-The conviction stemmed from federal charges of consumer fraud for sale of phony infant apple juice between 1978 and 1983 . was phony infant apple juice
-The conviction stemmed from federal charges of consumer fraud for sale of phony infant apple juice between 1978 and 1983 . is for infants apple juice
-The conviction stemmed from federal charges of consumer fraud for sale of phony infant apple juice between 1978 and 1983 . stemmed from The conviction federal charges of consumer fraud for sale of phony infant apple juice between 1978 and 1983
-The discount rate on three - month Treasury bills rose slightly from the average rate at Monday 's auction to 7.79 % for a bond - equivalent yield of 8.04 % . rose slightly from The discount rate on three - month Treasury bills the average rate at Monday 's auction
-The discount rate on three - month Treasury bills rose slightly from the average rate at Monday 's auction to 7.79 % for a bond - equivalent yield of 8.04 % . rose slightly to The discount rate on three - month Treasury bills 7.79 % at Monday 's auction
-The discount rate on three - month Treasury bills rose slightly from the average rate at Monday 's auction to 7.79 % for a bond - equivalent yield of 8.04 % . rose slightly for The discount rate on three - month Treasury bills a bond - equivalent yield of 8.04 % at Monday 's auction
-The discount rate on three - month Treasury bills rose slightly from the average rate at Monday 's auction to 7.79 % for a bond - equivalent yield of 8.04 % . was on auction Monday
-The discount rate on three - month Treasury bills rose slightly from the average rate at Monday 's auction to 7.79 % for a bond - equivalent yield of 8.04 % . have discount rate three - month Treasury bills
-The dollar drew strength from the stock market 's climb . drew strength from The dollar the stock market 's climb
-The dollar drew strength from the stock market 's climb . had a climb the stock market
-The effect is that lawsuits that might have been barred because they were filed too late could proceed because of the one - year extension . is that The effect lawsuits that might have been barred because they were filed too late could proceed because of the one - year extension
-The effect is that lawsuits that might have been barred because they were filed too late could proceed because of the one - year extension . might have been barred lawsuits
-The effect is that lawsuits that might have been barred because they were filed too late could proceed because of the one - year extension . could proceed because of lawsuits that might have been barred because they were filed too late the one - year extension
-The effect is that lawsuits that might have been barred because they were filed too late could proceed because of the one - year extension . is the extension one - year
-The effect is that lawsuits that might have been barred because they were filed too late could proceed because of the one - year extension . were filed too late lawsuits
-The executives had profited handsomely by building American National Can Co. , Triangle 's chief asset . had profited handsomely by building The executives American National Can Co.
-The executives had profited handsomely by building American National Can Co. , Triangle 's chief asset . is Triangle 's chief asset American National Can Co.
-The executives had profited handsomely by building American National Can Co. , Triangle 's chief asset . is chief asset of American National Can Co. Triangle
-The field took off in 1985 after scientists at Britain 's Sheffield University developed a handy , compact magnet for brain stimulation . took off The field in 1985
-The field took off in 1985 after scientists at Britain 's Sheffield University developed a handy , compact magnet for brain stimulation . took off after The field scientists at Britain 's Sheffield University developed a handy , compact magnet for brain stimulation
-The field took off in 1985 after scientists at Britain 's Sheffield University developed a handy , compact magnet for brain stimulation . are at scientists Britain 's Sheffield University
-The field took off in 1985 after scientists at Britain 's Sheffield University developed a handy , compact magnet for brain stimulation . is in Sheffield University Britain
-The field took off in 1985 after scientists at Britain 's Sheffield University developed a handy , compact magnet for brain stimulation . developed scientists a handy , compact magnet for brain stimulation at Britain 's Sheffield University
-The field took off in 1985 after scientists at Britain 's Sheffield University developed a handy , compact magnet for brain stimulation . is compact a magnet for brain stimulation
-The field took off in 1985 after scientists at Britain 's Sheffield University developed a handy , compact magnet for brain stimulation . is handy a magnet for brain stimulation
-The field took off in 1985 after scientists at Britain 's Sheffield University developed a handy , compact magnet for brain stimulation . is for a handy , compact magnet brain stimulation
-The fitness craze itself has gone soft , the survey found . has gone soft The fitness craze has
-The fitness craze itself has gone soft , the survey found . found the survey The fitness craze itself has gone soft
-The fitness craze itself has gone soft , the survey found . is of fitness The craze
-The forest - products concern currently has about 38 million shares outstanding . has about The forest - products concern 38 million shares outstanding currently
-The government , already buffeted by high interest rates and a slowing economy , has been badly hurt by last week 's shake - up in Mrs. Thatcher 's cabinet . has been badly hurt by The government last week 's shake - up in Mrs. Thatcher 's cabinet
-The government , already buffeted by high interest rates and a slowing economy , has been badly hurt by last week 's shake - up in Mrs. Thatcher 's cabinet . has a cabinet Mrs. Thatcher
-The government , already buffeted by high interest rates and a slowing economy , has been badly hurt by last week 's shake - up in Mrs. Thatcher 's cabinet . was buffeted by high interest rates The government already
-The government , already buffeted by high interest rates and a slowing economy , has been badly hurt by last week 's shake - up in Mrs. Thatcher 's cabinet . was buffeted by a slowing economy The government already
-The government , already buffeted by high interest rates and a slowing economy , has been badly hurt by last week 's shake - up in Mrs. Thatcher 's cabinet . was the shake - up in Mrs. Thatcher 's cabinet last week
-The issue is backed by a 12 % letter of credit from Credit Suisse . is backed by The issue a 12 % letter of credit from Credit Suisse
-The issue is backed by a 12 % letter of credit from Credit Suisse . is from a 12 % letter of credit Credit Suisse
-The issue is backed by a 12 % letter of credit from Credit Suisse . is 12 % a letter of credit
-The issue is backed by a 12 % letter of credit from Credit Suisse . is of credit a letter
-The last time IBM tapped the corporate debt market was in April 1988 , when it offered $ 500 million of debt securities . tapped IBM the corporate debt market in April 1988
-The last time IBM tapped the corporate debt market was in April 1988 , when it offered $ 500 million of debt securities . offered the corporate debt market $ 500 million of debt securities in April 1988
-The last time IBM tapped the corporate debt market was in April 1988 , when it offered $ 500 million of debt securities . April 1988 was The last time IBM tapped the corporate debt market
-The last time IBM tapped the corporate debt market was in April 1988 , when it offered $ 500 million of debt securities . was $ 500 million debt securities
-The latest 10 - year notes ended at about 100 16\/32 to yield 7.90 % , compared with 100 11\/32 to yield 7.93 % on Friday . ended at about 100 16\/32 to yield 7.90 % The latest 10 - year notes compared with 100 11\/32 to yield 7.93 % on Friday
-The offering was priced with an 8.95 % coupon rate at 99.1875 % to yield 9.19 % . offering was priced with an 8.95 % coupon rate at 99.1875 % to yield 9.19 %
-The office may also be able to advise foreign and multinational clients on international law and general matters . may be able to advise on international law and general matters The office foreign and multinational clients
-The office may also be able to advise foreign and multinational clients on international law and general matters . may be able to advise on international law and general matters The office foreign clients
-The office may also be able to advise foreign and multinational clients on international law and general matters . may be able to advise on international law and general matters The office multinational clients
-The office may also be able to advise foreign and multinational clients on international law and general matters . may be able to advise on international law and general matters The office foreign clients
-The operative definition of newsworthiness will favor virtually unrestrained use of personal , sensitive and intimate facts . will favor virtually unrestrained use of operative definition of newsworthiness personal sensitive and intimate facts
-The price was n't disclosed but one analyst estimated that it was $ 150 million . was n't disclosed The price one analyst estimated it was $ 150 million
-The prices of most corn , soybean and wheat futures contracts dropped slightly as farmers in the Midwest continued to rebuild stockpiles that were depleted by the 1988 drought . dropped slightly as The prices of soybean futures contracts farmers in the Midwest continued to rebuild stockpiles that were depleted by the 1988 drought
-The prices of most corn , soybean and wheat futures contracts dropped slightly as farmers in the Midwest continued to rebuild stockpiles that were depleted by the 1988 drought . dropped slightly as The prices of wheat futures contracts farmers in the Midwest continued to rebuild stockpiles that were depleted by the 1988 drought
-The prices of most corn , soybean and wheat futures contracts dropped slightly as farmers in the Midwest continued to rebuild stockpiles that were depleted by the 1988 drought . dropped slightly as The prices of corn futures contracts farmers in the Midwest continued to rebuild stockpiles that were depleted by the 1988 drought
-The prices of most corn , soybean and wheat futures contracts dropped slightly as farmers in the Midwest continued to rebuild stockpiles that were depleted by the 1988 drought . continued to rebuild Farmers stockpiles that were depleted by the 1988 drought in the Midwest
-The prices of most corn , soybean and wheat futures contracts dropped slightly as farmers in the Midwest continued to rebuild stockpiles that were depleted by the 1988 drought . were depleted stockpiles by the 1988 drought in the Midwest
-The senior subordinated debentures maturing in 2004 are targeted to be offered at a yield of between 12 5\/8 % to 12 3\/4 % . are targeted to be offered at The senior subordinated debentures maturing in 2004 a yield of between 12 5\/8 % to 12 3\/4 %
-The senior subordinated debentures maturing in 2004 are targeted to be offered at a yield of between 12 5\/8 % to 12 3\/4 % . will be The senior subordinated debentures maturing in 2004
-The share price was languishing at about 400 pence before Ford 's Sept. 19 announcement of its interest in a minority stake . was languishing at The share price about 400 pence before Ford 's Sept. 19 announcement of its interest in a minority stake
-The share price was languishing at about 400 pence before Ford 's Sept. 19 announcement of its interest in a minority stake . announced Ford its interest in a minority stake on Sept. 19
-The share price was languishing at about 400 pence before Ford 's Sept. 19 announcement of its interest in a minority stake . had Ford an interest in a minority stake on Sept. 19
-The surprise announcement came after the IRS broke off negotiations with Mr. Hunt on a settlement of the one - time tycoon 's personal bankruptcy case . came after The surprise announcement the IRS broke off negotiations with Mr. Hunt on a settlement of the one - time tycoon 's personal bankruptcy case
-The surprise announcement came after the IRS broke off negotiations with Mr. Hunt on a settlement of the one - time tycoon 's personal bankruptcy case . broke off the IRS negotiations with Mr. Hunt on a settlement of the one - time tycoon 's personal bankruptcy case
-The surprise announcement came after the IRS broke off negotiations with Mr. Hunt on a settlement of the one - time tycoon 's personal bankruptcy case . had Mr. Hunt the one - time tycoon a bankruptcy case
-The tax has raised less than one billion marks ( $ 545.3 million ) annually in recent years , but the government has been reluctant to abolish the levy for budgetary concerns . has raised The tax less than one billion marks ( $ 545.3 million ) annually in recent years
-The tax has raised less than one billion marks ( $ 545.3 million ) annually in recent years , but the government has been reluctant to abolish the levy for budgetary concerns . has been reluctant to the government abolish the levy in recent years
-The three existing plants and their land will be sold . will be sold The three existing plants
-The three existing plants and their land will be sold . will be sold their land
-The two leaders are expected to discuss changes sweeping the East bloc as well as human - rights issues , regional disputes and economic cooperation . are expected to discuss The two leaders changes sweeping the East bloc
-The two leaders are expected to discuss changes sweeping the East bloc as well as human - rights issues , regional disputes and economic cooperation . are expected to discuss The two leaders human - rights issues
-The two leaders are expected to discuss changes sweeping the East bloc as well as human - rights issues , regional disputes and economic cooperation . are expected to discuss The two leaders regional disputes
-The two leaders are expected to discuss changes sweeping the East bloc as well as human - rights issues , regional disputes and economic cooperation . are expected to discuss The two leaders economic cooperation
-The two leaders are expected to discuss changes sweeping the East bloc as well as human - rights issues , regional disputes and economic cooperation . are disputes regional
-The two leaders are expected to discuss changes sweeping the East bloc as well as human - rights issues , regional disputes and economic cooperation . are changes sweeping the East bloc
-The two leaders are expected to discuss changes sweeping the East bloc as well as human - rights issues , regional disputes and economic cooperation . is in the bloc East
-The two leaders are expected to discuss changes sweeping the East bloc as well as human - rights issues , regional disputes and economic cooperation . are The two leaders
-The two sides are also discussing certain business ventures involving cable rights to Columbia 's movies . are also discussing The two sides certain business ventures involving cable rights to Columbia 's movies
-The two sides are also discussing certain business ventures involving cable rights to Columbia 's movies . involve certain business ventures cable rights to Columbia 's movies
-The two sides are also discussing certain business ventures involving cable rights to Columbia 's movies . has Columbia movies
-The two sides are also discussing certain business ventures involving cable rights to Columbia 's movies . are The two sides
-They claim to have busted spirits , poltergeists and other spooks in hundreds of houses around the country . claim to have busted They spirits
-They claim to have busted spirits , poltergeists and other spooks in hundreds of houses around the country . claim to have busted They poltergeists
-They claim to have busted spirits , poltergeists and other spooks in hundreds of houses around the country . claim to have busted They spooks
-They claim to have busted spirits , poltergeists and other spooks in hundreds of houses around the country . claim to have busted They spirits , poltergeists and other spooks in hundreds of houses around the country
-They claim to have busted spirits , poltergeists and other spooks in hundreds of houses around the country . are hundreds of houses around the country
-They claim to have busted spirits , poltergeists and other spooks in hundreds of houses around the country . were in spirits , poltergeists and other spooks hundreds of houses around the country
-They claim to have busted spirits , poltergeists and other spooks in hundreds of houses around the country . are hundreds houses around the country
-This involves trade - offs and { it } cuts against the grain of existing consumer and even provider conceptions of what is ` necessary . ' '' involves This trade - offs
-This involves trade - offs and { it } cuts against the grain of existing consumer and even provider conceptions of what is ` necessary . ' '' cuts against the grain of it existing consumer conceptions of what is ` necessary
-This involves trade - offs and { it } cuts against the grain of existing consumer and even provider conceptions of what is ` necessary . ' '' cuts against the grain of it existing provider conceptions of what is ` necessary
-This involves trade - offs and { it } cuts against the grain of existing consumer and even provider conceptions of what is ` necessary . ' '' even it cuts against the grain of provider conceptions of what is ` necessary
-This involves trade - offs and { it } cuts against the grain of existing consumer and even provider conceptions of what is ` necessary . ' '' have consumers existing conceptions of what is ` necessary
-This involves trade - offs and { it } cuts against the grain of existing consumer and even provider conceptions of what is ` necessary . ' '' have providers existing conceptions of what is ` necessary
-This is the U.N. group that managed to traduce its own charter of promoting education , science and culture . managed to traduce the U.N. group its own charter of promoting education
-This is the U.N. group that managed to traduce its own charter of promoting education , science and culture . managed to traduce the U.N. group its own charter of promoting science
-This is the U.N. group that managed to traduce its own charter of promoting education , science and culture . managed to traduce the U.N. group its own charter of promoting culture
-This is the U.N. group that managed to traduce its own charter of promoting education , science and culture . is This the U.N. group that managed to traduce its own charter of promoting education , science and culture
-This is the U.N. group that managed to traduce its own charter of promoting education , science and culture . is promoting its own charter education
-This is the U.N. group that managed to traduce its own charter of promoting education , science and culture . is promoting its own charter science
-This is the U.N. group that managed to traduce its own charter of promoting education , science and culture . is promoting its own charter culture
-This provision met early and strong resistance from investment bankers worried about disruptions in their clients ' portfolios . met This provision early resistance from investment bankers worried about disruptions in their clients ' portfolios
-This provision met early and strong resistance from investment bankers worried about disruptions in their clients ' portfolios . met This provision strong resistance from investment bankers worried about disruptions in their clients ' portfolios
-This provision met early and strong resistance from investment bankers worried about disruptions in their clients ' portfolios . have portfolios their clients
-This provision met early and strong resistance from investment bankers worried about disruptions in their clients ' portfolios . are worried investment bankers
-This provision met early and strong resistance from investment bankers worried about disruptions in their clients ' portfolios . met This provision met resistance from investment bankers worried about disruptions in their clients ' portfolios early
-This provision met early and strong resistance from investment bankers worried about disruptions in their clients ' portfolios . are in disruptions their clients ' portfolios
-This week , New York City announced a 10 - point policy patterned on the federal bill of rights for taxpayers . announced New York City a 10 - point policy patterned on the federal bill of rights for taxpayers This week
-This week , New York City announced a 10 - point policy patterned on the federal bill of rights for taxpayers . is patterned on a 10 - point policy the federal bill of rights for taxpayers
-This week , New York City announced a 10 - point policy patterned on the federal bill of rights for taxpayers . is for the federal bill of rights taxpayers
-This week , New York City announced a 10 - point policy patterned on the federal bill of rights for taxpayers . has 10 - points policy patterned on the federal bill of rights for taxpayers
-Though Mr. Packer has since sold his stake , Courtaulds is moving to keep its institutional shareholders happy . has sold Mr. Packer his stake since
-Though Mr. Packer has since sold his stake , Courtaulds is moving to keep its institutional shareholders happy . is moving to keep Courtaulds its institutional shareholders happy
-Though Mr. Packer has since sold his stake , Courtaulds is moving to keep its institutional shareholders happy . Though Courtaulds is moving to keep its institutional shareholders happy Mr. Packer has since sold his stake
-Though Mr. Packer has since sold his stake , Courtaulds is moving to keep its institutional shareholders happy . are institutional shareholders
-Though Mr. Packer has since sold his stake , Courtaulds is moving to keep its institutional shareholders happy . had stake Mr. Packer
-Though Mr. Packer has since sold his stake , Courtaulds is moving to keep its institutional shareholders happy . has institutional shareholders Courtaulds
-To avoid a runoff , one candidate would have to win 50 % of the vote -- a feat that most analysts consider impossible with so many candidates running . To avoid one candidate would have to win 50 % of the vote a runoff
-To avoid a runoff , one candidate would have to win 50 % of the vote -- a feat that most analysts consider impossible with so many candidates running . are running so many candidates
-To avoid a runoff , one candidate would have to win 50 % of the vote -- a feat that most analysts consider impossible with so many candidates running . would have to win one candidate 50 % of the vote To avoid a runoff
-To avoid a runoff , one candidate would have to win 50 % of the vote -- a feat that most analysts consider impossible with so many candidates running . consider impossible most analysts one candidate winning 50 % of the vote
-To avoid a runoff , one candidate would have to win 50 % of the vote -- a feat that most analysts consider impossible with so many candidates running . is a feat one candidate winning 50 % of the vote that most analysts consider impossible
-To increase their share of that business , jewelry makers such as Crystal Brands Inc. 's Trifari and Monet units and Swank Inc. , maker of Anne Klein jewelry , are launching new lines with as much fanfare as the fragrance companies . is a unit of Trifari Crystal Brands Inc.
-To increase their share of that business , jewelry makers such as Crystal Brands Inc. 's Trifari and Monet units and Swank Inc. , maker of Anne Klein jewelry , are launching new lines with as much fanfare as the fragrance companies . is a unit of Monet Crystal Brands Inc.
-To increase their share of that business , jewelry makers such as Crystal Brands Inc. 's Trifari and Monet units and Swank Inc. , maker of Anne Klein jewelry , are launching new lines with as much fanfare as the fragrance companies . is maker of Swank Inc. Anne Klein jewelry
-To increase their share of that business , jewelry makers such as Crystal Brands Inc. 's Trifari and Monet units and Swank Inc. , maker of Anne Klein jewelry , are launching new lines with as much fanfare as the fragrance companies . is a jewelry maker Crystal Brands Inc. 's Trifari unit
-To increase their share of that business , jewelry makers such as Crystal Brands Inc. 's Trifari and Monet units and Swank Inc. , maker of Anne Klein jewelry , are launching new lines with as much fanfare as the fragrance companies . is a jewelry maker Swank Inc.
-To increase their share of that business , jewelry makers such as Crystal Brands Inc. 's Trifari and Monet units and Swank Inc. , maker of Anne Klein jewelry , are launching new lines with as much fanfare as the fragrance companies . are such as jewelry makers Crystal Brands Inc. 's Trifari unit
-To increase their share of that business , jewelry makers such as Crystal Brands Inc. 's Trifari and Monet units and Swank Inc. , maker of Anne Klein jewelry , are launching new lines with as much fanfare as the fragrance companies . is a jewelry maker Crystal Brands Inc. 's Monet unit
-To increase their share of that business , jewelry makers such as Crystal Brands Inc. 's Trifari and Monet units and Swank Inc. , maker of Anne Klein jewelry , are launching new lines with as much fanfare as the fragrance companies . are such as jewelry makers Crystal Brands Inc. 's Monet unit
-To increase their share of that business , jewelry makers such as Crystal Brands Inc. 's Trifari and Monet units and Swank Inc. , maker of Anne Klein jewelry , are launching new lines with as much fanfare as the fragrance companies . are such as jewelry makers Swank Inc.
-To increase their share of that business , jewelry makers such as Crystal Brands Inc. 's Trifari and Monet units and Swank Inc. , maker of Anne Klein jewelry , are launching new lines with as much fanfare as the fragrance companies . are launching new jewelry makers lines
-To increase their share of that business , jewelry makers such as Crystal Brands Inc. 's Trifari and Monet units and Swank Inc. , maker of Anne Klein jewelry , are launching new lines with as much fanfare as the fragrance companies . are launching with as much fanfare as new lines the fragrance companies
-To increase their share of that business , jewelry makers such as Crystal Brands Inc. 's Trifari and Monet units and Swank Inc. , maker of Anne Klein jewelry , are launching new lines with as much fanfare as the fragrance companies . are launching new lines with as much fanfare as the fragrance companies To increase jewelry makers their share of that business
-To increase their share of that business , jewelry makers such as Crystal Brands Inc. 's Trifari and Monet units and Swank Inc. , maker of Anne Klein jewelry , are launching new lines with as much fanfare as the fragrance companies . are launching new lines with fragrance companies much fanfare
-To make them directly comparable , each index is based on the close of 1969 equaling 100 . is based on each index the close of 1969 equaling 100
-To make them directly comparable , each index is based on the close of 1969 equaling 100 . To make them directly comparable each index is based on the close of 1969 equaling 100
-To my knowledge , no government entities , including the EPA , are pursuing UV - B measurements . are pursuing no government entities UV - B measurements
-To my knowledge , no government entities , including the EPA , are pursuing UV - B measurements . include the EPA government entities
-To my knowledge , no government entities , including the EPA , are pursuing UV - B measurements . no government entities , including the EPA , are pursuing UV - B measurements To my knowledge
-Tom Panelli had a perfectly good reason for not using the $ 300 rowing machine he bought three years ago . bought Tom Panelli the $ 300 rowing machine three years ago
-Tom Panelli had a perfectly good reason for not using the $ 300 rowing machine he bought three years ago . had a perfectly good reason for not using Tom Panelli the $ 300 rowing machine he bought three years ago
-U.S. makers have under 10 % share , compared with half the market in Europe and 80 % at home . have under 10 % share U.S. makers
-U.S. makers have under 10 % share , compared with half the market in Europe and 80 % at home . have U.S. makers 80 % share at home
-U.S. makers have under 10 % share , compared with half the market in Europe and 80 % at home . have U.S. makers half the market in Europe
-USG Corp. agreed to sell its headquarters building here to Manufacturers Life Insurance Co. of Toronto , and will lease the 19 - story facility until it moves to a new quarters in 1992 . agreed to sell USG Corp. its headquarters building here
-USG Corp. agreed to sell its headquarters building here to Manufacturers Life Insurance Co. of Toronto , and will lease the 19 - story facility until it moves to a new quarters in 1992 . agreed to sell to USG Corp. Manufacturers Life Insurance Co. of Toronto
-USG Corp. agreed to sell its headquarters building here to Manufacturers Life Insurance Co. of Toronto , and will lease the 19 - story facility until it moves to a new quarters in 1992 . will lease USG Corp. the 19 - story facility until it moves to a new quarters in 1992
-USG Corp. agreed to sell its headquarters building here to Manufacturers Life Insurance Co. of Toronto , and will lease the 19 - story facility until it moves to a new quarters in 1992 . will move to USG Corp. a new quarters in 1992
-USG Corp. agreed to sell its headquarters building here to Manufacturers Life Insurance Co. of Toronto , and will lease the 19 - story facility until it moves to a new quarters in 1992 . has 19 - stories facility
-USG Corp. agreed to sell its headquarters building here to Manufacturers Life Insurance Co. of Toronto , and will lease the 19 - story facility until it moves to a new quarters in 1992 . has 19 - stories its headquarters building here
-USG Corp. agreed to sell its headquarters building here to Manufacturers Life Insurance Co. of Toronto , and will lease the 19 - story facility until it moves to a new quarters in 1992 . has headquarters building USG Corp. here
-Under a merger agreement reached Sept. 14 , the UAL board agreed to reimburse certain of the buy - out group 's expenses out of company funds even if the transaction was n't completed , provided the group did n't breach the agreement . was reached a merger agreement Sept. 14
-Under a merger agreement reached Sept. 14 , the UAL board agreed to reimburse certain of the buy - out group 's expenses out of company funds even if the transaction was n't completed , provided the group did n't breach the agreement . agreed to reimburse the UAL board certain of the buy - out group 's expenses
-Under a merger agreement reached Sept. 14 , the UAL board agreed to reimburse certain of the buy - out group 's expenses out of company funds even if the transaction was n't completed , provided the group did n't breach the agreement . agreed to reimburse out of the UAL board company funds
-Under a merger agreement reached Sept. 14 , the UAL board agreed to reimburse certain of the buy - out group 's expenses out of company funds even if the transaction was n't completed , provided the group did n't breach the agreement . agreed to reimburse even if the UAL board the transaction was n't completed
-Under a merger agreement reached Sept. 14 , the UAL board agreed to reimburse certain of the buy - out group 's expenses out of company funds even if the transaction was n't completed , provided the group did n't breach the agreement . agreed to reimburse provided the UAL board the group did n't breach the agreement
-Under a merger agreement reached Sept. 14 , the UAL board agreed to reimburse certain of the buy - out group 's expenses out of company funds even if the transaction was n't completed , provided the group did n't breach the agreement . reached a merger agreement the UAL board
-Under a merger agreement reached Sept. 14 , the UAL board agreed to reimburse certain of the buy - out group 's expenses out of company funds even if the transaction was n't completed , provided the group did n't breach the agreement . has expenses the buy - out group
-Under a merger agreement reached Sept. 14 , the UAL board agreed to reimburse certain of the buy - out group 's expenses out of company funds even if the transaction was n't completed , provided the group did n't breach the agreement . has funds company
-Under a merger agreement reached Sept. 14 , the UAL board agreed to reimburse certain of the buy - out group 's expenses out of company funds even if the transaction was n't completed , provided the group did n't breach the agreement . has funds UAL
-Under a merger agreement reached Sept. 14 , the UAL board agreed to reimburse certain of the buy - out group 's expenses out of company funds even if the transaction was n't completed , provided the group did n't breach the agreement . has a board UAL
-Under the debt - equity program , potential investors will submit sealed bids on the percentage of discount they are willing to purchase the debt at , and the bids will be allocated based on these discount offers . will submit potential investors sealed bids
-Under the debt - equity program , potential investors will submit sealed bids on the percentage of discount they are willing to purchase the debt at , and the bids will be allocated based on these discount offers . will be allocated based on the bids these discount offers
-Under the debt - equity program , potential investors will submit sealed bids on the percentage of discount they are willing to purchase the debt at , and the bids will be allocated based on these discount offers . Under potential investors will submit sealed bids on the percentage of discount they are willing to purchase the debt at the debt - equity program
-Under the debt - equity program , potential investors will submit sealed bids on the percentage of discount they are willing to purchase the debt at , and the bids will be allocated based on these discount offers . Under the bids will be allocated based on these discount offers the debt - equity program
-Under the debt - equity program , potential investors will submit sealed bids on the percentage of discount they are willing to purchase the debt at , and the bids will be allocated based on these discount offers . are willing to purchase potential investors debt
-Vernon E. Jordan was elected to the board of this transportation services concern . was elected to Vernon E. Jordan the board of this transportation services concern
-Vernon E. Jordan was elected to the board of this transportation services concern . has board this transportation services concern
-Warner Communications Inc. , which is being acquired by Time Warner , has filed a $ 1 billion breach - of - contract suit against Sony and the two producers . is being acquired by Warner Communications Inc. Time Warner
-Warner Communications Inc. , which is being acquired by Time Warner , has filed a $ 1 billion breach - of - contract suit against Sony and the two producers . has filed Warner Communications Inc. a $ 1 billion breach - of - contract suit
-Warner Communications Inc. , which is being acquired by Time Warner , has filed a $ 1 billion breach - of - contract suit against Sony and the two producers . has filed suit against Warner Communications Inc. Sony
-Warner Communications Inc. , which is being acquired by Time Warner , has filed a $ 1 billion breach - of - contract suit against Sony and the two producers . has filed suit against Warner Communications Inc. the two producers
-Warner has a five - year exclusive contract with Mr. Guber and Mr. Peters that requires them to make movies exclusively at the Warner Bros. studio . has a five - year exclusive contract with Warner Mr. Guber
-Warner has a five - year exclusive contract with Mr. Guber and Mr. Peters that requires them to make movies exclusively at the Warner Bros. studio . has a five - year exclusive contract with Warner Mr. Peters
-Warner has a five - year exclusive contract with Mr. Guber and Mr. Peters that requires them to make movies exclusively at the Warner Bros. studio . requires Mr. Guber to make a five - year exclusive contract movies exclusively at the Warner Bros. studio
-Warner has a five - year exclusive contract with Mr. Guber and Mr. Peters that requires them to make movies exclusively at the Warner Bros. studio . requires Mr. Peters to make a five - year exclusive contract movies exclusively at the Warner Bros. studio
-Warner has a five - year exclusive contract with Mr. Guber and Mr. Peters that requires them to make movies exclusively at the Warner Bros. studio . has studio Warner Bros.
-Warner has a five - year exclusive contract with Mr. Guber and Mr. Peters that requires them to make movies exclusively at the Warner Bros. studio . has Warner a five - year exclusive contract
-Warner has a five - year exclusive contract with Mr. Guber and Mr. Peters that requires them to make movies exclusively at the Warner Bros. studio . is five - year exclusive contract
-Warner has a five - year exclusive contract with Mr. Guber and Mr. Peters that requires them to make movies exclusively at the Warner Bros. studio . to make movies exclusively at Mr. Guber is required the Warner Bros. studio
-Warner has a five - year exclusive contract with Mr. Guber and Mr. Peters that requires them to make movies exclusively at the Warner Bros. studio . to make movies exclusively at Mr. Peters is required the Warner Bros. studio
-While the campaign was Mr. Gibbons 's idea , however , he wo n't be paying for it : The donations will come out of the chain 's national advertising fund , which is financed by the franchisees . was idea of the campaign Mr. Gibbons
-While the campaign was Mr. Gibbons 's idea , however , he wo n't be paying for it : The donations will come out of the chain 's national advertising fund , which is financed by the franchisees . wo n't be paying for Mr. Gibbons the campaign
-While the campaign was Mr. Gibbons 's idea , however , he wo n't be paying for it : The donations will come out of the chain 's national advertising fund , which is financed by the franchisees . will come out of The donations the chain 's national advertising fund
-While the campaign was Mr. Gibbons 's idea , however , he wo n't be paying for it : The donations will come out of the chain 's national advertising fund , which is financed by the franchisees . has the chain national advertising fund
-While the campaign was Mr. Gibbons 's idea , however , he wo n't be paying for it : The donations will come out of the chain 's national advertising fund , which is financed by the franchisees . is financed by the chain 's national advertising fund the franchisees
-With companies such as Honda Motor Co. , Toyota Motor Corp. and Nissan Motor Co. running so - called transplant auto operations , Japanese auto production in the U.S. will reach one million vehicles this year . are running companies such as Honda Motor Co. so - called transplant auto operations
-With companies such as Honda Motor Co. , Toyota Motor Corp. and Nissan Motor Co. running so - called transplant auto operations , Japanese auto production in the U.S. will reach one million vehicles this year . are running companies such as Toyota Motor Corp. so - called transplant auto operations
-With companies such as Honda Motor Co. , Toyota Motor Corp. and Nissan Motor Co. running so - called transplant auto operations , Japanese auto production in the U.S. will reach one million vehicles this year . are running companies such as Nissan Motor Co. so - called transplant auto operations
-With companies such as Honda Motor Co. , Toyota Motor Corp. and Nissan Motor Co. running so - called transplant auto operations , Japanese auto production in the U.S. will reach one million vehicles this year . will reach Japanese auto production one million vehicles in the U.S. this year
-With more than 15 million exercise bikes sold in the past five years , he adds , `` a lot of garages , basements and attics must be populated with them . '' were sold more than 15 million exercise bikes in the past five years
-With more than 15 million exercise bikes sold in the past five years , he adds , `` a lot of garages , basements and attics must be populated with them . '' adds he `` a lot of garages , basements and attics must be populated with them . ''
-With more than 15 million exercise bikes sold in the past five years , he adds , `` a lot of garages , basements and attics must be populated with them . '' must be populated with a lot of garages exercise bikes
-With more than 15 million exercise bikes sold in the past five years , he adds , `` a lot of garages , basements and attics must be populated with them . '' must be populated with a lot of basements exercise bikes
-With more than 15 million exercise bikes sold in the past five years , he adds , `` a lot of garages , basements and attics must be populated with them . '' must be populated with a lot of attics exercise bikes
-With real estate experts Olympia & York and Samuel Zell 's Itel owning close to 40 % of Santa Fe 's stock , management was under pressure -- in a favored phrase of Wall Street -- to quickly `` maximize values . '' are real estate experts Olympia & York
-With real estate experts Olympia & York and Samuel Zell 's Itel owning close to 40 % of Santa Fe 's stock , management was under pressure -- in a favored phrase of Wall Street -- to quickly `` maximize values . '' has Itel Samuel Zell
-With real estate experts Olympia & York and Samuel Zell 's Itel owning close to 40 % of Santa Fe 's stock , management was under pressure -- in a favored phrase of Wall Street -- to quickly `` maximize values . '' own Olympia & York Santa Fe stock
-With real estate experts Olympia & York and Samuel Zell 's Itel owning close to 40 % of Santa Fe 's stock , management was under pressure -- in a favored phrase of Wall Street -- to quickly `` maximize values . '' owns Itel Santa Fe stock
-With real estate experts Olympia & York and Samuel Zell 's Itel owning close to 40 % of Santa Fe 's stock , management was under pressure -- in a favored phrase of Wall Street -- to quickly `` maximize values . '' own close to 40 % of Olympia & York and Itel Santa Fe 's stock
-With real estate experts Olympia & York and Samuel Zell 's Itel owning close to 40 % of Santa Fe 's stock , management was under pressure -- in a favored phrase of Wall Street -- to quickly `` maximize values . '' was under pressure to quickly `` maximize management values ''
-With real estate experts Olympia & York and Samuel Zell 's Itel owning close to 40 % of Santa Fe 's stock , management was under pressure -- in a favored phrase of Wall Street -- to quickly `` maximize values . '' is a favored phrase of `` maximize values '' Wall Street
-With real estate experts Olympia & York and Samuel Zell 's Itel owning close to 40 % of Santa Fe 's stock , management was under pressure -- in a favored phrase of Wall Street -- to quickly `` maximize values . '' has Wall Street a favored phrase
-With real estate experts Olympia & York and Samuel Zell 's Itel owning close to 40 % of Santa Fe 's stock , management was under pressure -- in a favored phrase of Wall Street -- to quickly `` maximize values . '' is a phrase favored
-Within two hours , viewers pledged over $ 400,000 , according to a Red Cross executive . pledged viewers over $ 400,000 Within two hours
-Within two hours , viewers pledged over $ 400,000 , according to a Red Cross executive . according to viewers pledged over $ 400,000 Within two hours a Red Cross executive
-Workers at two Chilean mines , Los Bronces and El Soldado , which belong to the Exxon - owned Minera Disputado group , will vote Thursday on whether to strike after a two - year labor pact ends today . belongs to Los Bronces the Exxon - owned Minera Disputado group
-Workers at two Chilean mines , Los Bronces and El Soldado , which belong to the Exxon - owned Minera Disputado group , will vote Thursday on whether to strike after a two - year labor pact ends today . belongs to El Soldado the Exxon - owned Minera Disputado group
-Workers at two Chilean mines , Los Bronces and El Soldado , which belong to the Exxon - owned Minera Disputado group , will vote Thursday on whether to strike after a two - year labor pact ends today . is the Minera Disputado group Exxon - owned
-Workers at two Chilean mines , Los Bronces and El Soldado , which belong to the Exxon - owned Minera Disputado group , will vote Thursday on whether to strike after a two - year labor pact ends today . will vote on Workers at Los Bronces whether to strike Thursday
-Workers at two Chilean mines , Los Bronces and El Soldado , which belong to the Exxon - owned Minera Disputado group , will vote Thursday on whether to strike after a two - year labor pact ends today . will vote on Workers at El Soldado whether to strike Thursday
-Workers at two Chilean mines , Los Bronces and El Soldado , which belong to the Exxon - owned Minera Disputado group , will vote Thursday on whether to strike after a two - year labor pact ends today . ends a two - year labor pact today
-Workers at two Chilean mines , Los Bronces and El Soldado , which belong to the Exxon - owned Minera Disputado group , will vote Thursday on whether to strike after a two - year labor pact ends today . was a labor pact that ends today two - year
-Workers at two Chilean mines , Los Bronces and El Soldado , which belong to the Exxon - owned Minera Disputado group , will vote Thursday on whether to strike after a two - year labor pact ends today . is Los Bronces a mine in Chile
-Workers at two Chilean mines , Los Bronces and El Soldado , which belong to the Exxon - owned Minera Disputado group , will vote Thursday on whether to strike after a two - year labor pact ends today . is El Soldado a mine in Chile
-Years ago , he collaborated with the new music gurus Peter Serkin and Fred Sherry in the very countercultural chamber group Tashi , which won audiences over to dreaded contemporary scores like Messiaen 's `` Quartet for the End of Time . '' collaborated with he Peter Serkin in the very countercultural chamber group Tashi Years ago
-Years ago , he collaborated with the new music gurus Peter Serkin and Fred Sherry in the very countercultural chamber group Tashi , which won audiences over to dreaded contemporary scores like Messiaen 's `` Quartet for the End of Time . '' collaborated with he Fred Sherry in the very countercultural chamber group Tashi Years ago
-Years ago , he collaborated with the new music gurus Peter Serkin and Fred Sherry in the very countercultural chamber group Tashi , which won audiences over to dreaded contemporary scores like Messiaen 's `` Quartet for the End of Time . '' collaborated with he the new music gurus in the very countercultural chamber group Tashi Years ago
-Years ago , he collaborated with the new music gurus Peter Serkin and Fred Sherry in the very countercultural chamber group Tashi , which won audiences over to dreaded contemporary scores like Messiaen 's `` Quartet for the End of Time . '' was Peter Serkin a new music guru Years ago
-Years ago , he collaborated with the new music gurus Peter Serkin and Fred Sherry in the very countercultural chamber group Tashi , which won audiences over to dreaded contemporary scores like Messiaen 's `` Quartet for the End of Time . '' was Fred Sherry a new music guru Years ago
-Years ago , he collaborated with the new music gurus Peter Serkin and Fred Sherry in the very countercultural chamber group Tashi , which won audiences over to dreaded contemporary scores like Messiaen 's `` Quartet for the End of Time . '' was Tashi a very countercultural chamber group
-Years ago , he collaborated with the new music gurus Peter Serkin and Fred Sherry in the very countercultural chamber group Tashi , which won audiences over to dreaded contemporary scores like Messiaen 's `` Quartet for the End of Time . '' won audiences over to the very countercultural chamber group Tashi dreaded contemporary scores
-Years ago , he collaborated with the new music gurus Peter Serkin and Fred Sherry in the very countercultural chamber group Tashi , which won audiences over to dreaded contemporary scores like Messiaen 's `` Quartet for the End of Time . '' won audiences over to the very countercultural chamber group Tashi Messiaen 's `` Quartet for the End of Time ''
-Years ago , he collaborated with the new music gurus Peter Serkin and Fred Sherry in the very countercultural chamber group Tashi , which won audiences over to dreaded contemporary scores like Messiaen 's `` Quartet for the End of Time . '' is Messiaen 's `` Quartet for the End of Time '' a dreaded contemporary score
-Years ago , he collaborated with the new music gurus Peter Serkin and Fred Sherry in the very countercultural chamber group Tashi , which won audiences over to dreaded contemporary scores like Messiaen 's `` Quartet for the End of Time . '' has Messiaen `` Quartet for the End of Time ''
-Yesterday , Mr. Matthews , now a consultant with the Stamford , Conn. , firm Matthews & Johnston , quipped , `` I think he 'll be very good at that { new job } . quipped Mr. Matthews `` I think he 'll be very good at that { new job } Yesterday
-Yesterday , Mr. Matthews , now a consultant with the Stamford , Conn. , firm Matthews & Johnston , quipped , `` I think he 'll be very good at that { new job } . is Mr. Matthews a consultant with the Stamford , Conn. , firm Matthews & Johnston now
-Yesterday , Mr. Matthews , now a consultant with the Stamford , Conn. , firm Matthews & Johnston , quipped , `` I think he 'll be very good at that { new job } . is Matthews & Johnston a firm in Stamford , Conn.
-Yet the Soviet leader 's readiness to embark on foreign visits and steady accumulation of personal power , particularly since the last Politburo reshuffle on Sept. 30 , do not suggest that Mr. Gorbachev is on the verge of being toppled ; nor does he look likely to reverse the powers of perestroika . was on the last Politburo reshuffle Sept. 30
-Yet the Soviet leader 's readiness to embark on foreign visits and steady accumulation of personal power , particularly since the last Politburo reshuffle on Sept. 30 , do not suggest that Mr. Gorbachev is on the verge of being toppled ; nor does he look likely to reverse the powers of perestroika . has a readiness to embark on the Soviet leader foreign visits
-Yet the Soviet leader 's readiness to embark on foreign visits and steady accumulation of personal power , particularly since the last Politburo reshuffle on Sept. 30 , do not suggest that Mr. Gorbachev is on the verge of being toppled ; nor does he look likely to reverse the powers of perestroika . has a steady accumulation of the Soviet leader personal power
-Yet the Soviet leader 's readiness to embark on foreign visits and steady accumulation of personal power , particularly since the last Politburo reshuffle on Sept. 30 , do not suggest that Mr. Gorbachev is on the verge of being toppled ; nor does he look likely to reverse the powers of perestroika . particularly has a readiness to embark on the Soviet leader foreign visits since the last Politburo reshuffle on Sept. 30
-Yet the Soviet leader 's readiness to embark on foreign visits and steady accumulation of personal power , particularly since the last Politburo reshuffle on Sept. 30 , do not suggest that Mr. Gorbachev is on the verge of being toppled ; nor does he look likely to reverse the powers of perestroika . particularly has a steady accumulation of Soviet leader personal power since the last Politburo reshuffle on Sept. 30
-Yet the Soviet leader 's readiness to embark on foreign visits and steady accumulation of personal power , particularly since the last Politburo reshuffle on Sept. 30 , do not suggest that Mr. Gorbachev is on the verge of being toppled ; nor does he look likely to reverse the powers of perestroika . is not suggested to be on the verge of Mr. Gorbachev being toppled
-Yet the Soviet leader 's readiness to embark on foreign visits and steady accumulation of personal power , particularly since the last Politburo reshuffle on Sept. 30 , do not suggest that Mr. Gorbachev is on the verge of being toppled ; nor does he look likely to reverse the powers of perestroika . does not look likely to reverse Mr. Gorbachev the powers of perestroika
-Yet the Soviet leader 's readiness to embark on foreign visits and steady accumulation of personal power , particularly since the last Politburo reshuffle on Sept. 30 , do not suggest that Mr. Gorbachev is on the verge of being toppled ; nor does he look likely to reverse the powers of perestroika . is of the leader the Soviet
-Yet the Soviet leader 's readiness to embark on foreign visits and steady accumulation of personal power , particularly since the last Politburo reshuffle on Sept. 30 , do not suggest that Mr. Gorbachev is on the verge of being toppled ; nor does he look likely to reverse the powers of perestroika . has a readiness to embark on the Soviet leader visits foreign
-Yet the Soviet leader 's readiness to embark on foreign visits and steady accumulation of personal power , particularly since the last Politburo reshuffle on Sept. 30 , do not suggest that Mr. Gorbachev is on the verge of being toppled ; nor does he look likely to reverse the powers of perestroika . does not suggest that the Soviet leader 's readiness to embark on foreign visits Mr. Gorbachev is on the verge of being toppled
-Yet the Soviet leader 's readiness to embark on foreign visits and steady accumulation of personal power , particularly since the last Politburo reshuffle on Sept. 30 , do not suggest that Mr. Gorbachev is on the verge of being toppled ; nor does he look likely to reverse the powers of perestroika . does not suggest that the Soviet leader 's steady accumulation of personal power Mr. Gorbachev is on the verge of being toppled
-Yet the Soviet leader 's readiness to embark on foreign visits and steady accumulation of personal power , particularly since the last Politburo reshuffle on Sept. 30 , do not suggest that Mr. Gorbachev is on the verge of being toppled ; nor does he look likely to reverse the powers of perestroika . is Mr. Gorbachev the Soviet leader
-Yet the Soviet leader 's readiness to embark on foreign visits and steady accumulation of personal power , particularly since the last Politburo reshuffle on Sept. 30 , do not suggest that Mr. Gorbachev is on the verge of being toppled ; nor does he look likely to reverse the powers of perestroika . is Mr. Gorbachev the leader of the Soviet
-A spokesman said HealthVest has paid two of the three banks it owed interest to in October and is in negotiations with the third bank . said A spokesman HealthVest has paid two of the three banks it owed interest to in October and is in negotiations with the third bank
-A spokesman said HealthVest has paid two of the three banks it owed interest to in October and is in negotiations with the third bank . has paid HealthVest two of the three banks it owed interest to T: in October C: A spokesman said
-A spokesman said HealthVest has paid two of the three banks it owed interest to in October and is in negotiations with the third bank . is in HealthVest negotiations with the third bank C: A spokesman said
-A surprising 78 % of people said they exercise regularly , up from 73 % in 1981 . said 73 % of people they exercise regularly T: in 1981
-A surprising 78 % of people said they exercise regularly , up from 73 % in 1981 . said A surprising 78 % of people they exercise regularly
-Also , the premiums paid by the U.S. government on a purchase of copper for the U.S. Mint were lower than expected , and acted as a price depressant , analysts said . said analysts the premiums paid by the U.S. government on a purchase of copper for the U.S. Mint were lower than expected , and acted as a price depressant
-Also , the premiums paid by the U.S. government on a purchase of copper for the U.S. Mint were lower than expected , and acted as a price depressant , analysts said . were lower than the premiums paid by the U.S. government on a purchase of copper for the U.S. Mint expected C: analysts said
-Also , the premiums paid by the U.S. government on a purchase of copper for the U.S. Mint were lower than expected , and acted as a price depressant , analysts said . acted as the premiums paid by the U.S. government on a purchase of copper for the U.S. Mint a price depressant C: analysts said
-Also , the premiums paid by the U.S. government on a purchase of copper for the U.S. Mint were lower than expected , and acted as a price depressant , analysts said . paid the U.S. government premiums on a purchase of copper for the U.S. Mint C: analysts said
-Also , the premiums paid by the U.S. government on a purchase of copper for the U.S. Mint were lower than expected , and acted as a price depressant , analysts said . purchased copper for the U.S. government the U.S. Mint C: analysts said
-Although Mr. Azoff wo n't produce films at first , it is possible that he could do so later , the sources said . said the source Although Mr. Azoff wo n't produce films at first , it is possible that he could do so later
-Although Mr. Azoff wo n't produce films at first , it is possible that he could do so later , the sources said . wo n't produce Mr. Azoff films T: at first C: the source said
-Although Mr. Azoff wo n't produce films at first , it is possible that he could do so later , the sources said . is possible that it he could do so later C: the source said
-Although Mr. Azoff wo n't produce films at first , it is possible that he could do so later , the sources said . could do he so T: later C: the source said
-Although no specific agreements are expected , Mr. Shevardnadze said `` that does n't mean they will be without an agenda . '' said Mr. Shevardnadze said Although no specific agreements are expected that does n't mean they will be without an agenda .
-Although no specific agreements are expected , Mr. Shevardnadze said `` that does n't mean they will be without an agenda . '' are expected no specific agreements C: Mr. Shevardnadze said
-Although no specific agreements are expected , Mr. Shevardnadze said `` that does n't mean they will be without an agenda . '' does n't mean that they will be without an agenda C: Mr. Shevardnadze said
-Among other things , they said , Mr. Azoff would develop musical acts for a new record label . said they Among other things Mr. Azoff would develop musical acts for a new record label
-Among other things , they said , Mr. Azoff would develop musical acts for a new record label . would develop Mr. Azoff musical acts for a new record label C: they said
-Among other things , they said , Mr. Azoff would develop musical acts for a new record label . would develop musical acts for a new record label among Mr. Azoff other things C: they said
-As a result , he said he will examine the Marcos documents sought by the prosecutors to determine whether turning over the filings is self - incrimination . said he he will examine the Marcos documents sought by the prosecutors to determine whether turning over the filings is self - incrimination .
-As a result , he said he will examine the Marcos documents sought by the prosecutors to determine whether turning over the filings is self - incrimination . will examine he the Marcos documents sought by the prosecutors to determine whether turning over the filings is self - incrimination . C: he said
-As a result , he said he will examine the Marcos documents sought by the prosecutors to determine whether turning over the filings is self - incrimination . will examine the Marcos documents sought by the prosecutors to determine he whether turning over the filings is self - incrimination . C: he said
-As a result , he said he will examine the Marcos documents sought by the prosecutors to determine whether turning over the filings is self - incrimination . were sought by the Marcos documents the prosecutors C: he said
-Avery Inc. said it completed the sale of Uniroyal Chemical Holding Co. to a group led by management of Uniroyal Chemical Co. , the unit 's main business . said Avery Inc. it completed the sale of Uniroyal Chemical Holding Co. to a group led by management of Uniroyal Chemical Co. , the unit 's main business
-Avery Inc. said it completed the sale of Uniroyal Chemical Holding Co. to a group led by management of Uniroyal Chemical Co. , the unit 's main business . completed it the sale of Uniroyal Chemical Holding Co. to a group led by management of Uniroyal Chemical Co. C: Avery Inc. said
-Avery Inc. said it completed the sale of Uniroyal Chemical Holding Co. to a group led by management of Uniroyal Chemical Co. , the unit 's main business . is Uniroyal Chemical Co. the unit 's main business C: Avery Inc. said
-But yesterday , Mr. Carpenter said big institutional investors , which he would n't identify , `` told us they would n't do business with firms '' that continued to do index arbitrage for their own accounts . said Mr. Carpenter big institutional investors `` told us they would n't do business with firms '' that continued to do index arbitrage for their own accounts T: yesterday
-But yesterday , Mr. Carpenter said big institutional investors , which he would n't identify , `` told us they would n't do business with firms '' that continued to do index arbitrage for their own accounts . would n't identify he big institutional investors T: yesterday
-But yesterday , Mr. Carpenter said big institutional investors , which he would n't identify , `` told us they would n't do business with firms '' that continued to do index arbitrage for their own accounts . told us big institutional investors they would n't do business with firms '' that continued to do index arbitrage for their own accounts T: yesterday C: Mr. Carpenter said
-Coca - Cola Co. , aiming to boost soft - drink volume in Singapore , said it is discussing a joint venture with Fraser & Neave Ltd. , its bottling franchisee in that country . said Coca - Cola Co. it is discussing a joint venture with Fraser & Neave Ltd.
-Coca - Cola Co. , aiming to boost soft - drink volume in Singapore , said it is discussing a joint venture with Fraser & Neave Ltd. , its bottling franchisee in that country . is Fraser & Neave Ltd. its bottling franchisee L: in that country
-Company officials said the current robust domestic demand that has been fueling sustained economic expansion helped push up sales of products like ships , steel structures , power systems and machinery and resulted in sharply higher profit . said Company officials the current robust domestic demand that has been fueling sustained economic expansion helped push up sales of products like ships , steel structures , power systems and machinery and resulted in sharply higher profit
-Company officials said the current robust domestic demand that has been fueling sustained economic expansion helped push up sales of products like ships , steel structures , power systems and machinery and resulted in sharply higher profit . has been fueling the current robust domestic demand sustained economic expansion C: Company officials said
-Company officials said the current robust domestic demand that has been fueling sustained economic expansion helped push up sales of products like ships , steel structures , power systems and machinery and resulted in sharply higher profit . helped push up the current robust domestic demand sales of products like ships C: Company officials said
-Company officials said the current robust domestic demand that has been fueling sustained economic expansion helped push up sales of products like ships , steel structures , power systems and machinery and resulted in sharply higher profit . helped push up the current robust domestic demand sales of products like steel structures C: Company officials said
-Company officials said the current robust domestic demand that has been fueling sustained economic expansion helped push up sales of products like ships , steel structures , power systems and machinery and resulted in sharply higher profit . helped push up the current robust domestic demand sales of products like power systems C: Company officials said
-Company officials said the current robust domestic demand that has been fueling sustained economic expansion helped push up sales of products like ships , steel structures , power systems and machinery and resulted in sharply higher profit . helped push up the current robust domestic demand sales of products like machinery C: Company officials said
-Company officials said the current robust domestic demand that has been fueling sustained economic expansion helped push up sales of products like ships , steel structures , power systems and machinery and resulted in sharply higher profit . resulted in the current robust domestic demand sharply higher profit C: Company officials said
-Considered as a whole , Mr. Lane said , the filings required under the proposed rules `` will be at least as effective , if not more so , for investors following transactions . '' said Mr. Lane Considered as a whole , the filings required under the proposed rules `` will be at least as effective , if not more so , for investors following transactions
-Considered as a whole , Mr. Lane said , the filings required under the proposed rules `` will be at least as effective , if not more so , for investors following transactions . '' were required under the filings the proposed rules C: Mr. Lane said
-Considered as a whole , Mr. Lane said , the filings required under the proposed rules `` will be at least as effective , if not more so , for investors following transactions . '' will be at least as effective for the filings investors following transactions C: Mr. Lane said
-Daimler said it has had talks with Jaguar about possible joint ventures . said Daimler it has had talks with Jaguar about possible joint ventures
-Daimler said it has had talks with Jaguar about possible joint ventures . has had it talks with Jaguar about possible joint ventures C: Daimler said
-Despite the modest gains , traders said the market remains dull , with investors remaining cautiously on the sidelines . said traders Despite the modest gains the market remains dull , with investors remaining cautiously on the sidelines
-Despite the modest gains , traders said the market remains dull , with investors remaining cautiously on the sidelines . remains dull Despite the market the modest gains C: traders said
-Despite the modest gains , traders said the market remains dull , with investors remaining cautiously on the sidelines . remain cautiously on investors the sidelines C: traders said
-Edison Brothers Stores Inc. said it agreed to buy 229 Foxmoor women 's apparel stores from Foxmoor Specialty Stores Corp. , a unit of Dylex Ltd. of Toronto . said Edison Brothers Stores Inc. it agreed to buy 229 Foxmoor women 's apparel stores from Foxmoor Specialty Stores Corp. , a unit of Dylex Ltd. of Toronto
-Edison Brothers Stores Inc. said it agreed to buy 229 Foxmoor women 's apparel stores from Foxmoor Specialty Stores Corp. , a unit of Dylex Ltd. of Toronto . agreed to buy it 229 Foxmoor women 's apparel stores from Foxmoor Specialty Stores Corp. C: Edison Brothers Stores Inc. said
-Edison Brothers Stores Inc. said it agreed to buy 229 Foxmoor women 's apparel stores from Foxmoor Specialty Stores Corp. , a unit of Dylex Ltd. of Toronto . is Foxmoor Specialty Stores Corp. a unit of Dylex Ltd. of Toronto C: Edison Brothers Stores Inc. said
-For the record , Jeffrey Kaufman , an attorney for Fireman 's Fund , said he was `` rattled -- both literally and figuratively . '' is an attorney for Jeffrey Kaufman Fireman 's Fund
-For the record , Jeffrey Kaufman , an attorney for Fireman 's Fund , said he was `` rattled -- both literally and figuratively . '' said Jeffrey Kaufman he was `` rattled -- both literally and figuratively . ''
-For the record , Jeffrey Kaufman , an attorney for Fireman 's Fund , said he was `` rattled -- both literally and figuratively . '' was rattled -- both literally and figuratively he C: Jeffrey Kaufman said
-Ford Motor Co. said it is recalling about 3,600 of its 1990 - model Escorts because the windshield adhesive was improperly applied to some cars . said Ford Motor Co. it is recalling about 3,600 of its 1990 - model Escorts because the windshield adhesive was improperly applied to some cars
-Ford Motor Co. said it is recalling about 3,600 of its 1990 - model Escorts because the windshield adhesive was improperly applied to some cars . is recalling it about 3,600 of its 1990 - model Escorts because the windshield adhesive was improperly applied to some cars C: Ford Motor Co. said
-Ford Motor Co. said it is recalling about 3,600 of its 1990 - model Escorts because the windshield adhesive was improperly applied to some cars . was improperly applied to the windshield adhesive some cars C: Ford Motor Co. said
-He said he expects the company to have $ 500 million in sales for this year . said He he expects the company to have $ 500 million in sales for this year
-He said he expects the company to have $ 500 million in sales for this year . expects the company to have he $ 500 million in sales for this year C: He said
-However , a Canadian Embassy official in Tel Aviv said that Canada was unlikely to sell the Candu heavy - water reactor to Israel since Israel has n't signed the Nuclear Non - Proliferation Treaty . said that a Canadian Embassy official in Tel Aviv Canada was unlikely to sell the Candu heavy - water reactor to Israel since Israel has n't signed the Nuclear Non - Proliferation Treaty
-However , a Canadian Embassy official in Tel Aviv said that Canada was unlikely to sell the Candu heavy - water reactor to Israel since Israel has n't signed the Nuclear Non - Proliferation Treaty . is in a Canadian Embassy official Tel Aviv
-However , a Canadian Embassy official in Tel Aviv said that Canada was unlikely to sell the Candu heavy - water reactor to Israel since Israel has n't signed the Nuclear Non - Proliferation Treaty . was unlikely to sell Canada the Candu heavy - water reactor to Israel since Israel has n't signed the Nuclear Non - Proliferation Treaty C: a Canadian Embassy official in Tel Aviv said that
-However , a Canadian Embassy official in Tel Aviv said that Canada was unlikely to sell the Candu heavy - water reactor to Israel since Israel has n't signed the Nuclear Non - Proliferation Treaty . has n't signed Israel the Nuclear Non - Proliferation Treaty C: a Canadian Embassy official in Tel Aviv said that
-In recent testimony on Capitol Hill , Treasury officials said they were considering the new reporting requirements , and the expected publication of the proposal in the Federal Register today is the first official step toward creating final regulations . said Treasury officials they were considering the new reporting requirements , and the expected publication of the proposal in the Federal Register today is the first official step toward creating final regulations T: In recent testimony on Capitol Hill
-In recent testimony on Capitol Hill , Treasury officials said they were considering the new reporting requirements , and the expected publication of the proposal in the Federal Register today is the first official step toward creating final regulations . were considering they the new reporting requirements C: Treasury officials said
-In recent testimony on Capitol Hill , Treasury officials said they were considering the new reporting requirements , and the expected publication of the proposal in the Federal Register today is the first official step toward creating final regulations . is the first official step toward creating the expected publication of the proposal in the Federal Register today final regulations C: Treasury officials said
-It said CS First Boston `` has consistently been one of the most aggressive firms in merchant banking '' and that `` a very significant portion '' of the firm 's profit in recent years has come from merchant banking - related business . said It CS First Boston `` has consistently been one of the most aggressive firms in merchant banking '' and that `` a very significant portion '' of the firm 's profit in recent years has come from merchant banking - related business
-It said CS First Boston `` has consistently been one of the most aggressive firms in merchant banking '' and that `` a very significant portion '' of the firm 's profit in recent years has come from merchant banking - related business . has consistently been CS First Boston one of the most aggressive firms in merchant banking C: It said
-It said CS First Boston `` has consistently been one of the most aggressive firms in merchant banking '' and that `` a very significant portion '' of the firm 's profit in recent years has come from merchant banking - related business . has come from a very significant portion of the firm 's profit merchant banking - related business T: in recent years C: It said
-Merrill said it continues to believe that `` the causes of excess market volatility are far more complex than any particular computer trading strategy . said Merrill it continues to believe that `` the causes of excess market volatility are far more complex than any particular computer trading strategy .
-Merrill said it continues to believe that `` the causes of excess market volatility are far more complex than any particular computer trading strategy . continues to believe that it the causes of excess market volatility are far more complex than any particular computer trading strategy C: Merrill said
-Merrill said it continues to believe that `` the causes of excess market volatility are far more complex than any particular computer trading strategy . are far more complex than the causes of excess market volatility any particular computer trading strategy C: Merrill said
-Milk sold to the nation 's dairy plants and dealers averaged $ 14.50 for each hundred pounds , up 50 cents from September and up $ 1.50 from October 1988 , the department said . said the department Milk sold to the nation 's dairy plants and dealers averaged $ 14.50 for each hundred pounds , up 50 cents from September and up $ 1.50 from October 1988
-Milk sold to the nation 's dairy plants and dealers averaged $ 14.50 for each hundred pounds , up 50 cents from September and up $ 1.50 from October 1988 , the department said . averaged Milk sold to the nation 's dairy plants and dealers $ 14.50 for each hundred pounds , up 50 cents from September and up $ 1.50 from October 1988 C: the department said
-Milk sold to the nation 's dairy plants and dealers averaged $ 14.50 for each hundred pounds , up 50 cents from September and up $ 1.50 from October 1988 , the department said . was sold to Milk the nation 's dairy plants C: the department said
-Milk sold to the nation 's dairy plants and dealers averaged $ 14.50 for each hundred pounds , up 50 cents from September and up $ 1.50 from October 1988 , the department said . was sold to Milk dealers C: the department said
-Mr. Mulford said reports of tension between the Treasury and Fed have been exaggerated , insisting that they involved `` nuances . '' said Mr. Mulford reports of tension between the Treasury and Fed have been exaggerated
-Mr. Mulford said reports of tension between the Treasury and Fed have been exaggerated , insisting that they involved `` nuances . '' insisted that Mr. Mulford they involved `` nuances . ''
-Mr. Mulford said reports of tension between the Treasury and Fed have been exaggerated , insisting that they involved `` nuances . '' have been exaggerated reports of tension between the Treasury and Fed C: Mr. Mulford said
-Mr. Rifenburgh said the board still has n't acted on most of the internal report 's recommendations , pending restatement of the balance sheet . said Mr. Rifenburgh the board still has n't acted on most of the internal report 's recommendations , pending restatement of the balance sheet .
-Mr. Rifenburgh said the board still has n't acted on most of the internal report 's recommendations , pending restatement of the balance sheet . still has n't acted on the board most of the internal report 's recommendations , pending restatement of the balance sheet C: Mr. Rifenburgh said
-Nixon , on the fourth day of a private visit to China , said that damage to Sino - U.S. relations was `` very great , '' calling the situation `` the most serious '' since 1972 . said that Nixon damage to Sino - U.S. relations was `` very great , '' T: on the fourth day of a private visit to China
-Nixon , on the fourth day of a private visit to China , said that damage to Sino - U.S. relations was `` very great , '' calling the situation `` the most serious '' since 1972 . was very great damage to Sino - U.S. relations C: Nixon said that
-Nixon , on the fourth day of a private visit to China , said that damage to Sino - U.S. relations was `` very great , '' calling the situation `` the most serious '' since 1972 . called Nixon the situation `` the most serious '' since 1972 . T: on the fourth day of a private visit to China
-Overall , net sales of all mutual funds , excluding money market funds , fell to $ 1.9 billion in September from $ 4.2 billion in August , the trade group said . said the trade group Overall , net sales of all mutual funds , excluding money market funds , fell to $ 1.9 billion in September from $ 4.2 billion in August
-Overall , net sales of all mutual funds , excluding money market funds , fell to $ 1.9 billion in September from $ 4.2 billion in August , the trade group said . fell to net sales of all mutual funds , excluding money market funds $ 1.9 billion T: in September C: the trade group said
-Overall , net sales of all mutual funds , excluding money market funds , fell to $ 1.9 billion in September from $ 4.2 billion in August , the trade group said . fell from net sales of all mutual funds , excluding money market funds $ 4.2 billion T: in August C: the trade group said
-Panhandle Eastern Corp. said it applied , on behalf of two of its subsidiaries , to the Federal Energy Regulatory Commission for permission to build a 352 - mile , $ 273 million pipeline system from Pittsburg County , Okla. , to Independence , Miss . said Panhandle Eastern Corp. it applied , on behalf of two of its subsidiaries , to the Federal Energy Regulatory Commission for permission to build a 352 - mile , $ 273 million pipeline system from Pittsburg County , Okla. , to Independence , Miss
-Panhandle Eastern Corp. said it applied , on behalf of two of its subsidiaries , to the Federal Energy Regulatory Commission for permission to build a 352 - mile , $ 273 million pipeline system from Pittsburg County , Okla. , to Independence , Miss . applied it on behalf of two of its subsidiaries to the Federal Energy Regulatory Commission for permission to build a 352 - mile , $ 273 million pipeline system from Pittsburg County , Okla. , to Independence , Miss C: Panhandle Eastern Corp. said
-Richard Newsom , a California state official who last year examined Lincoln 's parent , American Continental Corp. , said he also saw evidence that crimes had been committed . is Richard Newsom a California state official
-Richard Newsom , a California state official who last year examined Lincoln 's parent , American Continental Corp. , said he also saw evidence that crimes had been committed . is American Continental Corp. Lincoln 's parent
-Richard Newsom , a California state official who last year examined Lincoln 's parent , American Continental Corp. , said he also saw evidence that crimes had been committed . examined Richard Newsom Lincoln 's parent T: last year
-Richard Newsom , a California state official who last year examined Lincoln 's parent , American Continental Corp. , said he also saw evidence that crimes had been committed . said Richard Newsom he also saw evidence that crimes had been committed
-Richard Newsom , a California state official who last year examined Lincoln 's parent , American Continental Corp. , said he also saw evidence that crimes had been committed . also saw evidence that he crimes had been committed C: Richard Newsom said
-Rolls - Royce Motor Cars Inc. said it expects its U.S. sales to remain steady at about 1,200 cars in 1990 . said Rolls - Royce Motor Cars Inc. it expects its U.S. sales to remain steady at about 1,200 cars in 1990
-Rolls - Royce Motor Cars Inc. said it expects its U.S. sales to remain steady at about 1,200 cars in 1990 . expects it its U.S. sales to remain steady at about 1,200 cars in 1990 C: Rolls - Royce Motor Cars Inc. said
-Separately , Ford and Mazda Motor Corp. 's U.S. sales arm said they are recalling about 88,500 1988 - model Mercury Tracers and 220,000 1986 , 1987 and 1988 model Mazda 323s equipped with 1.6 - liter fuel - injected engines to replace the oil filler cap . separately said Ford and Mazda Motor Corp. 's U.S. sales arm they are recalling about 88,500 1988 - model Mercury Tracers and 220,000 1986 , 1987 and 1988 model Mazda 323s equipped with 1.6 - liter fuel - injected engines to replace the oil filler cap
-Separately , Ford and Mazda Motor Corp. 's U.S. sales arm said they are recalling about 88,500 1988 - model Mercury Tracers and 220,000 1986 , 1987 and 1988 model Mazda 323s equipped with 1.6 - liter fuel - injected engines to replace the oil filler cap . are recalling they about 88,500 1988 - model Mercury Tracers and 220,000 1986 , 1987 and 1988 model Mazda 323s equipped with 1.6 - liter fuel - injected engines to replace the oil filler cap C: Separately , Ford and Mazda Motor Corp. 's U.S. sales arm said
-The Chemical spokeswoman said the bank has examined its methodologies and internal controls . said The Chemical spokeswoman the bank has examined its methodologies and internal controls
-The Chemical spokeswoman said the bank has examined its methodologies and internal controls . has examined the bank its methodologies C: The Chemical spokeswoman said
-The Chemical spokeswoman said the bank has examined its methodologies and internal controls . has examined the bank internal controls C: The Chemical spokeswoman said
-The company said the fastener business `` has been under severe cost pressures for some time . '' said The company the fastener business has been under severe cost pressures for some time
-The company said the fastener business `` has been under severe cost pressures for some time . '' has been under the fastener business severe cost pressures for some time C: The company said
-The market 's tempo was helped by the dollar 's resiliency , he said . said he The market 's tempo was helped by the dollar 's resiliency
-The market 's tempo was helped by the dollar 's resiliency , he said . was helped by The market 's tempo the dollar 's resiliency C: he said
-There 's light at the end of the tunnel for municipals , '' he said , adding that he expects prices to `` inch up '' in the near term . said he There 's light at the end of the tunnel for municipals
-There 's light at the end of the tunnel for municipals , '' he said , adding that he expects prices to `` inch up '' in the near term . added that he he expects prices to `` inch up '' in the near term
-There 's light at the end of the tunnel for municipals , '' he said , adding that he expects prices to `` inch up '' in the near term . expects he prices to inch up T: in the near term C: he added that
-Unemployment has reached 27.6 % in Azerbaijan , 25.7 % in Tadzhikistan , 22.8 % in Uzbekistan , 18.8 % in Turkmenia , 18 % in Armenia and 16.3 % in Kirgizia , the Communist Party newspaper said . said the Communist Party newspaper Unemployment has reached 27.6 % in Azerbaijan , 25.7 % in Tadzhikistan , 22.8 % in Uzbekistan , 18.8 % in Turkmenia , 18 % in Armenia and 16.3 % in Kirgizia
-Unemployment has reached 27.6 % in Azerbaijan , 25.7 % in Tadzhikistan , 22.8 % in Uzbekistan , 18.8 % in Turkmenia , 18 % in Armenia and 16.3 % in Kirgizia , the Communist Party newspaper said . has reached Unemployment 27.6 % L: in Azerbaijan C: the Communist Party newspaper said
-Unemployment has reached 27.6 % in Azerbaijan , 25.7 % in Tadzhikistan , 22.8 % in Uzbekistan , 18.8 % in Turkmenia , 18 % in Armenia and 16.3 % in Kirgizia , the Communist Party newspaper said . has reached Unemployment 25.7 % L: in Tadzhikistan C: the Communist Party newspaper said
-Unemployment has reached 27.6 % in Azerbaijan , 25.7 % in Tadzhikistan , 22.8 % in Uzbekistan , 18.8 % in Turkmenia , 18 % in Armenia and 16.3 % in Kirgizia , the Communist Party newspaper said . has reached Unemployment 22.8 % L: in Uzbekistan C: the Communist Party newspaper said
-Unemployment has reached 27.6 % in Azerbaijan , 25.7 % in Tadzhikistan , 22.8 % in Uzbekistan , 18.8 % in Turkmenia , 18 % in Armenia and 16.3 % in Kirgizia , the Communist Party newspaper said . has reached Unemployment 18.8 % L: in Turkmenia , 18 % in Armenia and 16.3 % in Kirgizia C: the Communist Party newspaper said
-Unemployment has reached 27.6 % in Azerbaijan , 25.7 % in Tadzhikistan , 22.8 % in Uzbekistan , 18.8 % in Turkmenia , 18 % in Armenia and 16.3 % in Kirgizia , the Communist Party newspaper said . has reached Unemployment 18 % L: in Armenia C: the Communist Party newspaper said
-Unemployment has reached 27.6 % in Azerbaijan , 25.7 % in Tadzhikistan , 22.8 % in Uzbekistan , 18.8 % in Turkmenia , 18 % in Armenia and 16.3 % in Kirgizia , the Communist Party newspaper said . has reached Unemployment 16.3 % L: in Kirgizia C: the Communist Party newspaper said
-`` Business across the country is spending more time addressing this issue , '' says Sen. Edward Kennedy ( D. , Mass . ) . says Sen. Edward Kennedy ( D. , Mass . ) `` Business across the country is spending more time addressing this issue , ''
-`` Business across the country is spending more time addressing this issue , '' says Sen. Edward Kennedy ( D. , Mass . ) . is spending Business across the country more time addressing this issue , '' C: Sen. Edward Kennedy ( D. , Mass . ) says
-`` I ca n't believe they ( GM ) will let Ford have a free run , '' said Stephen Reitman , a European auto industry analyst at UBS - Phillips & Drew . said Stephen Reitman I ca n't believe they ( GM ) will let Ford have a free run
-`` I ca n't believe they ( GM ) will let Ford have a free run , '' said Stephen Reitman , a European auto industry analyst at UBS - Phillips & Drew . is Stephen Reitman a European auto industry analyst at UBS - Phillips & Drew
-`` I ca n't believe they ( GM ) will let Ford have a free run , '' said Stephen Reitman , a European auto industry analyst at UBS - Phillips & Drew . ca n't believe I they ( GM ) will let Ford have a free run C: Stephen Reitman said
-`` I ca n't believe they ( GM ) will let Ford have a free run , '' said Stephen Reitman , a European auto industry analyst at UBS - Phillips & Drew . will let they ( GM ) Ford have a free run C: Stephen Reitman said
-`` I do n't foresee any shortages over the next few months , '' says Ken Allen , an official of Operating Engineers Local 3 in San Francisco . says Ken Allen `` I do n't foresee any shortages over the next few months ''
-`` I do n't foresee any shortages over the next few months , '' says Ken Allen , an official of Operating Engineers Local 3 in San Francisco . is an official of Ken Allen Operating Engineers Local 3 L: in San Francisco
-`` I do n't foresee any shortages over the next few months , '' says Ken Allen , an official of Operating Engineers Local 3 in San Francisco . do n't foresee I any shortages over the next few months C: Ken Allen says
-`` I wo n't be throwing 90 mph , but I will throw 80 - plus , '' he says . says he `` I wo n't be throwing 90 mph , but I will throw 80 - plus ''
-`` I wo n't be throwing 90 mph , but I will throw 80 - plus , '' he says . wo n't be throwing I 90 mph C: he says
-`` I wo n't be throwing 90 mph , but I will throw 80 - plus , '' he says . will throw I 80 - plus C: he says
-`` If working capital financing is not provided , '' he said , `` the RTC may have to slow { S&L sales } or dump acquired assets through fire sales . said he If working capital financing is not provided , the RTC may have to slow { S&L sales } or dump acquired assets through fire sales
-`` If working capital financing is not provided , '' he said , `` the RTC may have to slow { S&L sales } or dump acquired assets through fire sales . may have to slow the RTC { S&L sales } T: If working capital financing is not provided C: he said
-`` If working capital financing is not provided , '' he said , `` the RTC may have to slow { S&L sales } or dump acquired assets through fire sales . may have to dump the RTC acquired assets through fire sales T: If working capital financing is not provided C: he said
-`` It 's a super - exciting set of discoveries , '' says Bert Vogelstein , a Johns Hopkins University researcher who has just found a gene pivotal to the triggering of colon cancer . says Bert Vogelstein It 's a super - exciting set of discoveries
-`` It 's a super - exciting set of discoveries , '' says Bert Vogelstein , a Johns Hopkins University researcher who has just found a gene pivotal to the triggering of colon cancer . is It a super - exciting set of discoveries C: Bert Vogelstein says
-`` It 's a super - exciting set of discoveries , '' says Bert Vogelstein , a Johns Hopkins University researcher who has just found a gene pivotal to the triggering of colon cancer . is Bert Vogelstein a Johns Hopkins University researcher
-`` It 's a super - exciting set of discoveries , '' says Bert Vogelstein , a Johns Hopkins University researcher who has just found a gene pivotal to the triggering of colon cancer . has just found Bert Vogelstein a gene pivotal to the triggering of colon cancer
-`` It 's a wait - and - see attitude , '' said Dave Vellante , vice president of storage research for International Data Corp . said Dave Vellante `` It 's a wait - and - see attitude ''
-`` It 's a wait - and - see attitude , '' said Dave Vellante , vice president of storage research for International Data Corp . is It a wait - and - see attitude C: Dave Vellante said
-`` It 's a wait - and - see attitude , '' said Dave Vellante , vice president of storage research for International Data Corp . is the vice president of Dave Vellante storage research for International Data Corp .
-`` It 's really bizarre , '' says Albert Lerman , creative director at the Wells Rich Greene ad agency . says Albert Lerman `` It 's really bizarre ''
-`` It 's really bizarre , '' says Albert Lerman , creative director at the Wells Rich Greene ad agency . is It really bizarre C: Albert Lerman says
-`` It 's really bizarre , '' says Albert Lerman , creative director at the Wells Rich Greene ad agency . is the creative director at Albert Lerman the Wells Rich Greene ad agency
-`` Most of the LBO guys do n't know how to run a business anyway . '' do n't know Most of the LBO guys how to run a business anyway
-`` Most people -- whether in Toledo , Tucson or Topeka -- have n't got a clue who we are , '' says Guy L. Smith , Philip Morris 's vice president of corporate affairs . says Guy L. Smith `` Most people -- whether in Toledo , Tucson or Topeka -- have n't got a clue who we are , ''
-`` Most people -- whether in Toledo , Tucson or Topeka -- have n't got a clue who we are , '' says Guy L. Smith , Philip Morris 's vice president of corporate affairs . have n't got Most people whether in Toledo , Tucson or Topeka a clue who we are C: Guy L. Smith says
-`` Most people -- whether in Toledo , Tucson or Topeka -- have n't got a clue who we are , '' says Guy L. Smith , Philip Morris 's vice president of corporate affairs . is Guy L. Smith Philip Morris 's vice president of corporate affairs
-`` Nobody told us ; nobody called us , '' says an official close to the case who asked not to be named . says an official close to the case `` Nobody told us ; nobody called us ''
-`` Nobody told us ; nobody called us , '' says an official close to the case who asked not to be named . told Nobody us C: an official close to the case says
-`` Nobody told us ; nobody called us , '' says an official close to the case who asked not to be named . called Nobody us C: an official close to the case says
-`` Nobody told us ; nobody called us , '' says an official close to the case who asked not to be named . asked not to be named an official close to the case
-`` Nothing can be better than this , '' says Don Sider , owner of the West Palm Beach Tropics . says Don Sider `` Nothing can be better than this ''
-`` Nothing can be better than this , '' says Don Sider , owner of the West Palm Beach Tropics . can be better than Nothing this C: Don Sider says
-`` Nothing can be better than this , '' says Don Sider , owner of the West Palm Beach Tropics . is the owner of Don Sider the West Palm Beach Tropics
-`` Now everything '' -- such as program trading and wide stock market swings -- `` that everyone had pushed back in their consciousness is just sitting right there . '' is just sitting right there everything such as program trading and wide stock market swings that everyone had pushed back in their consciousness T: Now
-`` Now everything '' -- such as program trading and wide stock market swings -- `` that everyone had pushed back in their consciousness is just sitting right there . '' had pushed back everyone program trading and wide stock market swings in their consciousness
-`` The bottom line is that if we can get that { Warsaw Pact } superiority brought down to parity , we ought to keep pressing ahead as quickly as possible . is that The bottom line if we can get that { Warsaw Pact } superiority brought down to parity , we ought to keep pressing ahead as quickly as possible
-`` The only people who are flying are those who have to , '' said Frank Moore , chairman of the Australian Tourist Industry Association . said Frank Moore `` The only people who are flying are those who have to ''
-`` The only people who are flying are those who have to , '' said Frank Moore , chairman of the Australian Tourist Industry Association . are The only people who are flying those who have to C: Frank Moore said
-`` The only people who are flying are those who have to , '' said Frank Moore , chairman of the Australian Tourist Industry Association . is chairman of Frank Moore the Australian Tourist Industry Association
-`` To allow this massive level of unfettered federal borrowing without prior congressional approval would be irresponsible , '' said Rep. Fortney Stark ( D. , Calif. ) , who has introduced a bill to limit the RTC 's authority to issue debt . said Rep. Fortney Stark ( D. , Calif. ) `` To allow this massive level of unfettered federal borrowing without prior congressional approval would be irresponsible ''
-`` To allow this massive level of unfettered federal borrowing without prior congressional approval would be irresponsible , '' said Rep. Fortney Stark ( D. , Calif. ) , who has introduced a bill to limit the RTC 's authority to issue debt . has introduced Rep. Fortney Stark ( D. , Calif. ) a bill to limit the RTC 's authority to issue debt
-`` To allow this massive level of unfettered federal borrowing without prior congressional approval would be irresponsible , '' said Rep. Fortney Stark ( D. , Calif. ) , who has introduced a bill to limit the RTC 's authority to issue debt . has authority to issue the RTC debt
-`` We were oversold and today we bounced back . were oversold We
-`` We were oversold and today we bounced back . bounced back we T: today
-A casting director at the time told Scott that he had wished that he 'd met him a week before ; he was casting for the `` G.I. Joe '' cartoon . told A casting director at the time Scott that he had wished that he 'd met him a week before
-A casting director at the time told Scott that he had wished that he 'd met him a week before ; he was casting for the `` G.I. Joe '' cartoon . had wished that he he 'd met him a week before C: A casting director at the time told that
-A casting director at the time told Scott that he had wished that he 'd met him a week before ; he was casting for the `` G.I. Joe '' cartoon . was casting for he the `` G.I. Joe '' cartoon
-According to Hofmann , while still a teenage coin collector , he forged a rare mint mark on a dime and was told by an organization of coin collectors that it was genuine . was Hofmann a teenage coin collector T: still
-According to Hofmann , while still a teenage coin collector , he forged a rare mint mark on a dime and was told by an organization of coin collectors that it was genuine . forged he a rare mint mark on a dime C: According to Hofmann
-According to Hofmann , while still a teenage coin collector , he forged a rare mint mark on a dime and was told by an organization of coin collectors that it was genuine . was told he by an organization of coin collectors that it was genuine C: According to Hofmann
-In fact , Condon , after seeing Hauptmann in a lineup at New York Police Department Greenwich Street Station told FBI Special Agent Turrou that Hauptmann was not `` John , '' the man to whom Condon claimed he passed the ransom money to in St. Raymond 's Cemetery . saw Condon Hauptmann L: in a lineup at New York Police Department Greenwich Street Station
-In fact , Condon , after seeing Hauptmann in a lineup at New York Police Department Greenwich Street Station told FBI Special Agent Turrou that Hauptmann was not `` John , '' the man to whom Condon claimed he passed the ransom money to in St. Raymond 's Cemetery . told Condon FBI Special Agent Turrou that Hauptmann was not John
-In fact , Condon , after seeing Hauptmann in a lineup at New York Police Department Greenwich Street Station told FBI Special Agent Turrou that Hauptmann was not `` John , '' the man to whom Condon claimed he passed the ransom money to in St. Raymond 's Cemetery . is Turrou FBI Special Agent
-In fact , Condon , after seeing Hauptmann in a lineup at New York Police Department Greenwich Street Station told FBI Special Agent Turrou that Hauptmann was not `` John , '' the man to whom Condon claimed he passed the ransom money to in St. Raymond 's Cemetery . is John the man to whom Condon claimed he passed the ransom money to in St. Raymond 's Cemetery
-In fact , Condon , after seeing Hauptmann in a lineup at New York Police Department Greenwich Street Station told FBI Special Agent Turrou that Hauptmann was not `` John , '' the man to whom Condon claimed he passed the ransom money to in St. Raymond 's Cemetery . passed he the ransom money to John L: in St. Raymond 's Cemetery C: Condon claimed
-He sold them well below market value to raise cash `` to pay off mounting credit - card debts , '' incurred to buy presents for his girlfriend , his attorney , Philip Russell , told IFAR . told IFAR He sold them well below market value to raise cash `` to pay off mounting credit - card debts , '' incurred to buy presents for his girlfriend , his attorney , Philip Russell
-He sold them well below market value to raise cash `` to pay off mounting credit - card debts , '' incurred to buy presents for his girlfriend , his attorney , Philip Russell , told IFAR . sold them well below He market value to raise cash to pay off mounting credit - card debts C: IFAR told
-He sold them well below market value to raise cash `` to pay off mounting credit - card debts , '' incurred to buy presents for his girlfriend , his attorney , Philip Russell , told IFAR . incurred He credit - card debts to buy presents for his girlfriend , his attorney , Philip Russell C: IFAR told
\ No newline at end of file
diff --git a/3-NLP_services/src/Multi2OIE/carb/__init__.py b/3-NLP_services/src/Multi2OIE/carb/__init__.py
deleted file mode 100644
index e69de29..0000000
diff --git a/3-NLP_services/src/Multi2OIE/carb/argument.py b/3-NLP_services/src/Multi2OIE/carb/argument.py
deleted file mode 100644
index 6fec2e0..0000000
--- a/3-NLP_services/src/Multi2OIE/carb/argument.py
+++ /dev/null
@@ -1,21 +0,0 @@
-import nltk
-from operator import itemgetter
-
-class Argument:
- def __init__(self, arg):
- self.words = [x for x in arg[0].strip().split(' ') if x]
- self.posTags = map(itemgetter(1), nltk.pos_tag(self.words))
- self.indices = arg[1]
- self.feats = {}
-
- def __str__(self):
- return "({})".format('\t'.join(map(str,
- [escape_special_chars(' '.join(self.words)),
- str(self.indices)])))
-
-COREF = 'coref'
-
-## Helper functions
-def escape_special_chars(s):
- return s.replace('\t', '\\t')
-
diff --git a/3-NLP_services/src/Multi2OIE/carb/carb.py b/3-NLP_services/src/Multi2OIE/carb/carb.py
deleted file mode 100644
index d595239..0000000
--- a/3-NLP_services/src/Multi2OIE/carb/carb.py
+++ /dev/null
@@ -1,380 +0,0 @@
-'''
-Usage:
- benchmark --gold=GOLD_OIE --out=OUTPUT_FILE (--openiefive=OPENIE5 | --stanford=STANFORD_OIE | --ollie=OLLIE_OIE |--reverb=REVERB_OIE | --clausie=CLAUSIE_OIE | --openiefour=OPENIEFOUR_OIE | --props=PROPS_OIE | --tabbed=TABBED_OIE | --benchmarkGold=BENCHMARK_GOLD | --allennlp=ALLENNLP_OIE ) [--exactMatch | --predMatch | --lexicalMatch | --binaryMatch | --simpleMatch | --strictMatch] [--error-file=ERROR_FILE] [--binary]
-
-Options:
- --gold=GOLD_OIE The gold reference Open IE file (by default, it should be under ./oie_corpus/all.oie).
- --benchmarkgold=GOLD_OIE The benchmark's gold reference.
- --out-OUTPUT_FILE The output file, into which the precision recall curve will be written.
- --clausie=CLAUSIE_OIE Read ClausIE format from file CLAUSIE_OIE.
- --ollie=OLLIE_OIE Read OLLIE format from file OLLIE_OIE.
- --openiefour=OPENIEFOUR_OIE Read Open IE 4 format from file OPENIEFOUR_OIE.
- --openiefive=OPENIE5 Read Open IE 5 format from file OPENIE5.
- --props=PROPS_OIE Read PropS format from file PROPS_OIE
- --reverb=REVERB_OIE Read ReVerb format from file REVERB_OIE
- --stanford=STANFORD_OIE Read Stanford format from file STANFORD_OIE
- --tabbed=TABBED_OIE Read simple tab format file, where each line consists of:
- sent, prob, pred,arg1, arg2, ...
- --exactmatch Use exact match when judging whether an extraction is correct.
-'''
-from __future__ import division
-import docopt
-import string
-import numpy as np
-from sklearn.metrics import precision_recall_curve
-from sklearn.metrics import auc, roc_auc_score
-import re
-import logging
-import pdb
-import ipdb
-from _collections import defaultdict
-from carb.goldReader import GoldReader
-from carb.gold_relabel import Relabel_GoldReader
-logging.basicConfig(level = logging.INFO)
-
-from operator import itemgetter
-import pprint
-from copy import copy
-pp = pprint.PrettyPrinter(indent=4)
-
-class Benchmark:
- ''' Compare the gold OIE dataset against a predicted equivalent '''
- def __init__(self, gold_fn):
- ''' Load gold Open IE, this will serve to compare against using the compare function '''
-
- if 'Re-OIE2016' in gold_fn:
- gr = Relabel_GoldReader()
- else:
- gr = GoldReader()
- gr.read(gold_fn)
- self.gold = gr.oie
-
- def compare(self, predicted, matchingFunc, output_fn, error_file = None, binary=False):
- ''' Compare gold against predicted using a specified matching function.
- Outputs PR curve to output_fn '''
-
- y_true = []
- y_scores = []
- errors = []
- correct = 0
- incorrect = 0
-
- correctTotal = 0
- unmatchedCount = 0
- predicted = Benchmark.normalizeDict(predicted)
- gold = Benchmark.normalizeDict(self.gold)
- if binary:
- predicted = Benchmark.binarize(predicted)
- gold = Benchmark.binarize(gold)
- #gold = self.gold
-
- # taking all distinct values of confidences as thresholds
- confidence_thresholds = set()
- for sent in predicted:
- for predicted_ex in predicted[sent]:
- confidence_thresholds.add(predicted_ex.confidence)
-
- confidence_thresholds = sorted(list(confidence_thresholds))
- num_conf = len(confidence_thresholds)
-
- results = {}
- p = np.zeros(num_conf)
- pl = np.zeros(num_conf)
- r = np.zeros(num_conf)
- rl = np.zeros(num_conf)
-
- for sent, goldExtractions in gold.items():
-
- if sent in predicted:
- predictedExtractions = predicted[sent]
- else:
- predictedExtractions = []
-
- scores = [[None for _ in predictedExtractions] for __ in goldExtractions]
-
- # print("***Gold Extractions***")
- # print("\n".join([goldExtractions[i].pred + ' ' + " ".join(goldExtractions[i].args) for i in range(len(goldExtractions))]))
- # print("***Predicted Extractions***")
- # print("\n".join([predictedExtractions[i].pred+ " ".join(predictedExtractions[i].args) for i in range(len(predictedExtractions))]))
-
- for i, goldEx in enumerate(goldExtractions):
- for j, predictedEx in enumerate(predictedExtractions):
- score = matchingFunc(goldEx, predictedEx,ignoreStopwords = True,ignoreCase = True)
- scores[i][j] = score
-
-
- # OPTIMISED GLOBAL MATCH
- sent_confidences = [extraction.confidence for extraction in predictedExtractions]
- sent_confidences.sort()
- prev_c = 0
- for conf in sent_confidences:
- c = confidence_thresholds.index(conf)
- ext_indices = []
- for ext_indx, extraction in enumerate(predictedExtractions):
- if extraction.confidence >= conf:
- ext_indices.append(ext_indx)
-
- recall_numerator = 0
- for i, row in enumerate(scores):
- max_recall_row = max([row[ext_indx][1] for ext_indx in ext_indices ], default=0)
- recall_numerator += max_recall_row
-
- precision_numerator = 0
-
- selected_rows = []
- selected_cols = []
- num_precision_matches = min(len(scores), len(ext_indices))
- for t in range(num_precision_matches):
- matched_row = -1
- matched_col = -1
- matched_precision = -1 # initialised to <0 so that it updates whenever precision is 0 as well
- for i in range(len(scores)):
- if i in selected_rows:
- continue
- for ext_indx in ext_indices:
- if ext_indx in selected_cols:
- continue
- if scores[i][ext_indx][0] > matched_precision:
- matched_precision = scores[i][ext_indx][0]
- matched_row = i
- matched_col = ext_indx
-
- selected_rows.append(matched_row)
- selected_cols.append(matched_col)
- precision_numerator += scores[matched_row][matched_col][0]
-
- p[prev_c:c+1] += precision_numerator
- pl[prev_c:c+1] += len(ext_indices)
- r[prev_c:c+1] += recall_numerator
- rl[prev_c:c+1] += len(scores)
-
- prev_c = c+1
-
- # for indices beyond the maximum sentence confidence, len(scores) has to be added to the denominator of recall
- rl[prev_c:] += len(scores)
-
- prec_scores = [a/b if b>0 else 1 for a,b in zip(p,pl) ]
- rec_scores = [a/b if b>0 else 0 for a,b in zip(r,rl)]
-
- f1s = [Benchmark.f1(p,r) for p,r in zip(prec_scores, rec_scores)]
- try:
- optimal_idx = np.nanargmax(f1s)
- optimal = (prec_scores[optimal_idx], rec_scores[optimal_idx], f1s[optimal_idx])
- except ValueError:
- # When there is no prediction
- optimal = (0,0,0)
-
- # In order to calculate auc, we need to add the point corresponding to precision=1 , recall=0 to the PR-curve
- temp_rec_scores = rec_scores.copy()
- temp_prec_scores = prec_scores.copy()
- temp_rec_scores.append(0)
- temp_prec_scores.append(1)
- # print("AUC: {}\t Optimal (precision, recall, F1): {}".format( np.round(auc(temp_rec_scores, temp_prec_scores),3), np.round(optimal,3) ))
-
- with open(output_fn, 'w') as fout:
- fout.write('{0}\t{1}\t{2}\n'.format("Precision", "Recall", "Confidence"))
- for cur_p, cur_r, cur_conf in sorted(zip(prec_scores, rec_scores, confidence_thresholds), key = lambda cur: cur[1]):
- fout.write('{0}\t{1}\t{2}\n'.format(cur_p, cur_r, cur_conf))
-
- if len(f1s)>0:
- rec_prec_dict = {rec: prec for rec, prec in zip(temp_rec_scores, temp_prec_scores)}
- rec_prec_dict = sorted(rec_prec_dict.items(), key=lambda x: x[0])
- temp_rec_scores = [rec for rec, _ in rec_prec_dict]
- temp_prec_scores = [prec for _, prec in rec_prec_dict]
- return np.round(auc(temp_rec_scores, temp_prec_scores),5), np.round(optimal,5)
- else:
- # When there is no prediction
- return 0, (0,0,0)
-
- @staticmethod
- def binarize(extrs):
- res = defaultdict(lambda: [])
- for sent,extr in extrs.items():
- for ex in extr:
- #Add (a1, r, a2)
- temp = copy(ex)
- temp.args = ex.args[:2]
- res[sent].append(temp)
-
- if len(ex.args) <= 2:
- continue
-
- #Add (a1, r a2 , a3 ...)
- for arg in ex.args[2:]:
- temp.args = [ex.args[0]]
- temp.pred = ex.pred + ' ' + ex.args[1]
- words = arg.split()
-
- #Add preposition of arg to rel
- if words[0].lower() in Benchmark.PREPS:
- temp.pred += ' ' + words[0]
- words = words[1:]
- temp.args.append(' '.join(words))
- res[sent].append(temp)
-
- return res
-
- @staticmethod
- def f1(prec, rec):
- try:
- return 2*prec*rec / (prec+rec)
- except ZeroDivisionError:
- return 0
-
- @staticmethod
- def aggregate_scores_greedily(scores):
- # Greedy match: pick the prediction/gold match with the best f1 and exclude
- # them both, until nothing left matches. Each input square is a [prec, rec]
- # pair. Returns precision and recall as score-and-denominator pairs.
- matches = []
- while True:
- max_s = 0
- gold, pred = None, None
- for i, gold_ss in enumerate(scores):
- if i in [m[0] for m in matches]:
- # Those are already taken rows
- continue
- for j, pred_s in enumerate(scores[i]):
- if j in [m[1] for m in matches]:
- # Those are used columns
- continue
- if pred_s and Benchmark.f1(*pred_s) > max_s:
- max_s = Benchmark.f1(*pred_s)
- gold = i
- pred = j
- if max_s == 0:
- break
- matches.append([gold, pred])
- # Now that matches are determined, compute final scores.
- prec_scores = [scores[i][j][0] for i,j in matches]
- rec_scores = [scores[i][j][1] for i,j in matches]
- total_prec = sum(prec_scores)
- total_rec = sum(rec_scores)
- scoring_metrics = {"precision" : [total_prec, len(scores[0])],
- "recall" : [total_rec, len(scores)],
- "precision_of_matches" : prec_scores,
- "recall_of_matches" : rec_scores
- }
- return scoring_metrics
-
- # Helper functions:
- @staticmethod
- def normalizeDict(d):
- return dict([(Benchmark.normalizeKey(k), v) for k, v in d.items()])
-
- @staticmethod
- def normalizeKey(k):
- # return Benchmark.removePunct(unicode(Benchmark.PTB_unescape(k.replace(' ','')), errors = 'ignore'))
- return Benchmark.removePunct(str(Benchmark.PTB_unescape(k.replace(' ',''))))
-
- @staticmethod
- def PTB_escape(s):
- for u, e in Benchmark.PTB_ESCAPES:
- s = s.replace(u, e)
- return s
-
- @staticmethod
- def PTB_unescape(s):
- for u, e in Benchmark.PTB_ESCAPES:
- s = s.replace(e, u)
- return s
-
- @staticmethod
- def removePunct(s):
- return Benchmark.regex.sub('', s)
-
- # CONSTANTS
- regex = re.compile('[%s]' % re.escape(string.punctuation))
-
- # Penn treebank bracket escapes
- # Taken from: https://github.com/nlplab/brat/blob/master/server/src/gtbtokenize.py
- PTB_ESCAPES = [('(', '-LRB-'),
- (')', '-RRB-'),
- ('[', '-LSB-'),
- (']', '-RSB-'),
- ('{', '-LCB-'),
- ('}', '-RCB-'),]
-
- PREPS = ['above','across','against','along','among','around','at','before','behind','below','beneath','beside','between','by','for','from','in','into','near','of','off','on','to','toward','under','upon','with','within']
-
-def f_beta(precision, recall, beta = 1):
- """
- Get F_beta score from precision and recall.
- """
- beta = float(beta) # Make sure that results are in float
- return (1 + pow(beta, 2)) * (precision * recall) / ((pow(beta, 2) * precision) + recall)
-
-
-if __name__ == '__main__':
- args = docopt.docopt(__doc__)
- logging.debug(args)
-
- if args['--stanford']:
- predicted = StanfordReader()
- predicted.read(args['--stanford'])
-
- if args['--props']:
- predicted = PropSReader()
- predicted.read(args['--props'])
-
- if args['--ollie']:
- predicted = OllieReader()
- predicted.read(args['--ollie'])
-
- if args['--reverb']:
- predicted = ReVerbReader()
- predicted.read(args['--reverb'])
-
- if args['--clausie']:
- predicted = ClausieReader()
- predicted.read(args['--clausie'])
-
- if args['--openiefour']:
- predicted = OpenieFourReader()
- predicted.read(args['--openiefour'])
-
- if args['--openiefive']:
- predicted = OpenieFiveReader()
- predicted.read(args['--openiefive'])
-
- if args['--benchmarkGold']:
- predicted = BenchmarkGoldReader()
- predicted.read(args['--benchmarkGold'])
-
- if args['--tabbed']:
- predicted = TabReader()
- predicted.read(args['--tabbed'])
-
- if args['--binaryMatch']:
- matchingFunc = Matcher.binary_tuple_match
-
- elif args['--simpleMatch']:
- matchingFunc = Matcher.simple_tuple_match
-
- elif args['--exactMatch']:
- matchingFunc = Matcher.argMatch
-
- elif args['--predMatch']:
- matchingFunc = Matcher.predMatch
-
- elif args['--lexicalMatch']:
- matchingFunc = Matcher.lexicalMatch
-
- elif args['--strictMatch']:
- matchingFunc = Matcher.tuple_match
-
- else:
- matchingFunc = Matcher.binary_linient_tuple_match
-
- b = Benchmark(args['--gold'])
- out_filename = args['--out']
-
- logging.info("Writing PR curve of {} to {}".format(predicted.name, out_filename))
-
- auc, optimal_f1_point = b.compare(predicted = predicted.oie,
- matchingFunc = matchingFunc,
- output_fn = out_filename,
- error_file = args["--error-file"],
- binary = args["--binary"])
-
- print("AUC: {}\t Optimal (precision, recall, F1): {}".format( auc, optimal_f1_point ))
diff --git a/3-NLP_services/src/Multi2OIE/carb/extraction.py b/3-NLP_services/src/Multi2OIE/carb/extraction.py
deleted file mode 100644
index 0928411..0000000
--- a/3-NLP_services/src/Multi2OIE/carb/extraction.py
+++ /dev/null
@@ -1,444 +0,0 @@
-from sklearn.preprocessing.data import binarize
-from carb.argument import Argument
-from operator import itemgetter
-from collections import defaultdict
-import nltk
-import itertools
-import logging
-import numpy as np
-import pdb
-
-class Extraction:
- """
- Stores sentence, single predicate and corresponding arguments.
- """
- def __init__(self, pred, head_pred_index, sent, confidence, question_dist = '', index = -1):
- self.pred = pred
- self.head_pred_index = head_pred_index
- self.sent = sent
- self.args = []
- self.confidence = confidence
- self.matched = []
- self.questions = {}
- self.indsForQuestions = defaultdict(lambda: set())
- self.is_mwp = False
- self.question_dist = question_dist
- self.index = index
-
- def distArgFromPred(self, arg):
- assert(len(self.pred) == 2)
- dists = []
- for x in self.pred[1]:
- for y in arg.indices:
- dists.append(abs(x - y))
-
- return min(dists)
-
- def argsByDistFromPred(self, question):
- return sorted(self.questions[question], key = lambda arg: self.distArgFromPred(arg))
-
- def addArg(self, arg, question = None):
- self.args.append(arg)
- if question:
- self.questions[question] = self.questions.get(question,[]) + [Argument(arg)]
-
- def noPronounArgs(self):
- """
- Returns True iff all of this extraction's arguments are not pronouns.
- """
- for (a, _) in self.args:
- tokenized_arg = nltk.word_tokenize(a)
- if len(tokenized_arg) == 1:
- _, pos_tag = nltk.pos_tag(tokenized_arg)[0]
- if ('PRP' in pos_tag):
- return False
- return True
-
- def isContiguous(self):
- return all([indices for (_, indices) in self.args])
-
- def toBinary(self):
- ''' Try to represent this extraction's arguments as binary
- If fails, this function will return an empty list. '''
-
- ret = [self.elementToStr(self.pred)]
-
- if len(self.args) == 2:
- # we're in luck
- return ret + [self.elementToStr(arg) for arg in self.args]
-
- return []
-
- if not self.isContiguous():
- # give up on non contiguous arguments (as we need indexes)
- return []
-
- # otherwise, try to merge based on indices
- # TODO: you can explore other methods for doing this
- binarized = self.binarizeByIndex()
-
- if binarized:
- return ret + binarized
-
- return []
-
-
- def elementToStr(self, elem, print_indices = True):
- ''' formats an extraction element (pred or arg) as a raw string
- removes indices and trailing spaces '''
- if print_indices:
- return str(elem)
- if isinstance(elem, str):
- return elem
- if isinstance(elem, tuple):
- ret = elem[0].rstrip().lstrip()
- else:
- ret = ' '.join(elem.words)
- assert ret, "empty element? {0}".format(elem)
- return ret
-
- def binarizeByIndex(self):
- extraction = [self.pred] + self.args
- markPred = [(w, ind, i == 0) for i, (w, ind) in enumerate(extraction)]
- sortedExtraction = sorted(markPred, key = lambda ws, indices, f : indices[0])
- s = ' '.join(['{1} {0} {1}'.format(self.elementToStr(elem), SEP) if elem[2] else self.elementToStr(elem) for elem in sortedExtraction])
- binArgs = [a for a in s.split(SEP) if a.rstrip().lstrip()]
-
- if len(binArgs) == 2:
- return binArgs
-
- # failure
- return []
-
- def bow(self):
- return ' '.join([self.elementToStr(elem) for elem in [self.pred] + self.args])
-
- def getSortedArgs(self):
- """
- Sort the list of arguments.
- If a question distribution is provided - use it,
- otherwise, default to the order of appearance in the sentence.
- """
- if self.question_dist:
- # There's a question distribtuion - use it
- return self.sort_args_by_distribution()
- ls = []
- for q, args in self.questions.iteritems():
- if (len(args) != 1):
- logging.debug("Not one argument: {}".format(args))
- continue
- arg = args[0]
- indices = list(self.indsForQuestions[q].union(arg.indices))
- if not indices:
- logging.debug("Empty indexes for arg {} -- backing to zero".format(arg))
- indices = [0]
- ls.append(((arg, q), indices))
- return [a for a, _ in sorted(ls,
- key = lambda _, indices: min(indices))]
-
- def question_prob_for_loc(self, question, loc):
- """
- Returns the probability of the given question leading to argument
- appearing in the given location in the output slot.
- """
- gen_question = generalize_question(question)
- q_dist = self.question_dist[gen_question]
- logging.debug("distribution of {}: {}".format(gen_question,
- q_dist))
-
- return float(q_dist.get(loc, 0)) / \
- sum(q_dist.values())
-
- def sort_args_by_distribution(self):
- """
- Use this instance's question distribution (this func assumes it exists)
- in determining the positioning of the arguments.
- Greedy algorithm:
- 0. Decide on which argument will serve as the ``subject'' (first slot) of this extraction
- 0.1 Based on the most probable one for this spot
- (special care is given to select the highly-influential subject position)
- 1. For all other arguments, sort arguments by the prevalance of their questions
- 2. For each argument:
- 2.1 Assign to it the most probable slot still available
- 2.2 If non such exist (fallback) - default to put it in the last location
- """
- INF_LOC = 100 # Used as an impractical last argument
-
- # Store arguments by slot
- ret = {INF_LOC: []}
- logging.debug("sorting: {}".format(self.questions))
-
- # Find the most suitable arguemnt for the subject location
- logging.debug("probs for subject: {}".format([(q, self.question_prob_for_loc(q, 0))
- for (q, _) in self.questions.iteritems()]))
-
- subj_question, subj_args = max(self.questions.iteritems(),
- key = lambda q, _: self.question_prob_for_loc(q, 0))
-
- ret[0] = [(subj_args[0], subj_question)]
-
- # Find the rest
- for (question, args) in sorted([(q, a)
- for (q, a) in self.questions.iteritems() if (q not in [subj_question])],
- key = lambda q, _: \
- sum(self.question_dist[generalize_question(q)].values()),
- reverse = True):
- gen_question = generalize_question(question)
- arg = args[0]
- assigned_flag = False
- for (loc, count) in sorted(self.question_dist[gen_question].iteritems(),
- key = lambda _ , c: c,
- reverse = True):
- if loc not in ret:
- # Found an empty slot for this item
- # Place it there and break out
- ret[loc] = [(arg, question)]
- assigned_flag = True
- break
-
- if not assigned_flag:
- # Add this argument to the non-assigned (hopefully doesn't happen much)
- logging.debug("Couldn't find an open assignment for {}".format((arg, gen_question)))
- ret[INF_LOC].append((arg, question))
-
- logging.debug("Linearizing arg list: {}".format(ret))
-
- # Finished iterating - consolidate and return a list of arguments
- return [arg
- for (_, arg_ls) in sorted(ret.iteritems(),
- key = lambda k, v: int(k))
- for arg in arg_ls]
-
-
- def __str__(self):
- pred_str = self.elementToStr(self.pred)
- return '{}\t{}\t{}'.format(self.get_base_verb(pred_str),
- self.compute_global_pred(pred_str,
- self.questions.keys()),
- '\t'.join([escape_special_chars(self.augment_arg_with_question(self.elementToStr(arg),
- question))
- for arg, question in self.getSortedArgs()]))
-
- def get_base_verb(self, surface_pred):
- """
- Given the surface pred, return the original annotated verb
- """
- # Assumes that at this point the verb is always the last word
- # in the surface predicate
- return surface_pred.split(' ')[-1]
-
-
- def compute_global_pred(self, surface_pred, questions):
- """
- Given the surface pred and all instansiations of questions,
- make global coherence decisions regarding the final form of the predicate
- This should hopefully take care of multi word predicates and correct inflections
- """
- from operator import itemgetter
- split_surface = surface_pred.split(' ')
-
- if len(split_surface) > 1:
- # This predicate has a modal preceding the base verb
- verb = split_surface[-1]
- ret = split_surface[:-1] # get all of the elements in the modal
- else:
- verb = split_surface[0]
- ret = []
-
- split_questions = map(lambda question: question.split(' '),
- questions)
-
- preds = map(normalize_element,
- map(itemgetter(QUESTION_TRG_INDEX),
- split_questions))
- if len(set(preds)) > 1:
- # This predicate is appears in multiple ways, let's stick to the base form
- ret.append(verb)
-
- if len(set(preds)) == 1:
- # Change the predciate to the inflected form
- # if there's exactly one way in which the predicate is conveyed
- ret.append(preds[0])
-
- pps = map(normalize_element,
- map(itemgetter(QUESTION_PP_INDEX),
- split_questions))
-
- obj2s = map(normalize_element,
- map(itemgetter(QUESTION_OBJ2_INDEX),
- split_questions))
-
- if (len(set(pps)) == 1):
- # If all questions for the predicate include the same pp attachemnt -
- # assume it's a multiword predicate
- self.is_mwp = True # Signal to arguments that they shouldn't take the preposition
- ret.append(pps[0])
-
- # Concat all elements in the predicate and return
- return " ".join(ret).strip()
-
-
- def augment_arg_with_question(self, arg, question):
- """
- Decide what elements from the question to incorporate in the given
- corresponding argument
- """
- # Parse question
- wh, aux, sbj, trg, obj1, pp, obj2 = map(normalize_element,
- question.split(' ')[:-1]) # Last split is the question mark
-
- # Place preposition in argument
- # This is safer when dealing with n-ary arguments, as it's directly attaches to the
- # appropriate argument
- if (not self.is_mwp) and pp and (not obj2):
- if not(arg.startswith("{} ".format(pp))):
- # Avoid repeating the preporition in cases where both question and answer contain it
- return " ".join([pp,
- arg])
-
- # Normal cases
- return arg
-
- def clusterScore(self, cluster):
- """
- Calculate cluster density score as the mean distance of the maximum distance of each slot.
- Lower score represents a denser cluster.
- """
- logging.debug("*-*-*- Cluster: {}".format(cluster))
-
- # Find global centroid
- arr = np.array([x for ls in cluster for x in ls])
- centroid = np.sum(arr)/arr.shape[0]
- logging.debug("Centroid: {}".format(centroid))
-
- # Calculate mean over all maxmimum points
- return np.average([max([abs(x - centroid) for x in ls]) for ls in cluster])
-
- def resolveAmbiguity(self):
- """
- Heursitic to map the elments (argument and predicates) of this extraction
- back to the indices of the sentence.
- """
- ## TODO: This removes arguments for which there was no consecutive span found
- ## Part of these are non-consecutive arguments,
- ## but other could be a bug in recognizing some punctuation marks
-
- elements = [self.pred] \
- + [(s, indices)
- for (s, indices)
- in self.args
- if indices]
- logging.debug("Resolving ambiguity in: {}".format(elements))
-
- # Collect all possible combinations of arguments and predicate indices
- # (hopefully it's not too much)
- all_combinations = list(itertools.product(*map(itemgetter(1), elements)))
- logging.debug("Number of combinations: {}".format(len(all_combinations)))
-
- # Choose the ones with best clustering and unfold them
- resolved_elements = zip(map(itemgetter(0), elements),
- min(all_combinations,
- key = lambda cluster: self.clusterScore(cluster)))
- logging.debug("Resolved elements = {}".format(resolved_elements))
-
- self.pred = resolved_elements[0]
- self.args = resolved_elements[1:]
-
- def conll(self, external_feats = {}):
- """
- Return a CoNLL string representation of this extraction
- """
- return '\n'.join(["\t".join(map(str,
- [i, w] + \
- list(self.pred) + \
- [self.head_pred_index] + \
- external_feats + \
- [self.get_label(i)]))
- for (i, w)
- in enumerate(self.sent.split(" "))]) + '\n'
-
- def get_label(self, index):
- """
- Given an index of a word in the sentence -- returns the appropriate BIO conll label
- Assumes that ambiguation was already resolved.
- """
- # Get the element(s) in which this index appears
- ent = [(elem_ind, elem)
- for (elem_ind, elem)
- in enumerate(map(itemgetter(1),
- [self.pred] + self.args))
- if index in elem]
-
- if not ent:
- # index doesnt appear in any element
- return "O"
-
- if len(ent) > 1:
- # The same word appears in two different answers
- # In this case we choose the first one as label
- logging.warn("Index {} appears in one than more element: {}".\
- format(index,
- "\t".join(map(str,
- [ent,
- self.sent,
- self.pred,
- self.args]))))
-
- ## Some indices appear in more than one argument (ones where the above message appears)
- ## From empricial observation, these seem to mostly consist of different levels of granularity:
- ## what had _ been taken _ _ _ ? loan commitments topping $ 3 billion
- ## how much had _ been taken _ _ _ ? topping $ 3 billion
- ## In these cases we heuristically choose the shorter answer span, hopefully creating minimal spans
- ## E.g., in this example two arguemnts are created: (loan commitments, topping $ 3 billion)
-
- elem_ind, elem = min(ent, key = lambda _, ls: len(ls))
-
- # Distinguish between predicate and arguments
- prefix = "P" if elem_ind == 0 else "A{}".format(elem_ind - 1)
-
- # Distinguish between Beginning and Inside labels
- suffix = "B" if index == elem[0] else "I"
-
- return "{}-{}".format(prefix, suffix)
-
- def __str__(self):
- return '{0}\t{1}'.format(self.elementToStr(self.pred,
- print_indices = True),
- '\t'.join([self.elementToStr(arg)
- for arg
- in self.args]))
-
-# Flatten a list of lists
-flatten = lambda l: [item for sublist in l for item in sublist]
-
-
-def normalize_element(elem):
- """
- Return a surface form of the given question element.
- the output should be properly able to precede a predicate (or blank otherwise)
- """
- return elem.replace("_", " ") \
- if (elem != "_")\
- else ""
-
-## Helper functions
-def escape_special_chars(s):
- return s.replace('\t', '\\t')
-
-
-def generalize_question(question):
- """
- Given a question in the context of the sentence and the predicate index within
- the question - return a generalized version which extracts only order-imposing features
- """
- import nltk # Using nltk since couldn't get spaCy to agree on the tokenization
- wh, aux, sbj, trg, obj1, pp, obj2 = question.split(' ')[:-1] # Last split is the question mark
- return ' '.join([wh, sbj, obj1])
-
-
-
-## CONSTANTS
-SEP = ';;;'
-QUESTION_TRG_INDEX = 3 # index of the predicate within the question
-QUESTION_PP_INDEX = 5
-QUESTION_OBJ2_INDEX = 6
diff --git a/3-NLP_services/src/Multi2OIE/carb/goldReader.py b/3-NLP_services/src/Multi2OIE/carb/goldReader.py
deleted file mode 100644
index 3b3a12e..0000000
--- a/3-NLP_services/src/Multi2OIE/carb/goldReader.py
+++ /dev/null
@@ -1,53 +0,0 @@
-from carb.oieReader import OieReader
-from carb.extraction import Extraction
-from _collections import defaultdict
-import ipdb
-
-class GoldReader(OieReader):
-
- # Path relative to repo root folder
- default_filename = './oie_corpus/all.oie'
-
- def __init__(self):
- self.name = 'Gold'
-
- def read(self, fn):
- d = defaultdict(lambda: [])
- multilingual = False
- for lang in ['spanish']:
- if lang in fn:
- multilingual = True
- encoding = lang
- break
- if multilingual and encoding == 'spanish':
- fin = open(fn, 'r', encoding='latin-1')
- else:
- fin = open(fn)
- #with open(fn) as fin:
- for line_ind, line in enumerate(fin):
- data = line.strip().split('\t')
- text, rel = data[:2]
- args = data[2:]
- confidence = 1
-
- curExtraction = Extraction(pred = rel.strip(),
- head_pred_index = None,
- sent = text.strip(),
- confidence = float(confidence),
- index = line_ind)
- for arg in args:
- if "C: " in arg:
- continue
- curExtraction.addArg(arg.strip())
-
- d[text.strip()].append(curExtraction)
- self.oie = d
-
-
-if __name__ == '__main__' :
- g = GoldReader()
- g.read('../oie_corpus/all.oie', includeNominal = False)
- d = g.oie
- e = d.items()[0]
- print(e[1][0].bow())
- print(g.count())
diff --git a/3-NLP_services/src/Multi2OIE/carb/gold_relabel.py b/3-NLP_services/src/Multi2OIE/carb/gold_relabel.py
deleted file mode 100644
index b205384..0000000
--- a/3-NLP_services/src/Multi2OIE/carb/gold_relabel.py
+++ /dev/null
@@ -1,46 +0,0 @@
-from carb.oieReader import OieReader
-from carb.extraction import Extraction
-from _collections import defaultdict
-import json
-
-class Relabel_GoldReader(OieReader):
-
- # Path relative to repo root folder
- default_filename = './oie_corpus/all.oie'
-
- def __init__(self):
- self.name = 'Relabel_Gold'
-
- def read(self, fn):
- d = defaultdict(lambda: [])
- with open(fn) as fin:
- data = json.load(fin)
- for sentence in data:
- tuples = data[sentence]
- for t in tuples:
- if t["pred"].strip() == "":
- rel = "[is]"
- else:
- rel = t["pred"].replace(" ","")
- confidence = 1
-
- curExtraction = Extraction(pred = rel,
- head_pred_index = None,
- sent = sentence,
- confidence = float(confidence),
- index = None)
- if t["arg0"] != "":
- curExtraction.addArg(t["arg0"])
- if t["arg1"] != "":
- curExtraction.addArg(t["arg1"])
- if t["arg2"] != "":
- curExtraction.addArg(t["arg2"])
- if t["arg3"] != "":
- curExtraction.addArg(t["arg3"])
- if t["temp"] != "":
- curExtraction.addArg(t["temp"])
- if t["loc"] != "":
- curExtraction.addArg(t["loc"])
-
- d[sentence].append(curExtraction)
- self.oie = d
\ No newline at end of file
diff --git a/3-NLP_services/src/Multi2OIE/carb/matcher.py b/3-NLP_services/src/Multi2OIE/carb/matcher.py
deleted file mode 100644
index 6520c8c..0000000
--- a/3-NLP_services/src/Multi2OIE/carb/matcher.py
+++ /dev/null
@@ -1,340 +0,0 @@
-from __future__ import division
-import string
-from nltk.translate.bleu_score import sentence_bleu
-from nltk.corpus import stopwords
-from copy import copy
-import ipdb
-
-class Matcher:
- @staticmethod
- def bowMatch(ref, ex, ignoreStopwords, ignoreCase):
- """
- A binary function testing for exact lexical match (ignoring ordering) between reference
- and predicted extraction
- """
- s1 = ref.bow()
- s2 = ex.bow()
- if ignoreCase:
- s1 = s1.lower()
- s2 = s2.lower()
-
- s1Words = s1.split(' ')
- s2Words = s2.split(' ')
-
- if ignoreStopwords:
- s1Words = Matcher.removeStopwords(s1Words)
- s2Words = Matcher.removeStopwords(s2Words)
-
- return sorted(s1Words) == sorted(s2Words)
-
- @staticmethod
- def predMatch(ref, ex, ignoreStopwords, ignoreCase):
- """
- Return whehter gold and predicted extractions agree on the predicate
- """
- s1 = ref.elementToStr(ref.pred)
- s2 = ex.elementToStr(ex.pred)
- if ignoreCase:
- s1 = s1.lower()
- s2 = s2.lower()
-
- s1Words = s1.split(' ')
- s2Words = s2.split(' ')
-
- if ignoreStopwords:
- s1Words = Matcher.removeStopwords(s1Words)
- s2Words = Matcher.removeStopwords(s2Words)
-
- return s1Words == s2Words
-
-
- @staticmethod
- def argMatch(ref, ex, ignoreStopwords, ignoreCase):
- """
- Return whehter gold and predicted extractions agree on the arguments
- """
- sRef = ' '.join([ref.elementToStr(elem) for elem in ref.args])
- sEx = ' '.join([ex.elementToStr(elem) for elem in ex.args])
-
- count = 0
-
- for w1 in sRef:
- for w2 in sEx:
- if w1 == w2:
- count += 1
-
- # We check how well does the extraction lexically cover the reference
- # Note: this is somewhat lenient as it doesn't penalize the extraction for
- # being too long
- coverage = float(count) / len(sRef)
-
-
- return coverage > Matcher.LEXICAL_THRESHOLD
-
- @staticmethod
- def bleuMatch(ref, ex, ignoreStopwords, ignoreCase):
- sRef = ref.bow()
- sEx = ex.bow()
- bleu = sentence_bleu(references = [sRef.split(' ')], hypothesis = sEx.split(' '))
- return bleu > Matcher.BLEU_THRESHOLD
-
- @staticmethod
- def lexicalMatch(ref, ex, ignoreStopwords, ignoreCase):
- sRef = ref.bow().split(' ')
- sEx = ex.bow().split(' ')
- count = 0
- #for w1 in sRef:
- # if w1 in sEx:
- # count += 1
- # sEx.remove(w1)
- for w1 in sRef:
- for w2 in sEx:
- if w1 == w2:
- count += 1
-
- # We check how well does the extraction lexically cover the reference
- # Note: this is somewhat lenient as it doesn't penalize the extraction for
- # being too long
- coverage = float(count) / len(sRef)
-
- return coverage > Matcher.LEXICAL_THRESHOLD
-
- @staticmethod
- def tuple_match(ref, ex, ignoreStopwords, ignoreCase):
- precision = [0, 0] # 0 out of 0 predicted words match
- recall = [0, 0] # 0 out of 0 reference words match
- # If, for each part, any word is the same as a reference word, then it's a match.
-
- predicted_words = ex.pred.split()
- gold_words = ref.pred.split()
- precision[1] += len(predicted_words)
- recall[1] += len(gold_words)
-
- # matching_words = sum(1 for w in predicted_words if w in gold_words)
- matching_words = 0
- for w in gold_words:
- if w in predicted_words:
- matching_words += 1
- predicted_words.remove(w)
-
- if matching_words == 0:
- return False # t <-> gt is not a match
- precision[0] += matching_words
- recall[0] += matching_words
-
- for i in range(len(ref.args)):
- gold_words = ref.args[i].split()
- recall[1] += len(gold_words)
- if len(ex.args) <= i:
- if i<2:
- return False
- else:
- continue
- predicted_words = ex.args[i].split()
- precision[1] += len(predicted_words)
- matching_words = 0
- for w in gold_words:
- if w in predicted_words:
- matching_words += 1
- predicted_words.remove(w)
-
- if matching_words == 0 and i<2:
- return False # t <-> gt is not a match
- precision[0] += matching_words
- # Currently this slightly penalises systems when the reference
- # reformulates the sentence words, because the reformulation doesn't
- # match the predicted word. It's a one-wrong-word penalty to precision,
- # to all systems that correctly extracted the reformulated word.
- recall[0] += matching_words
-
- prec = 1.0 * precision[0] / precision[1]
- rec = 1.0 * recall[0] / recall[1]
- return [prec, rec]
-
- # STRICTER LINIENT MATCH
- def linient_tuple_match(ref, ex, ignoreStopwords, ignoreCase):
- precision = [0, 0] # 0 out of 0 predicted words match
- recall = [0, 0] # 0 out of 0 reference words match
- # If, for each part, any word is the same as a reference word, then it's a match.
-
- predicted_words = ex.pred.split()
- gold_words = ref.pred.split()
- precision[1] += len(predicted_words)
- recall[1] += len(gold_words)
-
- # matching_words = sum(1 for w in predicted_words if w in gold_words)
- matching_words = 0
- for w in gold_words:
- if w in predicted_words:
- matching_words += 1
- predicted_words.remove(w)
-
- # matching 'be' with its different forms
- forms_of_be = ["be","is","am","are","was","were","been","being"]
- if "be" in predicted_words:
- for form in forms_of_be:
- if form in gold_words:
- matching_words += 1
- predicted_words.remove("be")
- break
-
- if matching_words == 0:
- return [0,0] # t <-> gt is not a match
-
- precision[0] += matching_words
- recall[0] += matching_words
-
- for i in range(len(ref.args)):
- gold_words = ref.args[i].split()
- recall[1] += len(gold_words)
- if len(ex.args) <= i:
- if i<2:
- return [0,0] # changed
- else:
- continue
- predicted_words = ex.args[i].split()
- precision[1] += len(predicted_words)
- matching_words = 0
- for w in gold_words:
- if w in predicted_words:
- matching_words += 1
- predicted_words.remove(w)
-
- precision[0] += matching_words
- # Currently this slightly penalises systems when the reference
- # reformulates the sentence words, because the reformulation doesn't
- # match the predicted word. It's a one-wrong-word penalty to precision,
- # to all systems that correctly extracted the reformulated word.
- recall[0] += matching_words
-
- if(precision[1] == 0):
- prec = 0
- else:
- prec = 1.0 * precision[0] / precision[1]
- if(recall[1] == 0):
- rec = 0
- else:
- rec = 1.0 * recall[0] / recall[1]
- return [prec, rec]
-
-
- @staticmethod
- def simple_tuple_match(ref, ex, ignoreStopwords, ignoreCase):
- ref.args = [ref.args[0], ' '.join(ref.args[1:])]
- ex.args = [ex.args[0], ' '.join(ex.args[1:])]
-
- precision = [0, 0] # 0 out of 0 predicted words match
- recall = [0, 0] # 0 out of 0 reference words match
- # If, for each part, any word is the same as a reference word, then it's a match.
-
- predicted_words = ex.pred.split()
- gold_words = ref.pred.split()
- precision[1] += len(predicted_words)
- recall[1] += len(gold_words)
-
- matching_words = 0
- for w in gold_words:
- if w in predicted_words:
- matching_words += 1
- predicted_words.remove(w)
-
- precision[0] += matching_words
- recall[0] += matching_words
-
- for i in range(len(ref.args)):
- gold_words = ref.args[i].split()
- recall[1] += len(gold_words)
- if len(ex.args) <= i:
- break
- predicted_words = ex.args[i].split()
- precision[1] += len(predicted_words)
- matching_words = 0
- for w in gold_words:
- if w in predicted_words:
- matching_words += 1
- predicted_words.remove(w)
- precision[0] += matching_words
-
- # Currently this slightly penalises systems when the reference
- # reformulates the sentence words, because the reformulation doesn't
- # match the predicted word. It's a one-wrong-word penalty to precision,
- # to all systems that correctly extracted the reformulated word.
- recall[0] += matching_words
-
- prec = 1.0 * precision[0] / precision[1]
- rec = 1.0 * recall[0] / recall[1]
- return [prec, rec]
-
- # @staticmethod
- # def binary_linient_tuple_match(ref, ex, ignoreStopwords, ignoreCase):
- # if len(ref.args)>=2:
- # # r = ref.copy()
- # r = copy(ref)
- # r.args = [ref.args[0], ' '.join(ref.args[1:])]
- # else:
- # r = ref
- # if len(ex.args)>=2:
- # # e = ex.copy()
- # e = copy(ex)
- # e.args = [ex.args[0], ' '.join(ex.args[1:])]
- # else:
- # e = ex
- # return Matcher.linient_tuple_match(r, e, ignoreStopwords, ignoreCase)
-
- @staticmethod
- def binary_linient_tuple_match(ref, ex, ignoreStopwords, ignoreCase):
- if len(ref.args)>=2:
- r = copy(ref)
- r.args = [ref.args[0], ' '.join(ref.args[1:])]
- else:
- r = ref
- if len(ex.args)>=2:
- e = copy(ex)
- e.args = [ex.args[0], ' '.join(ex.args[1:])]
- else:
- e = ex
- stright_match = Matcher.linient_tuple_match(r, e, ignoreStopwords, ignoreCase)
-
- said_type_reln = ["said", "told", "added", "adds", "says", "adds"]
- said_type_sentence = False
- for said_verb in said_type_reln:
- if said_verb in ref.pred:
- said_type_sentence = True
- break
- if not said_type_sentence:
- return stright_match
- else:
- if len(ex.args)>=2:
- e = copy(ex)
- e.args = [' '.join(ex.args[1:]), ex.args[0]]
- else:
- e = ex
- reverse_match = Matcher.linient_tuple_match(r, e, ignoreStopwords, ignoreCase)
-
- return max(stright_match, reverse_match)
-
- @staticmethod
- def binary_tuple_match(ref, ex, ignoreStopwords, ignoreCase):
- if len(ref.args)>=2:
- # r = ref.copy()
- r = copy(ref)
- r.args = [ref.args[0], ' '.join(ref.args[1:])]
- else:
- r = ref
- if len(ex.args)>=2:
- # e = ex.copy()
- e = copy(ex)
- e.args = [ex.args[0], ' '.join(ex.args[1:])]
- else:
- e = ex
- return Matcher.tuple_match(r, e, ignoreStopwords, ignoreCase)
-
- @staticmethod
- def removeStopwords(ls):
- return [w for w in ls if w.lower() not in Matcher.stopwords]
-
- # CONSTANTS
- BLEU_THRESHOLD = 0.4
- LEXICAL_THRESHOLD = 0.5 # Note: changing this value didn't change the ordering of the tested systems
- stopwords = stopwords.words('english') + list(string.punctuation)
-
diff --git a/3-NLP_services/src/Multi2OIE/carb/oieReader.py b/3-NLP_services/src/Multi2OIE/carb/oieReader.py
deleted file mode 100644
index f24d022..0000000
--- a/3-NLP_services/src/Multi2OIE/carb/oieReader.py
+++ /dev/null
@@ -1,45 +0,0 @@
-class OieReader:
-
- def read(self, fn, includeNominal):
- ''' should set oie as a class member
- as a dictionary of extractions by sentence'''
- raise Exception("Don't run me")
-
- def count(self):
- ''' number of extractions '''
- return sum([len(extractions) for _, extractions in self.oie.items()])
-
- def split_to_corpus(self, corpus_fn, out_fn):
- """
- Given a corpus file name, containing a list of sentences
- print only the extractions pertaining to it to out_fn in a tab separated format:
- sent, prob, pred, arg1, arg2, ...
- """
- raw_sents = [line.strip() for line in open(corpus_fn)]
- with open(out_fn, 'w') as fout:
- for line in self.get_tabbed().split('\n'):
- data = line.split('\t')
- sent = data[0]
- if sent in raw_sents:
- fout.write(line + '\n')
-
- def output_tabbed(self, out_fn):
- """
- Write a tabbed represenation of this corpus.
- """
- with open(out_fn, 'w') as fout:
- fout.write(self.get_tabbed())
-
- def get_tabbed(self):
- """
- Get a tabbed format representation of this corpus (assumes that input was
- already read).
- """
- return "\n".join(['\t'.join(map(str,
- [ex.sent,
- ex.confidence,
- ex.pred,
- '\t'.join(ex.args)]))
- for (sent, exs) in self.oie.iteritems()
- for ex in exs])
-
diff --git a/3-NLP_services/src/Multi2OIE/carb/oie_readers/__init__.py b/3-NLP_services/src/Multi2OIE/carb/oie_readers/__init__.py
deleted file mode 100644
index e69de29..0000000
diff --git a/3-NLP_services/src/Multi2OIE/carb/oie_readers/argument.py b/3-NLP_services/src/Multi2OIE/carb/oie_readers/argument.py
deleted file mode 100644
index 6fec2e0..0000000
--- a/3-NLP_services/src/Multi2OIE/carb/oie_readers/argument.py
+++ /dev/null
@@ -1,21 +0,0 @@
-import nltk
-from operator import itemgetter
-
-class Argument:
- def __init__(self, arg):
- self.words = [x for x in arg[0].strip().split(' ') if x]
- self.posTags = map(itemgetter(1), nltk.pos_tag(self.words))
- self.indices = arg[1]
- self.feats = {}
-
- def __str__(self):
- return "({})".format('\t'.join(map(str,
- [escape_special_chars(' '.join(self.words)),
- str(self.indices)])))
-
-COREF = 'coref'
-
-## Helper functions
-def escape_special_chars(s):
- return s.replace('\t', '\\t')
-
diff --git a/3-NLP_services/src/Multi2OIE/carb/oie_readers/benchmarkGoldReader.py b/3-NLP_services/src/Multi2OIE/carb/oie_readers/benchmarkGoldReader.py
deleted file mode 100644
index 9882da9..0000000
--- a/3-NLP_services/src/Multi2OIE/carb/oie_readers/benchmarkGoldReader.py
+++ /dev/null
@@ -1,55 +0,0 @@
-""" Usage:
- benchmarkGoldReader --in=INPUT_FILE
-
-Read a tab-formatted file.
-Each line consists of:
-sent, prob, pred, arg1, arg2, ...
-
-"""
-
-from oie_readers.oieReader import OieReader
-from oie_readers.extraction import Extraction
-from docopt import docopt
-import logging
-
-logging.basicConfig(level = logging.DEBUG)
-
-class BenchmarkGoldReader(OieReader):
-
- def __init__(self):
- self.name = 'BenchmarkGoldReader'
-
- def read(self, fn):
- """
- Read a tabbed format line
- Each line consists of:
- sent, prob, pred, arg1, arg2, ...
- """
- d = {}
- ex_index = 0
- with open(fn) as fin:
- for line in fin:
- if not line.strip():
- continue
- data = line.strip().split('\t')
- text, rel = data[:2]
- curExtraction = Extraction(pred = rel.strip(),
- head_pred_index = None,
- sent = text.strip(),
- confidence = 1.0,
- question_dist = "./question_distributions/dist_wh_sbj_obj1.json",
- index = ex_index)
- ex_index += 1
-
- for arg in data[2:]:
- curExtraction.addArg(arg.strip())
-
- d[text] = d.get(text, []) + [curExtraction]
- self.oie = d
-
-
-if __name__ == "__main__":
- args = docopt(__doc__)
- input_fn = args["--in"]
- tr = BenchmarkGoldReader()
- tr.read(input_fn)
diff --git a/3-NLP_services/src/Multi2OIE/carb/oie_readers/clausieReader.py b/3-NLP_services/src/Multi2OIE/carb/oie_readers/clausieReader.py
deleted file mode 100644
index b29606a..0000000
--- a/3-NLP_services/src/Multi2OIE/carb/oie_readers/clausieReader.py
+++ /dev/null
@@ -1,90 +0,0 @@
-""" Usage:
- --in=INPUT_FILE --out=OUTPUT_FILE [--debug]
-
-Convert to tabbed format
-"""
-# External imports
-import logging
-from pprint import pprint
-from pprint import pformat
-from docopt import docopt
-
-# Local imports
-from oie_readers.oieReader import OieReader
-from oie_readers.extraction import Extraction
-import ipdb
-#=-----
-
-class ClausieReader(OieReader):
-
- def __init__(self):
- self.name = 'ClausIE'
-
- def read(self, fn):
- d = {}
- with open(fn, encoding="utf-8") as fin:
- for line in fin:
- data = line.strip().split('\t')
- if len(data) == 1:
- text = data[0]
- elif len(data) == 5:
- arg1, rel, arg2 = [s[1:-1] for s in data[1:4]]
- confidence = data[4]
-
- curExtraction = Extraction(pred = rel,
- head_pred_index = -1,
- sent = text,
- confidence = float(confidence))
-
- curExtraction.addArg(arg1)
- curExtraction.addArg(arg2)
- d[text] = d.get(text, []) + [curExtraction]
- self.oie = d
- # self.normalizeConfidence()
-
- # # remove exxtractions below the confidence threshold
- # if type(self.threshold) != type(None):
- # new_d = {}
- # for sent in self.oie:
- # for extraction in self.oie[sent]:
- # if extraction.confidence < self.threshold:
- # continue
- # else:
- # new_d[sent] = new_d.get(sent, []) + [extraction]
- # self.oie = new_d
-
-
-
- def normalizeConfidence(self):
- ''' Normalize confidence to resemble probabilities '''
- EPSILON = 1e-3
-
- confidences = [extraction.confidence for sent in self.oie for extraction in self.oie[sent]]
- maxConfidence = max(confidences)
- minConfidence = min(confidences)
-
- denom = maxConfidence - minConfidence + (2*EPSILON)
-
- for sent, extractions in self.oie.items():
- for extraction in extractions:
- extraction.confidence = ( (extraction.confidence - minConfidence) + EPSILON) / denom
-
-
-
-if __name__ == "__main__":
- # Parse command line arguments
- args = docopt(__doc__)
- inp_fn = args["--in"]
- out_fn = args["--out"]
- debug = args["--debug"]
- if debug:
- logging.basicConfig(level = logging.DEBUG)
- else:
- logging.basicConfig(level = logging.INFO)
-
-
- oie = ClausieReader()
- oie.read(inp_fn)
- oie.output_tabbed(out_fn)
-
- logging.info("DONE")
diff --git a/3-NLP_services/src/Multi2OIE/carb/oie_readers/extraction.py b/3-NLP_services/src/Multi2OIE/carb/oie_readers/extraction.py
deleted file mode 100644
index 6db8479..0000000
--- a/3-NLP_services/src/Multi2OIE/carb/oie_readers/extraction.py
+++ /dev/null
@@ -1,444 +0,0 @@
-from sklearn.preprocessing.data import binarize
-from oie_readers.argument import Argument
-from operator import itemgetter
-from collections import defaultdict
-import nltk
-import itertools
-import logging
-import numpy as np
-import pdb
-
-class Extraction:
- """
- Stores sentence, single predicate and corresponding arguments.
- """
- def __init__(self, pred, head_pred_index, sent, confidence, question_dist = '', index = -1):
- self.pred = pred
- self.head_pred_index = head_pred_index
- self.sent = sent
- self.args = []
- self.confidence = confidence
- self.matched = []
- self.questions = {}
- self.indsForQuestions = defaultdict(lambda: set())
- self.is_mwp = False
- self.question_dist = question_dist
- self.index = index
-
- def distArgFromPred(self, arg):
- assert(len(self.pred) == 2)
- dists = []
- for x in self.pred[1]:
- for y in arg.indices:
- dists.append(abs(x - y))
-
- return min(dists)
-
- def argsByDistFromPred(self, question):
- return sorted(self.questions[question], key = lambda arg: self.distArgFromPred(arg))
-
- def addArg(self, arg, question = None):
- self.args.append(arg)
- if question:
- self.questions[question] = self.questions.get(question,[]) + [Argument(arg)]
-
- def noPronounArgs(self):
- """
- Returns True iff all of this extraction's arguments are not pronouns.
- """
- for (a, _) in self.args:
- tokenized_arg = nltk.word_tokenize(a)
- if len(tokenized_arg) == 1:
- _, pos_tag = nltk.pos_tag(tokenized_arg)[0]
- if ('PRP' in pos_tag):
- return False
- return True
-
- def isContiguous(self):
- return all([indices for (_, indices) in self.args])
-
- def toBinary(self):
- ''' Try to represent this extraction's arguments as binary
- If fails, this function will return an empty list. '''
-
- ret = [self.elementToStr(self.pred)]
-
- if len(self.args) == 2:
- # we're in luck
- return ret + [self.elementToStr(arg) for arg in self.args]
-
- return []
-
- if not self.isContiguous():
- # give up on non contiguous arguments (as we need indexes)
- return []
-
- # otherwise, try to merge based on indices
- # TODO: you can explore other methods for doing this
- binarized = self.binarizeByIndex()
-
- if binarized:
- return ret + binarized
-
- return []
-
-
- def elementToStr(self, elem, print_indices = True):
- ''' formats an extraction element (pred or arg) as a raw string
- removes indices and trailing spaces '''
- if print_indices:
- return str(elem)
- if isinstance(elem, str):
- return elem
- if isinstance(elem, tuple):
- ret = elem[0].rstrip().lstrip()
- else:
- ret = ' '.join(elem.words)
- assert ret, "empty element? {0}".format(elem)
- return ret
-
- def binarizeByIndex(self):
- extraction = [self.pred] + self.args
- markPred = [(w, ind, i == 0) for i, (w, ind) in enumerate(extraction)]
- sortedExtraction = sorted(markPred, key = lambda ws, indices, f : indices[0])
- s = ' '.join(['{1} {0} {1}'.format(self.elementToStr(elem), SEP) if elem[2] else self.elementToStr(elem) for elem in sortedExtraction])
- binArgs = [a for a in s.split(SEP) if a.rstrip().lstrip()]
-
- if len(binArgs) == 2:
- return binArgs
-
- # failure
- return []
-
- def bow(self):
- return ' '.join([self.elementToStr(elem) for elem in [self.pred] + self.args])
-
- def getSortedArgs(self):
- """
- Sort the list of arguments.
- If a question distribution is provided - use it,
- otherwise, default to the order of appearance in the sentence.
- """
- if self.question_dist:
- # There's a question distribtuion - use it
- return self.sort_args_by_distribution()
- ls = []
- for q, args in self.questions.iteritems():
- if (len(args) != 1):
- logging.debug("Not one argument: {}".format(args))
- continue
- arg = args[0]
- indices = list(self.indsForQuestions[q].union(arg.indices))
- if not indices:
- logging.debug("Empty indexes for arg {} -- backing to zero".format(arg))
- indices = [0]
- ls.append(((arg, q), indices))
- return [a for a, _ in sorted(ls,
- key = lambda _, indices: min(indices))]
-
- def question_prob_for_loc(self, question, loc):
- """
- Returns the probability of the given question leading to argument
- appearing in the given location in the output slot.
- """
- gen_question = generalize_question(question)
- q_dist = self.question_dist[gen_question]
- logging.debug("distribution of {}: {}".format(gen_question,
- q_dist))
-
- return float(q_dist.get(loc, 0)) / \
- sum(q_dist.values())
-
- def sort_args_by_distribution(self):
- """
- Use this instance's question distribution (this func assumes it exists)
- in determining the positioning of the arguments.
- Greedy algorithm:
- 0. Decide on which argument will serve as the ``subject'' (first slot) of this extraction
- 0.1 Based on the most probable one for this spot
- (special care is given to select the highly-influential subject position)
- 1. For all other arguments, sort arguments by the prevalance of their questions
- 2. For each argument:
- 2.1 Assign to it the most probable slot still available
- 2.2 If non such exist (fallback) - default to put it in the last location
- """
- INF_LOC = 100 # Used as an impractical last argument
-
- # Store arguments by slot
- ret = {INF_LOC: []}
- logging.debug("sorting: {}".format(self.questions))
-
- # Find the most suitable arguemnt for the subject location
- logging.debug("probs for subject: {}".format([(q, self.question_prob_for_loc(q, 0))
- for (q, _) in self.questions.iteritems()]))
-
- subj_question, subj_args = max(self.questions.iteritems(),
- key = lambda q, _: self.question_prob_for_loc(q, 0))
-
- ret[0] = [(subj_args[0], subj_question)]
-
- # Find the rest
- for (question, args) in sorted([(q, a)
- for (q, a) in self.questions.iteritems() if (q not in [subj_question])],
- key = lambda q, _: \
- sum(self.question_dist[generalize_question(q)].values()),
- reverse = True):
- gen_question = generalize_question(question)
- arg = args[0]
- assigned_flag = False
- for (loc, count) in sorted(self.question_dist[gen_question].iteritems(),
- key = lambda _ , c: c,
- reverse = True):
- if loc not in ret:
- # Found an empty slot for this item
- # Place it there and break out
- ret[loc] = [(arg, question)]
- assigned_flag = True
- break
-
- if not assigned_flag:
- # Add this argument to the non-assigned (hopefully doesn't happen much)
- logging.debug("Couldn't find an open assignment for {}".format((arg, gen_question)))
- ret[INF_LOC].append((arg, question))
-
- logging.debug("Linearizing arg list: {}".format(ret))
-
- # Finished iterating - consolidate and return a list of arguments
- return [arg
- for (_, arg_ls) in sorted(ret.iteritems(),
- key = lambda k, v: int(k))
- for arg in arg_ls]
-
-
- def __str__(self):
- pred_str = self.elementToStr(self.pred)
- return '{}\t{}\t{}'.format(self.get_base_verb(pred_str),
- self.compute_global_pred(pred_str,
- self.questions.keys()),
- '\t'.join([escape_special_chars(self.augment_arg_with_question(self.elementToStr(arg),
- question))
- for arg, question in self.getSortedArgs()]))
-
- def get_base_verb(self, surface_pred):
- """
- Given the surface pred, return the original annotated verb
- """
- # Assumes that at this point the verb is always the last word
- # in the surface predicate
- return surface_pred.split(' ')[-1]
-
-
- def compute_global_pred(self, surface_pred, questions):
- """
- Given the surface pred and all instansiations of questions,
- make global coherence decisions regarding the final form of the predicate
- This should hopefully take care of multi word predicates and correct inflections
- """
- from operator import itemgetter
- split_surface = surface_pred.split(' ')
-
- if len(split_surface) > 1:
- # This predicate has a modal preceding the base verb
- verb = split_surface[-1]
- ret = split_surface[:-1] # get all of the elements in the modal
- else:
- verb = split_surface[0]
- ret = []
-
- split_questions = map(lambda question: question.split(' '),
- questions)
-
- preds = map(normalize_element,
- map(itemgetter(QUESTION_TRG_INDEX),
- split_questions))
- if len(set(preds)) > 1:
- # This predicate is appears in multiple ways, let's stick to the base form
- ret.append(verb)
-
- if len(set(preds)) == 1:
- # Change the predciate to the inflected form
- # if there's exactly one way in which the predicate is conveyed
- ret.append(preds[0])
-
- pps = map(normalize_element,
- map(itemgetter(QUESTION_PP_INDEX),
- split_questions))
-
- obj2s = map(normalize_element,
- map(itemgetter(QUESTION_OBJ2_INDEX),
- split_questions))
-
- if (len(set(pps)) == 1):
- # If all questions for the predicate include the same pp attachemnt -
- # assume it's a multiword predicate
- self.is_mwp = True # Signal to arguments that they shouldn't take the preposition
- ret.append(pps[0])
-
- # Concat all elements in the predicate and return
- return " ".join(ret).strip()
-
-
- def augment_arg_with_question(self, arg, question):
- """
- Decide what elements from the question to incorporate in the given
- corresponding argument
- """
- # Parse question
- wh, aux, sbj, trg, obj1, pp, obj2 = map(normalize_element,
- question.split(' ')[:-1]) # Last split is the question mark
-
- # Place preposition in argument
- # This is safer when dealing with n-ary arguments, as it's directly attaches to the
- # appropriate argument
- if (not self.is_mwp) and pp and (not obj2):
- if not(arg.startswith("{} ".format(pp))):
- # Avoid repeating the preporition in cases where both question and answer contain it
- return " ".join([pp,
- arg])
-
- # Normal cases
- return arg
-
- def clusterScore(self, cluster):
- """
- Calculate cluster density score as the mean distance of the maximum distance of each slot.
- Lower score represents a denser cluster.
- """
- logging.debug("*-*-*- Cluster: {}".format(cluster))
-
- # Find global centroid
- arr = np.array([x for ls in cluster for x in ls])
- centroid = np.sum(arr)/arr.shape[0]
- logging.debug("Centroid: {}".format(centroid))
-
- # Calculate mean over all maxmimum points
- return np.average([max([abs(x - centroid) for x in ls]) for ls in cluster])
-
- def resolveAmbiguity(self):
- """
- Heursitic to map the elments (argument and predicates) of this extraction
- back to the indices of the sentence.
- """
- ## TODO: This removes arguments for which there was no consecutive span found
- ## Part of these are non-consecutive arguments,
- ## but other could be a bug in recognizing some punctuation marks
-
- elements = [self.pred] \
- + [(s, indices)
- for (s, indices)
- in self.args
- if indices]
- logging.debug("Resolving ambiguity in: {}".format(elements))
-
- # Collect all possible combinations of arguments and predicate indices
- # (hopefully it's not too much)
- all_combinations = list(itertools.product(*map(itemgetter(1), elements)))
- logging.debug("Number of combinations: {}".format(len(all_combinations)))
-
- # Choose the ones with best clustering and unfold them
- resolved_elements = zip(map(itemgetter(0), elements),
- min(all_combinations,
- key = lambda cluster: self.clusterScore(cluster)))
- logging.debug("Resolved elements = {}".format(resolved_elements))
-
- self.pred = resolved_elements[0]
- self.args = resolved_elements[1:]
-
- def conll(self, external_feats = {}):
- """
- Return a CoNLL string representation of this extraction
- """
- return '\n'.join(["\t".join(map(str,
- [i, w] + \
- list(self.pred) + \
- [self.head_pred_index] + \
- external_feats + \
- [self.get_label(i)]))
- for (i, w)
- in enumerate(self.sent.split(" "))]) + '\n'
-
- def get_label(self, index):
- """
- Given an index of a word in the sentence -- returns the appropriate BIO conll label
- Assumes that ambiguation was already resolved.
- """
- # Get the element(s) in which this index appears
- ent = [(elem_ind, elem)
- for (elem_ind, elem)
- in enumerate(map(itemgetter(1),
- [self.pred] + self.args))
- if index in elem]
-
- if not ent:
- # index doesnt appear in any element
- return "O"
-
- if len(ent) > 1:
- # The same word appears in two different answers
- # In this case we choose the first one as label
- logging.warn("Index {} appears in one than more element: {}".\
- format(index,
- "\t".join(map(str,
- [ent,
- self.sent,
- self.pred,
- self.args]))))
-
- ## Some indices appear in more than one argument (ones where the above message appears)
- ## From empricial observation, these seem to mostly consist of different levels of granularity:
- ## what had _ been taken _ _ _ ? loan commitments topping $ 3 billion
- ## how much had _ been taken _ _ _ ? topping $ 3 billion
- ## In these cases we heuristically choose the shorter answer span, hopefully creating minimal spans
- ## E.g., in this example two arguemnts are created: (loan commitments, topping $ 3 billion)
-
- elem_ind, elem = min(ent, key = lambda _, ls: len(ls))
-
- # Distinguish between predicate and arguments
- prefix = "P" if elem_ind == 0 else "A{}".format(elem_ind - 1)
-
- # Distinguish between Beginning and Inside labels
- suffix = "B" if index == elem[0] else "I"
-
- return "{}-{}".format(prefix, suffix)
-
- def __str__(self):
- return '{0}\t{1}'.format(self.elementToStr(self.pred,
- print_indices = True),
- '\t'.join([self.elementToStr(arg)
- for arg
- in self.args]))
-
-# Flatten a list of lists
-flatten = lambda l: [item for sublist in l for item in sublist]
-
-
-def normalize_element(elem):
- """
- Return a surface form of the given question element.
- the output should be properly able to precede a predicate (or blank otherwise)
- """
- return elem.replace("_", " ") \
- if (elem != "_")\
- else ""
-
-## Helper functions
-def escape_special_chars(s):
- return s.replace('\t', '\\t')
-
-
-def generalize_question(question):
- """
- Given a question in the context of the sentence and the predicate index within
- the question - return a generalized version which extracts only order-imposing features
- """
- import nltk # Using nltk since couldn't get spaCy to agree on the tokenization
- wh, aux, sbj, trg, obj1, pp, obj2 = question.split(' ')[:-1] # Last split is the question mark
- return ' '.join([wh, sbj, obj1])
-
-
-
-## CONSTANTS
-SEP = ';;;'
-QUESTION_TRG_INDEX = 3 # index of the predicate within the question
-QUESTION_PP_INDEX = 5
-QUESTION_OBJ2_INDEX = 6
diff --git a/3-NLP_services/src/Multi2OIE/carb/oie_readers/goldReader.py b/3-NLP_services/src/Multi2OIE/carb/oie_readers/goldReader.py
deleted file mode 100644
index e35de0b..0000000
--- a/3-NLP_services/src/Multi2OIE/carb/oie_readers/goldReader.py
+++ /dev/null
@@ -1,44 +0,0 @@
-from oie_readers.oieReader import OieReader
-from oie_readers.extraction import Extraction
-from _collections import defaultdict
-import ipdb
-
-class GoldReader(OieReader):
-
- # Path relative to repo root folder
- default_filename = './oie_corpus/all.oie'
-
- def __init__(self):
- self.name = 'Gold'
-
- def read(self, fn):
- d = defaultdict(lambda: [])
- with open(fn) as fin:
- for line_ind, line in enumerate(fin):
-# print line
- data = line.strip().split('\t')
- text, rel = data[:2]
- args = data[2:]
- confidence = 1
-
- curExtraction = Extraction(pred = rel.strip(),
- head_pred_index = None,
- sent = text.strip(),
- confidence = float(confidence),
- index = line_ind)
- for arg in args:
- if "C: " in arg:
- continue
- curExtraction.addArg(arg.strip())
-
- d[text.strip()].append(curExtraction)
- self.oie = d
-
-
-if __name__ == '__main__' :
- g = GoldReader()
- g.read('../oie_corpus/all.oie', includeNominal = False)
- d = g.oie
- e = d.items()[0]
- print(e[1][0].bow())
- print(g.count())
diff --git a/3-NLP_services/src/Multi2OIE/carb/oie_readers/oieReader.py b/3-NLP_services/src/Multi2OIE/carb/oie_readers/oieReader.py
deleted file mode 100644
index f24d022..0000000
--- a/3-NLP_services/src/Multi2OIE/carb/oie_readers/oieReader.py
+++ /dev/null
@@ -1,45 +0,0 @@
-class OieReader:
-
- def read(self, fn, includeNominal):
- ''' should set oie as a class member
- as a dictionary of extractions by sentence'''
- raise Exception("Don't run me")
-
- def count(self):
- ''' number of extractions '''
- return sum([len(extractions) for _, extractions in self.oie.items()])
-
- def split_to_corpus(self, corpus_fn, out_fn):
- """
- Given a corpus file name, containing a list of sentences
- print only the extractions pertaining to it to out_fn in a tab separated format:
- sent, prob, pred, arg1, arg2, ...
- """
- raw_sents = [line.strip() for line in open(corpus_fn)]
- with open(out_fn, 'w') as fout:
- for line in self.get_tabbed().split('\n'):
- data = line.split('\t')
- sent = data[0]
- if sent in raw_sents:
- fout.write(line + '\n')
-
- def output_tabbed(self, out_fn):
- """
- Write a tabbed represenation of this corpus.
- """
- with open(out_fn, 'w') as fout:
- fout.write(self.get_tabbed())
-
- def get_tabbed(self):
- """
- Get a tabbed format representation of this corpus (assumes that input was
- already read).
- """
- return "\n".join(['\t'.join(map(str,
- [ex.sent,
- ex.confidence,
- ex.pred,
- '\t'.join(ex.args)]))
- for (sent, exs) in self.oie.iteritems()
- for ex in exs])
-
diff --git a/3-NLP_services/src/Multi2OIE/carb/oie_readers/ollieReader.py b/3-NLP_services/src/Multi2OIE/carb/oie_readers/ollieReader.py
deleted file mode 100644
index 91e8b72..0000000
--- a/3-NLP_services/src/Multi2OIE/carb/oie_readers/ollieReader.py
+++ /dev/null
@@ -1,22 +0,0 @@
-from oie_readers.oieReader import OieReader
-from oie_readers.extraction import Extraction
-
-class OllieReader(OieReader):
-
- def __init__(self):
- self.name = 'OLLIE'
-
- def read(self, fn):
- d = {}
- with open(fn) as fin:
- fin.readline() #remove header
- for line in fin:
- data = line.strip().split('\t')
- confidence, arg1, rel, arg2, enabler, attribution, text = data[:7]
- curExtraction = Extraction(pred = rel, head_pred_index = -1, sent = text, confidence = float(confidence))
- curExtraction.addArg(arg1)
- curExtraction.addArg(arg2)
- d[text] = d.get(text, []) + [curExtraction]
- self.oie = d
-
-
diff --git a/3-NLP_services/src/Multi2OIE/carb/oie_readers/openieFiveReader.py b/3-NLP_services/src/Multi2OIE/carb/oie_readers/openieFiveReader.py
deleted file mode 100644
index 4c397ff..0000000
--- a/3-NLP_services/src/Multi2OIE/carb/oie_readers/openieFiveReader.py
+++ /dev/null
@@ -1,38 +0,0 @@
-from oie_readers.oieReader import OieReader
-from oie_readers.extraction import Extraction
-
-class OpenieFiveReader(OieReader):
-
- def __init__(self):
- self.name = 'OpenIE-5'
-
- def read(self, fn):
- d = {}
- with open(fn) as fin:
- for line in fin:
- data = line.strip().split('\t')
- confidence = data[0]
-
- if not all(data[2:5]):
- continue
- arg1, rel = [s[s.index('(') + 1:s.index(',List(')] for s in data[2:4]]
- #args = data[4].strip().split(');')
- #print arg2s
- args = [s[s.index('(') + 1:s.index(',List(')] for s in data[4].strip().split(');')]
-# if arg1 == "the younger La Flesche":
-# print len(args)
- text = data[5]
- if data[1]:
- #print arg1, rel
- s = data[1]
- if not (arg1 + ' ' + rel).startswith(s[s.index('(') + 1:s.index(',List(')]):
- #print "##########Not adding context"
- arg1 = s[s.index('(') + 1:s.index(',List(')] + ' ' + arg1
- #print arg1 + rel, ",,,,, ", s[s.index('(') + 1:s.index(',List(')]
- #curExtraction = Extraction(pred = rel, sent = text, confidence = float(confidence))
- curExtraction = Extraction(pred = rel, head_pred_index = -1, sent = text, confidence = float(confidence))
- curExtraction.addArg(arg1)
- for arg in args:
- curExtraction.addArg(arg)
- d[text] = d.get(text, []) + [curExtraction]
- self.oie = d
diff --git a/3-NLP_services/src/Multi2OIE/carb/oie_readers/openieFourReader.py b/3-NLP_services/src/Multi2OIE/carb/oie_readers/openieFourReader.py
deleted file mode 100644
index 3398c2e..0000000
--- a/3-NLP_services/src/Multi2OIE/carb/oie_readers/openieFourReader.py
+++ /dev/null
@@ -1,59 +0,0 @@
-""" Usage:
- --in=INPUT_FILE --out=OUTPUT_FILE [--debug]
-
-Convert to tabbed format
-"""
-# External imports
-import logging
-from pprint import pprint
-from pprint import pformat
-from docopt import docopt
-
-# Local imports
-from oie_readers.oieReader import OieReader
-from oie_readers.extraction import Extraction
-import ipdb
-
-#=-----
-
-class OpenieFourReader(OieReader):
-
- def __init__(self):
- self.name = 'OpenIE-4'
-
- def read(self, fn):
- d = {}
- with open(fn) as fin:
- for line in fin:
- data = line.strip().split('\t')
- confidence = data[0]
- if not all(data[2:5]):
- logging.debug("Skipped line: {}".format(line))
- continue
- arg1, rel, arg2 = [s[s.index('(') + 1:s.index(',List(')] for s in data[2:5]]
- text = data[5]
- curExtraction = Extraction(pred = rel, head_pred_index = -1, sent = text, confidence = float(confidence))
- curExtraction.addArg(arg1)
- curExtraction.addArg(arg2)
- d[text] = d.get(text, []) + [curExtraction]
- self.oie = d
-
-
-
-if __name__ == "__main__":
- # Parse command line arguments
- args = docopt(__doc__)
- inp_fn = args["--in"]
- out_fn = args["--out"]
- debug = args["--debug"]
- if debug:
- logging.basicConfig(level = logging.DEBUG)
- else:
- logging.basicConfig(level = logging.INFO)
-
-
- oie = OpenieFourReader()
- oie.read(inp_fn)
- oie.output_tabbed(out_fn)
-
- logging.info("DONE")
diff --git a/3-NLP_services/src/Multi2OIE/carb/oie_readers/propsReader.py b/3-NLP_services/src/Multi2OIE/carb/oie_readers/propsReader.py
deleted file mode 100644
index 5cc9447..0000000
--- a/3-NLP_services/src/Multi2OIE/carb/oie_readers/propsReader.py
+++ /dev/null
@@ -1,44 +0,0 @@
-from oie_readers.oieReader import OieReader
-from oie_readers.extraction import Extraction
-
-
-class PropSReader(OieReader):
-
- def __init__(self):
- self.name = 'PropS'
-
- def read(self, fn):
- d = {}
- with open(fn) as fin:
- for line in fin:
- if not line.strip():
- continue
- data = line.strip().split('\t')
- confidence, text, rel = data[:3]
- curExtraction = Extraction(pred = rel, sent = text, confidence = float(confidence), head_pred_index=-1)
-
- for arg in data[4::2]:
- curExtraction.addArg(arg)
-
- d[text] = d.get(text, []) + [curExtraction]
- self.oie = d
- # self.normalizeConfidence()
-
-
- def normalizeConfidence(self):
- ''' Normalize confidence to resemble probabilities '''
- EPSILON = 1e-3
-
- self.confidences = [extraction.confidence for sent in self.oie for extraction in self.oie[sent]]
- maxConfidence = max(self.confidences)
- minConfidence = min(self.confidences)
-
- denom = maxConfidence - minConfidence + (2*EPSILON)
-
- for sent, extractions in self.oie.items():
- for extraction in extractions:
- extraction.confidence = ( (extraction.confidence - minConfidence) + EPSILON) / denom
-
-
-
-
diff --git a/3-NLP_services/src/Multi2OIE/carb/oie_readers/reVerbReader.py b/3-NLP_services/src/Multi2OIE/carb/oie_readers/reVerbReader.py
deleted file mode 100644
index 20f9fe3..0000000
--- a/3-NLP_services/src/Multi2OIE/carb/oie_readers/reVerbReader.py
+++ /dev/null
@@ -1,29 +0,0 @@
-from oie_readers.oieReader import OieReader
-from oie_readers.extraction import Extraction
-
-class ReVerbReader(OieReader):
-
- def __init__(self):
- self.inputSents = [sent.strip() for sent in open(ReVerbReader.RAW_SENTS_FILE).readlines()]
- self.name = 'ReVerb'
-
- def read(self, fn):
- d = {}
- with open(fn) as fin:
- for line in fin:
- data = line.strip().split('\t')
- arg1, rel, arg2 = data[2:5]
- confidence = data[11]
- text = self.inputSents[int(data[1])-1]
-
- curExtraction = Extraction(pred = rel, sent = text, confidence = float(confidence))
- curExtraction.addArg(arg1)
- curExtraction.addArg(arg2)
- d[text] = d.get(text, []) + [curExtraction]
- self.oie = d
-
- # ReVerb requires a different files from which to get the input sentences
- # Relative to repo root folder
- RAW_SENTS_FILE = './raw_sentences/all.txt'
-
-
diff --git a/3-NLP_services/src/Multi2OIE/carb/oie_readers/split_corpus.py b/3-NLP_services/src/Multi2OIE/carb/oie_readers/split_corpus.py
deleted file mode 100644
index 16a12cf..0000000
--- a/3-NLP_services/src/Multi2OIE/carb/oie_readers/split_corpus.py
+++ /dev/null
@@ -1,37 +0,0 @@
-""" Usage:
- split_corpus --corpus=CORPUS_FN --reader=READER --in=INPUT_FN --out=OUTPUT_FN
-
-Split OIE extractions according to raw sentences.
-This is used in order to split a large file into train, dev and test.
-
-READER - points out which oie reader to use (see dictionary for possible entries)
-"""
-from clausieReader import ClausieReader
-from ollieReader import OllieReader
-from openieFourReader import OpenieFourReader
-from propsReader import PropSReader
-from reVerbReader import ReVerbReader
-from stanfordReader import StanfordReader
-from docopt import docopt
-import logging
-logging.basicConfig(level = logging.INFO)
-
-available_readers = {
- "clausie": ClausieReader,
- "ollie": OllieReader,
- "openie4": OpenieFourReader,
- "props": PropSReader,
- "reverb": ReVerbReader,
- "stanford": StanfordReader
-}
-
-
-if __name__ == "__main__":
- args = docopt(__doc__)
- inp = args["--in"]
- out = args["--out"]
- corpus = args["--corpus"]
- reader = available_readers[args["--reader"]]()
- reader.read(inp)
- reader.split_to_corpus(corpus,
- out)
diff --git a/3-NLP_services/src/Multi2OIE/carb/oie_readers/stanfordReader.py b/3-NLP_services/src/Multi2OIE/carb/oie_readers/stanfordReader.py
deleted file mode 100644
index 52ace35..0000000
--- a/3-NLP_services/src/Multi2OIE/carb/oie_readers/stanfordReader.py
+++ /dev/null
@@ -1,22 +0,0 @@
-from oie_readers.oieReader import OieReader
-from oie_readers.extraction import Extraction
-
-class StanfordReader(OieReader):
-
- def __init__(self):
- self.name = 'Stanford'
-
- def read(self, fn):
- d = {}
- with open(fn) as fin:
- for line in fin:
- data = line.strip().split('\t')
- arg1, rel, arg2 = data[2:5]
- confidence = data[11]
- text = data[12]
-
- curExtraction = Extraction(pred = rel, head_pred_index = -1, sent = text, confidence = float(confidence))
- curExtraction.addArg(arg1)
- curExtraction.addArg(arg2)
- d[text] = d.get(text, []) + [curExtraction]
- self.oie = d
diff --git a/3-NLP_services/src/Multi2OIE/carb/oie_readers/tabReader.py b/3-NLP_services/src/Multi2OIE/carb/oie_readers/tabReader.py
deleted file mode 100644
index aaf93e6..0000000
--- a/3-NLP_services/src/Multi2OIE/carb/oie_readers/tabReader.py
+++ /dev/null
@@ -1,56 +0,0 @@
-""" Usage:
- tabReader --in=INPUT_FILE
-
-Read a tab-formatted file.
-Each line consists of:
-sent, prob, pred, arg1, arg2, ...
-
-"""
-
-from oie_readers.oieReader import OieReader
-from oie_readers.extraction import Extraction
-from docopt import docopt
-import logging
-import ipdb
-
-logging.basicConfig(level = logging.DEBUG)
-
-class TabReader(OieReader):
-
- def __init__(self):
- self.name = 'TabReader'
-
- def read(self, fn):
- """
- Read a tabbed format line
- Each line consists of:
- sent, prob, pred, arg1, arg2, ...
- """
- d = {}
- ex_index = 0
- with open(fn) as fin:
- for line in fin:
- if not line.strip():
- continue
- data = line.strip().split('\t')
- text, confidence, rel = data[:3]
- curExtraction = Extraction(pred = rel,
- head_pred_index = None,
- sent = text,
- confidence = float(confidence),
- question_dist = "./question_distributions/dist_wh_sbj_obj1.json",
- index = ex_index)
- ex_index += 1
-
- for arg in data[3:]:
- curExtraction.addArg(arg)
-
- d[text] = d.get(text, []) + [curExtraction]
- self.oie = d
-
-
-if __name__ == "__main__":
- args = docopt(__doc__)
- input_fn = args["--in"]
- tr = TabReader()
- tr.read(input_fn)
diff --git a/3-NLP_services/src/Multi2OIE/carb/tabReader.py b/3-NLP_services/src/Multi2OIE/carb/tabReader.py
deleted file mode 100644
index b00b8bc..0000000
--- a/3-NLP_services/src/Multi2OIE/carb/tabReader.py
+++ /dev/null
@@ -1,59 +0,0 @@
-""" Usage:
- tabReader --in=INPUT_FILE
-
-Read a tab-formatted file.
-Each line consists of:
-sent, prob, pred, arg1, arg2, ...
-
-"""
-
-from carb.oieReader import OieReader
-from carb.extraction import Extraction
-from docopt import docopt
-import logging
-import ipdb
-
-logging.basicConfig(level = logging.DEBUG)
-
-class TabReader(OieReader):
-
- def __init__(self):
- self.name = 'TabReader'
-
- def read(self, fn):
- """
- Read a tabbed format line
- Each line consists of:
- sent, prob, pred, arg1, arg2, ...
- """
- d = {}
- ex_index = 0
- with open(fn) as fin:
- for line in fin:
- if not line.strip():
- continue
- data = line.strip().split('\t')
- try:
- text, confidence, rel = data[:3]
- except ValueError:
- continue
- curExtraction = Extraction(pred = rel,
- head_pred_index = None,
- sent = text,
- confidence = float(confidence),
- question_dist = "./question_distributions/dist_wh_sbj_obj1.json",
- index = ex_index)
- ex_index += 1
-
- for arg in data[3:]:
- curExtraction.addArg(arg)
-
- d[text] = d.get(text, []) + [curExtraction]
- self.oie = d
-
-
-if __name__ == "__main__":
- args = docopt(__doc__)
- input_fn = args["--in"]
- tr = TabReader()
- tr.read(input_fn)
diff --git a/3-NLP_services/src/Multi2OIE/dataset.py b/3-NLP_services/src/Multi2OIE/dataset.py
deleted file mode 100644
index d93c095..0000000
--- a/3-NLP_services/src/Multi2OIE/dataset.py
+++ /dev/null
@@ -1,162 +0,0 @@
-import torch
-import numpy as np
-from torch.utils.data import DataLoader
-from torch.utils.data import Dataset
-from utils import utils
-from transformers import BertTokenizer
-from utils.bio import pred_tag2idx, arg_tag2idx
-
-
-def load_data(data_path,
- batch_size,
- max_len=64,
- train=True,
- tokenizer_config='bert-base-cased'):
- if train:
- return DataLoader(
- dataset=OieDataset(
- data_path,
- max_len,
- tokenizer_config),
- batch_size=batch_size,
- shuffle=True,
- num_workers=4,
- pin_memory=True,
- drop_last=True)
- else:
- return DataLoader(
- dataset=OieEvalDataset(
- data_path,
- max_len,
- tokenizer_config),
- batch_size=batch_size,
- num_workers=4,
- pin_memory=True)
-
-
-class OieDataset(Dataset):
- def __init__(self, data_path, max_len=64, tokenizer_config='bert-base-cased'):
- data = utils.load_pkl(data_path)
- self.tokens = data['tokens']
- self.single_pred_labels = data['single_pred_labels']
- self.single_arg_labels = data['single_arg_labels']
- self.all_pred_labels = data['all_pred_labels']
-
- self.max_len = max_len
- self.tokenizer = BertTokenizer.from_pretrained(tokenizer_config)
- self.vocab = self.tokenizer.vocab
-
- self.pad_idx = self.vocab['[PAD]']
- self.cls_idx = self.vocab['[CLS]']
- self.sep_idx = self.vocab['[SEP]']
- self.mask_idx = self.vocab['[MASK]']
-
- def add_pad(self, token_ids):
- diff = self.max_len - len(token_ids)
- if diff > 0:
- token_ids += [self.pad_idx] * diff
- else:
- token_ids = token_ids[:self.max_len-1] + [self.sep_idx]
- return token_ids
-
- def add_special_token(self, token_ids):
- return [self.cls_idx] + token_ids + [self.sep_idx]
-
- def idx2mask(self, token_ids):
- return [token_id != self.pad_idx for token_id in token_ids]
-
- def add_pad_to_labels(self, pred_label, arg_label, all_pred_label):
- pred_outside = np.array([pred_tag2idx['O']])
- arg_outside = np.array([arg_tag2idx['O']])
-
- pred_label = np.concatenate([pred_outside, pred_label, pred_outside])
- arg_label = np.concatenate([arg_outside, arg_label, arg_outside])
- all_pred_label = np.concatenate([pred_outside, all_pred_label, pred_outside])
-
- diff = self.max_len - pred_label.shape[0]
- if diff > 0:
- pred_pad = np.array([pred_tag2idx['O']] * diff)
- arg_pad = np.array([arg_tag2idx['O']] * diff)
- pred_label = np.concatenate([pred_label, pred_pad])
- arg_label = np.concatenate([arg_label, arg_pad])
- all_pred_label = np.concatenate([all_pred_label, pred_pad])
- elif diff == 0:
- pass
- else:
- pred_label = np.concatenate([pred_label[:-1], pred_outside])
- arg_label = np.concatenate([arg_label[:-1], arg_outside])
- all_pred_label = np.concatenate([all_pred_label[:-1], pred_outside])
- return [pred_label, arg_label, all_pred_label]
-
- def __len__(self):
- return len(self.tokens)
-
- def __getitem__(self, idx):
- token_ids = self.tokenizer.convert_tokens_to_ids(self.tokens[idx])
- token_ids_padded = self.add_pad(self.add_special_token(token_ids))
- att_mask = self.idx2mask(token_ids_padded)
- labels = self.add_pad_to_labels(
- self.single_pred_labels[idx],
- self.single_arg_labels[idx],
- self.all_pred_labels[idx])
- single_pred_label, single_arg_label, all_pred_label = labels
-
- assert len(token_ids_padded) == self.max_len
- assert len(att_mask) == self.max_len
- assert single_pred_label.shape[0] == self.max_len
- assert single_arg_label.shape[0] == self.max_len
- assert all_pred_label.shape[0] == self.max_len
-
- batch = [
- torch.tensor(token_ids_padded),
- torch.tensor(att_mask),
- torch.tensor(single_pred_label),
- torch.tensor(single_arg_label),
- torch.tensor(all_pred_label)
- ]
- return batch
-
-
-class OieEvalDataset(Dataset):
- def __init__(self, data_path, max_len, tokenizer_config='bert-base-cased'):
- self.sentences = utils.load_pkl(data_path)
- self.tokenizer = BertTokenizer.from_pretrained(tokenizer_config)
- self.vocab = self.tokenizer.vocab
- self.max_len = max_len
-
- self.pad_idx = self.vocab['[PAD]']
- self.cls_idx = self.vocab['[CLS]']
- self.sep_idx = self.vocab['[SEP]']
- self.mask_idx = self.vocab['[MASK]']
-
- def add_pad(self, token_ids):
- diff = self.max_len - len(token_ids)
- if diff > 0:
- token_ids += [self.pad_idx] * diff
- else:
- token_ids = token_ids[:self.max_len-1] + [self.sep_idx]
- return token_ids
-
- def idx2mask(self, token_ids):
- return [token_id != self.pad_idx for token_id in token_ids]
-
- def __len__(self):
- return len(self.sentences)
-
- def __getitem__(self, idx):
- token_ids = self.add_pad(self.tokenizer.encode(self.sentences[idx]))
- att_mask = self.idx2mask(token_ids)
- token_strs = self.tokenizer.convert_ids_to_tokens(token_ids)
- sentence = self.sentences[idx]
-
- assert len(token_ids) == self.max_len
- assert len(att_mask) == self.max_len
- assert len(token_strs) == self.max_len
- batch = [
- torch.tensor(token_ids),
- torch.tensor(att_mask),
- token_strs,
- sentence
- ]
- return batch
-
diff --git a/3-NLP_services/src/Multi2OIE/environment.yml b/3-NLP_services/src/Multi2OIE/environment.yml
deleted file mode 100644
index bc00c41..0000000
--- a/3-NLP_services/src/Multi2OIE/environment.yml
+++ /dev/null
@@ -1,97 +0,0 @@
-name: multi2oie
-channels:
- - conda-forge
- - defaults
-dependencies:
- - _libgcc_mutex=0.1=main
- - _pytorch_select=0.2=gpu_0
- - attrs=19.3.0=py_0
- - blas=1.0=mkl
- - brotlipy=0.7.0=py37h8f50634_1000
- - ca-certificates=2020.4.5.1=hecc5488_0
- - catalogue=1.0.0=py_0
- - certifi=2020.4.5.1=py37hc8dfbb8_0
- - cffi=1.14.0=py37he30daa8_1
- - chardet=3.0.4=py37hc8dfbb8_1006
- - cryptography=2.9.2=py37hb09aad4_0
- - cudatoolkit=10.1.243=h6bb024c_0
- - cudnn=7.6.5=cuda10.1_0
- - cymem=2.0.3=py37h3340039_1
- - cython-blis=0.4.1=py37h8f50634_1
- - idna=2.9=py_1
- - importlib-metadata=1.6.0=py37hc8dfbb8_0
- - importlib_metadata=1.6.0=0
- - intel-openmp=2020.1=217
- - joblib=0.15.1=py_0
- - jsonschema=3.2.0=py37hc8dfbb8_1
- - ld_impl_linux-64=2.33.1=h53a641e_7
- - libedit=3.1.20181209=hc058e9b_0
- - libffi=3.3=he6710b0_1
- - libgcc-ng=9.1.0=hdf63c60_0
- - libgfortran-ng=7.3.0=hdf63c60_0
- - libstdcxx-ng=9.1.0=hdf63c60_0
- - mkl=2020.1=217
- - mkl-service=2.3.0=py37he904b0f_0
- - mkl_fft=1.0.15=py37ha843d7b_0
- - mkl_random=1.1.1=py37h0573a6f_0
- - murmurhash=1.0.0=py37h3340039_0
- - ncurses=6.2=he6710b0_1
- - ninja=1.9.0=py37hfd86e86_0
- - numpy=1.18.1=py37h4f9e942_0
- - numpy-base=1.18.1=py37hde5b4d6_1
- - openssl=1.1.1g=h516909a_0
- - pandas=1.0.3=py37h0573a6f_0
- - pip=20.0.2=py37_3
- - plac=0.9.6=py37_0
- - preshed=3.0.2=py37h3340039_2
- - pycparser=2.20=py_0
- - pyopenssl=19.1.0=py_1
- - pyrsistent=0.16.0=py37h8f50634_0
- - pysocks=1.7.1=py37hc8dfbb8_1
- - python=3.7.7=hcff3b4d_5
- - python-dateutil=2.8.1=py_0
- - python_abi=3.7=1_cp37m
- - pytorch=1.4.0=cuda101py37h02f0884_0
- - pytz=2020.1=py_0
- - readline=8.0=h7b6447c_0
- - requests=2.23.0=pyh8c360ce_2
- - scikit-learn=0.22.1=py37hd81dba3_0
- - scipy=1.4.1=py37h0b6359f_0
- - setuptools=46.4.0=py37_0
- - six=1.14.0=py37_0
- - spacy=2.2.4=py37h99015e2_1
- - sqlite=3.31.1=h62c20be_1
- - srsly=1.0.2=py37h3340039_0
- - thinc=7.4.0=py37h99015e2_2
- - tk=8.6.8=hbc83047_0
- - tqdm=4.46.0=pyh9f0ad1d_0
- - urllib3=1.25.9=py_0
- - wasabi=0.6.0=py_0
- - wheel=0.34.2=py37_0
- - xz=5.2.5=h7b6447c_0
- - zipp=3.1.0=py_0
- - zlib=1.2.11=h7b6447c_3
- - pip:
- - backcall==0.1.0
- - click==7.1.2
- - decorator==4.4.2
- - docopt==0.6.2
- - filelock==3.0.12
- - ipdb==0.13.2
- - ipython==7.14.0
- - ipython-genutils==0.2.0
- - jedi==0.17.0
- - nltk==3.5
- - parso==0.7.0
- - pexpect==4.8.0
- - pickleshare==0.7.5
- - prompt-toolkit==3.0.5
- - ptyprocess==0.6.0
- - pygments==2.6.1
- - regex==2020.5.14
- - sacremoses==0.0.43
- - sentencepiece==0.1.91
- - tokenizers==0.7.0
- - traitlets==4.3.3
- - transformers==2.10.0
- - wcwidth==0.1.9
diff --git a/3-NLP_services/src/Multi2OIE/evaluate/OIE2016_dev.txt b/3-NLP_services/src/Multi2OIE/evaluate/OIE2016_dev.txt
deleted file mode 100644
index 9c0b3d8..0000000
--- a/3-NLP_services/src/Multi2OIE/evaluate/OIE2016_dev.txt
+++ /dev/null
@@ -1,1672 +0,0 @@
-QVC Network Inc. said it completed its acquisition of CVN Cos. for about $ 423 million . said said QVC Network Inc. it completed its acquisition of CVN Cos. for about $ 423 million .
-QVC Network Inc. said it completed its acquisition of CVN Cos. for about $ 423 million . completed completed its acquisition of CVN Cos. QVC Network Inc. about $ 423 million
-The spirits , of course , could hardly care less whether people do or do n't believe in them . care could care The spirits less
-The spirits , of course , could hardly care less whether people do or do n't believe in them . believe might believe people spirits
-The debt ceiling is scheduled to fall to $ 2.8 trillion from $ 2.87 trillion at midnight tonight . scheduled scheduled debt ceiling fall to $ 2.8 trillion midnight tonight
-The debt ceiling is scheduled to fall to $ 2.8 trillion from $ 2.87 trillion at midnight tonight . fall will fall debt ceiling $ 2.8 trillion midnight tonight
-Mr. Ackerman contended that it was a direct response to his efforts to gain control of Datapoint . contended contended Mr. Ackerman that it was a direct response to his efforts to gain control of Datapoint
-Mr. Ackerman contended that it was a direct response to his efforts to gain control of Datapoint . gain might gain Mr. Ackerman control of Datapoint efforts
-Mr. Moon 's support for a Watergate - beleaguered Richard Nixon , the Koreagate scandal , and his prison sentence for income - tax evasion did not help the church 's recruitment efforts . beleaguered beleaguered Richard Nixon Mr. Moon 's support for a Watergate
-Mr. Moon 's support for a Watergate - beleaguered Richard Nixon , the Koreagate scandal , and his prison sentence for income - tax evasion did not help the church 's recruitment efforts . help did n't help tax evasion the church 's recruitment efforts
-FEDERAL HOME LOAN MORTGAGE CORP. ( Freddie Mac ) : Posted yields on 30 - year mortgage commitments for delivery within 30 days . Posted posted FEDERAL HOME LOAN MORTGAGE CORP. yields on 30 - year mortgage commitments for delivery within 30 days
-FEDERAL HOME LOAN MORTGAGE CORP. ( Freddie Mac ) : Posted yields on 30 - year mortgage commitments for delivery within 30 days . Posted posted Freddie Mac yields on 30 - year mortgage commitments for delivery within 30 days
-Both companies are allies of Navigation Mixte in its fight against a hostile takeover bid launched last week by Cie . launched launched a hostile takeover bid last week Cie
-The machine employs reduced instruction - set computing , or RISC , technology . employs employs The machine reduced instruction - set computing , or RISC , technology
-The machine employs reduced instruction - set computing , or RISC , technology . reduced reduced instruction - set computing , or RISC , technology
-Instead , he proposed a `` law - governed economy , '' in which there would be a `` clear - cut division between state direction of the economy and economic management . '' governed governed economy law
-The campaign , which started last week and runs through Nov. 23 , with funds earmarked for both the quake and Hugo , `` was Barry 's idea , '' a spokeswoman says . started started The campaign last week
-The campaign , which started last week and runs through Nov. 23 , with funds earmarked for both the quake and Hugo , `` was Barry 's idea , '' a spokeswoman says . runs runs The campaign , which started last week through Nov. 23
-The campaign , which started last week and runs through Nov. 23 , with funds earmarked for both the quake and Hugo , `` was Barry 's idea , '' a spokeswoman says . earmarked earmarked The campaign , which started last week and runs through Nov. 23 , with funds both the quake and Hugo
-The campaign , which started last week and runs through Nov. 23 , with funds earmarked for both the quake and Hugo , `` was Barry 's idea , '' a spokeswoman says . says says a spokeswoman `` was Barry 's idea , ''
-Despite what some investors are suggesting , the Big Board is n't even considering a total ban on program trading or stock futures , exchange officials said . suggesting suggesting some investors
-Despite what some investors are suggesting , the Big Board is n't even considering a total ban on program trading or stock futures , exchange officials said . considering is n't considering Big Board a total ban on program trading or stock futures
-Despite what some investors are suggesting , the Big Board is n't even considering a total ban on program trading or stock futures , exchange officials said . said said exchange officials Despite what some investors are suggesting , the Big Board is n't even considering a total ban on program trading or stock futures
-Moon 's Tong'Il industry conglomerate is now investing heavily in China , where church accountants have high hopes of expanding and attracting converts even in the wake of the bloody massacre in Tiananmen Square . investing investing Moon 's Tong'Il industry conglomerate now in China
-Moon 's Tong'Il industry conglomerate is now investing heavily in China , where church accountants have high hopes of expanding and attracting converts even in the wake of the bloody massacre in Tiananmen Square . have have church accountants high hopes of expanding and attracting converts even in the wake of the bloody massacre in Tiananmen Square
-Moon 's Tong'Il industry conglomerate is now investing heavily in China , where church accountants have high hopes of expanding and attracting converts even in the wake of the bloody massacre in Tiananmen Square . expanding might expanding converts
-Moon 's Tong'Il industry conglomerate is now investing heavily in China , where church accountants have high hopes of expanding and attracting converts even in the wake of the bloody massacre in Tiananmen Square . attracting might attracting converts
-The supply of experienced civil engineers , though , is tighter . experienced experienced civil engineers
-Salomon Brothers says , `` We believe the real estate properties would trade at a discount ... after the realty unit is spun off ... . says says Salomon Brothers `` We believe the real estate properties would trade at a discount ... after the realty unit is spun off ... .
-Salomon Brothers says , `` We believe the real estate properties would trade at a discount ... after the realty unit is spun off ... . believe believe Salomon Brothers the real estate properties would trade at a discount ... after the realty unit is spun off ... .
-Salomon Brothers says , `` We believe the real estate properties would trade at a discount ... after the realty unit is spun off ... . trade will trade real estate properties after the realty unit is spun off
-Salomon Brothers says , `` We believe the real estate properties would trade at a discount ... after the realty unit is spun off ... . spun will spun the realty unit
-According to individuals familiar with the situation , the Frankfurt loss stemmed from a computer program for calculating prices on forward - rate agreements that failed to envision an interest - rate environment where short - term rates were equal to or higher than long - term rates . According according the Frankfurt loss stemmed from a computer program for calculating prices on forward - rate agreements that failed to envision an interest - rate environment where short - term rates were equal to or higher than long - term rates individuals familiar with the situation
-According to individuals familiar with the situation , the Frankfurt loss stemmed from a computer program for calculating prices on forward - rate agreements that failed to envision an interest - rate environment where short - term rates were equal to or higher than long - term rates . stemmed stemmed the Frankfurt loss a computer program for calculating prices on forward - rate agreements that failed to envision an interest - rate environment where short - term rates were equal to or higher than long - term rates
-According to individuals familiar with the situation , the Frankfurt loss stemmed from a computer program for calculating prices on forward - rate agreements that failed to envision an interest - rate environment where short - term rates were equal to or higher than long - term rates . calculating calculating a computer program prices on forward - rate agreements that failed to envision an interest - rate environment where short - term rates were equal to or higher than long - term rates
-According to individuals familiar with the situation , the Frankfurt loss stemmed from a computer program for calculating prices on forward - rate agreements that failed to envision an interest - rate environment where short - term rates were equal to or higher than long - term rates . failed failed prices on forward - rate agreements envision an interest - rate environment where short - term rates were equal to or higher than long - term rates
-According to individuals familiar with the situation , the Frankfurt loss stemmed from a computer program for calculating prices on forward - rate agreements that failed to envision an interest - rate environment where short - term rates were equal to or higher than long - term rates . envision could envision an interest - rate environment where short - term rates were equal to or higher than long - term rates prices on forward - rate agreements
-A bomb exploded at a leftist union hall in San Salvador , killing at least eight people and injuring about 30 others , including two Americans , authorities said . exploded exploded A bomb at a leftist union hall in San Salvador
-A bomb exploded at a leftist union hall in San Salvador , killing at least eight people and injuring about 30 others , including two Americans , authorities said . killing killing at least eight people A bomb
-A bomb exploded at a leftist union hall in San Salvador , killing at least eight people and injuring about 30 others , including two Americans , authorities said . injuring injuring about 30 others A bomb
-A bomb exploded at a leftist union hall in San Salvador , killing at least eight people and injuring about 30 others , including two Americans , authorities said . including including two Americans
-A bomb exploded at a leftist union hall in San Salvador , killing at least eight people and injuring about 30 others , including two Americans , authorities said . said said authorities A bomb exploded at a leftist union hall in San Salvador , killing at least eight people and injuring about 30 others , including two Americans
-On a 394 - 21 roll call , the House adopted the underlying transportation measure . adopted adopted the House the underlying transportation measure On a 394 - 21 roll call
-On a 394 - 21 roll call , the House adopted the underlying transportation measure . underlying underlying transportation measure
-`` But it 's risky , '' he says of Specialized 's attempt to adopt a corporate structure . adopt could adopt a corporate structure
-But that development also had little effect on traders ' sentiment . had had that development little effect on traders ' sentiment
-He made a midnight requisition of all the printers he could lay hands on so that he could monitor all the telephone lines coming into the lab 's computers . coming will coming telephone lines the lab 's computers
-So far , Nissan 's new - model successes are mostly specialized vehicles with limited sales potential . specialized might specialized vehicles limited sales potential
-So far , Nissan 's new - model successes are mostly specialized vehicles with limited sales potential . specialized might specialized Nissan 's new - model successes limited sales potential
-So far , Nissan 's new - model successes are mostly specialized vehicles with limited sales potential . limited limited specialized vehicles sales potential
-So far , Nissan 's new - model successes are mostly specialized vehicles with limited sales potential . limited limited Nissan 's new - model successes sales potential
-However , Paul Johanson , Monsanto 's director of plant sciences , said the company 's chemical spray overcomes these problems and is `` gentle on the female organ . '' said said Paul Johanson the company 's chemical spray overcomes these problems and is `` gentle on the female organ . ''
-However , Paul Johanson , Monsanto 's director of plant sciences , said the company 's chemical spray overcomes these problems and is `` gentle on the female organ . '' overcomes overcomes the company 's chemical spray these problems
-Many of the enthusiastic young `` Moonies '' of the Nixon era who remained faithful to Father Moon are now parents , producing new members by procreation rather than conversion . remained remained `` Moonies '' Father Moon
-Many of the enthusiastic young `` Moonies '' of the Nixon era who remained faithful to Father Moon are now parents , producing new members by procreation rather than conversion . producing producing `` Moonies '' new members by procreation rather than conversion
-Deseret , with about $ 100 million in assets , is the parent of the Deseret Bank , which has six offices and headquarters at Pleasant Grove , Utah . has has six offices and headquarters at Pleasant Grove , Utah Deseret
-Both sides are jealously guarding their turf , and relations have been at a flashpoint for months . guarding guarding their turf Both sides jealously
-Both sides are jealously guarding their turf , and relations have been at a flashpoint for months . guarding guarding relations have been at a flashpoint for months Both sides jealously
-`` It 's going to be a tough league , '' promises the 47 - year - old Mr. Campaneris . promises promises the 47 - year - old It 's going to be a tough league
-`` It 's going to be a tough league , '' promises the 47 - year - old Mr. Campaneris . promises promises Mr. Campaneris It 's going to be a tough league
-Ms. Waleson is a free - lance writer based in New York . based based New York Ms. Waleson
-Ms. Waleson is a free - lance writer based in New York . based based New York a free - lance writer
-The latest research pact bolsters Du Pont 's growing portfolio of investments in superconductors . bolsters bolsters The latest research pact portfolio of investments in superconductors Du Pont
-The latest research pact bolsters Du Pont 's growing portfolio of investments in superconductors . growing growing portfolio of investments in superconductors Du Pont
-But they have been at odds over how much Mr. Hunt would owe the government after his assets are sold . owe owe Mr. Hunt the government
-But they have been at odds over how much Mr. Hunt would owe the government after his assets are sold . sold will sold assets Mr. Hunt
-December municipal futures ended up 11\/32 point to 92-14 , having pulled off a morning low of 91-23 as cash municipals rebounded . ended ended municipal futures December up 11\/32 point to 92-14
-December municipal futures ended up 11\/32 point to 92-14 , having pulled off a morning low of 91-23 as cash municipals rebounded . ended ended December municipal futures having pulled off a morning low of 91-23 as cash municipals rebounded up 11\/32 point to 92-14
-December municipal futures ended up 11\/32 point to 92-14 , having pulled off a morning low of 91-23 as cash municipals rebounded . pulled had pulled off municipal futures a morning low of 91-23 as cash municipals rebounded
-December municipal futures ended up 11\/32 point to 92-14 , having pulled off a morning low of 91-23 as cash municipals rebounded . rebounded rebounded cash municipals
-Earlier yesterday , the Societe de Bourses Francaises was told that a unit of Framatome S.A. also bought Navigation Mixte shares , this purchase covering more than 160,000 shares . told told the Societe de Bourses Francaises a unit of Framatome S.A. also bought Navigation Mixte shares , this purchase covering more than 160,000 shares . Earlier yesterday
-Earlier yesterday , the Societe de Bourses Francaises was told that a unit of Framatome S.A. also bought Navigation Mixte shares , this purchase covering more than 160,000 shares . bought bought Navigation Mixte shares a unit of Framatome S.A. more than 160,000 shares .
-Earlier yesterday , the Societe de Bourses Francaises was told that a unit of Framatome S.A. also bought Navigation Mixte shares , this purchase covering more than 160,000 shares . covering covering this purchase more than 160,000 shares .
-Yesterday , Nekoosa common closed in composite New York Stock Exchange trading at $ 62.875 , up $ 20.125 , on volume of almost 6.3 million shares . closed closed Nekoosa common Yesterday in composite New York Stock Exchange trading $ 62.875
-Premark International Inc. , for example , peddles the M8.7sp Electronic Cycling Simulator , a $ 2,000 stationary cycle . peddles peddles Premark International Inc. the M8.7sp Electronic Cycling Simulator $ 2,000
-Premark International Inc. , for example , peddles the M8.7sp Electronic Cycling Simulator , a $ 2,000 stationary cycle . peddles peddles Premark International Inc. a stationary cycle $ 2,000
-The clause was part of an agreement in which pilots accepted a substantial pay cut as long as no other labor group got a raise . accepted accepted pilots a substantial pay cut as long as no other labor group got a raise
-The clause was part of an agreement in which pilots accepted a substantial pay cut as long as no other labor group got a raise . got did n't got labor group a raise pilots accepted a substantial pay cut
-China 's parliament ousted two Hong Kong residents from a panel drafting a new constitution for the colony . ousted ousted China 's parliament two Hong Kong residents a panel drafting a new constitution for the colony
-China 's parliament ousted two Hong Kong residents from a panel drafting a new constitution for the colony . drafting drafting a new constitution for a panel the colony
-Jan Leemans , research director , said this gene was successfully introduced in oil - producing rapeseed plants , a major crop in Europe and Canada , using as a carrier a `` promoter gene '' developed by Robert Goldberg at the University of California in Los Angeles . said said Jan Leemans this gene was successfully introduced in oil - producing rapeseed plants , a major crop in Europe and Canada , using as a carrier a `` promoter gene '' developed by Robert Goldberg at the University of California in Los Angeles .
-Jan Leemans , research director , said this gene was successfully introduced in oil - producing rapeseed plants , a major crop in Europe and Canada , using as a carrier a `` promoter gene '' developed by Robert Goldberg at the University of California in Los Angeles . said said research director this gene was successfully introduced in oil - producing rapeseed plants , a major crop in Europe and Canada , using as a carrier a `` promoter gene '' developed by Robert Goldberg at the University of California in Los Angeles .
-Jan Leemans , research director , said this gene was successfully introduced in oil - producing rapeseed plants , a major crop in Europe and Canada , using as a carrier a `` promoter gene '' developed by Robert Goldberg at the University of California in Los Angeles . introduced introduced oil - producing rapeseed plants , a major crop in Europe and Canada , using as a carrier a `` promoter '' developed by Robert Goldberg at the University of California in Los Angeles . gene
-Jan Leemans , research director , said this gene was successfully introduced in oil - producing rapeseed plants , a major crop in Europe and Canada , using as a carrier a `` promoter gene '' developed by Robert Goldberg at the University of California in Los Angeles . producing producing oil rapeseed plants
-Jan Leemans , research director , said this gene was successfully introduced in oil - producing rapeseed plants , a major crop in Europe and Canada , using as a carrier a `` promoter gene '' developed by Robert Goldberg at the University of California in Los Angeles . developed developed Robert Goldberg at the University of California in Los Angeles
-About 60 % of the work force will continue with Gillette or transfer to Twins Pharmaceuticals , the company said . continue might continue About 60 % of the work Gillette
-About 60 % of the work force will continue with Gillette or transfer to Twins Pharmaceuticals , the company said . transfer might transfer About 60 % of the work force to Twins Pharmaceuticals
-About 60 % of the work force will continue with Gillette or transfer to Twins Pharmaceuticals , the company said . said said the company About 60 % of the work force will continue with Gillette or transfer to Twins Pharmaceuticals
-The Colombian minister was said to have referred to a letter that he said President Bush sent to Colombian President Virgilio Barco , and in which President Bush said it was possible to overcome obstacles to a new agreement . referred referred The Colombian minister a letter
-The Colombian minister was said to have referred to a letter that he said President Bush sent to Colombian President Virgilio Barco , and in which President Bush said it was possible to overcome obstacles to a new agreement . said said The Colombian minister President Bush sent to Colombian President Virgilio Barco , and in which President Bush said it was possible to overcome obstacles to a new agreement
-The Colombian minister was said to have referred to a letter that he said President Bush sent to Colombian President Virgilio Barco , and in which President Bush said it was possible to overcome obstacles to a new agreement . sent sent President Bush to Colombian President Virgilio Barco
-The Colombian minister was said to have referred to a letter that he said President Bush sent to Colombian President Virgilio Barco , and in which President Bush said it was possible to overcome obstacles to a new agreement . said said President Bush it was possible to overcome obstacles to a new agreement
-The Colombian minister was said to have referred to a letter that he said President Bush sent to Colombian President Virgilio Barco , and in which President Bush said it was possible to overcome obstacles to a new agreement . overcome could overcome obstacles to a new agreement
-Bioengineers set out to duplicate that feat -- scientifically and commercially -- with new life forms . set set Bioengineers duplicate that feat -- scientifically and commercially -- with new life forms
-Bioengineers set out to duplicate that feat -- scientifically and commercially -- with new life forms . duplicate will duplicate Bioengineers that feat scientifically and commercially
-Mr. Bickwit said , `` I can see why an S&L examiner would regard these as unusual activities , '' but said the overseas investments `` essentially broke even '' for the S&L . said said Mr. Bickwit the overseas investments
-Mr. Bickwit said , `` I can see why an S&L examiner would regard these as unusual activities , '' but said the overseas investments `` essentially broke even '' for the S&L . said said Mr. Bickwit `` essentially broke even '' the overseas investments
-Mr. Bickwit said , `` I can see why an S&L examiner would regard these as unusual activities , '' but said the overseas investments `` essentially broke even '' for the S&L . see could see Mr. Bickwit why an S&L examiner would regard these as unusual activities
-Mr. Bickwit said , `` I can see why an S&L examiner would regard these as unusual activities , '' but said the overseas investments `` essentially broke even '' for the S&L . regard would regard an S&L examiner unusual activities the overseas investments
-Mr. Bickwit said , `` I can see why an S&L examiner would regard these as unusual activities , '' but said the overseas investments `` essentially broke even '' for the S&L . said said Mr. Bickwit
-Mr. Bickwit said , `` I can see why an S&L examiner would regard these as unusual activities , '' but said the overseas investments `` essentially broke even '' for the S&L . said said Mr. Bickwit `` essentially broke even ''
-Mr. Bickwit said , `` I can see why an S&L examiner would regard these as unusual activities , '' but said the overseas investments `` essentially broke even '' for the S&L . broke broke the overseas investments S&L
-Of the agency 's 2,750 staff members , 230 are in the field working on actual projects , such as literacy and oceanographic research . working working staff members actual projects , such as literacy and oceanographic research
-Analysts say additional investors transferred their assets into money funds this month . say say Analysts additional investors transferred their assets into money funds this month
-Analysts say additional investors transferred their assets into money funds this month . transferred transferred additional investors money funds their assets this month
-Machines dedicated solely to word processing , which have all but disappeared in the U.S. , are still more common in Japan than PCs . dedicated is n't dedicated Machines word processing in Japan in the U.S.
-Machines dedicated solely to word processing , which have all but disappeared in the U.S. , are still more common in Japan than PCs . have does n't have U.S. Japan
-Machines dedicated solely to word processing , which have all but disappeared in the U.S. , are still more common in Japan than PCs . disappeared has n't disappeared Machines dedicated solely to word processing in the U.S. in Japan still more common than PCs
-Mr. Baker found an opening under the house that led to a fume - filled coal mine . found found Mr. Baker an opening under the house that led to a fume - filled coal mine
-Mr. Baker found an opening under the house that led to a fume - filled coal mine . led led an opening under the house a fume - filled coal mine
-For years , the company 's ads were tied in with pitches for Cannon sheets or Martex towels , for example , and an announcer at the end of the ads would tell customers where to `` find the true performance label . '' tied tied the company 's ads pitches for Cannon sheets or Martex towels
-For years , the company 's ads were tied in with pitches for Cannon sheets or Martex towels , for example , and an announcer at the end of the ads would tell customers where to `` find the true performance label . '' tell would tell announcer customers find the true performance label
-For years , the company 's ads were tied in with pitches for Cannon sheets or Martex towels , for example , and an announcer at the end of the ads would tell customers where to `` find the true performance label . '' find would find customers the true performance label
-Had the contest gone a full seven games , ABC could have reaped an extra $ 10 million in ad sales on the seventh game alone , compared with the ad take it would have received for regular prime - time shows . Had had the contest gone a full seven games
-Had the contest gone a full seven games , ABC could have reaped an extra $ 10 million in ad sales on the seventh game alone , compared with the ad take it would have received for regular prime - time shows . gone might gone the contest a full seven games
-Had the contest gone a full seven games , ABC could have reaped an extra $ 10 million in ad sales on the seventh game alone , compared with the ad take it would have received for regular prime - time shows . reaped could reaped ABC an extra $ 10 million in ad sales the seventh game alone
-Had the contest gone a full seven games , ABC could have reaped an extra $ 10 million in ad sales on the seventh game alone , compared with the ad take it would have received for regular prime - time shows . compared compared an extra $ 10 million in ad sales on the seventh game alone the ad take it would have received for regular prime - time shows
-Had the contest gone a full seven games , ABC could have reaped an extra $ 10 million in ad sales on the seventh game alone , compared with the ad take it would have received for regular prime - time shows . received would received ABC Had the contest gone a full seven games regular prime - time shows
-One of its international specialists , Steve White , took a quick interest in Mr. Stoll 's hunt , ultimately tracing the hacker to West Germany . took took Steve White a quick interest tracing the hacker to West Germany
-One of its international specialists , Steve White , took a quick interest in Mr. Stoll 's hunt , ultimately tracing the hacker to West Germany . took took One of its international specialists a quick interest tracing the hacker to West Germany
-One of its international specialists , Steve White , took a quick interest in Mr. Stoll 's hunt , ultimately tracing the hacker to West Germany . tracing tracing Steve White took a quick interest in Mr. Stoll 's hunt West Germany the hacker
-One of its international specialists , Steve White , took a quick interest in Mr. Stoll 's hunt , ultimately tracing the hacker to West Germany . tracing tracing One of its international specialists took a quick interest in Mr. Stoll 's hunt West Germany the hacker
-The second marital privilege cited by Mrs. Marcos protects confidential communications between spouses . cited cited The second marital privilege Mrs. Marcos
-The second marital privilege cited by Mrs. Marcos protects confidential communications between spouses . protects protects The second marital privilege confidential communications
-The company is expected to spend about $ 30 million a year on its two - year corporate campaign , created by WPP Group 's Ogilvy & Mather unit in New York . expected expected to spend about $ 30 million a year The company on its two - year corporate campaign , created by WPP Group 's Ogilvy & Mather unit in New York .
-The company is expected to spend about $ 30 million a year on its two - year corporate campaign , created by WPP Group 's Ogilvy & Mather unit in New York . spend might spend The company $ 30 million a year on its two - year corporate campaign , created by WPP Group 's Ogilvy & Mather unit in New York
-The company is expected to spend about $ 30 million a year on its two - year corporate campaign , created by WPP Group 's Ogilvy & Mather unit in New York . created created its two - year corporate campaign in New York WPP Group 's Ogilvy & Mather unit
-Other Senators want to lower the down payments required on FHA - insured loans . want want Other Senators to lower the down payments required on FHA - insured loans
-Other Senators want to lower the down payments required on FHA - insured loans . lower might lower the down payments required on FHA - insured loans Other Senators
-Other Senators want to lower the down payments required on FHA - insured loans . required required down payments FHA - insured loans
-Other Senators want to lower the down payments required on FHA - insured loans . insured insured loans FHA
-Critics say Mitsubishi Estate 's decision to buy into Rockefeller reflects the degree to which companies are irritated by the pressure to act for the good of Japan . say say Critics Mitsubishi Estate 's decision to buy into Rockefeller reflects the degree to which companies are irritated by the pressure to act for the good of Japan
-Critics say Mitsubishi Estate 's decision to buy into Rockefeller reflects the degree to which companies are irritated by the pressure to act for the good of Japan . buy will buy Rockefeller Mitsubishi Estate
-Critics say Mitsubishi Estate 's decision to buy into Rockefeller reflects the degree to which companies are irritated by the pressure to act for the good of Japan . reflects reflects Mitsubishi Estate 's decision to buy into Rockefeller the degree to which companies are irritated by the pressure to act for the good of Japan
-Critics say Mitsubishi Estate 's decision to buy into Rockefeller reflects the degree to which companies are irritated by the pressure to act for the good of Japan . irritated irritated companies the pressure to act for the good of Japan
-Critics say Mitsubishi Estate 's decision to buy into Rockefeller reflects the degree to which companies are irritated by the pressure to act for the good of Japan . act act companies the good of Japan
-By acquiring stakes in bottling companies in the U.S. and overseas , Coke has been able to improve bottlers ' efficiency and production , and in some cases , marketing . acquiring acquiring stakes in bottling companies Coke in the U.S. and overseas
-By acquiring stakes in bottling companies in the U.S. and overseas , Coke has been able to improve bottlers ' efficiency and production , and in some cases , marketing . bottling bottling in the U.S. and overseas companies
-By acquiring stakes in bottling companies in the U.S. and overseas , Coke has been able to improve bottlers ' efficiency and production , and in some cases , marketing . improve improve bottlers ' efficiency and production , and in some cases , marketing Coke By acquiring stakes in bottling companies in the U.S. and overseas
-But there have been problems with chemical sprays damaging plants ' female reproductive organs and concern for the toxicity of such chemical sprays to humans , animals and beneficial insects . damaging damaging chemical sprays plants ' female reproductive organs
-The computer can process 13.3 million calculations called floating - point operations every second . process can process The computer calculations called floating - point operations every second 13.3 million
-The computer can process 13.3 million calculations called floating - point operations every second . called called 13.3 million calculations
-And unlike Europe and the U.S. , where populations are aging , the Pacific Basin countries have growing proportions of youths -- the heaviest consumers of Coca - Cola and other sodas . aging aging populations Europe
-And unlike Europe and the U.S. , where populations are aging , the Pacific Basin countries have growing proportions of youths -- the heaviest consumers of Coca - Cola and other sodas . aging aging populations U.S.
-And unlike Europe and the U.S. , where populations are aging , the Pacific Basin countries have growing proportions of youths -- the heaviest consumers of Coca - Cola and other sodas . growing growing proportions of youths the Pacific Basin
-It is amazing that the ensuing mass executions in Vietnam and Cambodia do not weight more heavily on minds so morally fine - tuned . ensuing ensuing mass executions Vietnam
-It is amazing that the ensuing mass executions in Vietnam and Cambodia do not weight more heavily on minds so morally fine - tuned . ensuing ensuing mass executions Cambodia
-It is amazing that the ensuing mass executions in Vietnam and Cambodia do not weight more heavily on minds so morally fine - tuned . weight does n't weight mass executions more heavily Vietnam minds
-It is amazing that the ensuing mass executions in Vietnam and Cambodia do not weight more heavily on minds so morally fine - tuned . weight does n't weight mass executions more heavily Cambodia minds
-Great Northern Nekoosa soared $ 20.125 a share , to $ 62.875 , substantially above the $ 58 a share Georgia - Pacific is offering . soared soared Great Northern Nekoosa substantially above the $ 58 a share Georgia - Pacific is offering
-Great Northern Nekoosa soared $ 20.125 a share , to $ 62.875 , substantially above the $ 58 a share Georgia - Pacific is offering . soared soared Great Northern Nekoosa $ 20.125 a share , to $ 62.875
-Great Northern Nekoosa soared $ 20.125 a share , to $ 62.875 , substantially above the $ 58 a share Georgia - Pacific is offering . offering offering Georgia - Pacific $ 58 a share
-Meanwhile , Shearson Lehman 's Mr. Devario said that , to stay competitive , the U.S. paper industry needs to catch up with the European industry . said said Shearson Lehman 's Mr. Devario to stay competitive , the U.S. paper industry needs to catch up with the European industry
-Meanwhile , Shearson Lehman 's Mr. Devario said that , to stay competitive , the U.S. paper industry needs to catch up with the European industry . stay must stay U.S. paper industry competitive
-Meanwhile , Shearson Lehman 's Mr. Devario said that , to stay competitive , the U.S. paper industry needs to catch up with the European industry . needs needs U.S. paper industry catch up with the European industry to stay competitive
-Meanwhile , Shearson Lehman 's Mr. Devario said that , to stay competitive , the U.S. paper industry needs to catch up with the European industry . catch should catch U.S. paper industry with the European industry to stay competitive
-Mitsubishi Estate has n't decided how it will raise the funds for the purchase , which are due in cash next April , but the Marunouchi holdings alone are estimated to have a market value of as much as 10 trillion yen to 11 trillion yen . decided has n't decided Mitsubishi Estate how it will raise the funds for the purchase next April
-Mitsubishi Estate has n't decided how it will raise the funds for the purchase , which are due in cash next April , but the Marunouchi holdings alone are estimated to have a market value of as much as 10 trillion yen to 11 trillion yen . raise must raise Mitsubishi Estate the funds next April the purchase
-Mitsubishi Estate has n't decided how it will raise the funds for the purchase , which are due in cash next April , but the Marunouchi holdings alone are estimated to have a market value of as much as 10 trillion yen to 11 trillion yen . estimated estimated the Marunouchi holdings as much as 10 trillion yen to 11 trillion yen .
-Mitsubishi Estate has n't decided how it will raise the funds for the purchase , which are due in cash next April , but the Marunouchi holdings alone are estimated to have a market value of as much as 10 trillion yen to 11 trillion yen . have have a market value as much as 10 trillion yen to 11 trillion yen . the Marunouchi holdings
-`` I think we could very well have { an economic } slowdown , beginning very soon if not already , '' he says . have could have { an economic } slowdown beginning very soon if not already
-`` I think we could very well have { an economic } slowdown , beginning very soon if not already , '' he says . beginning could beginning { an economic } slowdown very soon if not already
-The machine can run software written for other Mips computers , the company said . run can run The machine software other Mips computers
-The machine can run software written for other Mips computers , the company said . written written software other Mips computers
-The machine can run software written for other Mips computers , the company said . said said the company can run software written for other Mips computers The machine
-The machine can run software written for other Mips computers , the company said . said said the company The machine can run written for other Mips computers software
-The machine can run software written for other Mips computers , the company said . said said the company The machine can run software written for other Mips computers
-Mr. Mehl attributed the rise specifically to the Treasury bill increase . attributed attributed the rise Mr. Mehl the Treasury bill increase specifically
-That compared with an operating loss of $ 1.9 million on sales of $ 27.4 million in the year - earlier period . compared compared That in the year - earlier period loss of $ 1.9 million on sales of $ 27.4 million
-That compared with an operating loss of $ 1.9 million on sales of $ 27.4 million in the year - earlier period . compared compared an operating loss in the year - earlier period of $ 1.9 million on sales of $ 27.4 million
-That compared with an operating loss of $ 1.9 million on sales of $ 27.4 million in the year - earlier period . compared compared sales in the year - earlier period loss of $ 1.9 million on of $ 27.4 million
-State Senator J.E. `` Buster '' Brown , a Republican who is running for Texas attorney general , introduced the bill . running running State Senator Texas attorney general introduced the bill
-State Senator J.E. `` Buster '' Brown , a Republican who is running for Texas attorney general , introduced the bill . running running J.E. `` Buster '' Brown Texas attorney general introduced the bill
-State Senator J.E. `` Buster '' Brown , a Republican who is running for Texas attorney general , introduced the bill . running running a Republican Texas attorney general introduced the bill
-State Senator J.E. `` Buster '' Brown , a Republican who is running for Texas attorney general , introduced the bill . introduced introduced the bill State Senator
-State Senator J.E. `` Buster '' Brown , a Republican who is running for Texas attorney general , introduced the bill . introduced introduced the bill J.E. `` Buster '' Brown
-State Senator J.E. `` Buster '' Brown , a Republican who is running for Texas attorney general , introduced the bill . introduced introduced the bill a Republican who is running for Texas attorney general
-President Bush said that three members of his cabinet will lead a presidential mission to Poland to gauge how the U.S. can help the new non - Communist government 's economic changes . said said President Bush three members of his cabinet will lead a presidential mission to Poland to gauge how the U.S. can help the new non - Communist government 's economic changes .
-President Bush said that three members of his cabinet will lead a presidential mission to Poland to gauge how the U.S. can help the new non - Communist government 's economic changes . lead will lead three members of his cabinet a presidential mission to gauge how the U.S. can help the new non - Communist government 's economic changes . Poland
-President Bush said that three members of his cabinet will lead a presidential mission to Poland to gauge how the U.S. can help the new non - Communist government 's economic changes . gauge will gauge three members of his cabinet how the U.S. can lead a presidential mission to Poland help the new non - Communist government 's economic changes .
-President Bush said that three members of his cabinet will lead a presidential mission to Poland to gauge how the U.S. can help the new non - Communist government 's economic changes . help can help U.S. Poland three members of his cabinet will lead a presidential mission to to gauge how the new non - Communist government 's economic changes
-President Bush said that three members of his cabinet will lead a presidential mission to Poland to gauge how the U.S. can help the new non - Communist government 's economic changes . help can help U.S. new non - Communist government three members of his cabinet will lead a presidential mission to Poland to gauge how the 's economic changes
-That would be a formula for ensuring even more FHA red ink . ensuring would ensuring even more FHA red ink a formula
-Stephen McCartin , Mr. Hunt 's attorney , said his client welcomed the gamble . said said his client welcomed the gamble Stephen McCartin
-Stephen McCartin , Mr. Hunt 's attorney , said his client welcomed the gamble . said said his client welcomed the gamble Mr. Hunt 's attorney
-Stephen McCartin , Mr. Hunt 's attorney , said his client welcomed the gamble . welcomed welcomed the gamble his client
-The researchers also pulled off a second genetic engineering trick in order to get male - sterile plants in large enough numbers to produce a commercial hybrid seed crop . pulled pulled The researchers a second genetic engineering trick in order to get male - sterile plants in large enough numbers to produce a commercial hybrid seed crop
-The researchers also pulled off a second genetic engineering trick in order to get male - sterile plants in large enough numbers to produce a commercial hybrid seed crop . get might get male - sterile plants in large enough numbers to produce a commercial hybrid seed crop a second genetic engineering trick The researchers
-The researchers also pulled off a second genetic engineering trick in order to get male - sterile plants in large enough numbers to produce a commercial hybrid seed crop . produce might produce a commercial hybrid seed crop a second genetic engineering trick male - sterile plants large enough numbers
-Chrysler has had to temporarily close the St. Louis and Toledo plants recently because of excess inventories of vehicles built there . had had Chrysler temporarily close the St. Louis and Toledo plants recently because of excess inventories of vehicles built there
-Chrysler has had to temporarily close the St. Louis and Toledo plants recently because of excess inventories of vehicles built there . close had close the St. Louis and Toledo plants temporarily Chrysler
-Chrysler has had to temporarily close the St. Louis and Toledo plants recently because of excess inventories of vehicles built there . built built vehicles there
-Coke has tended to increase its control when results were sluggish in a given country . tended tended Coke increase its control when results were sluggish in a given country .
-Coke has tended to increase its control when results were sluggish in a given country . increase may increase Coke its control results were sluggish in a given country .
-Coke has tended to increase its control when results were sluggish in a given country . given given country when results were sluggish
-Terms call for First Security to issue about 0.55 share of its stock for each Deseret share held , or a total of about 550,000 First Security shares . call call Terms First Security to issue about 0.55 share of its stock for each Deseret share held , or a total of about 550,000 First Security shares
-Terms call for First Security to issue about 0.55 share of its stock for each Deseret share held , or a total of about 550,000 First Security shares . issue will issue First Security about 0.55 share of its stock for each Deseret share held , or a total of about 550,000 shares
-Terms call for First Security to issue about 0.55 share of its stock for each Deseret share held , or a total of about 550,000 First Security shares . held held each Deseret share
-Through the first nine months of the year , the unadjusted total of all new construction was $ 199.6 billion , flat compared with a year earlier . compared compared a year earlier the unadjusted total of all new construction
-BNL previously reported that its Georgia branch had taken on loan commitments topping $ 3 billion without the Rome - based management 's approval . reported reported BNL its Georgia branch had taken on loan commitments topping $ 3 billion without the Rome - based management 's approval . previously
-BNL previously reported that its Georgia branch had taken on loan commitments topping $ 3 billion without the Rome - based management 's approval . taken had taken Georgia branch loan commitments topping $ 3 billion without the Rome - based management 's approval .
-BNL previously reported that its Georgia branch had taken on loan commitments topping $ 3 billion without the Rome - based management 's approval . topping topping loan commitments $ 3 billion
-BNL previously reported that its Georgia branch had taken on loan commitments topping $ 3 billion without the Rome - based management 's approval . based based Rome
-People close to the GM - Jaguar talks agreed that Ford now may be able to shut out General Motors . agreed agreed People close to the GM - Jaguar talks Ford now may be able to shut out General Motors
-People close to the GM - Jaguar talks agreed that Ford now may be able to shut out General Motors . shut may shut Ford General Motors now
-Newport Electronics Inc. named a new slate of officers , a move that follows replacement of the company 's five incumbent directors last week . named named Newport Electronics Inc. a new slate of officers a move that follows replacement of the company 's five incumbent directors last week
-Newport Electronics Inc. named a new slate of officers , a move that follows replacement of the company 's five incumbent directors last week . named named the company a new slate of officers a move that follows replacement of 's five incumbent directors last week
-Newport Electronics Inc. named a new slate of officers , a move that follows replacement of the company 's five incumbent directors last week . follows follows replacement of the company 's five incumbent directors last week a move
-Newport Electronics Inc. named a new slate of officers , a move that follows replacement of the company 's five incumbent directors last week . follows follows replacement of the company 's five incumbent directors last week Newport Electronics Inc. named a new slate of officers
-One group of middle - aged manufacturing men from the company 's Zama plant outside Tokyo was supposed to check out a trendy restaurant in the city . manufacturing manufacturing men outside Tokyo
-One group of middle - aged manufacturing men from the company 's Zama plant outside Tokyo was supposed to check out a trendy restaurant in the city . supposed supposed One group of middle - aged manufacturing men check out a trendy restaurant in the city
-One group of middle - aged manufacturing men from the company 's Zama plant outside Tokyo was supposed to check out a trendy restaurant in the city . check would check One group of middle - aged manufacturing men a trendy restaurant in the city
-It said financing would consist of $ 250 million from a private placement obtained through Shearson Lehman Hutton Inc. and a $ 150 million revolving credit line underwritten by Chase Manhattan Bank . consist would consist financing $ 250 million from a private placement obtained through Shearson Lehman Hutton Inc. and a $ 150 million revolving credit line underwritten by Chase Manhattan Bank
-It said financing would consist of $ 250 million from a private placement obtained through Shearson Lehman Hutton Inc. and a $ 150 million revolving credit line underwritten by Chase Manhattan Bank . obtained obtained Shearson Lehman Hutton Inc. $ 250 million a private placement
-It said financing would consist of $ 250 million from a private placement obtained through Shearson Lehman Hutton Inc. and a $ 150 million revolving credit line underwritten by Chase Manhattan Bank . revolving revolving $ 150 million credit line underwritten by Chase Manhattan Bank
-It said financing would consist of $ 250 million from a private placement obtained through Shearson Lehman Hutton Inc. and a $ 150 million revolving credit line underwritten by Chase Manhattan Bank . underwritten underwritten a $ 150 million revolving credit line Chase Manhattan Bank
-Executions , regardless of how frequently they occur , are also `` proper retribution '' for heinous crimes , Mr. Hatch argues . occur occur Executions heinous crimes frequently
-Executions , regardless of how frequently they occur , are also `` proper retribution '' for heinous crimes , Mr. Hatch argues . occur occur are heinous crimes frequently
-Executions , regardless of how frequently they occur , are also `` proper retribution '' for heinous crimes , Mr. Hatch argues . argues argues Mr. Hatch Executions , regardless of how frequently they occur , are also `` proper retribution '' for heinous crimes
-Executions , regardless of how frequently they occur , are also `` proper retribution '' for heinous crimes , Mr. Hatch argues . argues argues Mr. Hatch are Executions , regardless of how frequently they occur , also `` proper retribution '' for heinous crimes
-Nancy Craig , advertising manager for the Red Cross , readily admits `` they 're piggybacking on our reputation . '' admits admits Nancy Craig they 're piggybacking on our reputation readily
-Nancy Craig , advertising manager for the Red Cross , readily admits `` they 're piggybacking on our reputation . '' admits admits advertising manager for the Red Cross they 're piggybacking on our reputation readily
-He said it has n't yet been determined how the RTC will raise the cash , but the administration does n't want it to be included on the federal budget , because it would `` distort '' the budget process by requiring either exemptions from Gramm-Rudman or big increases in the budget deficit . determined has n't determined how the RTC will raise the cash
-He said it has n't yet been determined how the RTC will raise the cash , but the administration does n't want it to be included on the federal budget , because it would `` distort '' the budget process by requiring either exemptions from Gramm-Rudman or big increases in the budget deficit . raise will raise cash the RTC
-He said it has n't yet been determined how the RTC will raise the cash , but the administration does n't want it to be included on the federal budget , because it would `` distort '' the budget process by requiring either exemptions from Gramm-Rudman or big increases in the budget deficit . want does n't want be included on the federal budget the administration because it would `` distort '' the budget process by requiring either exemptions from Gramm-Rudman or big increases in the budget deficit
-He said it has n't yet been determined how the RTC will raise the cash , but the administration does n't want it to be included on the federal budget , because it would `` distort '' the budget process by requiring either exemptions from Gramm-Rudman or big increases in the budget deficit . included should n't included on the federal budget the cash because it would `` distort '' the budget process
-He said it has n't yet been determined how the RTC will raise the cash , but the administration does n't want it to be included on the federal budget , because it would `` distort '' the budget process by requiring either exemptions from Gramm-Rudman or big increases in the budget deficit . requiring would requiring either exemptions from Gramm-Rudman or big increases in the budget deficit included on the federal budget
-People familiar with Nekoosa said its board is n't likely to meet before the week after next to respond to the bid . said said People familiar with Nekoosa its board is n't likely to meet before the week after next to respond to the bid
-People familiar with Nekoosa said its board is n't likely to meet before the week after next to respond to the bid . meet might not meet board before the week after next
-People familiar with Nekoosa said its board is n't likely to meet before the week after next to respond to the bid . respond will respond the bid board
-Boyer and Cohen , for instance , both still university researchers , had to be talked into applying for a patent on their gene - splicing technique -- and then the Patent Office refused to grant it . had would had to be talked into applying for a patent on their gene - splicing technique -- and then the Patent Office refused to grant it
-Boyer and Cohen , for instance , both still university researchers , had to be talked into applying for a patent on their gene - splicing technique -- and then the Patent Office refused to grant it . talked would talked Boyer applying for a patent on their gene - splicing technique -- and then the Patent Office refused to grant it
-Boyer and Cohen , for instance , both still university researchers , had to be talked into applying for a patent on their gene - splicing technique -- and then the Patent Office refused to grant it . talked would talked Cohen applying for a patent on their gene - splicing technique -- and then the Patent Office refused to grant it
-Boyer and Cohen , for instance , both still university researchers , had to be talked into applying for a patent on their gene - splicing technique -- and then the Patent Office refused to grant it . talked would talked university researchers applying for a patent on their gene - splicing technique -- and then the Patent Office refused to grant it
-Boyer and Cohen , for instance , both still university researchers , had to be talked into applying for a patent on their gene - splicing technique -- and then the Patent Office refused to grant it . applying would applying Boyer had to be talked into a patent on their gene - splicing technique
-Boyer and Cohen , for instance , both still university researchers , had to be talked into applying for a patent on their gene - splicing technique -- and then the Patent Office refused to grant it . applying would applying Cohen had to be talked into a patent on their gene - splicing technique
-Boyer and Cohen , for instance , both still university researchers , had to be talked into applying for a patent on their gene - splicing technique -- and then the Patent Office refused to grant it . applying would applying university researchers had to be talked into a patent on their gene - splicing technique
-Boyer and Cohen , for instance , both still university researchers , had to be talked into applying for a patent on their gene - splicing technique -- and then the Patent Office refused to grant it . refused refused Patent Office grant it
-Competition in the sale of complete bikes is heating up too . heating heating Competition in the sale of complete bikes
-T. Marshall Hahn Jr. , Georgia - Pacific 's chairman and chief executive , said in an interview that all terms of the offer are negotiable . said said T. Marshall Hahn Jr. , Georgia - Pacific 's chairman and chief executive in an interview all terms of the offer are negotiable
-He could acquire a staff of loyal Pinkerton 's employees , many of whom had spent their entire careers with the firm , he could eliminate a competitor and he could get the name recognition he 'd wanted . spent had spent loyal Pinkerton 's employees entire careers with the firm
-He could acquire a staff of loyal Pinkerton 's employees , many of whom had spent their entire careers with the firm , he could eliminate a competitor and he could get the name recognition he 'd wanted . spent had spent many of whom entire careers with the firm
-$ 200 million of bonds due Nov. 16 , 1994 , with equity - purchase warrants , indicating a 4 1\/2 % coupon at par via Yamaichi International Europe Ltd . indicating indicating a 4 1\/2 % coupon at par via Yamaichi International Europe Ltd
-Some analysts have said Courtaulds ' moves could boost the company 's value by 5 % to 10 % , because the two entities separately will carry a higher price earnings multiple than they did combined . said said Some analysts Courtaulds ' moves could boost the company 's value by 5 % to 10 % , because the two entities separately will carry a higher price earnings multiple than they did combined .
-Some analysts have said Courtaulds ' moves could boost the company 's value by 5 % to 10 % , because the two entities separately will carry a higher price earnings multiple than they did combined . boost could boost Courtaulds ' moves the company 's value by 5 % to 10 % because the two entities separately will carry a higher price earnings multiple than they did combined .
-Some analysts have said Courtaulds ' moves could boost the company 's value by 5 % to 10 % , because the two entities separately will carry a higher price earnings multiple than they did combined . carry will carry the two entities separately a higher price earnings multiple
-Some analysts have said Courtaulds ' moves could boost the company 's value by 5 % to 10 % , because the two entities separately will carry a higher price earnings multiple than they did combined . combined combined the two entities
-Jaguar shares closed at 869 pence , up 122 pence , on hefty turnover of 9.7 million shares . closed closed Jaguar shares at 869 pence , up 122 pence , on hefty turnover of 9.7 million shares
-`` The profit locking - in is definitely going on , '' said Mr. Mills , whose firm manages $ 600 million for Boston Co . going going The profit locking - in definitely
-`` The profit locking - in is definitely going on , '' said Mr. Mills , whose firm manages $ 600 million for Boston Co . said said Mr. Mills The profit locking - in is definitely going on
-`` The profit locking - in is definitely going on , '' said Mr. Mills , whose firm manages $ 600 million for Boston Co . manages manages firm $ 600 million Boston Co .
-While the composite index lost less than a third of its year - to - date gains in the market 's recent decline , the technology group 's gains were more than halved . lost lost composite index less than a third of its year - to - date gains in the market 's recent decline
-While the composite index lost less than a third of its year - to - date gains in the market 's recent decline , the technology group 's gains were more than halved . halved halved technology group 's gains
-Mr. Achenbaum 's move follows the announcement last month that his consulting partner , Stanley Canter , 66 , would retire . follows follows the announcement last month that his consulting partner , Stanley Canter , 66 , would retire
-Mr. Achenbaum 's move follows the announcement last month that his consulting partner , Stanley Canter , 66 , would retire . retire will retire Stanley Canter
-FEDERAL NATIONAL MORTGAGE ASSOCIATION ( Fannie Mae ) : Posted yields on 30 year mortgage commitments for delivery within 30 days ( priced at par ) 9.75 % , standard conventional fixed - rate mortgages ; 8.75 % , 6\/2 rate capped one - year adjustable rate mortgages . Posted posted FEDERAL NATIONAL MORTGAGE ASSOCIATION yields on 30 year mortgage commitments for delivery within 30 days
-FEDERAL NATIONAL MORTGAGE ASSOCIATION ( Fannie Mae ) : Posted yields on 30 year mortgage commitments for delivery within 30 days ( priced at par ) 9.75 % , standard conventional fixed - rate mortgages ; 8.75 % , 6\/2 rate capped one - year adjustable rate mortgages . Posted posted Fannie Mae yields on 30 year mortgage commitments for delivery within 30 days
-FEDERAL NATIONAL MORTGAGE ASSOCIATION ( Fannie Mae ) : Posted yields on 30 year mortgage commitments for delivery within 30 days ( priced at par ) 9.75 % , standard conventional fixed - rate mortgages ; 8.75 % , 6\/2 rate capped one - year adjustable rate mortgages . priced priced par 30 year mortgage commitments
-FEDERAL NATIONAL MORTGAGE ASSOCIATION ( Fannie Mae ) : Posted yields on 30 year mortgage commitments for delivery within 30 days ( priced at par ) 9.75 % , standard conventional fixed - rate mortgages ; 8.75 % , 6\/2 rate capped one - year adjustable rate mortgages . fixed fixed rate standard conventional
-FEDERAL NATIONAL MORTGAGE ASSOCIATION ( Fannie Mae ) : Posted yields on 30 year mortgage commitments for delivery within 30 days ( priced at par ) 9.75 % , standard conventional fixed - rate mortgages ; 8.75 % , 6\/2 rate capped one - year adjustable rate mortgages . capped capped 6\/2 rate one - year adjustable rate mortgages
-The IRS already is doing intensive TCMP audits of 19,000 returns for 1987 and fiscal 1988 filed by corporations with under $ 10 million in assets ... . doing doing The IRS intensive TCMP audits of 19,000 returns 1987 and fiscal 1988
-The IRS already is doing intensive TCMP audits of 19,000 returns for 1987 and fiscal 1988 filed by corporations with under $ 10 million in assets ... . filed filed corporations with under $ 10 million in assets 19,000 returns 1987 and fiscal 1988
-His recent appearance at the Metropolitan Museum , dubbed `` A Musical Odyssey , '' was a case in point . dubbed dubbed A Musical Odyssey His recent appearance at the Metropolitan Museum
-Officials proposed a cut in the defense budget this year to 70.9 billion rubles ( US$ 114.3 billion ) from 77.3 billion rubles ( US$ 125 billion ) as well as large cuts in outlays for new factories and equipment . proposed proposed Officials a cut in the defense budget this year to 70.9 billion rubles ( US$ 114.3 billion ) from 77.3 billion rubles ( US$ 125 billion ) as well as large cuts in outlays for new factories and equipment
-The announcement effectively removes the British government as an impediment to a takeover of the company , which is being stalked by General Motors and Ford . removes removes The announcement the British government as an impediment to a takeover of the company
-The announcement effectively removes the British government as an impediment to a takeover of the company , which is being stalked by General Motors and Ford . stalked stalked The announcement effectively removes the British government as an impediment to a takeover of the company General Motors
-The announcement effectively removes the British government as an impediment to a takeover of the company , which is being stalked by General Motors and Ford . stalked stalked The announcement effectively removes the British government as an impediment to a takeover of the company Ford
-Large cross - border deals numbered 51 and totaled $ 17.1 billion in the second quarter , the firm added . numbered numbered Large cross - border deals 51
-Large cross - border deals numbered 51 and totaled $ 17.1 billion in the second quarter , the firm added . totaled totaled Large cross - border deals $ 17.1 billion in the second quarter
-Large cross - border deals numbered 51 and totaled $ 17.1 billion in the second quarter , the firm added . added added the firm Large cross - border deals numbered 51 and totaled $ 17.1 billion in the second quarter
-With Japanese companies in a wide range of industries -- from heavy industry to securities firms -- increasing their market share world - wide , the prospect of an even more efficient Japanese economic army may rattle foreigners . increasing increasing Japanese companies their market share world - wide
-With Japanese companies in a wide range of industries -- from heavy industry to securities firms -- increasing their market share world - wide , the prospect of an even more efficient Japanese economic army may rattle foreigners . increasing increasing Japanese companies a wide range of industries -- from heavy industry to securities firms
-With Japanese companies in a wide range of industries -- from heavy industry to securities firms -- increasing their market share world - wide , the prospect of an even more efficient Japanese economic army may rattle foreigners . rattle will rattle foreigners an even more efficient Japanese economic army
-`` There are some things that have gone on here that nobody can explain , '' she says . gone gone some things here
-`` There are some things that have gone on here that nobody can explain , '' she says . explain ca n't explain some things that have gone on here nobody
-The brokerage firm tracks technology stocks with its Technology Index , which appreciated only 10.59 % in the first nine months of this year . tracks tracks The brokerage firm technology stocks with its Technology Index
-The brokerage firm tracks technology stocks with its Technology Index , which appreciated only 10.59 % in the first nine months of this year . appreciated appreciated technology stocks only 10.59 % in the first nine months of this year
-I worry more about things becoming so unraveled on the other side that they might become unable to negotiate . becoming might becoming things so unraveled
-I worry more about things becoming so unraveled on the other side that they might become unable to negotiate . unraveled might unraveled things on the other side
-I worry more about things becoming so unraveled on the other side that they might become unable to negotiate . become might become things unable to negotiate
-Lawyers would eagerly seize on the provision in their death - penalty appeals , says Richard Burr , director of the NAACP Legal Defense and Educational Fund 's capital - punishment defense team . seize would seize the provision Lawyers eagerly in their death - penalty appeals
-Lawyers would eagerly seize on the provision in their death - penalty appeals , says Richard Burr , director of the NAACP Legal Defense and Educational Fund 's capital - punishment defense team . says says Lawyers would eagerly seize on the provision Richard Burr
-John M. Kucharski , EG&G 's chairman and chief executive , said the acquisition `` will extend EG&G 's core technologies , strengthen its position in the European Economic Community and assure a strength and presence in the Eastern European market . '' said said John M. Kucharski the acquisition `` will extend EG&G 's core technologies , strengthen its position in the European Economic Community and assure a strength and presence in the Eastern European market . ''
-John M. Kucharski , EG&G 's chairman and chief executive , said the acquisition `` will extend EG&G 's core technologies , strengthen its position in the European Economic Community and assure a strength and presence in the Eastern European market . '' extend will extend the acquisition EG&G 's core technologies
-John M. Kucharski , EG&G 's chairman and chief executive , said the acquisition `` will extend EG&G 's core technologies , strengthen its position in the European Economic Community and assure a strength and presence in the Eastern European market . '' strengthen will strengthen its position in the European Economic Community
-John M. Kucharski , EG&G 's chairman and chief executive , said the acquisition `` will extend EG&G 's core technologies , strengthen its position in the European Economic Community and assure a strength and presence in the Eastern European market . '' assure will assure a strength and presence in the Eastern European market
-We finally rendezvoused with our balloon , which had come to rest on a dirt road amid a clutch of Epinalers who watched us disassemble our craft -- another half - an - hour of non - flight activity -- that included the precision routine of yanking the balloon to the ground , punching all the air out of it , rolling it up and cramming it and the basket into the trailer . come had come our balloon rest on a dirt road amid a clutch of Epinalers
-We finally rendezvoused with our balloon , which had come to rest on a dirt road amid a clutch of Epinalers who watched us disassemble our craft -- another half - an - hour of non - flight activity -- that included the precision routine of yanking the balloon to the ground , punching all the air out of it , rolling it up and cramming it and the basket into the trailer . rest rest our balloon on a dirt road amid a clutch of Epinalers
-Congress still is struggling to dismantle the unpopular Catastrophic Care Act of 1988 , which boosted benefits for the elderly and taxed them to pay for the new coverage . struggling struggling Congress dismantle the unpopular Catastrophic Care Act of 1988 still
-Congress still is struggling to dismantle the unpopular Catastrophic Care Act of 1988 , which boosted benefits for the elderly and taxed them to pay for the new coverage . dismantle might dismantle Congress the unpopular Catastrophic Care Act of 1988
-Congress still is struggling to dismantle the unpopular Catastrophic Care Act of 1988 , which boosted benefits for the elderly and taxed them to pay for the new coverage . boosted boosted the unpopular Catastrophic Care Act of 1988 benefits for the elderly
-Congress still is struggling to dismantle the unpopular Catastrophic Care Act of 1988 , which boosted benefits for the elderly and taxed them to pay for the new coverage . taxed taxed the unpopular Catastrophic Care Act of 1988 the elderly to pay for the new coverage
-Congress still is struggling to dismantle the unpopular Catastrophic Care Act of 1988 , which boosted benefits for the elderly and taxed them to pay for the new coverage . pay pay the new coverage
-A federation official attributed the decline to brisk demand from domestic industries backed by continuing economic expansion in Japan . attributed attributed brisk demand from domestic industries backed by continuing economic expansion in Japan A federation official the decline
-A federation official attributed the decline to brisk demand from domestic industries backed by continuing economic expansion in Japan . backed backed brisk demand from domestic industries continuing economic expansion in Japan
-A federation official attributed the decline to brisk demand from domestic industries backed by continuing economic expansion in Japan . continuing continuing economic expansion in Japan
-And with Al 's record of being a delver and a detail guy , you can see how the two fit , '' said Alan Gottesman , an analyst with PaineWebber . fit might fit the two with Al 's record of being a delver and a detail guy
-And with Al 's record of being a delver and a detail guy , you can see how the two fit , '' said Alan Gottesman , an analyst with PaineWebber . said said Alan Gottesman And with Al 's record of being a delver and a detail guy , you can see how the two fit , ''
-And with Al 's record of being a delver and a detail guy , you can see how the two fit , '' said Alan Gottesman , an analyst with PaineWebber . said said an analyst with PaineWebber And with Al 's record of being a delver and a detail guy , you can see how the two fit , ''
-But it could also help American companies , which also are starting to try to open the market . starting starting American companies try to open the market
-But it could also help American companies , which also are starting to try to open the market . try try open the market American companies
-But it could also help American companies , which also are starting to try to open the market . open will open the market American companies
-A company spokesman did n't know Mr. Wakeman 's age . know did n't know A company spokesman Mr. Wakeman 's age
-The IRS has been seeking more than $ 300 million in back taxes from Mr. Hunt . seeking seeking The IRS from Mr. Hunt more than $ 300 million in back taxes
-Profit after tax and minority interest but before extraordinary items rose 12 % to # 135.2 million ; per - share earnings rose to five pence from 4.5 pence . rose rose Profit after tax and minority interest 12 % 135.2 million
-Profit after tax and minority interest but before extraordinary items rose 12 % to # 135.2 million ; per - share earnings rose to five pence from 4.5 pence . rose rose per - share earnings five pence 4.5 pence
-Mr. Rifenburgh also noted that 150 million shares of MiniScribe common stock were traded during the past three years , `` so there 's a tremendous amount of exposure . '' noted noted Mr. Rifenburgh that 150 million shares of MiniScribe common stock were traded during the past three years , `` so there 's a tremendous amount of exposure . ''
-Mr. Rifenburgh also noted that 150 million shares of MiniScribe common stock were traded during the past three years , `` so there 's a tremendous amount of exposure . '' traded traded 150 million shares of MiniScribe common stock during the past three years
-The gene thus can prevent a plant from fertilizing itself . prevent can prevent The gene a plant from fertilizing itself
-The gene thus can prevent a plant from fertilizing itself . fertilizing fertilizing a plant
-The publishing concern said it retained the investment banking firm of Donaldson , Lufkin & Jenrette Securities Inc. to act as its financial adviser , assisting in the evaluation of various financial and strategic alternatives , including debt refinancing , raising capital , recapitalization , a merger or sale of the company . said said The publishing concern it retained the investment banking firm of Donaldson , Lufkin & Jenrette Securities Inc. to act as its financial adviser
-The publishing concern said it retained the investment banking firm of Donaldson , Lufkin & Jenrette Securities Inc. to act as its financial adviser , assisting in the evaluation of various financial and strategic alternatives , including debt refinancing , raising capital , recapitalization , a merger or sale of the company . said said the company it retained the investment banking firm of Donaldson , Lufkin & Jenrette Securities Inc. to act as its financial adviser
-The publishing concern said it retained the investment banking firm of Donaldson , Lufkin & Jenrette Securities Inc. to act as its financial adviser , assisting in the evaluation of various financial and strategic alternatives , including debt refinancing , raising capital , recapitalization , a merger or sale of the company . retained retained The publishing concern the investment banking firm of Donaldson , Lufkin & Jenrette Securities Inc. to act as its financial adviser
-The publishing concern said it retained the investment banking firm of Donaldson , Lufkin & Jenrette Securities Inc. to act as its financial adviser , assisting in the evaluation of various financial and strategic alternatives , including debt refinancing , raising capital , recapitalization , a merger or sale of the company . retained retained the company the investment banking firm of Donaldson , Lufkin & Jenrette Securities Inc. to act as its financial adviser
-The publishing concern said it retained the investment banking firm of Donaldson , Lufkin & Jenrette Securities Inc. to act as its financial adviser , assisting in the evaluation of various financial and strategic alternatives , including debt refinancing , raising capital , recapitalization , a merger or sale of the company . act will act the investment banking firm of Donaldson , Lufkin & Jenrette Securities Inc. its financial adviser The publishing concern
-The publishing concern said it retained the investment banking firm of Donaldson , Lufkin & Jenrette Securities Inc. to act as its financial adviser , assisting in the evaluation of various financial and strategic alternatives , including debt refinancing , raising capital , recapitalization , a merger or sale of the company . act will act the investment banking firm of Donaldson , Lufkin & Jenrette Securities Inc. its financial adviser the company
-The publishing concern said it retained the investment banking firm of Donaldson , Lufkin & Jenrette Securities Inc. to act as its financial adviser , assisting in the evaluation of various financial and strategic alternatives , including debt refinancing , raising capital , recapitalization , a merger or sale of the company . assisting assisting the evaluation of various financial and strategic alternatives the investment banking firm of Donaldson , Lufkin & Jenrette Securities Inc. The publishing concern
-The publishing concern said it retained the investment banking firm of Donaldson , Lufkin & Jenrette Securities Inc. to act as its financial adviser , assisting in the evaluation of various financial and strategic alternatives , including debt refinancing , raising capital , recapitalization , a merger or sale of the company . assisting assisting the evaluation of various financial and strategic alternatives the investment banking firm of Donaldson , Lufkin & Jenrette Securities Inc. the company
-The publishing concern said it retained the investment banking firm of Donaldson , Lufkin & Jenrette Securities Inc. to act as its financial adviser , assisting in the evaluation of various financial and strategic alternatives , including debt refinancing , raising capital , recapitalization , a merger or sale of the company . including including debt refinancing , raising capital , recapitalization , a merger or sale of the company the evaluation of various financial and strategic alternatives
-The publishing concern said it retained the investment banking firm of Donaldson , Lufkin & Jenrette Securities Inc. to act as its financial adviser , assisting in the evaluation of various financial and strategic alternatives , including debt refinancing , raising capital , recapitalization , a merger or sale of the company . raising will raising capital the investment banking firm of Donaldson , Lufkin & Jenrette Securities Inc. The publishing concern
-The publishing concern said it retained the investment banking firm of Donaldson , Lufkin & Jenrette Securities Inc. to act as its financial adviser , assisting in the evaluation of various financial and strategic alternatives , including debt refinancing , raising capital , recapitalization , a merger or sale of the company . raising will raising capital the investment banking firm of Donaldson , Lufkin & Jenrette Securities Inc. the company
-Stock prices rallied as the Georgia - Pacific bid broke the market 's recent gloom . rallied rallied Stock prices as the Georgia - Pacific bid broke the market 's recent gloom
-Stock prices rallied as the Georgia - Pacific bid broke the market 's recent gloom . broke broke Georgia - Pacific bid the market 's recent gloom
-He had developed a hatred for the hacker and a grudging appreciation of the federal `` spooks '' who make national security their business . grudging grudging appreciation of the federal `` spooks ''
-He had developed a hatred for the hacker and a grudging appreciation of the federal `` spooks '' who make national security their business . make make federal `` spooks '' national security their business
-The offering , Series 109 , is backed by Freddie Mac 10 % securities . backed backed The offering , Series 109 Freddie Mac 10 % securities
-Thus , a woman who used RU-486 to have an abortion would have to make three trips to the clinic past those picket lines ; an initial visit for medical screening ( anemics and those with previous pregnancy problems are eliminated ) and to take the pill , a second trip 48 hours later for the prostaglandin , administered either via injection or vaginal suppository , and a third trip a week later to make sure she has completely aborted . used used a woman RU-486 have an abortion
-Thus , a woman who used RU-486 to have an abortion would have to make three trips to the clinic past those picket lines ; an initial visit for medical screening ( anemics and those with previous pregnancy problems are eliminated ) and to take the pill , a second trip 48 hours later for the prostaglandin , administered either via injection or vaginal suppository , and a third trip a week later to make sure she has completely aborted . have would have an abortion make three trips to the clinic past those picket lines ; an initial visit for medical screening ( anemics and those with previous pregnancy problems are eliminated ) and to take the pill , a second trip 48 hours later for the prostaglandin , administered either via injection or vaginal suppository , and a third trip a week later to make sure she has completely aborted . a woman
-Thus , a woman who used RU-486 to have an abortion would have to make three trips to the clinic past those picket lines ; an initial visit for medical screening ( anemics and those with previous pregnancy problems are eliminated ) and to take the pill , a second trip 48 hours later for the prostaglandin , administered either via injection or vaginal suppository , and a third trip a week later to make sure she has completely aborted . have would have make three trips to the clinic past those picket lines ; an initial visit for medical screening ( anemics and those with previous pregnancy problems are eliminated ) and to take the pill , a second trip 48 hours later for the prostaglandin , administered either via injection or vaginal suppository , and a third trip a week later to make sure she has completely aborted . a woman used RU-486 to have an abortion
-Thus , a woman who used RU-486 to have an abortion would have to make three trips to the clinic past those picket lines ; an initial visit for medical screening ( anemics and those with previous pregnancy problems are eliminated ) and to take the pill , a second trip 48 hours later for the prostaglandin , administered either via injection or vaginal suppository , and a third trip a week later to make sure she has completely aborted . make would make a woman three trips to the clinic past those picket lines ; an initial visit for medical screening ( anemics and those with previous pregnancy problems are eliminated ) and to take the pill , a second trip 48 hours later for the prostaglandin , administered either via injection or vaginal suppository , and a third trip a week later to make sure she has completely aborted . used RU-486 to have an abortion
-Thus , a woman who used RU-486 to have an abortion would have to make three trips to the clinic past those picket lines ; an initial visit for medical screening ( anemics and those with previous pregnancy problems are eliminated ) and to take the pill , a second trip 48 hours later for the prostaglandin , administered either via injection or vaginal suppository , and a third trip a week later to make sure she has completely aborted . eliminated will eliminated those with previous pregnancy problems are an initial visit for medical screening
-Thus , a woman who used RU-486 to have an abortion would have to make three trips to the clinic past those picket lines ; an initial visit for medical screening ( anemics and those with previous pregnancy problems are eliminated ) and to take the pill , a second trip 48 hours later for the prostaglandin , administered either via injection or vaginal suppository , and a third trip a week later to make sure she has completely aborted . take will take the pill a woman an initial visit for medical screening
-Thus , a woman who used RU-486 to have an abortion would have to make three trips to the clinic past those picket lines ; an initial visit for medical screening ( anemics and those with previous pregnancy problems are eliminated ) and to take the pill , a second trip 48 hours later for the prostaglandin , administered either via injection or vaginal suppository , and a third trip a week later to make sure she has completely aborted . administered will administered via injection or vaginal suppository a woman a second trip 48 hours later
-Thus , a woman who used RU-486 to have an abortion would have to make three trips to the clinic past those picket lines ; an initial visit for medical screening ( anemics and those with previous pregnancy problems are eliminated ) and to take the pill , a second trip 48 hours later for the prostaglandin , administered either via injection or vaginal suppository , and a third trip a week later to make sure she has completely aborted . make would make a week later a third trip to sure she has completely aborted . a woman
-Thus , a woman who used RU-486 to have an abortion would have to make three trips to the clinic past those picket lines ; an initial visit for medical screening ( anemics and those with previous pregnancy problems are eliminated ) and to take the pill , a second trip 48 hours later for the prostaglandin , administered either via injection or vaginal suppository , and a third trip a week later to make sure she has completely aborted . aborted will aborted completely a woman
-All these vehicles have sharply improved Nissan 's morale and image -- but have n't done much for its market share . improved has n't improved Nissan 's morale and image All these vehicles its market share
-All these vehicles have sharply improved Nissan 's morale and image -- but have n't done much for its market share . done has n't done much its market share Nissan 's morale and image All these vehicles
-Mr. Blair said his libel suit seeks 10 million Canadian dollars ( US$ 8.5 million ) from Canadian Express and Hees executives Manfred Walt and Willard L'Heureux . said said Mr. Blair his libel suit seeks 10 million Canadian dollars ( US$ 8.5 million ) from Canadian Express and Hees executives Manfred Walt and Willard L'Heureux
-Mr. Blair said his libel suit seeks 10 million Canadian dollars ( US$ 8.5 million ) from Canadian Express and Hees executives Manfred Walt and Willard L'Heureux . seeks seeks his libel suit 10 million Canadian dollars ( US$ 8.5 million ) from Canadian Express and Hees executives Manfred Walt and Willard L'Heureux
-The 10.48 % yield represents a spread to the 20 - year Treasury of 2.45 percentage points . represents represents The 10.48 % yield a spread to the 20 - year Treasury of 2.45 percentage points
-Western Union has had major losses in recent years as its telex business has faltered in the face of competition from facsimile machines and as other business ventures have gone awry . had had Western Union major losses in recent years its telex business has faltered
-Western Union has had major losses in recent years as its telex business has faltered in the face of competition from facsimile machines and as other business ventures have gone awry . had had Western Union major losses in recent years other business ventures have gone awry
-Western Union has had major losses in recent years as its telex business has faltered in the face of competition from facsimile machines and as other business ventures have gone awry . faltered faltered its telex business competition from facsimile machines
-Western Union has had major losses in recent years as its telex business has faltered in the face of competition from facsimile machines and as other business ventures have gone awry . faltered faltered its telex business other business ventures have gone awry
-Western Union has had major losses in recent years as its telex business has faltered in the face of competition from facsimile machines and as other business ventures have gone awry . gone gone awry other business ventures
-`` Demand from Japan is expected to continue strong , but not from other areas of the world into the first quarter of next year , '' he said . expected expected Demand from Japan first quarter of next year continue strong
-`` Demand from Japan is expected to continue strong , but not from other areas of the world into the first quarter of next year , '' he said . continue will continue strong first quarter of next year Demand from Japan
-Orkem , France 's third - largest chemical group , said it would fund the acquisition through internal resources . said said Orkem it would fund the acquisition through internal resources
-Orkem , France 's third - largest chemical group , said it would fund the acquisition through internal resources . said said France 's third - largest chemical group it would fund the acquisition through internal resources
-Orkem , France 's third - largest chemical group , said it would fund the acquisition through internal resources . fund would fund Orkem the acquisition through internal resources
-Orkem , France 's third - largest chemical group , said it would fund the acquisition through internal resources . fund would fund France 's third - largest chemical group the acquisition through internal resources
-It said the situation is caused by efforts to streamline bloated factory payrolls . caused caused the situation efforts to streamline bloated factory payrolls
-It said the situation is caused by efforts to streamline bloated factory payrolls . streamline will streamline bloated factory payrolls
-Accomplishing both will be a balancing act as challenging as riding a unicycle . Accomplishing will accomplishing both will be a balancing act as challenging as riding a unicycle
-Accomplishing both will be a balancing act as challenging as riding a unicycle . challenging challenging riding a unicycle a balancing
-Accomplishing both will be a balancing act as challenging as riding a unicycle . riding riding a unicycle
-Because the Japanese `` alphabet '' is so huge , Japan has no history of typewriter use , and so `` keyboard allergy , '' especially among older workers , remains a common affliction . has has Japan no history of typewriter use Because the Japanese `` alphabet '' is so huge `` keyboard allergy , '' especially among older workers , remains a common affliction .
-Because the Japanese `` alphabet '' is so huge , Japan has no history of typewriter use , and so `` keyboard allergy , '' especially among older workers , remains a common affliction . remains remains a common affliction Japan has no history of typewriter use older workers keyboard allergy
-This year , Mr. Wathen says the firm will be able to service debt and still turn a modest profit . says says Mr. Wathen the firm will be able to service debt and still turn a modest profit
-This year , Mr. Wathen says the firm will be able to service debt and still turn a modest profit . service will service debt the firm This year
-This year , Mr. Wathen says the firm will be able to service debt and still turn a modest profit . turn will turn the firm a modest profit This year
-Accepted bids ranged from 8 % to 8.019 % . Accepted accepted bids ranged from 8 % to 8.019 %
-Accepted bids ranged from 8 % to 8.019 % . ranged ranged bids 8 %
-Ms. Shere has offered a $ 500 reward for the book 's return but figures she 'll have to reinvent many recipes from scratch . offered offered Ms. Shere a reward $ 500 for the book 's return
-Ms. Shere has offered a $ 500 reward for the book 's return but figures she 'll have to reinvent many recipes from scratch . offered offered she 'll a reward $ 500 for the book 's return
-Ms. Shere has offered a $ 500 reward for the book 's return but figures she 'll have to reinvent many recipes from scratch . figures figures she 'll have to reinvent many recipes from scratch Ms. Shere
-Ms. Shere has offered a $ 500 reward for the book 's return but figures she 'll have to reinvent many recipes from scratch . figures figures have to reinvent many recipes from scratch she 'll
-Ms. Shere has offered a $ 500 reward for the book 's return but figures she 'll have to reinvent many recipes from scratch . have will have reinvent many recipes from scratch Ms. Shere
-Ms. Shere has offered a $ 500 reward for the book 's return but figures she 'll have to reinvent many recipes from scratch . have will have reinvent many recipes from scratch she
-Ms. Shere has offered a $ 500 reward for the book 's return but figures she 'll have to reinvent many recipes from scratch . reinvent will reinvent many recipes from scratch Ms. Shere
-Ms. Shere has offered a $ 500 reward for the book 's return but figures she 'll have to reinvent many recipes from scratch . reinvent will reinvent many recipes from scratch she 'll
-For instance , sales of treadmills , exercise bikes , stair climbers and the like are expected to rise 8 % to about $ 1.52 billion this year , according to the National Sporting Goods Association , which sees the home market as one of the hottest growth areas for the 1990s . expected expected sales of treadmills , exercise bikes , stair climbers and the like rise 8 % to about $ 1.52 billion the National Sporting Goods Association
-For instance , sales of treadmills , exercise bikes , stair climbers and the like are expected to rise 8 % to about $ 1.52 billion this year , according to the National Sporting Goods Association , which sees the home market as one of the hottest growth areas for the 1990s . rise might rise sales of treadmills , exercise bikes , stair climbers and the like 8 % about $ 1.52 billion this year
-For instance , sales of treadmills , exercise bikes , stair climbers and the like are expected to rise 8 % to about $ 1.52 billion this year , according to the National Sporting Goods Association , which sees the home market as one of the hottest growth areas for the 1990s . according according the National Sporting Goods Association sales of treadmills , exercise bikes , stair climbers and the like are expected to rise 8 % to about $ 1.52 billion this year
-For instance , sales of treadmills , exercise bikes , stair climbers and the like are expected to rise 8 % to about $ 1.52 billion this year , according to the National Sporting Goods Association , which sees the home market as one of the hottest growth areas for the 1990s . sees sees the home market as one of the hottest growth areas for the 1990s the National Sporting Goods Association
-Mr. Robinson of Delta & Pine , the seed producer in Scott , Miss. , said Plant Genetic 's success in creating genetically engineered male steriles does n't automatically mean it would be simple to create hybrids in all crops . said said Mr. Robinson of Delta & Pine Plant Genetic 's success in creating genetically engineered male steriles does n't automatically mean it would be simple to create hybrids in all crops .
-Mr. Robinson of Delta & Pine , the seed producer in Scott , Miss. , said Plant Genetic 's success in creating genetically engineered male steriles does n't automatically mean it would be simple to create hybrids in all crops . creating creating Plant Genetic genetically engineered male steriles
-Mr. Robinson of Delta & Pine , the seed producer in Scott , Miss. , said Plant Genetic 's success in creating genetically engineered male steriles does n't automatically mean it would be simple to create hybrids in all crops . engineered engineered Plant Genetic male steriles
-Mr. Robinson of Delta & Pine , the seed producer in Scott , Miss. , said Plant Genetic 's success in creating genetically engineered male steriles does n't automatically mean it would be simple to create hybrids in all crops . mean mean Mr. Robinson of Delta & Pine does n't automatically it would be simple to create hybrids in all crops . Plant Genetic 's success in creating genetically engineered male steriles
-Mr. Robinson of Delta & Pine , the seed producer in Scott , Miss. , said Plant Genetic 's success in creating genetically engineered male steriles does n't automatically mean it would be simple to create hybrids in all crops . create can create hybrids in all crops . Plant Genetic 's success in creating male steriles genetically engineered
-`` People see extra messages in advertising , and if a manufacturer is clearly trying to get something out of it ... if it 's too transparent ... then consumers will see through that , '' warns John Philip Jones , chairman of the advertising department at the Newhouse School of Public Communications at Syracuse University . see see extra messages People in advertising
-`` People see extra messages in advertising , and if a manufacturer is clearly trying to get something out of it ... if it 's too transparent ... then consumers will see through that , '' warns John Philip Jones , chairman of the advertising department at the Newhouse School of Public Communications at Syracuse University . trying might trying to get something out of it a manufacturer clearly
-`` People see extra messages in advertising , and if a manufacturer is clearly trying to get something out of it ... if it 's too transparent ... then consumers will see through that , '' warns John Philip Jones , chairman of the advertising department at the Newhouse School of Public Communications at Syracuse University . get might get something a manufacturer
-`` People see extra messages in advertising , and if a manufacturer is clearly trying to get something out of it ... if it 's too transparent ... then consumers will see through that , '' warns John Philip Jones , chairman of the advertising department at the Newhouse School of Public Communications at Syracuse University . see will see that consumers if it 's too transparent
-`` People see extra messages in advertising , and if a manufacturer is clearly trying to get something out of it ... if it 's too transparent ... then consumers will see through that , '' warns John Philip Jones , chairman of the advertising department at the Newhouse School of Public Communications at Syracuse University . see will see if a manufacturer is clearly trying to get something out of it consumers if it 's too transparent
-`` People see extra messages in advertising , and if a manufacturer is clearly trying to get something out of it ... if it 's too transparent ... then consumers will see through that , '' warns John Philip Jones , chairman of the advertising department at the Newhouse School of Public Communications at Syracuse University . warns warns John Philip Jones if a manufacturer is clearly trying to get something out of it ... if it 's too transparent ... then consumers will see through that
-Chugai agreed to pay $ 6.25 a share for Gen - Probe 's 17.6 million common shares outstanding on a fully diluted basis . agreed agreed Chugai to pay $ 6.25 a share for Gen - Probe 's 17.6 million common shares outstanding on a fully diluted basis
-Chugai agreed to pay $ 6.25 a share for Gen - Probe 's 17.6 million common shares outstanding on a fully diluted basis . pay will pay $ 6.25 a share for Gen - Probe 's 17.6 million common shares outstanding on a fully diluted basis Chugai
-Chugai agreed to pay $ 6.25 a share for Gen - Probe 's 17.6 million common shares outstanding on a fully diluted basis . diluted diluted fully basis
-New York bonds , which have been hammered in recent weeks on the pending supply and reports that the city 's economy is growing weaker , rose 1\/2 point yesterday . hammered hammered New York bonds in recent weeks on the pending supply and reports that the city 's economy is growing weaker , rose 1\/2 point yesterday
-New York bonds , which have been hammered in recent weeks on the pending supply and reports that the city 's economy is growing weaker , rose 1\/2 point yesterday . pending pending supply and reports that the city 's economy is growing weaker , rose 1\/2 point yesterday
-New York bonds , which have been hammered in recent weeks on the pending supply and reports that the city 's economy is growing weaker , rose 1\/2 point yesterday . growing growing the city 's economy weaker rose 1\/2 point yesterday
-New York bonds , which have been hammered in recent weeks on the pending supply and reports that the city 's economy is growing weaker , rose 1\/2 point yesterday . rose rose the city 's economy yesterday 1\/2 point
-The buyers , these analysts added , could be either foreign or other U.S. concerns . added added these analysts
-Jack Kemp has submitted a package of reforms , and they are surely headed for the Capitol Hill sausage - grinder . submitted submitted package of reforms Jack Kemp
-Jack Kemp has submitted a package of reforms , and they are surely headed for the Capitol Hill sausage - grinder . headed headed for the Capitol Hill sausage - grinder a package of reforms
-September was the 10th consecutive month in which steel exports failed to reach the year - earlier level . failed failed September reach the year - earlier level steel exports
-September was the 10th consecutive month in which steel exports failed to reach the year - earlier level . failed failed the 10th consecutive month reach the year - earlier level steel exports
-September was the 10th consecutive month in which steel exports failed to reach the year - earlier level . reach did n't reach steel exports the year - earlier level September
-September was the 10th consecutive month in which steel exports failed to reach the year - earlier level . reach did n't reach steel exports the year - earlier level the 10th consecutive month
-Four other countries in Europe have approved Proleukin in recent months . approved approved Four other countries in Europe Proleukin in recent months
-General Dynamics Corp. was given an $ 843 million Air Force contract for F - 16 aircraft and related equipment . given given General Dynamics Corp. $ 843 million an Air Force contract for F - 16 aircraft and related equipment
-General Dynamics Corp. was given an $ 843 million Air Force contract for F - 16 aircraft and related equipment . related related equipment
-`` Everyone else is going to catch up '' with Nissan 's innovative designs , says A. Rama Krishna , auto analyst at First Boston ( Japan ) Ltd . going going Everyone else catch up '' with Nissan 's innovative designs
-`` Everyone else is going to catch up '' with Nissan 's innovative designs , says A. Rama Krishna , auto analyst at First Boston ( Japan ) Ltd . catch will catch Everyone else Nissan 's innovative designs
-`` Everyone else is going to catch up '' with Nissan 's innovative designs , says A. Rama Krishna , auto analyst at First Boston ( Japan ) Ltd . says says A. Rama Krishna , auto analyst at First Boston ( Japan ) Ltd `` Everyone else is going to catch up '' with Nissan 's innovative designs
-But declining issues on the New York Stock Exchange outnumbered gainers 774 to 684 , and broader market indexes were virtually unchanged . declining declining issues on the New York Stock Exchange
-But declining issues on the New York Stock Exchange outnumbered gainers 774 to 684 , and broader market indexes were virtually unchanged . outnumbered outnumbered declining issues on the New York Stock Exchange gainers 774 to 684
-The divested Courtaulds textile operations had operating profit of # 50 million on # 980 million in revenue in the year ended March 31 . divested divested Courtaulds textile operations had operating profit of # 50 million on # 980 million in revenue in the year ended March 31
-The divested Courtaulds textile operations had operating profit of # 50 million on # 980 million in revenue in the year ended March 31 . had had had The divested Courtaulds textile operations operating profit of # 50 million on # 980 million in revenue in the year ended March 31
-The divested Courtaulds textile operations had operating profit of # 50 million on # 980 million in revenue in the year ended March 31 . ended ended year March 31
-The drop marked the largest monthly tumble since a 19 % slide in January 1982 . marked marked The drop the largest monthly tumble since a 19 % slide in January 1982
-State - owned BNL , Italy 's largest bank , has filed charges against the branch 's former manager , Christopher Drogoul , and a former branch vice president , alleging fraud and breach of their fiduciary duties . owned owned BNL
-State - owned BNL , Italy 's largest bank , has filed charges against the branch 's former manager , Christopher Drogoul , and a former branch vice president , alleging fraud and breach of their fiduciary duties . owned owned Italy 's largest bank
-State - owned BNL , Italy 's largest bank , has filed charges against the branch 's former manager , Christopher Drogoul , and a former branch vice president , alleging fraud and breach of their fiduciary duties . filed filed charges BNL the branch 's former manager alleging fraud and breach of their fiduciary duties
-State - owned BNL , Italy 's largest bank , has filed charges against the branch 's former manager , Christopher Drogoul , and a former branch vice president , alleging fraud and breach of their fiduciary duties . filed filed charges BNL Christopher Drogoul alleging fraud and breach of their fiduciary duties
-State - owned BNL , Italy 's largest bank , has filed charges against the branch 's former manager , Christopher Drogoul , and a former branch vice president , alleging fraud and breach of their fiduciary duties . filed filed charges BNL a former branch vice president alleging fraud and breach of their fiduciary duties
-State - owned BNL , Italy 's largest bank , has filed charges against the branch 's former manager , Christopher Drogoul , and a former branch vice president , alleging fraud and breach of their fiduciary duties . filed filed charges Italy 's largest bank the branch 's former manager alleging fraud and breach of their fiduciary duties
-State - owned BNL , Italy 's largest bank , has filed charges against the branch 's former manager , Christopher Drogoul , and a former branch vice president , alleging fraud and breach of their fiduciary duties . filed filed charges Italy 's largest bank Christopher Drogoul alleging fraud and breach of their fiduciary duties
-State - owned BNL , Italy 's largest bank , has filed charges against the branch 's former manager , Christopher Drogoul , and a former branch vice president , alleging fraud and breach of their fiduciary duties . filed filed charges Italy 's largest bank a former branch vice president alleging fraud and breach of their fiduciary duties
-State - owned BNL , Italy 's largest bank , has filed charges against the branch 's former manager , Christopher Drogoul , and a former branch vice president , alleging fraud and breach of their fiduciary duties . alleging alleging charges fraud and breach of their fiduciary duties
-But Judge Keenan said that privilege is meant to protect private utterances -- not litigation papers filed with foreign governments , as Mrs. Marcos 's attorneys maintained . said said Judge Keenan that privilege is meant to protect private utterances -- not litigation papers filed with foreign governments
-But Judge Keenan said that privilege is meant to protect private utterances -- not litigation papers filed with foreign governments , as Mrs. Marcos 's attorneys maintained . meant meant to protect private utterances -- not litigation papers filed with foreign governments privilege
-But Judge Keenan said that privilege is meant to protect private utterances -- not litigation papers filed with foreign governments , as Mrs. Marcos 's attorneys maintained . protect protect private utterances privilege
-But Judge Keenan said that privilege is meant to protect private utterances -- not litigation papers filed with foreign governments , as Mrs. Marcos 's attorneys maintained . filed filed litigation papers foreign governments
-But Judge Keenan said that privilege is meant to protect private utterances -- not litigation papers filed with foreign governments , as Mrs. Marcos 's attorneys maintained . maintained maintained Mrs. Marcos 's attorneys litigation papers filed with foreign governments
-In recent years , demand for hybrid seeds has spurred research at a number of chemical and biotechnology companies , including Monsanto Co. , Shell Oil Co. and Eli Lilly & Co . spurred spurred demand for hybrid seeds research In recent years chemical and biotechnology companies
-In recent years , demand for hybrid seeds has spurred research at a number of chemical and biotechnology companies , including Monsanto Co. , Shell Oil Co. and Eli Lilly & Co . spurred spurred demand for hybrid seeds research In recent years Monsanto Co. , Shell Oil Co. and Eli Lilly & Co
-In recent years , demand for hybrid seeds has spurred research at a number of chemical and biotechnology companies , including Monsanto Co. , Shell Oil Co. and Eli Lilly & Co . including including Monsanto Co. research at a number of chemical and biotechnology companies
-In recent years , demand for hybrid seeds has spurred research at a number of chemical and biotechnology companies , including Monsanto Co. , Shell Oil Co. and Eli Lilly & Co . including including Shell Oil Co. research at a number of chemical and biotechnology companies
-In recent years , demand for hybrid seeds has spurred research at a number of chemical and biotechnology companies , including Monsanto Co. , Shell Oil Co. and Eli Lilly & Co . including including Eli Lilly & Co research at a number of chemical and biotechnology companies
-Mortgage securities ended 2\/32 to 4\/32 higher in light trading . ended ended Mortgage securities 2\/32 to higher 4\/32 light trading
-When it comes to busting ghosts , the Monroe , Conn. , couple are perfect demons . comes comes busting ghosts
-When it comes to busting ghosts , the Monroe , Conn. , couple are perfect demons . busting busting ghosts
-A Coca - Cola spokesman said it is too early to say how the joint venture would be structured , or how much the company would invest in the transaction . said said it is too early to say how the joint venture would be structured A Coca - Cola spokesman
-A Coca - Cola spokesman said it is too early to say how the joint venture would be structured , or how much the company would invest in the transaction . say ca n't say how the joint venture would be structured A Coca - Cola spokesman it is too early
-A Coca - Cola spokesman said it is too early to say how the joint venture would be structured , or how much the company would invest in the transaction . say ca n't say how much the company would invest in the transaction A Coca - Cola spokesman it is too early
-A Coca - Cola spokesman said it is too early to say how the joint venture would be structured , or how much the company would invest in the transaction . structured would structured the joint venture the company
-A Coca - Cola spokesman said it is too early to say how the joint venture would be structured , or how much the company would invest in the transaction . structured would structured the joint venture Coca - Cola
-A Coca - Cola spokesman said it is too early to say how the joint venture would be structured , or how much the company would invest in the transaction . invest would invest the transaction the company
-A Coca - Cola spokesman said it is too early to say how the joint venture would be structured , or how much the company would invest in the transaction . invest would invest the transaction Coca - Cola
-`` That burden is very difficult , if not impossible , to meet , '' says Mr. Boyd . meet would n't meet That burden very difficult , if not impossible , to
-`` That burden is very difficult , if not impossible , to meet , '' says Mr. Boyd . says says Mr. Boyd . `` That burden is very difficult , if not impossible , to meet , ''
-We just want a plan that satisfies creditors and at the end leaves a healthy Revco . '' satisfies should satisfies creditors a plan
-We just want a plan that satisfies creditors and at the end leaves a healthy Revco . '' leaves leaves a plan a healthy Revco
-Conservatives are the faction in U.S. politics which always said that Mr. Ortega and his friends do n't want to hold an election in Nicaragua . said said Conservatives that Mr. Ortega and his friends do n't want to hold an election in Nicaragua always
-Conservatives are the faction in U.S. politics which always said that Mr. Ortega and his friends do n't want to hold an election in Nicaragua . said said the faction in U.S. politics that Mr. Ortega and his friends do n't want to hold an election in Nicaragua always
-Conservatives are the faction in U.S. politics which always said that Mr. Ortega and his friends do n't want to hold an election in Nicaragua . want does n't want Mr. Ortega and his friends to hold an election in Nicaragua
-Conservatives are the faction in U.S. politics which always said that Mr. Ortega and his friends do n't want to hold an election in Nicaragua . hold may not hold an election in Nicaragua Mr. Ortega and his friends
-Some have been training for months ; others only recently left active status . training might not training Some for months others recently
-Some have been training for months ; others only recently left active status . left might not left others Some active status training
-The SEC would likely be amenable to legislation that required insiders to file transactions on a more timely basis , he said . required required The SEC would likely be amenable to legislation insiders file transactions on a more timely basis
-The SEC would likely be amenable to legislation that required insiders to file transactions on a more timely basis , he said . file would file insiders transactions on a more timely basis
-Merrill also said it is lobbying for significant regulatory controls on program trading , including tough margin -- or down - payment -- requirements and limits on price moves for program - driven financial futures . said said Merrill it is lobbying for significant regulatory controls on program trading , including tough margin -- or down - payment -- requirements and limits on price moves for program - driven financial futures .
-Merrill also said it is lobbying for significant regulatory controls on program trading , including tough margin -- or down - payment -- requirements and limits on price moves for program - driven financial futures . lobbying lobbying Merrill significant regulatory controls on program trading , including tough margin -- or down - payment -- requirements and limits on price moves for program - driven financial futures .
-After the GASB was founded in 1984 , 11 years after the FASB , the government - owned entities were supposed to follow FASB rules unless the GASB superceded them . founded founded GASB 1984 government
-After the GASB was founded in 1984 , 11 years after the FASB , the government - owned entities were supposed to follow FASB rules unless the GASB superceded them . owned owned government entities
-After the GASB was founded in 1984 , 11 years after the FASB , the government - owned entities were supposed to follow FASB rules unless the GASB superceded them . owned owned government FASB
-After the GASB was founded in 1984 , 11 years after the FASB , the government - owned entities were supposed to follow FASB rules unless the GASB superceded them . owned owned government GASB
-After the GASB was founded in 1984 , 11 years after the FASB , the government - owned entities were supposed to follow FASB rules unless the GASB superceded them . supposed supposed government - owned entities follow FASB rules unless the GASB superceded them
-After the GASB was founded in 1984 , 11 years after the FASB , the government - owned entities were supposed to follow FASB rules unless the GASB superceded them . follow should follow FASB rules unless the GASB superceded them government - owned entities
-After the GASB was founded in 1984 , 11 years after the FASB , the government - owned entities were supposed to follow FASB rules unless the GASB superceded them . superceded would superceded GASB FASB rules
-About 800 have crossed the picket lines and returned to work . crossed crossed About 800 the picket lines
-About 800 have crossed the picket lines and returned to work . returned returned About 800 to work
-The problem is that Japanese businesses make decisions with a view well beyond the coming months that weigh so heavily on Mr. Salinas . make make Japanese businesses decisions with a view well beyond the coming months that weigh so heavily on Mr. Salinas
-The problem is that Japanese businesses make decisions with a view well beyond the coming months that weigh so heavily on Mr. Salinas . weigh weigh so heavily on Mr. Salinas decisions
-SKILLED WORKERS aplenty are available to cope with earthquake damage . cope can cope damage SKILLED WORKERS
-A Ford spokesman said the Dearborn , Mich. , auto maker is n't aware of any injuries caused by the windshield problem . said said A Ford spokesman the Dearborn , Mich. , auto maker is n't aware of any injuries caused by the windshield problem
-A Ford spokesman said the Dearborn , Mich. , auto maker is n't aware of any injuries caused by the windshield problem . caused caused windshield problem injuries
-But Mr. Simonds-Gooding said he is n't talking to any studios about investing . said said Mr. Simonds-Gooding he is n't talking to any studios about investing
-But Mr. Simonds-Gooding said he is n't talking to any studios about investing . talking is n't talking Mr. Simonds-Gooding any studios investing
-But Mr. Simonds-Gooding said he is n't talking to any studios about investing . investing might not investing Mr. Simonds-Gooding any studios
-Under the agreement with the House and Senate leaders , the minimum wage would rise from the current $ 3.35 an hour to $ 4.25 an hour by April 1991 . rise would rise the minimum wage from the current $ 3.35 an hour to $ 4.25 an hour by April 1991
-And some doctors who have conducted hours of tests on themselves report temporary headaches . conducted conducted tests doctors hours
-And some doctors who have conducted hours of tests on themselves report temporary headaches . report report headaches doctors
-The first part , consisting of $ 151 million of 13 3\/4 % senior subordinated reset notes , was priced at 99.75 . consisting consisting The first part $ 151 million of 13 3\/4 % senior subordinated reset notes
-The first part , consisting of $ 151 million of 13 3\/4 % senior subordinated reset notes , was priced at 99.75 . subordinated subordinated reset notes $ 151 million of 13 3\/4 %
-The first part , consisting of $ 151 million of 13 3\/4 % senior subordinated reset notes , was priced at 99.75 . reset reset notes senior subordinated
-The first part , consisting of $ 151 million of 13 3\/4 % senior subordinated reset notes , was priced at 99.75 . priced priced The first part 99.75
-Both the SUNY team and researchers at the National Magnet Laboratory in Cambridge , Mass. , are working with more potent magnetic brain stimulators . working working more potent magnetic brain stimulators the SUNY team Cambridge , Mass.
-Both the SUNY team and researchers at the National Magnet Laboratory in Cambridge , Mass. , are working with more potent magnetic brain stimulators . working working more potent magnetic brain stimulators the SUNY team the National Magnet Laboratory
-Both the SUNY team and researchers at the National Magnet Laboratory in Cambridge , Mass. , are working with more potent magnetic brain stimulators . working working more potent magnetic brain stimulators researchers at the National Magnet Laboratory Cambridge , Mass.
-Both the SUNY team and researchers at the National Magnet Laboratory in Cambridge , Mass. , are working with more potent magnetic brain stimulators . working working more potent magnetic brain stimulators researchers at the National Magnet Laboratory
-Advancing issues on the Big Board surged ahead of decliners 1,111 to Advancing advancing issues the Big Board
-Advancing issues on the Big Board surged ahead of decliners 1,111 to surged surged Advancing issues ahead of decliners on the Big Board
-President Bush and Soviet leader Mikhail Gorbachev will hold an informal meeting in early December , a move that should give both leaders a political boost at home . hold will hold President Bush an informal meeting December
-President Bush and Soviet leader Mikhail Gorbachev will hold an informal meeting in early December , a move that should give both leaders a political boost at home . hold will hold Mikhail Gorbachev an informal meeting December
-President Bush and Soviet leader Mikhail Gorbachev will hold an informal meeting in early December , a move that should give both leaders a political boost at home . hold will hold both leaders an informal meeting December
-President Bush and Soviet leader Mikhail Gorbachev will hold an informal meeting in early December , a move that should give both leaders a political boost at home . give should give a political boost both leaders a move
-President Bush and Soviet leader Mikhail Gorbachev will hold an informal meeting in early December , a move that should give both leaders a political boost at home . give should give a political boost President Bush a move
-President Bush and Soviet leader Mikhail Gorbachev will hold an informal meeting in early December , a move that should give both leaders a political boost at home . give should give a political boost Soviet leader Mikhail Gorbachev a move
-Mr. Meek said his suspicions were aroused by several foreign investments by Lincoln , including $ 22 million paid to Credit Suisse of Switzerland , an $ 18 million interest in Saudi European Bank in Paris , a $ 17.5 million investment in a Bahamas trading company , and a recently discovered holding in a Panama - based company , Southbrook Holdings . said said Mr. Meek his suspicions were aroused by several foreign investments by Lincoln , including $ 22 million paid to Credit Suisse of Switzerland , an $ 18 million interest in Saudi European Bank in Paris , a $ 17.5 million investment in a Bahamas trading company , and a recently discovered holding in a Panama - based company , Southbrook Holdings
-Mr. Meek said his suspicions were aroused by several foreign investments by Lincoln , including $ 22 million paid to Credit Suisse of Switzerland , an $ 18 million interest in Saudi European Bank in Paris , a $ 17.5 million investment in a Bahamas trading company , and a recently discovered holding in a Panama - based company , Southbrook Holdings . aroused had aroused suspicions by several foreign investments by Lincoln , including $ 22 million paid to Credit Suisse of Switzerland , an $ 18 million interest in Saudi European Bank in Paris , a $ 17.5 million investment in a Bahamas trading company , and a recently discovered holding in a Panama - based company , Southbrook Holdings . Mr. Meek
-Mr. Meek said his suspicions were aroused by several foreign investments by Lincoln , including $ 22 million paid to Credit Suisse of Switzerland , an $ 18 million interest in Saudi European Bank in Paris , a $ 17.5 million investment in a Bahamas trading company , and a recently discovered holding in a Panama - based company , Southbrook Holdings . including including $ 22 million paid to , an $ 18 million interest in Saudi European Bank in Paris , a $ 17.5 million investment in a Bahamas trading company , and a recently discovered holding in a Panama - based company , Southbrook Holdings Lincoln Credit Suisse of Switzerland
-Mr. Meek said his suspicions were aroused by several foreign investments by Lincoln , including $ 22 million paid to Credit Suisse of Switzerland , an $ 18 million interest in Saudi European Bank in Paris , a $ 17.5 million investment in a Bahamas trading company , and a recently discovered holding in a Panama - based company , Southbrook Holdings . including including $ 22 million paid to Credit Suisse of Switzerland , an $ 18 million interest in Saudi European Bank in Paris , a $ 17.5 million investment in a Bahamas trading company , and a recently discovered holding in a Lincoln Panama - based company , Southbrook Holdings
-Mr. Meek said his suspicions were aroused by several foreign investments by Lincoln , including $ 22 million paid to Credit Suisse of Switzerland , an $ 18 million interest in Saudi European Bank in Paris , a $ 17.5 million investment in a Bahamas trading company , and a recently discovered holding in a Panama - based company , Southbrook Holdings . paid paid Credit Suisse of $ 22 million Switzerland Lincoln
-Mr. Meek said his suspicions were aroused by several foreign investments by Lincoln , including $ 22 million paid to Credit Suisse of Switzerland , an $ 18 million interest in Saudi European Bank in Paris , a $ 17.5 million investment in a Bahamas trading company , and a recently discovered holding in a Panama - based company , Southbrook Holdings . discovered discovered in a Panama - based company , Southbrook Holdings recently Mr. Meek
-Mr. Meek said his suspicions were aroused by several foreign investments by Lincoln , including $ 22 million paid to Credit Suisse of Switzerland , an $ 18 million interest in Saudi European Bank in Paris , a $ 17.5 million investment in a Bahamas trading company , and a recently discovered holding in a Panama - based company , Southbrook Holdings . based based Panama Southbrook Holdings
-Mr. Meek said his suspicions were aroused by several foreign investments by Lincoln , including $ 22 million paid to Credit Suisse of Switzerland , an $ 18 million interest in Saudi European Bank in Paris , a $ 17.5 million investment in a Bahamas trading company , and a recently discovered holding in a Panama - based company , Southbrook Holdings . based based Panama company
-More big Japanese investors are buying U.S. mortgage - backed securities , reversing a recent trend . buying buying More big Japanese investors U.S. mortgage - backed securities
-More big Japanese investors are buying U.S. mortgage - backed securities , reversing a recent trend . backed backed U.S. mortgage securities
-More big Japanese investors are buying U.S. mortgage - backed securities , reversing a recent trend . reversing reversing More big Japanese investors are buying U.S. mortgage - backed securities a recent trend
-Japan may be a tough market for outsiders to penetrate , and the U.S. is hopelessly behind Japan in certain technologies . penetrate may penetrate outsiders Japan
-Japan may be a tough market for outsiders to penetrate , and the U.S. is hopelessly behind Japan in certain technologies . penetrate may penetrate outsiders tough market
-Officials believe this has left a gaping loophole that illegal drug businesses are exploiting . believe believe Officials this has left a gaping loophole that illegal drug businesses are exploiting
-Officials believe this has left a gaping loophole that illegal drug businesses are exploiting . left left a gaping loophole this
-Officials believe this has left a gaping loophole that illegal drug businesses are exploiting . gaping gaping loophole
-Officials believe this has left a gaping loophole that illegal drug businesses are exploiting . exploiting exploiting a gaping loophole illegal drug businesses
-An alternative and more convincing explanation , confirmed by recent events and a close inspection of the Gorbachev program , is that the new Soviet economic and social structures are intended to conform to a model other than that of the market . confirmed confirmed recent events and a close inspection of the Gorbachev program An alternative and more convincing explanation
-An alternative and more convincing explanation , confirmed by recent events and a close inspection of the Gorbachev program , is that the new Soviet economic and social structures are intended to conform to a model other than that of the market . confirmed confirmed recent events and a close inspection of the Gorbachev program the new Soviet economic and social structures are intended to conform to a model other than that of the market
-An alternative and more convincing explanation , confirmed by recent events and a close inspection of the Gorbachev program , is that the new Soviet economic and social structures are intended to conform to a model other than that of the market . intended intended to conform to a model other than that of the market the new Soviet economic and social structures
-An alternative and more convincing explanation , confirmed by recent events and a close inspection of the Gorbachev program , is that the new Soviet economic and social structures are intended to conform to a model other than that of the market . conform will conform the new Soviet economic and social structures a model other than that of the market
-RU-486 is being administered in France only under strict supervision in the presence of a doctor . administered administered RU-486 France under strict supervision
-RU-486 is being administered in France only under strict supervision in the presence of a doctor . administered administered RU-486 France in the presence of a doctor
-Despite plans to add two new Infiniti models next year , bringing the total to four , Infiniti wo n't show profits for at least five years , he adds . add will add new models next year two Infiniti
-Despite plans to add two new Infiniti models next year , bringing the total to four , Infiniti wo n't show profits for at least five years , he adds . bringing will bringing models two four next year
-Despite plans to add two new Infiniti models next year , bringing the total to four , Infiniti wo n't show profits for at least five years , he adds . show wo n't show Infiniti profits for at least five years
-Even a federal measure in June allowing houses to add research fees to their commissions did n't stop it . allowing allowing houses to add research fees to their commissions a federal measure June
-Even a federal measure in June allowing houses to add research fees to their commissions did n't stop it . add add research fees houses June
-The far left had some good issues even if it did not have good programs for dealing with them . had had had some good issues even if it did not have good programs for dealing with them The far left
-The far left had some good issues even if it did not have good programs for dealing with them . have did n't have The far left good programs for dealing with them
-I am referring to those young men who chose to disobey their country 's call to arms during the Vietnam war and fled to Canada or some other sanctuary to avoid combat . chose chose those young men to disobey their country 's call to arms during the Vietnam war to avoid combat
-I am referring to those young men who chose to disobey their country 's call to arms during the Vietnam war and fled to Canada or some other sanctuary to avoid combat . disobey disobey their country 's call to arms those young men who chose to to avoid combat during the Vietnam war
-I am referring to those young men who chose to disobey their country 's call to arms during the Vietnam war and fled to Canada or some other sanctuary to avoid combat . fled fled those young men who chose to disobey their country 's call to arms during the Vietnam war to Canada or some other sanctuary to avoid combat
-I am referring to those young men who chose to disobey their country 's call to arms during the Vietnam war and fled to Canada or some other sanctuary to avoid combat . avoid avoid those young men who chose to disobey their country 's call to arms during the Vietnam war and fled to combat Canada or some other sanctuary
-The Dallas oil and gas concern said that $ 10 million of the facility would be used to consolidate the company 's $ 8.1 million of existing bank debt , to repurchase 4 million of its 4.9 million shares outstanding of Series D convertible preferred stock , and to purchase a 10 % net - profits interest in certain oil and gas properties from one of its existing lenders , National Canada Corp . said said The Dallas oil and gas concern that $ 10 million of the facility would be used to consolidate the company 's $ 8.1 million of existing bank debt , to repurchase 4 million of its 4.9 million shares outstanding of Series D convertible preferred stock , and to purchase a 10 % net - profits interest in certain oil and gas properties from one of its existing lenders , National Canada Corp .
-The Dallas oil and gas concern said that $ 10 million of the facility would be used to consolidate the company 's $ 8.1 million of existing bank debt , to repurchase 4 million of its 4.9 million shares outstanding of Series D convertible preferred stock , and to purchase a 10 % net - profits interest in certain oil and gas properties from one of its existing lenders , National Canada Corp . said said the company that $ 10 million of the facility would be used to consolidate 's $ 8.1 million of existing bank debt , to repurchase 4 million of its 4.9 million shares outstanding of Series D convertible preferred stock , and to purchase a 10 % net - profits interest in certain oil and gas properties from one of its existing lenders , National Canada Corp .
-The Dallas oil and gas concern said that $ 10 million of the facility would be used to consolidate the company 's $ 8.1 million of existing bank debt , to repurchase 4 million of its 4.9 million shares outstanding of Series D convertible preferred stock , and to purchase a 10 % net - profits interest in certain oil and gas properties from one of its existing lenders , National Canada Corp . used would used of the facility $ 10 million to consolidate the company 's $ 8.1 million of existing bank debt The Dallas oil and gas concern
-The Dallas oil and gas concern said that $ 10 million of the facility would be used to consolidate the company 's $ 8.1 million of existing bank debt , to repurchase 4 million of its 4.9 million shares outstanding of Series D convertible preferred stock , and to purchase a 10 % net - profits interest in certain oil and gas properties from one of its existing lenders , National Canada Corp . used would used of the facility $ 10 million to consolidate 's $ 8.1 million of existing bank debt the company
-The Dallas oil and gas concern said that $ 10 million of the facility would be used to consolidate the company 's $ 8.1 million of existing bank debt , to repurchase 4 million of its 4.9 million shares outstanding of Series D convertible preferred stock , and to purchase a 10 % net - profits interest in certain oil and gas properties from one of its existing lenders , National Canada Corp . used would used of the facility $ 10 million to repurchase 4 million of its 4.9 million shares outstanding of Series D convertible preferred stock The Dallas oil and gas concern
-The Dallas oil and gas concern said that $ 10 million of the facility would be used to consolidate the company 's $ 8.1 million of existing bank debt , to repurchase 4 million of its 4.9 million shares outstanding of Series D convertible preferred stock , and to purchase a 10 % net - profits interest in certain oil and gas properties from one of its existing lenders , National Canada Corp . used would used of the facility $ 10 million to repurchase 4 million of its 4.9 million shares outstanding of Series D convertible preferred stock the company
-The Dallas oil and gas concern said that $ 10 million of the facility would be used to consolidate the company 's $ 8.1 million of existing bank debt , to repurchase 4 million of its 4.9 million shares outstanding of Series D convertible preferred stock , and to purchase a 10 % net - profits interest in certain oil and gas properties from one of its existing lenders , National Canada Corp . used would used of the facility $ 10 million to purchase a 10 % net - profits interest in certain oil and gas properties from one of its existing lenders The Dallas oil and gas concern
-The Dallas oil and gas concern said that $ 10 million of the facility would be used to consolidate the company 's $ 8.1 million of existing bank debt , to repurchase 4 million of its 4.9 million shares outstanding of Series D convertible preferred stock , and to purchase a 10 % net - profits interest in certain oil and gas properties from one of its existing lenders , National Canada Corp . used would used of the facility $ 10 million to purchase a 10 % net - profits interest in certain oil and gas properties from one of its existing lenders the company
-The Dallas oil and gas concern said that $ 10 million of the facility would be used to consolidate the company 's $ 8.1 million of existing bank debt , to repurchase 4 million of its 4.9 million shares outstanding of Series D convertible preferred stock , and to purchase a 10 % net - profits interest in certain oil and gas properties from one of its existing lenders , National Canada Corp . consolidate might consolidate of existing bank debt of the facility $ 10 million $ 8.1 million
-The Dallas oil and gas concern said that $ 10 million of the facility would be used to consolidate the company 's $ 8.1 million of existing bank debt , to repurchase 4 million of its 4.9 million shares outstanding of Series D convertible preferred stock , and to purchase a 10 % net - profits interest in certain oil and gas properties from one of its existing lenders , National Canada Corp . consolidate might consolidate of existing bank debt of the facility $ 10 million $ 8.1 million
-The Dallas oil and gas concern said that $ 10 million of the facility would be used to consolidate the company 's $ 8.1 million of existing bank debt , to repurchase 4 million of its 4.9 million shares outstanding of Series D convertible preferred stock , and to purchase a 10 % net - profits interest in certain oil and gas properties from one of its existing lenders , National Canada Corp . existing existing bank debt $ 8.1 million The Dallas oil and gas concern
-The Dallas oil and gas concern said that $ 10 million of the facility would be used to consolidate the company 's $ 8.1 million of existing bank debt , to repurchase 4 million of its 4.9 million shares outstanding of Series D convertible preferred stock , and to purchase a 10 % net - profits interest in certain oil and gas properties from one of its existing lenders , National Canada Corp . existing existing bank debt $ 8.1 million the company
-The Dallas oil and gas concern said that $ 10 million of the facility would be used to consolidate the company 's $ 8.1 million of existing bank debt , to repurchase 4 million of its 4.9 million shares outstanding of Series D convertible preferred stock , and to purchase a 10 % net - profits interest in certain oil and gas properties from one of its existing lenders , National Canada Corp . repurchase would repurchase shares outstanding of Series D convertible preferred stock The Dallas oil and gas concern 4 million
-The Dallas oil and gas concern said that $ 10 million of the facility would be used to consolidate the company 's $ 8.1 million of existing bank debt , to repurchase 4 million of its 4.9 million shares outstanding of Series D convertible preferred stock , and to purchase a 10 % net - profits interest in certain oil and gas properties from one of its existing lenders , National Canada Corp . repurchase would repurchase shares outstanding of Series D convertible preferred stock the company 4.9 million
-The Dallas oil and gas concern said that $ 10 million of the facility would be used to consolidate the company 's $ 8.1 million of existing bank debt , to repurchase 4 million of its 4.9 million shares outstanding of Series D convertible preferred stock , and to purchase a 10 % net - profits interest in certain oil and gas properties from one of its existing lenders , National Canada Corp . preferred preferred stock Series D convertible
-The Dallas oil and gas concern said that $ 10 million of the facility would be used to consolidate the company 's $ 8.1 million of existing bank debt , to repurchase 4 million of its 4.9 million shares outstanding of Series D convertible preferred stock , and to purchase a 10 % net - profits interest in certain oil and gas properties from one of its existing lenders , National Canada Corp . purchase will purchase a net - profits interest in The Dallas oil and gas concern 10 % National Canada Corp
-The Dallas oil and gas concern said that $ 10 million of the facility would be used to consolidate the company 's $ 8.1 million of existing bank debt , to repurchase 4 million of its 4.9 million shares outstanding of Series D convertible preferred stock , and to purchase a 10 % net - profits interest in certain oil and gas properties from one of its existing lenders , National Canada Corp . purchase will purchase a net - profits interest in The Dallas oil and gas concern 10 % one of its existing lenders
-The Dallas oil and gas concern said that $ 10 million of the facility would be used to consolidate the company 's $ 8.1 million of existing bank debt , to repurchase 4 million of its 4.9 million shares outstanding of Series D convertible preferred stock , and to purchase a 10 % net - profits interest in certain oil and gas properties from one of its existing lenders , National Canada Corp . purchase will purchase a net - profits interest in the company 10 % National Canada Corp
-The Dallas oil and gas concern said that $ 10 million of the facility would be used to consolidate the company 's $ 8.1 million of existing bank debt , to repurchase 4 million of its 4.9 million shares outstanding of Series D convertible preferred stock , and to purchase a 10 % net - profits interest in certain oil and gas properties from one of its existing lenders , National Canada Corp . purchase will purchase a net - profits interest in the company 10 % one of its existing lenders
-The Dallas oil and gas concern said that $ 10 million of the facility would be used to consolidate the company 's $ 8.1 million of existing bank debt , to repurchase 4 million of its 4.9 million shares outstanding of Series D convertible preferred stock , and to purchase a 10 % net - profits interest in certain oil and gas properties from one of its existing lenders , National Canada Corp . existing existing lenders The Dallas oil and gas concern certain oil and gas properties
-The Dallas oil and gas concern said that $ 10 million of the facility would be used to consolidate the company 's $ 8.1 million of existing bank debt , to repurchase 4 million of its 4.9 million shares outstanding of Series D convertible preferred stock , and to purchase a 10 % net - profits interest in certain oil and gas properties from one of its existing lenders , National Canada Corp . existing existing lenders the company certain oil and gas properties
-The Dallas oil and gas concern said that $ 10 million of the facility would be used to consolidate the company 's $ 8.1 million of existing bank debt , to repurchase 4 million of its 4.9 million shares outstanding of Series D convertible preferred stock , and to purchase a 10 % net - profits interest in certain oil and gas properties from one of its existing lenders , National Canada Corp . existing existing National Canada Corp The Dallas oil and gas concern certain oil and gas properties
-The Dallas oil and gas concern said that $ 10 million of the facility would be used to consolidate the company 's $ 8.1 million of existing bank debt , to repurchase 4 million of its 4.9 million shares outstanding of Series D convertible preferred stock , and to purchase a 10 % net - profits interest in certain oil and gas properties from one of its existing lenders , National Canada Corp . existing existing National Canada Corp the company certain oil and gas properties
-Unlike most economic indicators , none of these figures are adjusted for seasonal variations . adjusted is n't adjusted seasonal variations none of these figures
-Because the federal pension agency had taken over the old plans , LTV would be responsible only for benefits paid under the new pension plans . taken had taken the federal pension agency the old plans
-Because the federal pension agency had taken over the old plans , LTV would be responsible only for benefits paid under the new pension plans . paid would paid benefits under the new pension plans
-The company has $ 1 billion in debt filed with the Securities and Exchange Commission . has has The company in $ 1 billion debt filed with the Securities and Exchange Commission
-The company has $ 1 billion in debt filed with the Securities and Exchange Commission . filed filed the Securities and Exchange Commission in debt $ 1 billion
-Mr. Rifenburgh told industry analysts he is moving `` aggressively '' to negotiate out - of - court settlements on a number of shareholder lawsuits , but noted that the company could file for bankruptcy - law protection if settlement talks fail . told told Mr. Rifenburgh he is moving `` aggressively '' to negotiate out - of - court settlements on a number of shareholder lawsuits , but noted that the company could file for bankruptcy - law protection if settlement talks fail . industry analysts
-Mr. Rifenburgh told industry analysts he is moving `` aggressively '' to negotiate out - of - court settlements on a number of shareholder lawsuits , but noted that the company could file for bankruptcy - law protection if settlement talks fail . moving moving Mr. Rifenburgh aggressively negotiate out - of - court settlements on a number of shareholder lawsuits
-Mr. Rifenburgh told industry analysts he is moving `` aggressively '' to negotiate out - of - court settlements on a number of shareholder lawsuits , but noted that the company could file for bankruptcy - law protection if settlement talks fail . negotiate will negotiate Mr. Rifenburgh out - of - court settlements on a number of shareholder lawsuits
-Mr. Rifenburgh told industry analysts he is moving `` aggressively '' to negotiate out - of - court settlements on a number of shareholder lawsuits , but noted that the company could file for bankruptcy - law protection if settlement talks fail . noted noted Mr. Rifenburgh that the company could file for bankruptcy - law protection if settlement talks fail .
-Mr. Rifenburgh told industry analysts he is moving `` aggressively '' to negotiate out - of - court settlements on a number of shareholder lawsuits , but noted that the company could file for bankruptcy - law protection if settlement talks fail . file could file the company bankruptcy - law protection if settlement talks fail .
-Mr. Rifenburgh told industry analysts he is moving `` aggressively '' to negotiate out - of - court settlements on a number of shareholder lawsuits , but noted that the company could file for bankruptcy - law protection if settlement talks fail . fail would fail settlement talks
-Indeed , the `` art of doctoring '' does contribute to better health results and discourages unwarranted malpractice litigation . contribute contribute the `` art of doctoring '' to better health results and discourages unwarranted malpractice litigation
-Indeed , the `` art of doctoring '' does contribute to better health results and discourages unwarranted malpractice litigation . discourages discourages unwarranted malpractice litigation the `` art of doctoring ''
-Mr. Baker hears her out , pokes around a bit , asks a few questions and proposes some explanations . pokes pokes a bit Mr. Baker
-Mr. Baker hears her out , pokes around a bit , asks a few questions and proposes some explanations . asks asks Mr. Baker a few questions
-Mr. Baker hears her out , pokes around a bit , asks a few questions and proposes some explanations . proposes proposes Mr. Baker some explanations
-Earlier this year , President Bush made a final `` take - it - or - leave it '' offer on the minimum wage : an increase to $ 4.25 an hour over three years , and only if accompanied by a lower wage for the first six months of a job . made made President Bush a final `` take - it - or - leave it '' offer on the minimum wage : an increase to $ 4.25 an hour over three years , and only if accompanied by a lower wage for the first six months of a job . Earlier this year
-Earlier this year , President Bush made a final `` take - it - or - leave it '' offer on the minimum wage : an increase to $ 4.25 an hour over three years , and only if accompanied by a lower wage for the first six months of a job . accompanied accompanied a lower wage for the first six months of a job .
-The RTC will have to sell or merge hundreds of insolvent thrifts over the next three years . have will have The RTC sell or merge hundreds of insolvent thrifts over the next three years
-The RTC will have to sell or merge hundreds of insolvent thrifts over the next three years . sell must sell The RTC of insolvent thrifts over the next three years hundreds
-The RTC will have to sell or merge hundreds of insolvent thrifts over the next three years . merge must merge The RTC of insolvent thrifts over the next three years hundreds
-`` Small net inflows into stock and bond funds were offset by slight declines in the value of mutual fund stock and bond portfolios '' stemming from falling prices , said Jacob Dreyer , the institute 's chief economist . offset offset Small net inflows into stock and bond funds by slight declines in the value of mutual fund stock and bond portfolios '' stemming from falling prices
-`` Small net inflows into stock and bond funds were offset by slight declines in the value of mutual fund stock and bond portfolios '' stemming from falling prices , said Jacob Dreyer , the institute 's chief economist . stemming stemming Small net inflows into stock and bond funds were offset by slight declines in the value of mutual fund stock and bond portfolios falling prices
-`` Small net inflows into stock and bond funds were offset by slight declines in the value of mutual fund stock and bond portfolios '' stemming from falling prices , said Jacob Dreyer , the institute 's chief economist . falling falling prices
-`` Small net inflows into stock and bond funds were offset by slight declines in the value of mutual fund stock and bond portfolios '' stemming from falling prices , said Jacob Dreyer , the institute 's chief economist . said said Jacob Dreyer `` Small net inflows into stock and bond funds were offset by slight declines in the value of mutual fund stock and bond portfolios '' stemming from falling prices
-G-7 consists of the U.S. , Japan , Britain , West Germany , Canada , France and Italy . consists consists G-7 U.S. , Japan , Britain , West Germany , Canada , France and Italy
-Made of space - age materials , the wheel spokes are designed like airplane wings to shave 10 minutes off the time of a rider in a 100 - mile race , the company claims . Made made space - age materials the wheel spokes
-Made of space - age materials , the wheel spokes are designed like airplane wings to shave 10 minutes off the time of a rider in a 100 - mile race , the company claims . designed designed the wheel spokes like airplane wings to shave 10 minutes off the time of a rider in a 100 - mile race
-Made of space - age materials , the wheel spokes are designed like airplane wings to shave 10 minutes off the time of a rider in a 100 - mile race , the company claims . shave shave the wheel spokes 10 minutes off the time of a rider in a 100 - mile race are designed like airplane wings
-Made of space - age materials , the wheel spokes are designed like airplane wings to shave 10 minutes off the time of a rider in a 100 - mile race , the company claims . claims claims the company Made of space - age materials , the wheel spokes are designed like airplane wings to shave 10 minutes off the time of a rider in a 100 - mile race
-For owners who have followed the recommended oil maintenance schedule , Mazda will extend to five years or 60,000 miles the warranty term for engine damage due to abnormal engine oil deterioration . followed followed owners the recommended oil maintenance schedule
-For owners who have followed the recommended oil maintenance schedule , Mazda will extend to five years or 60,000 miles the warranty term for engine damage due to abnormal engine oil deterioration . recommended recommended oil maintenance schedule
-For owners who have followed the recommended oil maintenance schedule , Mazda will extend to five years or 60,000 miles the warranty term for engine damage due to abnormal engine oil deterioration . extend will extend Mazda to five years or 60,000 miles the warranty term for engine damage due to abnormal engine oil deterioration owners who have followed the recommended oil maintenance schedule
-There was some profit - taking because prices for all the precious metals had risen to levels at which there was resistance to further advance , he said . risen had risen prices for all the precious metals levels at which there was resistance to further advance
-The New York City issue included $ 757 million of tax - exempt bonds priced to yield between 6.50 % to 7.88 % , depending on the maturity . included included The New York City issue priced to yield between 6.50 % to 7.88 % , depending on the maturity $ 757 million of tax - exempt bonds
-The New York City issue included $ 757 million of tax - exempt bonds priced to yield between 6.50 % to 7.88 % , depending on the maturity . priced priced $ 757 million of tax - exempt bonds to yield between 6.50 % to 7.88 % , depending on the maturity
-The New York City issue included $ 757 million of tax - exempt bonds priced to yield between 6.50 % to 7.88 % , depending on the maturity . yield will yield $ 757 million of tax - exempt bonds between 6.50 % to 7.88 % , depending on the maturity
-The New York City issue included $ 757 million of tax - exempt bonds priced to yield between 6.50 % to 7.88 % , depending on the maturity . depending depending the maturity
-Salt Lake City - based First Security , with $ 5.4 billion in assets , said the agreement is subject to shareholder and regulatory approval , and that it hopes to complete the transaction early next year . based based Salt Lake City First Security
-Salt Lake City - based First Security , with $ 5.4 billion in assets , said the agreement is subject to shareholder and regulatory approval , and that it hopes to complete the transaction early next year . said said Salt Lake City - based First Security the agreement is subject to shareholder and regulatory approval , and that it hopes to complete the transaction early next year
-Salt Lake City - based First Security , with $ 5.4 billion in assets , said the agreement is subject to shareholder and regulatory approval , and that it hopes to complete the transaction early next year . hopes hopes Salt Lake City - based First Security to complete the transaction early next year
-Salt Lake City - based First Security , with $ 5.4 billion in assets , said the agreement is subject to shareholder and regulatory approval , and that it hopes to complete the transaction early next year . complete might complete the transaction early next year Salt Lake City - based First Security
-`` Communism will reach its final stage of development in a feckless Russo -- corporation - socialist in form , nationalistic in content and Oriental in style -- that will puzzle the world with alternating feats of realism and recklessness ... . '' reach will reach Communism its final stage of development in a feckless Russo -- corporation - socialist in form , nationalistic in content and Oriental in style -- that will puzzle the world with alternating feats of realism and recklessness ... .
-`` Communism will reach its final stage of development in a feckless Russo -- corporation - socialist in form , nationalistic in content and Oriental in style -- that will puzzle the world with alternating feats of realism and recklessness ... . '' puzzle will puzzle a feckless Russo -- corporation - socialist in form , nationalistic in content and Oriental in style the world alternating feats of realism and recklessness
-`` Communism will reach its final stage of development in a feckless Russo -- corporation - socialist in form , nationalistic in content and Oriental in style -- that will puzzle the world with alternating feats of realism and recklessness ... . '' alternating will alternating feats of realism and recklessness
-Gen - Probe Inc. , a biotechnology concern , said it signed a definitive agreement to be acquired by Chugai Pharmaceutical Co. of Tokyo for about $ 110 million , or almost double the market price of Gen - Probe 's stock . said said Gen - Probe Inc. it signed a definitive agreement to be acquired by Chugai Pharmaceutical Co. of Tokyo for about $ 110 million , or almost double the market price of Gen - Probe 's stock .
-Gen - Probe Inc. , a biotechnology concern , said it signed a definitive agreement to be acquired by Chugai Pharmaceutical Co. of Tokyo for about $ 110 million , or almost double the market price of Gen - Probe 's stock . said said a biotechnology concern it signed a definitive agreement to be acquired by Chugai Pharmaceutical Co. of Tokyo for about $ 110 million , or almost double the market price of Gen - Probe 's stock .
-Gen - Probe Inc. , a biotechnology concern , said it signed a definitive agreement to be acquired by Chugai Pharmaceutical Co. of Tokyo for about $ 110 million , or almost double the market price of Gen - Probe 's stock . signed signed Gen - Probe Inc. a definitive agreement to be acquired by Chugai Pharmaceutical Co. of Tokyo for about $ 110 million , or almost double the market price of Gen - Probe 's stock .
-Gen - Probe Inc. , a biotechnology concern , said it signed a definitive agreement to be acquired by Chugai Pharmaceutical Co. of Tokyo for about $ 110 million , or almost double the market price of Gen - Probe 's stock . signed signed a biotechnology concern a definitive agreement to be acquired by Chugai Pharmaceutical Co. of Tokyo for about $ 110 million , or almost double the market price of Gen - Probe 's stock .
-Gen - Probe Inc. , a biotechnology concern , said it signed a definitive agreement to be acquired by Chugai Pharmaceutical Co. of Tokyo for about $ 110 million , or almost double the market price of Gen - Probe 's stock . acquired would acquired a definitive agreement Chugai Pharmaceutical Co. of Tokyo , or almost double the market price of Gen - Probe 's stock . for about $ 110 million
-They can be relieved only by changing that system , not by pouring Western money into it . changing should changing that system They can be relieved
-They can be relieved only by changing that system , not by pouring Western money into it . pouring might pouring Western money into it
-Their laboratory credentials established , Boyer and Swanson headed for Wall Street in 1980 . established established credentials Boyer and Swanson
-Their laboratory credentials established , Boyer and Swanson headed for Wall Street in 1980 . headed headed Boyer and Swanson Wall Street 1980
-Japan 's No. 111 4.6 % bond due 1998 ended the day on brokers screens at 95.11 to yield 5.43 % . ended ended Japan 's No. 111 4.6 % bond due at 95.11 to yield 5.43 % . 1998
-Japan 's No. 111 4.6 % bond due 1998 ended the day on brokers screens at 95.11 to yield 5.43 % . yield yield 5.43 % Japan 's No. 111 4.6 % bond 1998
-If the government can stick with them , it will be able to halve this year 's 120 billion ruble ( US$ 193 billion ) deficit . halve will halve the government this year 's ruble ( US$ 193 billion ) deficit 120 billion
-If the government can stick with them , it will be able to halve this year 's 120 billion ruble ( US$ 193 billion ) deficit . halve will halve the government this year 's 120 billion ruble ( ) deficit US$ 193 billion
-Because the companies have lacked office computers considered standard equipment in the U.S. and Western Europe , Japanese corporations ' reputation as hi - tech powerhouses is only half right . lacked lacked the companies office computers in the U.S. and Western Europe
-Because the companies have lacked office computers considered standard equipment in the U.S. and Western Europe , Japanese corporations ' reputation as hi - tech powerhouses is only half right . considered considered standard equipment the companies Because have lacked office computers
-He accused Dow Jones of `` using unfair means to obtain the stock at an unfair price . '' using using unfair means Dow Jones to obtain the stock at an unfair price
-He accused Dow Jones of `` using unfair means to obtain the stock at an unfair price . '' obtain obtain Dow Jones the stock at an unfair price
-Japan 's FTC says it is investigating Apple for allegedly discouraging retailers from discounting . says says Japan 's FTC it is investigating Apple for allegedly discouraging retailers from discounting
-Japan 's FTC says it is investigating Apple for allegedly discouraging retailers from discounting . investigating investigating Japan 's FTC Apple for allegedly discouraging retailers from discounting
-Japan 's FTC says it is investigating Apple for allegedly discouraging retailers from discounting . discouraging discouraging retailers Apple from discounting
-Japan 's FTC says it is investigating Apple for allegedly discouraging retailers from discounting . discounting might discounting retailers
-The Wellesley , Mass. , maker of scientific instruments and electronic parts said Berthold expects 1989 sales of more than 100 million Deutsche marks ( $ 54.5 million ) and employs about 400 people . said said The Wellesley expects 1989 sales of more than 100 million Deutsche marks ( $ 54.5 million ) and employs about 400 people Berthold
-The Wellesley , Mass. , maker of scientific instruments and electronic parts said Berthold expects 1989 sales of more than 100 million Deutsche marks ( $ 54.5 million ) and employs about 400 people . said said Mass. , maker of scientific instruments and electronic parts expects 1989 sales of more than 100 million Deutsche marks ( $ 54.5 million ) and employs about 400 people Berthold
-The Wellesley , Mass. , maker of scientific instruments and electronic parts said Berthold expects 1989 sales of more than 100 million Deutsche marks ( $ 54.5 million ) and employs about 400 people . expects expects Berthold 1989 sales of more than 100 million Deutsche marks ( $ 54.5 million )
-The Wellesley , Mass. , maker of scientific instruments and electronic parts said Berthold expects 1989 sales of more than 100 million Deutsche marks ( $ 54.5 million ) and employs about 400 people . employs employs Berthold about 400 people
-`` They 're getting some major wins , '' she added . getting getting They 're some major wins
-The brew , called Miller Sharp 's , will be supported by ads developed by Frankenberry , Laughlin & Constable , Milwaukee . called called The brew Miller Sharp 's
-The brew , called Miller Sharp 's , will be supported by ads developed by Frankenberry , Laughlin & Constable , Milwaukee . supported will supported Miller Sharp 's ads
-The brew , called Miller Sharp 's , will be supported by ads developed by Frankenberry , Laughlin & Constable , Milwaukee . supported will supported The brew ads
-The brew , called Miller Sharp 's , will be supported by ads developed by Frankenberry , Laughlin & Constable , Milwaukee . developed developed Frankenberry , Laughlin & Constable , Milwaukee ads
-The specialists , a trader said , were `` livid '' about Mr. Phelan 's recent remarks that sophisticated computer - driven trading strategies are `` here to stay . '' said said trader
-The specialists , a trader said , were `` livid '' about Mr. Phelan 's recent remarks that sophisticated computer - driven trading strategies are `` here to stay . '' said said The specialists
-The specialists , a trader said , were `` livid '' about Mr. Phelan 's recent remarks that sophisticated computer - driven trading strategies are `` here to stay . '' stay would stay sophisticated computer - driven trading strategies here
-Armstrong World Industries Inc. agreed in principle to sell its carpet operations to Shaw Industries Inc . agreed agreed Armstrong World Industries Inc. to sell its carpet operations in principle
-Armstrong World Industries Inc. agreed in principle to sell its carpet operations to Shaw Industries Inc . sell might sell its carpet operations Armstrong World Industries Inc. Shaw Industries Inc
-In that decision , the high court said a company must prove that the government approved precise specifications for the contract , that those specifications were met and that the government was warned of any dangers in use of the equipment . said said the high court a company must prove that the government approved precise specifications for the contract , that those specifications were met and that the government was warned of any dangers in use of the equipment
-In that decision , the high court said a company must prove that the government approved precise specifications for the contract , that those specifications were met and that the government was warned of any dangers in use of the equipment . prove must prove a company that the government approved precise specifications for the contract , that those specifications were met and that the government was warned of any dangers in use of the equipment
-In that decision , the high court said a company must prove that the government approved precise specifications for the contract , that those specifications were met and that the government was warned of any dangers in use of the equipment . approved approved the government precise specifications for the contract
-In that decision , the high court said a company must prove that the government approved precise specifications for the contract , that those specifications were met and that the government was warned of any dangers in use of the equipment . met met those specifications
-In that decision , the high court said a company must prove that the government approved precise specifications for the contract , that those specifications were met and that the government was warned of any dangers in use of the equipment . warned warned the government any dangers in use of the equipment
-A Coke spokesman said he could n't say whether that is the direction of the talks . said said A Coke spokesman he could n't say whether that is the direction of the talks
-A Coke spokesman said he could n't say whether that is the direction of the talks . say could n't say whether that is the direction of the talks A Coke spokesman
-Last year , the Supreme Court defined when companies , such as military contractors , may defend themselves against lawsuits for deaths or injuries by asserting that they were simply following specifications of a federal government contract . defined defined the Supreme Court Last year when companies , such as military contractors , may defend themselves against lawsuits for deaths or injuries by asserting that they were simply following specifications of a federal government contract
-Last year , the Supreme Court defined when companies , such as military contractors , may defend themselves against lawsuits for deaths or injuries by asserting that they were simply following specifications of a federal government contract . defend may defend companies , such as military contractors lawsuits for deaths or injuries by asserting that they were simply following specifications of a federal government contract
-Last year , the Supreme Court defined when companies , such as military contractors , may defend themselves against lawsuits for deaths or injuries by asserting that they were simply following specifications of a federal government contract . asserting asserting companies , such as military contractors they were simply following specifications of a federal government contract
-Last year , the Supreme Court defined when companies , such as military contractors , may defend themselves against lawsuits for deaths or injuries by asserting that they were simply following specifications of a federal government contract . following following specifications of a federal government contract companies , such as military contractors
-The poll points up some inconsistencies between what people say and what they do . points points The poll some inconsistencies between what people say and what they do
-The poll points up some inconsistencies between what people say and what they do . say say people
-The poll points up some inconsistencies between what people say and what they do . do do people
-It is the promise of economic returns that is supposed to make the corporatist model attractive to both the party and labor . supposed supposed the promise of economic returns to make the corporatist model attractive to both the party and labor
-It is the promise of economic returns that is supposed to make the corporatist model attractive to both the party and labor . make might make the corporatist model the promise of economic returns attractive
-In stock - index arbitrage , traders buy and sell large amounts of stocks with offsetting trades in stock - index futures and options . buy buy stocks traders In stock - index arbitrage large amounts
-In stock - index arbitrage , traders buy and sell large amounts of stocks with offsetting trades in stock - index futures and options . sell sell traders stocks In stock - index arbitrage large amounts
-In stock - index arbitrage , traders buy and sell large amounts of stocks with offsetting trades in stock - index futures and options . offsetting offsetting trades in stock - index futures and options
-The network must refund money to the advertisers and loses considerable revenue and prestige . refund must refund The network money advertisers
-The network must refund money to the advertisers and loses considerable revenue and prestige . loses will loses The network considerable revenue and prestige
-Interstate / Johnson Lane Inc. this year adds 70 people -- 60 of them in retail -- to its 1,300 - member staff . adds adds Interstate this year 70 people -- 60 of them in retail its 1,300 - member staff
-Interstate / Johnson Lane Inc. this year adds 70 people -- 60 of them in retail -- to its 1,300 - member staff . adds adds Johnson Lane Inc. this year 70 people -- 60 of them in retail its 1,300 - member staff
-`` The development could have a dramatic effect on farm production , especially cotton , '' said Murray Robinson , president of Delta & Pine Land Co. , a Southwide Inc. subsidiary that is one of the largest cotton seed producers in the U.S. . have could have The development a dramatic effect on farm production , especially cotton
-`` The development could have a dramatic effect on farm production , especially cotton , '' said Murray Robinson , president of Delta & Pine Land Co. , a Southwide Inc. subsidiary that is one of the largest cotton seed producers in the U.S. . said said Murray Robinson
-`` The development could have a dramatic effect on farm production , especially cotton , '' said Murray Robinson , president of Delta & Pine Land Co. , a Southwide Inc. subsidiary that is one of the largest cotton seed producers in the U.S. . said said president of Delta & Pine Land Co. , a Southwide Inc. subsidiary that is one of the largest cotton seed producers in the U.S.
-In recent years , Nissan has instituted flex - time work schedules and allowed employees to dress casually , even in blue jeans . instituted instituted Nissan In recent years flex - time work schedules and allowed employees to dress casually , even in blue jeans
-In recent years , Nissan has instituted flex - time work schedules and allowed employees to dress casually , even in blue jeans . allowed allowed employees to dress casually , even in blue jeans
-In recent years , Nissan has instituted flex - time work schedules and allowed employees to dress casually , even in blue jeans . dress can dress employees casually
-Eastern and its creditors are in the final , delicate stages of negotiating a second reorganization plan to pay off the airline 's debts . negotiating negotiating Eastern a second reorganization plan to pay off the airline 's debts
-Eastern and its creditors are in the final , delicate stages of negotiating a second reorganization plan to pay off the airline 's debts . negotiating negotiating its creditors a second reorganization plan to pay off the airline 's debts
-Eastern and its creditors are in the final , delicate stages of negotiating a second reorganization plan to pay off the airline 's debts . pay will pay Eastern the airline 's
-Eastern and its creditors are in the final , delicate stages of negotiating a second reorganization plan to pay off the airline 's debts . pay will pay its creditors the airline 's
-That amounts to more than $ 350 billion a year . amounts amounts That more than $ 350 billion a year
-But the government 's action , which caught Jaguar management flat - footed , may scuttle the GM minority deal by forcing it to fight for all of Jaguar . caught caught Jaguar management government 's action flat - footed
-But the government 's action , which caught Jaguar management flat - footed , may scuttle the GM minority deal by forcing it to fight for all of Jaguar . scuttle may scuttle the GM minority deal by forcing it to fight for all of Jaguar government 's action
-But the government 's action , which caught Jaguar management flat - footed , may scuttle the GM minority deal by forcing it to fight for all of Jaguar . forcing will forcing government 's action it to fight for all of Jaguar may scuttle the GM minority deal
-But the government 's action , which caught Jaguar management flat - footed , may scuttle the GM minority deal by forcing it to fight for all of Jaguar . fight should fight Jaguar management all of Jaguar by forcing it
-In addition , further packaging of mortgage - backed securities , such as Blackstone 's fund , have reduced the effects of prepayment risk and automatically reinvest monthly payments so institutions do n't have to . backed backed mortgage securities
-In addition , further packaging of mortgage - backed securities , such as Blackstone 's fund , have reduced the effects of prepayment risk and automatically reinvest monthly payments so institutions do n't have to . reduced reduced mortgage - backed securities the effects of prepayment risk and automatically reinvest monthly payments so institutions do n't have to
-In addition , further packaging of mortgage - backed securities , such as Blackstone 's fund , have reduced the effects of prepayment risk and automatically reinvest monthly payments so institutions do n't have to . reduced reduced Blackstone 's fund the effects of prepayment risk and automatically reinvest monthly payments so institutions do n't have to
-In addition , further packaging of mortgage - backed securities , such as Blackstone 's fund , have reduced the effects of prepayment risk and automatically reinvest monthly payments so institutions do n't have to . reinvest can reinvest monthly payments so institutions do n't have to automatically
-In addition , further packaging of mortgage - backed securities , such as Blackstone 's fund , have reduced the effects of prepayment risk and automatically reinvest monthly payments so institutions do n't have to . have do n't have institutions
-Trek previously made only traditional road bikes , but `` it did n't take a rocket scientist to change a road bike into a mountain bike , '' says Trek 's president , Dick Burke . made might made previously Trek road bikes only
-Trek previously made only traditional road bikes , but `` it did n't take a rocket scientist to change a road bike into a mountain bike , '' says Trek 's president , Dick Burke . change does n't change a road bike a mountain bike Trek a rocket scientist
-Trek previously made only traditional road bikes , but `` it did n't take a rocket scientist to change a road bike into a mountain bike , '' says Trek 's president , Dick Burke . says says Dick Burke `` it did n't take a rocket scientist to change a road bike into a mountain bike , '' Trek previously made only traditional road bikes
-Trek previously made only traditional road bikes , but `` it did n't take a rocket scientist to change a road bike into a mountain bike , '' says Trek 's president , Dick Burke . says says Trek 's president `` it did n't take a rocket scientist to change a road bike into a mountain bike , '' Trek previously made only traditional road bikes
-Warner is part of Warner Communications Inc. , which is in the process of being acquired by Time Warner Inc . acquired will acquired Warner Time Inc
-In major market activity : Stock prices rose in light trading . rose rose In major market activity Stock prices light trading
-Charles O. Givens of Mount Vernon , Ind. - investment broker , ex - accountant , and son of a former stable owner - bred Tennessee Walking Horses for six years , raised cattle for four , and never made a profit on either . bred bred Charles O. Givens of Mount Vernon Tennessee Walking Horses for six years
-Charles O. Givens of Mount Vernon , Ind. - investment broker , ex - accountant , and son of a former stable owner - bred Tennessee Walking Horses for six years , raised cattle for four , and never made a profit on either . bred bred Ind. - investment broker Tennessee Walking Horses for six years
-Charles O. Givens of Mount Vernon , Ind. - investment broker , ex - accountant , and son of a former stable owner - bred Tennessee Walking Horses for six years , raised cattle for four , and never made a profit on either . bred bred ex - accountant Tennessee Walking Horses for six years
-Charles O. Givens of Mount Vernon , Ind. - investment broker , ex - accountant , and son of a former stable owner - bred Tennessee Walking Horses for six years , raised cattle for four , and never made a profit on either . bred bred son of a former stable owner Tennessee Walking Horses for six years
-Charles O. Givens of Mount Vernon , Ind. - investment broker , ex - accountant , and son of a former stable owner - bred Tennessee Walking Horses for six years , raised cattle for four , and never made a profit on either . Walking walking Horses
-Charles O. Givens of Mount Vernon , Ind. - investment broker , ex - accountant , and son of a former stable owner - bred Tennessee Walking Horses for six years , raised cattle for four , and never made a profit on either . raised raised Charles O. Givens of Mount Vernon cattle for four
-Charles O. Givens of Mount Vernon , Ind. - investment broker , ex - accountant , and son of a former stable owner - bred Tennessee Walking Horses for six years , raised cattle for four , and never made a profit on either . raised raised Ind. - investment broker cattle for four
-Charles O. Givens of Mount Vernon , Ind. - investment broker , ex - accountant , and son of a former stable owner - bred Tennessee Walking Horses for six years , raised cattle for four , and never made a profit on either . raised raised ex - accountant cattle for four
-Charles O. Givens of Mount Vernon , Ind. - investment broker , ex - accountant , and son of a former stable owner - bred Tennessee Walking Horses for six years , raised cattle for four , and never made a profit on either . raised raised son of a former stable owner cattle for four
-Charles O. Givens of Mount Vernon , Ind. - investment broker , ex - accountant , and son of a former stable owner - bred Tennessee Walking Horses for six years , raised cattle for four , and never made a profit on either . made was n't made profit Charles O. Givens of Mount Vernon Walking Horses
-Charles O. Givens of Mount Vernon , Ind. - investment broker , ex - accountant , and son of a former stable owner - bred Tennessee Walking Horses for six years , raised cattle for four , and never made a profit on either . made was n't made profit Charles O. Givens of Mount Vernon cattle
-Charles O. Givens of Mount Vernon , Ind. - investment broker , ex - accountant , and son of a former stable owner - bred Tennessee Walking Horses for six years , raised cattle for four , and never made a profit on either . made was n't made profit Ind. - investment broker Walking Horses
-Charles O. Givens of Mount Vernon , Ind. - investment broker , ex - accountant , and son of a former stable owner - bred Tennessee Walking Horses for six years , raised cattle for four , and never made a profit on either . made was n't made profit Ind. - investment broker cattle
-Charles O. Givens of Mount Vernon , Ind. - investment broker , ex - accountant , and son of a former stable owner - bred Tennessee Walking Horses for six years , raised cattle for four , and never made a profit on either . made was n't made profit ex - accountant Walking Horses
-Charles O. Givens of Mount Vernon , Ind. - investment broker , ex - accountant , and son of a former stable owner - bred Tennessee Walking Horses for six years , raised cattle for four , and never made a profit on either . made was n't made profit ex - accountant cattle
-Charles O. Givens of Mount Vernon , Ind. - investment broker , ex - accountant , and son of a former stable owner - bred Tennessee Walking Horses for six years , raised cattle for four , and never made a profit on either . made was n't made profit son of a former stable owner Walking Horses
-Charles O. Givens of Mount Vernon , Ind. - investment broker , ex - accountant , and son of a former stable owner - bred Tennessee Walking Horses for six years , raised cattle for four , and never made a profit on either . made was n't made profit son of a former stable owner cattle
-Mr. Baker heads the Kentucky Association of Science Educators and Skeptics . heads heads Mr. Baker the Association of Science Educators and Skeptics Kentucky
-Declining issues outnumbered advancers 551 to 349 ; 224 issues were unchanged . Declining declining issues outnumbered advancers 551 to 349 ; 224 were unchanged
-Declining issues outnumbered advancers 551 to 349 ; 224 issues were unchanged . outnumbered outnumbered Declining issues advancers 551 to 349 ; 224 issues were unchanged
-Healthcare International Inc. said it reached a 120 - day standstill agreement with its HealthVest affiliate calling for Healthcare to pay HealthVest $ 5 million right away and additional amounts in the future . said said Healthcare International Inc. it reached a 120 - day standstill agreement with its affiliate calling for Healthcare to pay HealthVest $ 5 million right away and additional amounts in the future . HealthVest
-Healthcare International Inc. said it reached a 120 - day standstill agreement with its HealthVest affiliate calling for Healthcare to pay HealthVest $ 5 million right away and additional amounts in the future . reached reached Healthcare International Inc. a 120 - day standstill agreement
-Healthcare International Inc. said it reached a 120 - day standstill agreement with its HealthVest affiliate calling for Healthcare to pay HealthVest $ 5 million right away and additional amounts in the future . reached reached HealthVest a 120 - day standstill agreement
-Healthcare International Inc. said it reached a 120 - day standstill agreement with its HealthVest affiliate calling for Healthcare to pay HealthVest $ 5 million right away and additional amounts in the future . calling calling Healthcare to pay HealthVest and additional amounts in the future right away a 120 - day standstill agreement $ 5 million
-Healthcare International Inc. said it reached a 120 - day standstill agreement with its HealthVest affiliate calling for Healthcare to pay HealthVest $ 5 million right away and additional amounts in the future . calling calling Healthcare to pay HealthVest $ 5 million and in the future right away a 120 - day standstill agreement additional amounts
-Healthcare International Inc. said it reached a 120 - day standstill agreement with its HealthVest affiliate calling for Healthcare to pay HealthVest $ 5 million right away and additional amounts in the future . calling calling Healthcare to pay HealthVest right away and additional amounts in the future a 120 - day standstill agreement $ 5 million
-Healthcare International Inc. said it reached a 120 - day standstill agreement with its HealthVest affiliate calling for Healthcare to pay HealthVest $ 5 million right away and additional amounts in the future . calling calling Healthcare to pay HealthVest $ 5 million right away and in the future a 120 - day standstill agreement additional amounts
-Healthcare International Inc. said it reached a 120 - day standstill agreement with its HealthVest affiliate calling for Healthcare to pay HealthVest $ 5 million right away and additional amounts in the future . pay must pay Healthcare HealthVest right away $ 5 million
-Healthcare International Inc. said it reached a 120 - day standstill agreement with its HealthVest affiliate calling for Healthcare to pay HealthVest $ 5 million right away and additional amounts in the future . pay must pay Healthcare HealthVest right away additional amounts
-Healthcare International Inc. said it reached a 120 - day standstill agreement with its HealthVest affiliate calling for Healthcare to pay HealthVest $ 5 million right away and additional amounts in the future . pay must pay Healthcare HealthVest in the future $ 5 million
-Healthcare International Inc. said it reached a 120 - day standstill agreement with its HealthVest affiliate calling for Healthcare to pay HealthVest $ 5 million right away and additional amounts in the future . pay must pay Healthcare HealthVest in the future additional amounts
-Aside from as much as $ 3.45 billion in recently approved federal aid , the state is expected to draw from a gubernatorial emergency fund that currently stands at an estimated $ 700 million . approved approved federal aid the state
-Aside from as much as $ 3.45 billion in recently approved federal aid , the state is expected to draw from a gubernatorial emergency fund that currently stands at an estimated $ 700 million . expected expected the state draw from a gubernatorial emergency fund that currently stands at an estimated $ 700 million
-Aside from as much as $ 3.45 billion in recently approved federal aid , the state is expected to draw from a gubernatorial emergency fund that currently stands at an estimated $ 700 million . draw will draw the state a gubernatorial emergency fund that currently stands at an estimated $ 700 million
-Aside from as much as $ 3.45 billion in recently approved federal aid , the state is expected to draw from a gubernatorial emergency fund that currently stands at an estimated $ 700 million . stands stands a gubernatorial emergency fund an estimated $ 700 million
-Aside from as much as $ 3.45 billion in recently approved federal aid , the state is expected to draw from a gubernatorial emergency fund that currently stands at an estimated $ 700 million . estimated estimated $ 700 million a gubernatorial emergency fund
-They say these are small prices to pay for galvanizing action for the all - important cause . pay pay small prices galvanizing action for the all - important cause .
-They say these are small prices to pay for galvanizing action for the all - important cause . galvanizing galvanizing all - important cause . small prices to pay
-It could point to plenty of ailments that the Spanish economic rejuvenation so far has failed to cure . failed failed plenty of ailments that the Spanish economic rejuvenation to cure
-It could point to plenty of ailments that the Spanish economic rejuvenation so far has failed to cure . cure has n't cure plenty of ailments Spanish economic rejuvenation
-Moreover , such a sale could help Armstrong reassure its investors and deter the Belzbergs , who own a 9.85 % stake in the Lancaster , Pa. , company . help could help a sale Armstrong reassure its investors and deter the Belzbergs , who own a 9.85 % stake in the Lancaster , Pa. , company
-Moreover , such a sale could help Armstrong reassure its investors and deter the Belzbergs , who own a 9.85 % stake in the Lancaster , Pa. , company . reassure could reassure Armstrong its investors
-Moreover , such a sale could help Armstrong reassure its investors and deter the Belzbergs , who own a 9.85 % stake in the Lancaster , Pa. , company . deter could deter the Belzbergs
-Moreover , such a sale could help Armstrong reassure its investors and deter the Belzbergs , who own a 9.85 % stake in the Lancaster , Pa. , company . own own a 9.85 % stake in the Lancaster , Pa. , company the Belzbergs
-The Treasury bills sold yesterday settle today , rather than the standard settlement day of Thursday . sold sold The Treasury bills yesterday
-The Treasury bills sold yesterday settle today , rather than the standard settlement day of Thursday . settle settle The Treasury bills sold yesterday today
-He showed up with a carpenter 's level , carefully measured every surface and showed how the apparent shrinkage was caused by the perspective . caused caused the apparent shrinkage the perspective by
-It is possible that , in perpetuating such myths , the ground is being laid for the arrest of opposition activists on the ground of terrorism . perpetuating perpetuating such myths
-It is possible that , in perpetuating such myths , the ground is being laid for the arrest of opposition activists on the ground of terrorism . laid laid the ground for the arrest of opposition activists on of terrorism
-Municipal bonds were little changed to 1\/2 point higher in late dealings . changed changed Municipal bonds little 1\/2 point higher in late dealings
-Although in Flanders , the Flemish Region assigned all of its powers to the Flemish Community , the Walloon Region remains in principle distinct from and independent from the French Community , and vice-versa . assigned assigned the Flemish Region all of its powers the Flemish Community
-Although in Flanders , the Flemish Region assigned all of its powers to the Flemish Community , the Walloon Region remains in principle distinct from and independent from the French Community , and vice-versa . remains remains the Walloon Region in principle distinct from and independent from the French Community
-It was a notable influence on John Buchan and Ken Follett , who described it as `` an open-air adventure thriller about two young men who stumble upon a German armada preparing to invade England . '' stumble stumble two young men a German armada preparing to invade England
-It was a notable influence on John Buchan and Ken Follett , who described it as `` an open-air adventure thriller about two young men who stumble upon a German armada preparing to invade England . '' preparing preparing German armada invade England
-It was a notable influence on John Buchan and Ken Follett , who described it as `` an open-air adventure thriller about two young men who stumble upon a German armada preparing to invade England . '' invade would invade England German armada
-Undercover cop Muscles enlists his childhood friends , the `` Five Lucky Stars '' , to travel to Japan to help him catch a Yakuza group . enlists enlists Muscles his childhood friends travel to Japan to help him catch a Yakuza group
-Undercover cop Muscles enlists his childhood friends , the `` Five Lucky Stars '' , to travel to Japan to help him catch a Yakuza group . enlists enlists Muscles Five Lucky Stars travel to Japan to help him catch a Yakuza group
-Undercover cop Muscles enlists his childhood friends , the `` Five Lucky Stars '' , to travel to Japan to help him catch a Yakuza group . travel will travel Five Lucky Stars Japan to help him catch a Yakuza group
-Undercover cop Muscles enlists his childhood friends , the `` Five Lucky Stars '' , to travel to Japan to help him catch a Yakuza group . travel will travel childhood friends Japan to help him catch a Yakuza group
-Undercover cop Muscles enlists his childhood friends , the `` Five Lucky Stars '' , to travel to Japan to help him catch a Yakuza group . help will help Five Lucky Stars Japan catch a Yakuza group Muscles
-Undercover cop Muscles enlists his childhood friends , the `` Five Lucky Stars '' , to travel to Japan to help him catch a Yakuza group . help will help his childhood friends Japan catch a Yakuza group Muscles
-The strike obtained political support from the Political Affairs Committee , and the workers were addressed at numerous public meetings by Dr. Cheddi Jagan , Janet Jagan and leaders of the GIWU . obtained obtained The strike political support from the Political Affairs Committee , and the workers were addressed at numerous public meetings by Dr. Cheddi Jagan , Janet Jagan and leaders of the GIWU .
-The strike obtained political support from the Political Affairs Committee , and the workers were addressed at numerous public meetings by Dr. Cheddi Jagan , Janet Jagan and leaders of the GIWU . addressed addressed workers numerous public meetings by , Janet Jagan and leaders of the GIWU . Dr. Cheddi Jagan
-The strike obtained political support from the Political Affairs Committee , and the workers were addressed at numerous public meetings by Dr. Cheddi Jagan , Janet Jagan and leaders of the GIWU . addressed addressed workers numerous public meetings by Dr. Cheddi Jagan , and leaders of the GIWU . Janet Jagan
-The strike obtained political support from the Political Affairs Committee , and the workers were addressed at numerous public meetings by Dr. Cheddi Jagan , Janet Jagan and leaders of the GIWU . addressed addressed workers numerous public meetings by Dr. Cheddi Jagan , Janet Jagan and . leaders of the GIWU
-Regulations meant that the original sixth lap would be deleted and the race would be restarted from the beginning of said lap . meant meant Regulations that the original sixth lap would be deleted and the race would be restarted from the beginning of said lap .
-Regulations meant that the original sixth lap would be deleted and the race would be restarted from the beginning of said lap . deleted would deleted the original sixth lap Regulations
-Regulations meant that the original sixth lap would be deleted and the race would be restarted from the beginning of said lap . restarted would restarted the race from the beginning of said lap .
-Regulations meant that the original sixth lap would be deleted and the race would be restarted from the beginning of said lap . said said lap
-At this point , the player confronts a boss , who is usually considerably larger and tougher than regular enemies . confronts confronts At this point the player a boss
-Separate berthings and heads are found on sailboats over about . found found Separate berthings and heads sailboats
-Test & official start of the TVN24 HD started on 30 November 2012 . started started Test & official start of the TVN24 HD on 30 November 2012
-Autostereoscopy is any method of displaying stereoscopic images without the use of special headgear or glasses on the part of the viewer . displaying displaying stereoscopic images Autostereoscopy without the use of special headgear or glasses
-Graner handcuffed him to the bars of a cell window and left him there , feet dangling off the floor , for nearly five hours . dangling dangling feet the floor
-It deals with cases of fraud in relation to direct taxes and indirect taxes , tax credits , drug smuggling , and money laundering , cases involving United Nations trade sanctions , conflict diamonds and CITES . direct direct taxes
-It deals with cases of fraud in relation to direct taxes and indirect taxes , tax credits , drug smuggling , and money laundering , cases involving United Nations trade sanctions , conflict diamonds and CITES . involving involving cases United Nations trade sanctions
-According to available information , the Maoists of Nepal have well-established linkages with Indian revolutionary communist organizations , primarily with the Communist Party of India , currently leading a protracted `` people 's war '' throughout the subcontinent . According according available information the Maoists of Nepal have well-established linkages with Indian revolutionary communist organizations , primarily with the Communist Party of India , currently leading a protracted `` people 's war '' throughout the subcontinent .
-According to available information , the Maoists of Nepal have well-established linkages with Indian revolutionary communist organizations , primarily with the Communist Party of India , currently leading a protracted `` people 's war '' throughout the subcontinent . have have the Maoists of Nepal well-established linkages with Indian revolutionary communist organizations , primarily with the Communist Party of India , currently leading a protracted `` people 's war '' throughout the subcontinent .
-According to available information , the Maoists of Nepal have well-established linkages with Indian revolutionary communist organizations , primarily with the Communist Party of India , currently leading a protracted `` people 's war '' throughout the subcontinent . leading leading a protracted `` people 's war '' throughout the subcontinent . Communist Party of India
-In October 2008 , Bond apologized to former U.S. Attorney Todd Graves , after a U.S. Justice Department report cited Bond for forcing Graves out over a disagreement with Representative Sam Graves . apologized apologized Bond former U.S. Attorney Todd Graves after a U.S. Justice Department report cited for forcing Graves out over a disagreement with Representative Sam Graves .
-In October 2008 , Bond apologized to former U.S. Attorney Todd Graves , after a U.S. Justice Department report cited Bond for forcing Graves out over a disagreement with Representative Sam Graves . apologized apologized Bond former U.S. Attorney Todd Graves In October 2008
-In October 2008 , Bond apologized to former U.S. Attorney Todd Graves , after a U.S. Justice Department report cited Bond for forcing Graves out over a disagreement with Representative Sam Graves . cited cited U.S. Justice Department report Bond for forcing Graves out over a disagreement with Representative Sam Graves
-In October 2008 , Bond apologized to former U.S. Attorney Todd Graves , after a U.S. Justice Department report cited Bond for forcing Graves out over a disagreement with Representative Sam Graves . forcing forcing Graves out over a disagreement with Representative Sam Graves . Bond
-All officers are additionally equipped with less-lethal weapons for use against threats that do not justify a firearms response . equipped equipped All officers less-lethal weapons for use against threats that do not justify a firearms response
-All officers are additionally equipped with less-lethal weapons for use against threats that do not justify a firearms response . justify does n't justify threats a firearms response
-These include any Assistant to the President , Deputy Assistant to the President , and Special Assistant to the President . include include These any Assistant to the President
-These include any Assistant to the President , Deputy Assistant to the President , and Special Assistant to the President . include include These Deputy Assistant to the President
-These include any Assistant to the President , Deputy Assistant to the President , and Special Assistant to the President . include include These Special Assistant to the President
-Because of this association , St. Michael was considered to be the patron saint of colonial Maryland , and as such was honored by the river being named for him . considered considered St. Michael the patron saint of colonial Maryland Because of this association
-Because of this association , St. Michael was considered to be the patron saint of colonial Maryland , and as such was honored by the river being named for him . honored honored St. Michael the river being named for him Because of this association
-Because of this association , St. Michael was considered to be the patron saint of colonial Maryland , and as such was honored by the river being named for him . honored honored St. Michael the river being named for him was considered to be the patron saint of colonial Maryland
-Because of this association , St. Michael was considered to be the patron saint of colonial Maryland , and as such was honored by the river being named for him . named had named St. Michael the river Because of this association
-Because of this association , St. Michael was considered to be the patron saint of colonial Maryland , and as such was honored by the river being named for him . named had named St. Michael the river was considered to be the patron saint of colonial Maryland
-After the British capture of Madrid , Hill had responsibility for an army of 30,000 men . had had After the British capture of Madrid Hill responsibility an army
-US 258 and NC 122 parallel the river north before the two routes diverge northeast of Tarboro . diverge diverge the two routes northeast of Tarboro
-The show was designed to appear as if the viewer was channel surfing through a multi-channel wasteland , happening upon spoof adverts , short sketches , and recurring show elements . designed designed The show to appear as if the viewer was channel surfing through a multi-channel wasteland , happening upon spoof adverts , short sketches , and recurring show elements
-The show was designed to appear as if the viewer was channel surfing through a multi-channel wasteland , happening upon spoof adverts , short sketches , and recurring show elements . appear would appear The show as if the viewer was channel surfing through a multi-channel wasteland , happening upon spoof adverts , short sketches , and recurring show elements
-The show was designed to appear as if the viewer was channel surfing through a multi-channel wasteland , happening upon spoof adverts , short sketches , and recurring show elements . surfing would surfing the viewer a multi-channel wasteland
-The show was designed to appear as if the viewer was channel surfing through a multi-channel wasteland , happening upon spoof adverts , short sketches , and recurring show elements . happening would happening spoof adverts , short sketches , and recurring show elements the viewer
-The show was designed to appear as if the viewer was channel surfing through a multi-channel wasteland , happening upon spoof adverts , short sketches , and recurring show elements . recurring would recurring show elements
-Several years later the remaining trackage at Charles City was abandoned . remaining remaining trackage at Charles City was abandoned .
-Several years later the remaining trackage at Charles City was abandoned . abandoned abandoned Several years later the remaining trackage at Charles City
-In 1981 , when staying in New York State , the pair developed the idea of running workshops for professional artists , which became the Triangle Arts Trust . staying staying In 1981 New York State the pair
-In 1981 , when staying in New York State , the pair developed the idea of running workshops for professional artists , which became the Triangle Arts Trust . developed developed the pair In 1981 the idea of running workshops for professional artists in New York State
-In 1981 , when staying in New York State , the pair developed the idea of running workshops for professional artists , which became the Triangle Arts Trust . developed developed the pair In 1981 the Triangle Arts Trust in New York State
-In 1981 , when staying in New York State , the pair developed the idea of running workshops for professional artists , which became the Triangle Arts Trust . developed developed the pair when staying the idea of running workshops for professional artists in New York State
-In 1981 , when staying in New York State , the pair developed the idea of running workshops for professional artists , which became the Triangle Arts Trust . developed developed the pair when staying the Triangle Arts Trust in New York State
-In 1981 , when staying in New York State , the pair developed the idea of running workshops for professional artists , which became the Triangle Arts Trust . running will running workshops professional artists
-In 1981 , when staying in New York State , the pair developed the idea of running workshops for professional artists , which became the Triangle Arts Trust . became became the idea of running workshops for professional artists the Triangle Arts Trust In 1981 in New York State
-After a short absence Keibler began a short feud with the evil Jillian Hall , which led to the two having a match on `` Velocity '' , which Keibler lost . began began Keibler a short feud the evil Jillian Hall After a short absence
-After a short absence Keibler began a short feud with the evil Jillian Hall , which led to the two having a match on `` Velocity '' , which Keibler lost . led led a short feud with the evil Jillian Hall the two having a match on `` Velocity ''
-After a short absence Keibler began a short feud with the evil Jillian Hall , which led to the two having a match on `` Velocity '' , which Keibler lost . lost lost Keibler a match
-Dr. Jagan himself was personally involved in the organization of the strike , and helped to raise funds across the country to it . involved involved Dr. Jagan the organization of the strike , and helped to raise funds across the country to it . personally
-Dr. Jagan himself was personally involved in the organization of the strike , and helped to raise funds across the country to it . helped helped Dr. Jagan raise funds across the country to it
-Dr. Jagan himself was personally involved in the organization of the strike , and helped to raise funds across the country to it . raise raise funds Dr. Jagan across the country to it .
-Greek and Roman pagans , who saw their relations with the gods in political and social terms , scorned the man who constantly trembled with fear at the thought of the gods , as a slave might fear a cruel and capricious master . saw saw Greek and Roman pagans in political and social terms their relations with the gods
-Greek and Roman pagans , who saw their relations with the gods in political and social terms , scorned the man who constantly trembled with fear at the thought of the gods , as a slave might fear a cruel and capricious master . scorned scorned Greek and Roman pagans the man who constantly trembled with fear at the thought of the gods
-Greek and Roman pagans , who saw their relations with the gods in political and social terms , scorned the man who constantly trembled with fear at the thought of the gods , as a slave might fear a cruel and capricious master . trembled trembled the man fear the thought of the gods constantly
-Greek and Roman pagans , who saw their relations with the gods in political and social terms , scorned the man who constantly trembled with fear at the thought of the gods , as a slave might fear a cruel and capricious master . fear might fear a slave a cruel and capricious master
-Rockwell and NASA thus retroactively re-designated the MPTA as MPTA-098 , though it was never christened with a name . re-designated re-designated Rockwell retroactively the MPTA as . MPTA-098 , though it was never christened with a name
-Rockwell and NASA thus retroactively re-designated the MPTA as MPTA-098 , though it was never christened with a name . re-designated re-designated NASA retroactively the MPTA as . MPTA-098 , though it was never christened with a name
-Rockwell and NASA thus retroactively re-designated the MPTA as MPTA-098 , though it was never christened with a name . christened was n't christened MPTA a name
-Unlike Fast Gun clubs , Big Gun clubs operate based upon a loose confederation , with each club reserving the ability to establish and maintain its own rules , provided that they coincide with the spirit of Big Gun Model Warship Combat . operate operate Big Gun clubs a loose confederation Unlike Fast Gun clubs
-Unlike Fast Gun clubs , Big Gun clubs operate based upon a loose confederation , with each club reserving the ability to establish and maintain its own rules , provided that they coincide with the spirit of Big Gun Model Warship Combat . operate operate Big Gun clubs a loose confederation with each club reserving the ability to establish and maintain its own rules , provided that they coincide with the spirit of Big Gun Model Warship Combat
-Unlike Fast Gun clubs , Big Gun clubs operate based upon a loose confederation , with each club reserving the ability to establish and maintain its own rules , provided that they coincide with the spirit of Big Gun Model Warship Combat . based based a loose confederation Big Gun clubs
-Unlike Fast Gun clubs , Big Gun clubs operate based upon a loose confederation , with each club reserving the ability to establish and maintain its own rules , provided that they coincide with the spirit of Big Gun Model Warship Combat . reserving reserving the ability to establish and maintain its own rules each club provided that they coincide with the spirit of Big Gun Model Warship Combat
-Unlike Fast Gun clubs , Big Gun clubs operate based upon a loose confederation , with each club reserving the ability to establish and maintain its own rules , provided that they coincide with the spirit of Big Gun Model Warship Combat . establish may establish each club its own rules provided that they coincide with the spirit of Big Gun Model Warship Combat
-Unlike Fast Gun clubs , Big Gun clubs operate based upon a loose confederation , with each club reserving the ability to establish and maintain its own rules , provided that they coincide with the spirit of Big Gun Model Warship Combat . maintain may maintain each club its own rules provided that they coincide with the spirit of Big Gun Model Warship Combat
-Unlike Fast Gun clubs , Big Gun clubs operate based upon a loose confederation , with each club reserving the ability to establish and maintain its own rules , provided that they coincide with the spirit of Big Gun Model Warship Combat . provided provided that they coincide with the spirit of Big Gun Model Warship Combat
-Unlike Fast Gun clubs , Big Gun clubs operate based upon a loose confederation , with each club reserving the ability to establish and maintain its own rules , provided that they coincide with the spirit of Big Gun Model Warship Combat . coincide must coincide rules the spirit of Big Gun Model Warship Combat
-Voyslava has killed Mlada , Yaromir 's bride , to have him for herself . killed killed Voyslava Mlada to have him for herself
-Voyslava has killed Mlada , Yaromir 's bride , to have him for herself . killed killed Voyslava Yaromir 's bride to have him for herself
-Sikorsky and Boeing say that factors outside their control , like budget cuts , `` requirement creep , '' and a long development period caused problems with the Comanche and not team dysfunctionality . say say Sikorsky and Boeing that factors outside their control , like budget cuts , `` requirement creep , '' and a long development period caused problems with the Comanche and not team dysfunctionality
-Sikorsky and Boeing say that factors outside their control , like budget cuts , `` requirement creep , '' and a long development period caused problems with the Comanche and not team dysfunctionality . caused caused budget cuts , `` requirement creep , '' and a long development period problems with the Comanche and not team dysfunctionality
-Montgomery Blair 's Science , Math , and Technology Academy specializes in : Life Science , Physical Science , Engineering , Mathematics , Computer Networking , and Computer Programming . specializes specializes Montgomery Blair 's Science , Math , and Technology Academy Life Science , Physical Science , Engineering , Mathematics , Computer Networking , and Computer Programming
-The city 's population boomed , 5 boroughs were formed , the New York City Subway was opened and became a symbol of progress and innovation . boomed boomed The city 's population 5 boroughs were formed , the New York City Subway was opened and became a symbol of progress and innovation .
-The city 's population boomed , 5 boroughs were formed , the New York City Subway was opened and became a symbol of progress and innovation . formed formed 5 boroughs city
-The city 's population boomed , 5 boroughs were formed , the New York City Subway was opened and became a symbol of progress and innovation . opened opened the New York City Subway city
-The city 's population boomed , 5 boroughs were formed , the New York City Subway was opened and became a symbol of progress and innovation . became became a symbol of progress and innovation city
-This `` 1-in-200 year event '' flooded major intersections and underpasses and damaged both residential and commercial properties . flooded flooded This `` 1-in-200 year event '' major intersections and underpasses
-This `` 1-in-200 year event '' flooded major intersections and underpasses and damaged both residential and commercial properties . damaged damaged This `` 1-in-200 year event '' both residential and commercial properties
-In 1918 , the municipality was renamed Jones in honor of American congressman William Jones , who authored the Philippine Autonomy Act of 1916 that provided for greater autonomy for the Philippines under American colonial rule . renamed renamed In 1918 the municipality Jones in honor of American congressman William Jones , who authored the Philippine Autonomy Act of 1916 that provided for greater autonomy for the Philippines under American colonial rule .
-In 1918 , the municipality was renamed Jones in honor of American congressman William Jones , who authored the Philippine Autonomy Act of 1916 that provided for greater autonomy for the Philippines under American colonial rule . authored authored Jones the Philippine Autonomy Act of 1916 that provided for greater autonomy for the Philippines under American colonial rule .
-In 1918 , the municipality was renamed Jones in honor of American congressman William Jones , who authored the Philippine Autonomy Act of 1916 that provided for greater autonomy for the Philippines under American colonial rule . provided provided for greater autonomy for the Philippines under American colonial rule . the Philippine Autonomy Act of 1916
-Instead of ablating the tissue , the laser cuts a portion of the prostate , which is then cut into smaller pieces and flushed with irrigation fluid . ablating is n't ablating the tissue the laser cuts a portion of the prostate , which is then cut into smaller pieces and flushed with irrigation fluid
-Instead of ablating the tissue , the laser cuts a portion of the prostate , which is then cut into smaller pieces and flushed with irrigation fluid . cuts cuts the laser a portion of the prostate
-Instead of ablating the tissue , the laser cuts a portion of the prostate , which is then cut into smaller pieces and flushed with irrigation fluid . cut cut the prostate the laser into smaller pieces
-Instead of ablating the tissue , the laser cuts a portion of the prostate , which is then cut into smaller pieces and flushed with irrigation fluid . flushed flushed the prostate irrigation fluid
-The fractional quantum Hall effect continues to be influential in theories about topological order . continues continues The fractional quantum Hall effect be influential in theories about topological order .
-A British version of this show was developed , known as `` Gladiators : Train 2 Win '' . developed developed A British version of this show
-A British version of this show was developed , known as `` Gladiators : Train 2 Win '' . developed developed `` Gladiators : Train 2 Win ''
-A British version of this show was developed , known as `` Gladiators : Train 2 Win '' . known known A British version of this show `` Gladiators : Train 2 Win
-Plant communities include creosote and sagebrush at lower altitudes , and bristlecone pine forests at higher . include include Plant communities creosote and sagebrush at lower altitudes , and bristlecone pine forests at higher
-Instead of having system calls specifically for process management , Plan 9 provides the codice_13 file system . provides provides Plan 9 the codice_13 file system Instead of having system calls specifically for process management
-X is revealed to be the leader of Neo Arcadia and Zero confronts X in battle . revealed revealed X the leader of Neo Arcadia
-X is revealed to be the leader of Neo Arcadia and Zero confronts X in battle . confronts confronts Zero X in battle
-Blackburne 's statement that he `` would not tolerate a refusal to ratify the appointment '' , is an indication of the influence which could then be wielded by a strong Attorney General . tolerate would n't tolerate Blackburne a refusal to ratify the appointment
-Blackburne 's statement that he `` would not tolerate a refusal to ratify the appointment '' , is an indication of the influence which could then be wielded by a strong Attorney General . ratify will ratify the appointment
-Blackburne 's statement that he `` would not tolerate a refusal to ratify the appointment '' , is an indication of the influence which could then be wielded by a strong Attorney General . wielded could wielded the appointment by a strong Attorney General
-`` Kormoran '' was the only Axis ship to conduct attacks in Australian waters during 1941 and the last Axis surface raider to enter Australian waters until 1943 . conduct conduct `` Kormoran '' attacks in Australian waters during 1941
-`` Kormoran '' was the only Axis ship to conduct attacks in Australian waters during 1941 and the last Axis surface raider to enter Australian waters until 1943 . conduct conduct the only Axis ship attacks in Australian waters during 1941
-`` Kormoran '' was the only Axis ship to conduct attacks in Australian waters during 1941 and the last Axis surface raider to enter Australian waters until 1943 . enter enter the last Axis surface raider until 1943 Australian waters
-The previous champions in 2005 were Kilmacud Crokes , who were knocked out of the 2006 competition at the semi-final stage . knocked knocked The previous champions in 2005 the 2006 competition at the semi-final stage
-The previous champions in 2005 were Kilmacud Crokes , who were knocked out of the 2006 competition at the semi-final stage . knocked knocked Kilmacud Crokes the 2006 competition at the semi-final stage
-In a proposed amendment of the party 's constitution by a delegate to hold an early leadership review of Tim Hudak , McCreadie indicated that Party President Richard Ciano should accept the same review if the motion was passed . proposed proposed amendment to hold an early leadership review of Tim Hudak party 's constitution
-In a proposed amendment of the party 's constitution by a delegate to hold an early leadership review of Tim Hudak , McCreadie indicated that Party President Richard Ciano should accept the same review if the motion was passed . hold will hold an early leadership review of Tim Hudak
-In a proposed amendment of the party 's constitution by a delegate to hold an early leadership review of Tim Hudak , McCreadie indicated that Party President Richard Ciano should accept the same review if the motion was passed . indicated indicated McCreadie that Party President Richard Ciano should accept the same review if the motion was passed In a proposed amendment of the party 's constitution
-In a proposed amendment of the party 's constitution by a delegate to hold an early leadership review of Tim Hudak , McCreadie indicated that Party President Richard Ciano should accept the same review if the motion was passed . accept should accept Party President the same review if the motion was passed
-In a proposed amendment of the party 's constitution by a delegate to hold an early leadership review of Tim Hudak , McCreadie indicated that Party President Richard Ciano should accept the same review if the motion was passed . accept should accept Richard Ciano the same review if the motion was passed
-In a proposed amendment of the party 's constitution by a delegate to hold an early leadership review of Tim Hudak , McCreadie indicated that Party President Richard Ciano should accept the same review if the motion was passed . passed could passed the motion
-He and his friends were said to have made bombs for fun on the outskirts of Murray , Utah . said said his friends to have made bombs for fun on the outskirts of Murray , Utah
-He and his friends were said to have made bombs for fun on the outskirts of Murray , Utah . made had made bombs on the outskirts of Murray , Utah for fun his friends
-A large gravestone was erected in 1866 , over 100 years after his death . erected erected A large gravestone in 1866
-In the summer , the lodge also houses the Trail Crew , a crew of Dartmouth Outing Club students who help maintain the seventeen Dartmouth Cabins & 50 miles of Appalachian trail between Hanover and the Lodge itself . houses houses the lodge the Trail Crew In the summer
-In the summer , the lodge also houses the Trail Crew , a crew of Dartmouth Outing Club students who help maintain the seventeen Dartmouth Cabins & 50 miles of Appalachian trail between Hanover and the Lodge itself . houses houses the lodge a crew of Dartmouth Outing Club students In the summer
-In the summer , the lodge also houses the Trail Crew , a crew of Dartmouth Outing Club students who help maintain the seventeen Dartmouth Cabins & 50 miles of Appalachian trail between Hanover and the Lodge itself . help help the Trail Crew maintain the seventeen Dartmouth Cabins & 50 miles of Appalachian trail between Hanover and the Lodge itself
-In the summer , the lodge also houses the Trail Crew , a crew of Dartmouth Outing Club students who help maintain the seventeen Dartmouth Cabins & 50 miles of Appalachian trail between Hanover and the Lodge itself . help help a crew of Dartmouth Outing Club students maintain the seventeen Dartmouth Cabins & 50 miles of Appalachian trail between Hanover and the Lodge itself
-In the summer , the lodge also houses the Trail Crew , a crew of Dartmouth Outing Club students who help maintain the seventeen Dartmouth Cabins & 50 miles of Appalachian trail between Hanover and the Lodge itself . maintain maintain the Trail Crew the seventeen Dartmouth Cabins & 50 miles of Appalachian trail between Hanover and the Lodge itself
-In the summer , the lodge also houses the Trail Crew , a crew of Dartmouth Outing Club students who help maintain the seventeen Dartmouth Cabins & 50 miles of Appalachian trail between Hanover and the Lodge itself . maintain maintain a crew of Dartmouth Outing Club students the seventeen Dartmouth Cabins & 50 miles of Appalachian trail between Hanover and the Lodge itself
-In England , emphasis was placed on the orientation of the chapels to the east . placed placed emphasis the orientation of the chapels to the east
-From the , 275 or 26.1 % were Roman Catholic , while 624 or 59.3 % belonged to the Swiss Reformed Church . belonged belonged 624 the Swiss Reformed Church
-From the , 275 or 26.1 % were Roman Catholic , while 624 or 59.3 % belonged to the Swiss Reformed Church . belonged belonged 59.3 % the Swiss Reformed Church
-Maduveya Vayasu song from nanjundi kalyana was a track played during marriages for many many years in Kannada . played played Maduveya Vayasu song during marriages in Kannada
-Maduveya Vayasu song from nanjundi kalyana was a track played during marriages for many many years in Kannada . played played a track during marriages in Kannada
-This releases some of the water molecules into the bulk of the water , leading to an increase in entropy . releases releases This some of the water molecules into the bulk of the water , leading to an increase in entropy .
-This releases some of the water molecules into the bulk of the water , leading to an increase in entropy . leading leading This releases some of the water molecules into the bulk of the water an increase in entropy
-It is necessary to climb embankments to cross some roads where former bridges have been filled in . climb should climb embankments to cross some roads where former bridges have been filled in .
-It is necessary to climb embankments to cross some roads where former bridges have been filled in . cross cross some roads where former bridges have been filled in . climb embankments
-It is necessary to climb embankments to cross some roads where former bridges have been filled in . filled filled former bridges
-This led morning show host Ryan Cameron to lobby for a frequency change for WHTA by putting together a petition from listeners at the risk of losing his job under Radio One 's management . led led This morning show host lobby for a frequency change for WHTA by putting together a petition from listeners at the risk of losing his job under Radio One 's management .
-This led morning show host Ryan Cameron to lobby for a frequency change for WHTA by putting together a petition from listeners at the risk of losing his job under Radio One 's management . led led This Ryan Cameron lobby for a frequency change for WHTA by putting together a petition from listeners at the risk of losing his job under Radio One 's management .
-This led morning show host Ryan Cameron to lobby for a frequency change for WHTA by putting together a petition from listeners at the risk of losing his job under Radio One 's management . lobby would lobby morning show host a frequency change for WHTA by putting together a petition from listeners at the risk of losing his job under Radio One 's management .
-This led morning show host Ryan Cameron to lobby for a frequency change for WHTA by putting together a petition from listeners at the risk of losing his job under Radio One 's management . lobby would lobby Ryan Cameron a frequency change for WHTA by putting together a petition from listeners at the risk of losing his job under Radio One 's management .
-This led morning show host Ryan Cameron to lobby for a frequency change for WHTA by putting together a petition from listeners at the risk of losing his job under Radio One 's management . putting would putting a petition from listeners at the risk of losing his job under Radio One 's management . morning show host to lobby for a frequency change for WHTA
-This led morning show host Ryan Cameron to lobby for a frequency change for WHTA by putting together a petition from listeners at the risk of losing his job under Radio One 's management . putting would putting a petition from listeners at the risk of losing his job under Radio One 's management . Ryan Cameron to lobby for a frequency change for WHTA
-This led morning show host Ryan Cameron to lobby for a frequency change for WHTA by putting together a petition from listeners at the risk of losing his job under Radio One 's management . losing would losing his job under Radio One 's management . morning show host
-This led morning show host Ryan Cameron to lobby for a frequency change for WHTA by putting together a petition from listeners at the risk of losing his job under Radio One 's management . losing would losing his job under Radio One 's management . Ryan Cameron
-The Original Celtics were a barnstorming professional basketball team in the 1920s . barnstorming barnstorming The Original Celtics
-His body was laid to rest at St. Gwynno Church in the Llanwynno forestry . laid laid His body to rest at St. Gwynno Church in the Llanwynno forestry
-His body was laid to rest at St. Gwynno Church in the Llanwynno forestry . rest rest His body at St. Gwynno Church in the Llanwynno forestry
-Each of the programs uses a combination of funding priorities and geographic requirements to select grants , described on the foundation 's web site . uses uses Each of the programs a combination of funding priorities and geographic requirements to select grants
-Each of the programs uses a combination of funding priorities and geographic requirements to select grants , described on the foundation 's web site . described described Each of the programs uses a combination of funding priorities and geographic requirements to select grants on the foundation 's web site
-The Institut Constant de Rebecque is a Swiss free-market , classical liberal and libertarian think tank founded in January 2005 in Lausanne , named after writer and political philosopher Benjamin Constant . founded founded in January 2005 classical liberal and libertarian think tank in Lausanne
-The Institut Constant de Rebecque is a Swiss free-market , classical liberal and libertarian think tank founded in January 2005 in Lausanne , named after writer and political philosopher Benjamin Constant . named named writer and political philosopher Benjamin Constant classical liberal and libertarian think tank founded in January 2005 in Lausanne
-If the introduced surface had an ionic or polar nature , there would be water molecules standing upright on 1 or 2 of the four sp3 orbitals . introduced introduced surface
-If the introduced surface had an ionic or polar nature , there would be water molecules standing upright on 1 or 2 of the four sp3 orbitals . had had had introduced surface an ionic or polar nature , there would be water molecules standing upright on 1 or 2 of the four sp3 orbitals .
-If the introduced surface had an ionic or polar nature , there would be water molecules standing upright on 1 or 2 of the four sp3 orbitals . standing would standing water molecules upright on 1 or 2 of the four sp3 orbitals . If the introduced surface had an ionic or polar nature
-In his 2010 book `` At Home '' , author Bill Bryson suggests Siddal may have suffered from poisoning , because she was a `` devoted swallower '' of Fowler 's Solution , a so-called complexion improver made from dilute arsenic . suggests suggests Bill Bryson Siddal may have suffered from poisoning
-In his 2010 book `` At Home '' , author Bill Bryson suggests Siddal may have suffered from poisoning , because she was a `` devoted swallower '' of Fowler 's Solution , a so-called complexion improver made from dilute arsenic . suggests suggests author Siddal may have suffered from poisoning
-In his 2010 book `` At Home '' , author Bill Bryson suggests Siddal may have suffered from poisoning , because she was a `` devoted swallower '' of Fowler 's Solution , a so-called complexion improver made from dilute arsenic . suffered may suffered Siddal poisoning because she was a `` devoted swallower '' of Fowler 's Solution , a so-called complexion improver made from dilute arsenic
-In his 2010 book `` At Home '' , author Bill Bryson suggests Siddal may have suffered from poisoning , because she was a `` devoted swallower '' of Fowler 's Solution , a so-called complexion improver made from dilute arsenic . made made Fowler 's Solution dilute arsenic
-In his 2010 book `` At Home '' , author Bill Bryson suggests Siddal may have suffered from poisoning , because she was a `` devoted swallower '' of Fowler 's Solution , a so-called complexion improver made from dilute arsenic . made made a so-called complexion improver dilute arsenic
-In his 2010 book `` At Home '' , author Bill Bryson suggests Siddal may have suffered from poisoning , because she was a `` devoted swallower '' of Fowler 's Solution , a so-called complexion improver made from dilute arsenic . dilute dilute arsenic
-The Aura spacecraft has a mass of about 1,765 kg . has has The Aura spacecraft a mass of about 1,765 kg
-In line this with , Edwards 's early years , as seen in Comico 's graphic novel , were re-imagined in the comic book mini-series , `` Robotech : From the Stars '' , published WildStorm . seen seen Edwards 's early years in Comico 's graphic novel
-In line this with , Edwards 's early years , as seen in Comico 's graphic novel , were re-imagined in the comic book mini-series , `` Robotech : From the Stars '' , published WildStorm . re-imagined re-imagined Edwards 's early years in the comic book mini-series , `` Robotech : From the Stars ''
-In line this with , Edwards 's early years , as seen in Comico 's graphic novel , were re-imagined in the comic book mini-series , `` Robotech : From the Stars '' , published WildStorm . published published WildStorm the comic book mini-series , `` Robotech : From the Stars ''
-The main reason for this adoption over mainline gimp was its support for high bit depths which can be required for film work . required can required high bit depths film work
-It finally closed to all traffic in July 1985 , when it was deemed too expensive to make extensive repairs to keep Latchford viaduct operational . closed closed Latchford viaduct July 1985 all traffic it was deemed too expensive to make extensive repairs to keep operational
-It finally closed to all traffic in July 1985 , when it was deemed too expensive to make extensive repairs to keep Latchford viaduct operational . closed closed Latchford viaduct when all traffic it was deemed too expensive to make extensive repairs to keep operational
-It finally closed to all traffic in July 1985 , when it was deemed too expensive to make extensive repairs to keep Latchford viaduct operational . deemed deemed Latchford viaduct too expensive to make extensive repairs to keep operational July 1985
-It finally closed to all traffic in July 1985 , when it was deemed too expensive to make extensive repairs to keep Latchford viaduct operational . make would n't make extensive repairs it was deemed too expensive Latchford viaduct
-It finally closed to all traffic in July 1985 , when it was deemed too expensive to make extensive repairs to keep Latchford viaduct operational . keep wo n't keep Latchford viaduct operational it was deemed too expensive
-It 's recommended to have only two males and a dozen or so females . recommended recommended to have only two males and a dozen or so females .
-It 's recommended to have only two males and a dozen or so females . have should have only two males and a dozen or so females .
-The brightest star in Serpens , Alpha Serpentis , or Unukalhai , is a red giant of spectral type K2III located approximately away which marks the snake 's heart . marks marks The brightest star in Serpens the snake 's heart
-The brightest star in Serpens , Alpha Serpentis , or Unukalhai , is a red giant of spectral type K2III located approximately away which marks the snake 's heart . marks marks Alpha Serpentis the snake 's heart
-The brightest star in Serpens , Alpha Serpentis , or Unukalhai , is a red giant of spectral type K2III located approximately away which marks the snake 's heart . marks marks Unukalhai the snake 's heart
-Courtelary is first mentioned in 968 as `` Curtis Alerici '' in a list of the properties of Moutier-Grandval Abbey . mentioned mentioned Courtelary first in 968 Curtis Alerici
-Courtelary is first mentioned in 968 as `` Curtis Alerici '' in a list of the properties of Moutier-Grandval Abbey . mentioned mentioned Courtelary first in a list of the properties of Moutier-Grandval Abbey Curtis Alerici
-Though this form of violence is often portrayed as an issue within the context of heterosexual relationships , it also occurs in lesbian relationships , daughter-mother relationships , roommate relationships and other domestic relationships involving two women . portrayed portrayed this form of violence an issue within the context of heterosexual relationships
-Though this form of violence is often portrayed as an issue within the context of heterosexual relationships , it also occurs in lesbian relationships , daughter-mother relationships , roommate relationships and other domestic relationships involving two women . occurs occurs this form of violence lesbian relationships
-Though this form of violence is often portrayed as an issue within the context of heterosexual relationships , it also occurs in lesbian relationships , daughter-mother relationships , roommate relationships and other domestic relationships involving two women . involving involving two women roommate relationships and other domestic relationships
-The origin of the Missionaries of the Sacred Heart is closely connected with the definition of the dogma of the Immaculate Conception of the B. V. M . connected connected The origin of the Missionaries of the Sacred Heart the definition of the dogma of the Immaculate Conception of the B. V. M . closely
-The Crybaby is the twelfth album by Melvins , released in 2000 through Ipecac Recordings , and the last part of a trilogy : `` The Maggot , '' `` The Bootlicker '' and `` The Crybaby . '' released released The Crybaby Melvins in 2000 through Ipecac Recordings
-The Crybaby is the twelfth album by Melvins , released in 2000 through Ipecac Recordings , and the last part of a trilogy : `` The Maggot , '' `` The Bootlicker '' and `` The Crybaby . '' released released the twelfth album Melvins in 2000 through Ipecac Recordings
-The championship was at the Pinehurst Resort where Stewart won his last major championship only a few months before his death . won won Stewart his last major championship only at the Pinehurst Resort a few months before his death
-In the United Kingdom , community empowerment networks are networks of a collection of local community , voluntary and third sector organisations and groups , set up by the central government as part of an initiative to foster community involvement in regeneration at a local level . set set the central government community empowerment networks In the United Kingdom as part of an initiative to foster community involvement in regeneration at a local level
-In the United Kingdom , community empowerment networks are networks of a collection of local community , voluntary and third sector organisations and groups , set up by the central government as part of an initiative to foster community involvement in regeneration at a local level . foster foster community empowerment networks community involvement in regeneration at a local level
-During the language shift , however , the receding language A still influences language B . receding receding language A During the language shift still influences language B
-During the language shift , however , the receding language A still influences language B . influences influences language A language B During the language shift
-This manual for warriors describes the necessity for understanding an opponent 's weaknesses , for using spies , and for striking in moments of weakness . describes describes This manual for warriors the necessity for understanding an opponent 's weaknesses , for using spies , and for striking in moments of weakness
-This manual for warriors describes the necessity for understanding an opponent 's weaknesses , for using spies , and for striking in moments of weakness . understanding can understanding an opponent 's weaknesses , for using spies , and for striking in moments of weakness
-This manual for warriors describes the necessity for understanding an opponent 's weaknesses , for using spies , and for striking in moments of weakness . using using spies
-This manual for warriors describes the necessity for understanding an opponent 's weaknesses , for using spies , and for striking in moments of weakness . striking striking moments of weakness
-It was club policy to promote talent into the senior team that was adopted by Bill Dimovski . promote would promote It was club policy talent into the senior team that was adopted by Bill Dimovski
-It was club policy to promote talent into the senior team that was adopted by Bill Dimovski . adopted adopted Bill Dimovski the senior team
-Baako 's grandmother Naana , a blind-seer , stands in living contact with the ancestors . stands stands Baako 's grandmother in living contact with the ancestors
-Baako 's grandmother Naana , a blind-seer , stands in living contact with the ancestors . stands stands Naana in living contact with the ancestors
-Baako 's grandmother Naana , a blind-seer , stands in living contact with the ancestors . stands stands a blind-seer in living contact with the ancestors
-Baako 's grandmother Naana , a blind-seer , stands in living contact with the ancestors . living living contact with the ancestors
-The majority of the population of Leigh were born in England ; 2.10 % were born elsewhere within the United Kingdom , 0.95 % within the rest of the European Union , and 1.47 % elsewhere in the world . born born The majority of the population of Leigh in England
-The majority of the population of Leigh were born in England ; 2.10 % were born elsewhere within the United Kingdom , 0.95 % within the rest of the European Union , and 1.47 % elsewhere in the world . born born 2.10 % elsewhere within the United Kingdom
-Dangaioh 's characters , mecha , and storyline elements appeared in Banpresto 's `` Super Robot Wars '' games . appeared appeared Dangaioh 's characters in Banpresto 's `` Super Robot Wars '' games .
-Dangaioh 's characters , mecha , and storyline elements appeared in Banpresto 's `` Super Robot Wars '' games . appeared appeared mecha in Banpresto 's `` Super Robot Wars '' games .
-Dangaioh 's characters , mecha , and storyline elements appeared in Banpresto 's `` Super Robot Wars '' games . appeared appeared storyline elements in Banpresto 's `` Super Robot Wars '' games .
-Millais painted daily into the winter putting lamps under the tub to warm the water . painted painted Millais daily
-Millais painted daily into the winter putting lamps under the tub to warm the water . painted painted Millais into the winter
-Millais painted daily into the winter putting lamps under the tub to warm the water . putting putting under the tub lamps to warm the water
-Millais painted daily into the winter putting lamps under the tub to warm the water . warm warm the winter lamps
-While the infantry based part of the doctrine demanded `` powerful tanks '' and `` tankettes '' , the shock Army demanded `` manoeuvre tanks '' used in conjunction with motorized forces and `` mechanized cavalry '' that would operate in depth as `` strategic cavalry '' combined with nascent airborne troops . based based the infantry part of the doctrine
-While the infantry based part of the doctrine demanded `` powerful tanks '' and `` tankettes '' , the shock Army demanded `` manoeuvre tanks '' used in conjunction with motorized forces and `` mechanized cavalry '' that would operate in depth as `` strategic cavalry '' combined with nascent airborne troops . demanded demanded the infantry based part of the doctrine `` powerful tanks '' and `` tankettes ''
-While the infantry based part of the doctrine demanded `` powerful tanks '' and `` tankettes '' , the shock Army demanded `` manoeuvre tanks '' used in conjunction with motorized forces and `` mechanized cavalry '' that would operate in depth as `` strategic cavalry '' combined with nascent airborne troops . demanded demanded the shock Army `` manoeuvre tanks '' used in conjunction with motorized forces and `` mechanized cavalry '' that would operate in depth as `` strategic cavalry '' combined with nascent airborne troops
-While the infantry based part of the doctrine demanded `` powerful tanks '' and `` tankettes '' , the shock Army demanded `` manoeuvre tanks '' used in conjunction with motorized forces and `` mechanized cavalry '' that would operate in depth as `` strategic cavalry '' combined with nascent airborne troops . used used `` manoeuvre tanks '' motorized forces and `` mechanized cavalry '' that would operate in depth as `` strategic cavalry '' combined with nascent airborne troops
-While the infantry based part of the doctrine demanded `` powerful tanks '' and `` tankettes '' , the shock Army demanded `` manoeuvre tanks '' used in conjunction with motorized forces and `` mechanized cavalry '' that would operate in depth as `` strategic cavalry '' combined with nascent airborne troops . operate would operate `` mechanized cavalry '' `` strategic cavalry ''
-While the infantry based part of the doctrine demanded `` powerful tanks '' and `` tankettes '' , the shock Army demanded `` manoeuvre tanks '' used in conjunction with motorized forces and `` mechanized cavalry '' that would operate in depth as `` strategic cavalry '' combined with nascent airborne troops . combined combined `` manoeuvre tanks '' used in conjunction with motorized forces and `` mechanized cavalry '' that would operate in depth as `` strategic cavalry '' nascent airborne troops
-During the latter , Springsteen mentioned he did plan to work with the E Street Band again in the future , but was vague about details . mentioned mentioned Springsteen he did plan to work with the E Street Band again in the future During the latter was vague about details
-During the latter , Springsteen mentioned he did plan to work with the E Street Band again in the future , but was vague about details . did did Springsteen During the latter
-During the latter , Springsteen mentioned he did plan to work with the E Street Band again in the future , but was vague about details . work will work Springsteen the E Street Band again
-During the latter , Springsteen mentioned he did plan to work with the E Street Band again in the future , but was vague about details . work will work Springsteen the E Street Band in the future
-Thus , any event that would minimize such a surface is entropically favored . minimize would minimize any event such a surface is entropically favored .
-Thus , any event that would minimize such a surface is entropically favored . favored favored any event that would minimize such a surface is entropically
-The exhibit premiered at the Helmut Newton Foundation in Berlin and combined the work of all three with personal snapshots , contact sheets , and letters from their time with Helmut . premiered premiered The exhibit at the Helmut Newton Foundation
-The exhibit premiered at the Helmut Newton Foundation in Berlin and combined the work of all three with personal snapshots , contact sheets , and letters from their time with Helmut . premiered premiered The exhibit in Berlin
-The exhibit premiered at the Helmut Newton Foundation in Berlin and combined the work of all three with personal snapshots , contact sheets , and letters from their time with Helmut . combined combined The exhibit the work of all three
-Joining another fast and mobile carrier task force , `` Hazelwood '' sortied 11 February to protect carriers as they launched heavy air strikes against the Japanese home islands 16 and 17 February . Joining will joining another fast and mobile carrier task force `` Hazelwood ''
-Joining another fast and mobile carrier task force , `` Hazelwood '' sortied 11 February to protect carriers as they launched heavy air strikes against the Japanese home islands 16 and 17 February . sortied sortied `` Hazelwood '' to protect carriers as they launched heavy air strikes against the Japanese home islands 16 and 17 February 11 February
-Joining another fast and mobile carrier task force , `` Hazelwood '' sortied 11 February to protect carriers as they launched heavy air strikes against the Japanese home islands 16 and 17 February . protect protect carriers
-Joining another fast and mobile carrier task force , `` Hazelwood '' sortied 11 February to protect carriers as they launched heavy air strikes against the Japanese home islands 16 and 17 February . launched launched `` Hazelwood '' heavy air strikes against the Japanese home islands
-Following his death , a statue of Sir Arthur was erected behind the National Archives of Canada , overlooking the Ottawa River This is one of only two statues of civil servants erected in Ottawa , both during MacKenzie King 's tenure as Prime Minister . Following following his death a statue of Sir Arthur was erected behind the National Archives of Canada
-Following his death , a statue of Sir Arthur was erected behind the National Archives of Canada , overlooking the Ottawa River This is one of only two statues of civil servants erected in Ottawa , both during MacKenzie King 's tenure as Prime Minister . erected erected a statue of Sir Arthur behind the National Archives of Canada
-Following his death , a statue of Sir Arthur was erected behind the National Archives of Canada , overlooking the Ottawa River This is one of only two statues of civil servants erected in Ottawa , both during MacKenzie King 's tenure as Prime Minister . overlooking overlooking the Ottawa River a statue of Sir Arthur
-Following his death , a statue of Sir Arthur was erected behind the National Archives of Canada , overlooking the Ottawa River This is one of only two statues of civil servants erected in Ottawa , both during MacKenzie King 's tenure as Prime Minister . erected erected in Ottawa statues of civil servants during MacKenzie King 's tenure as Prime Minister
-Vaccinations against other viral diseases followed , including the successful rabies vaccination by Louis Pasteur in 1886 . followed followed Vaccinations against other viral diseases
-Vaccinations against other viral diseases followed , including the successful rabies vaccination by Louis Pasteur in 1886 . followed followed the successful rabies vaccination by Louis Pasteur in 1886
-Vaccinations against other viral diseases followed , including the successful rabies vaccination by Louis Pasteur in 1886 . including including Vaccinations against other viral diseases the successful rabies vaccination by Louis Pasteur in 1886
-One major difference between the two models is that the Photographic Model follows more of a step-by-step process in the development of flashbulb accounts , whereas the Comprehensive Model demonstrates an interconnected relationship between the variables . follows follows the Photographic Model more of a step-by-step process in the development of flashbulb accounts
-One major difference between the two models is that the Photographic Model follows more of a step-by-step process in the development of flashbulb accounts , whereas the Comprehensive Model demonstrates an interconnected relationship between the variables . demonstrates demonstrates the Comprehensive Model an interconnected relationship between the variables
-On April 13 , 1987 , the Iowa Terminal Railroad was sold to Dave Johnson and renamed to Iowa Traction Railroad . sold sold the Iowa Terminal Railroad On April 13 , 1987 Dave Johnson and renamed to Iowa Traction Railroad .
-On April 13 , 1987 , the Iowa Terminal Railroad was sold to Dave Johnson and renamed to Iowa Traction Railroad . renamed renamed the Iowa Terminal Railroad Iowa Traction Railroad On April 13 , 1987
-Instead he awoke when a smaller meteorite hit the Earth in 1992 , seven years too early . hit hit a smaller meteorite the Earth in 1992
-Instead he awoke when a smaller meteorite hit the Earth in 1992 , seven years too early . hit hit a smaller meteorite the Earth seven years too early
-The neighborhood comprises an older industrial and residential harbor front area along the Kill Van Kull west of St. George . comprises comprises The neighborhood an older industrial and residential harbor front area along the Kill Van Kull west of St. George
-The neighborhood comprises an older industrial and residential harbor front area along the Kill Van Kull west of St. George . Kill kill west of St. George
-Although the Algeciras Conference temporarily solved the First Moroccan Crisis , it only worsened the tensions between the Triple Alliance and Triple Entente that ultimately led to the First World War . solved solved the Algeciras Conference the First Moroccan Crisis temporarily
-Although the Algeciras Conference temporarily solved the First Moroccan Crisis , it only worsened the tensions between the Triple Alliance and Triple Entente that ultimately led to the First World War . worsened worsened the tensions between the Triple Alliance and Triple Entente the Algeciras Conference
-Although the Algeciras Conference temporarily solved the First Moroccan Crisis , it only worsened the tensions between the Triple Alliance and Triple Entente that ultimately led to the First World War . led led the tensions between the Triple Alliance and Triple Entente the First World War ultimately
-XM did offer a free month of service to subscribers who called in complaints of the suspension . offer offer XM a free month of service to subscribers who called in complaints of the suspension
-XM did offer a free month of service to subscribers who called in complaints of the suspension . called called subscribers complaints of the suspension
-Darwin came into residence in Cambridge on 26 January 1828 , and matriculated at the University 's Senate House on 26 February . came came Darwin in Cambridge on 26 January 1828
-Darwin came into residence in Cambridge on 26 January 1828 , and matriculated at the University 's Senate House on 26 February . matriculated matriculated Darwin on 26 February at the University 's Senate House .
-Along with these , there were also commissioners sent to the army , in charge of provisioning the army , policing and finances ; they would supervise accountants , providers , merchants , and generals , and attend war councils and tribunals for military crimes . sent could sent commissioners the army in charge of provisioning , policing and finances ; they would supervise accountants , providers , merchants , and generals , and attend war councils and tribunals for military crimes .
-Along with these , there were also commissioners sent to the army , in charge of provisioning the army , policing and finances ; they would supervise accountants , providers , merchants , and generals , and attend war councils and tribunals for military crimes . provisioning would provisioning the army commissioners
-Along with these , there were also commissioners sent to the army , in charge of provisioning the army , policing and finances ; they would supervise accountants , providers , merchants , and generals , and attend war councils and tribunals for military crimes . policing policing commissioners
-Along with these , there were also commissioners sent to the army , in charge of provisioning the army , policing and finances ; they would supervise accountants , providers , merchants , and generals , and attend war councils and tribunals for military crimes . supervise would supervise commissioners accountants
-Along with these , there were also commissioners sent to the army , in charge of provisioning the army , policing and finances ; they would supervise accountants , providers , merchants , and generals , and attend war councils and tribunals for military crimes . supervise would supervise commissioners providers
-Along with these , there were also commissioners sent to the army , in charge of provisioning the army , policing and finances ; they would supervise accountants , providers , merchants , and generals , and attend war councils and tribunals for military crimes . supervise would supervise commissioners merchants
-Along with these , there were also commissioners sent to the army , in charge of provisioning the army , policing and finances ; they would supervise accountants , providers , merchants , and generals , and attend war councils and tribunals for military crimes . supervise would supervise commissioners generals
-Along with these , there were also commissioners sent to the army , in charge of provisioning the army , policing and finances ; they would supervise accountants , providers , merchants , and generals , and attend war councils and tribunals for military crimes . attend would attend commissioners war councils and tribunals for military crimes .
-A character notes some practical difficulties with such a map and states that `` we now use the country itself , as its own map , and I assure you it does nearly as well . '' notes notes A character some practical difficulties with such a map and states that `` we now use the country itself , as its own map , and I assure you it does nearly as well . ''
-A character notes some practical difficulties with such a map and states that `` we now use the country itself , as its own map , and I assure you it does nearly as well . '' states states A character that `` we now use the country itself , as its own map , and I assure you it does nearly as well . ''
-A character notes some practical difficulties with such a map and states that `` we now use the country itself , as its own map , and I assure you it does nearly as well . '' does does nearly as well the country itself
-That night , 300 soldiers of the 1st SS Battalion were able to reinforce the hotel and defeat several attacks on the building . reinforce reinforce 300 soldiers of the 1st SS Battalion the hotel That night
-That night , 300 soldiers of the 1st SS Battalion were able to reinforce the hotel and defeat several attacks on the building . reinforce reinforce 300 soldiers of the 1st SS Battalion the hotel That night the building
-That night , 300 soldiers of the 1st SS Battalion were able to reinforce the hotel and defeat several attacks on the building . defeat defeat 300 soldiers of the 1st SS Battalion several attacks on the building That night the hotel
-That night , 300 soldiers of the 1st SS Battalion were able to reinforce the hotel and defeat several attacks on the building . defeat defeat 300 soldiers of the 1st SS Battalion several attacks on That night the building
-There were 22.2 % of families and 23.8 % of the population living below the poverty line , including 15.8 % of under eighteens and 37.5 % of those over 64 . living living 22.2 % of families below the poverty line
-There were 22.2 % of families and 23.8 % of the population living below the poverty line , including 15.8 % of under eighteens and 37.5 % of those over 64 . living living 23.8 % of the population below the poverty line
-There were 22.2 % of families and 23.8 % of the population living below the poverty line , including 15.8 % of under eighteens and 37.5 % of those over 64 . living living 15.8 % of under eighteens below the poverty line
-There were 22.2 % of families and 23.8 % of the population living below the poverty line , including 15.8 % of under eighteens and 37.5 % of those over 64 . living living 37.5 % of those over 64 below the poverty line
-There were 22.2 % of families and 23.8 % of the population living below the poverty line , including 15.8 % of under eighteens and 37.5 % of those over 64 . including including 22.2 % of families 15.8 % of under eighteens
-There were 22.2 % of families and 23.8 % of the population living below the poverty line , including 15.8 % of under eighteens and 37.5 % of those over 64 . including including 22.2 % of families 37.5 % of those over 64
-There were 22.2 % of families and 23.8 % of the population living below the poverty line , including 15.8 % of under eighteens and 37.5 % of those over 64 . including including 23.8 % of the population 15.8 % of under eighteens
-There were 22.2 % of families and 23.8 % of the population living below the poverty line , including 15.8 % of under eighteens and 37.5 % of those over 64 . including including 23.8 % of the population 37.5 % of those over 64
-Hiester was born in Montgomery County , Pennsylvania on July 17 , 1749 , the son of German immigrants Daniel and Catherine Shuller Hiester . born born Hiester July 17 , 1749 Montgomery County , Pennsylvania son of German immigrants Daniel and Catherine Shuller .
-During the 1730s Britain 's relationship with Spain had slowly declined . declined had declined Britain 's relationship with Spain During the 1730s slowly
-His son , John Crozier , Jr. , was an early aviation pioneer who began building a human-powered flying machine in the 1890s , but was killed in a feud in Grainger County before he could complete it . began began His son building a human-powered flying machine , but was killed in a feud in Grainger County before he could complete it . in the 1890s
-His son , John Crozier , Jr. , was an early aviation pioneer who began building a human-powered flying machine in the 1890s , but was killed in a feud in Grainger County before he could complete it . began began John Crozier , Jr. building a human-powered flying machine , but was killed in a feud in Grainger County before he could complete it . in the 1890s
-His son , John Crozier , Jr. , was an early aviation pioneer who began building a human-powered flying machine in the 1890s , but was killed in a feud in Grainger County before he could complete it . flying did n't flying machine His son was killed in a feud in Grainger County before he could complete it .
-His son , John Crozier , Jr. , was an early aviation pioneer who began building a human-powered flying machine in the 1890s , but was killed in a feud in Grainger County before he could complete it . flying did n't flying machine John Crozier , Jr. was killed in a feud in Grainger County before he could complete it .
-His son , John Crozier , Jr. , was an early aviation pioneer who began building a human-powered flying machine in the 1890s , but was killed in a feud in Grainger County before he could complete it . killed killed His son before he could complete it .
-His son , John Crozier , Jr. , was an early aviation pioneer who began building a human-powered flying machine in the 1890s , but was killed in a feud in Grainger County before he could complete it . killed killed John Crozier , Jr. before he could complete it .
-His son , John Crozier , Jr. , was an early aviation pioneer who began building a human-powered flying machine in the 1890s , but was killed in a feud in Grainger County before he could complete it . complete did n't complete building a human-powered flying machine in the 1890s was killed in a feud in Grainger County
-Arminius , leader of the Cherusci and allies , now had a free hand . had had Arminius , leader of the Cherusci and allies a free hand
-DePauw University awarded the degree `` Doctor of Divinity '' in 1892 . awarded awarded DePauw University the degree `` Doctor of Divinity '' in 1892
-This finding indicated that organic compounds could carry current . indicated indicated This finding organic compounds could carry current .
-This finding indicated that organic compounds could carry current . carry could carry organic compounds current .
-On 19 October 2010 , Tuqiri was officially named in the Australian squad for the Four Nations as a replacement for the injured Jarryd Hayne . named named Tuqiri a replacement for the injured Jarryd Hayne officially On 19 October 2010
-One of the better units based at NAS Glenview in the post-WWII period was Attack Squadron 725 , part of NARTU Glenview until 1970 , when it was redesignated as Attack Squadron 209 and became part of Carrier Air Wing Reserve TWENTY from 1970 onward . based based One of the better units NAS Glenview in the post-WWII period
-One of the better units based at NAS Glenview in the post-WWII period was Attack Squadron 725 , part of NARTU Glenview until 1970 , when it was redesignated as Attack Squadron 209 and became part of Carrier Air Wing Reserve TWENTY from 1970 onward . based based Attack Squadron 725 NAS Glenview in the post-WWII period
-One of the better units based at NAS Glenview in the post-WWII period was Attack Squadron 725 , part of NARTU Glenview until 1970 , when it was redesignated as Attack Squadron 209 and became part of Carrier Air Wing Reserve TWENTY from 1970 onward . redesignated redesignated Attack Squadron 725 Attack Squadron 209 1970
-One of the better units based at NAS Glenview in the post-WWII period was Attack Squadron 725 , part of NARTU Glenview until 1970 , when it was redesignated as Attack Squadron 209 and became part of Carrier Air Wing Reserve TWENTY from 1970 onward . redesignated redesignated One of the better units Attack Squadron 209 1970
-One of the better units based at NAS Glenview in the post-WWII period was Attack Squadron 725 , part of NARTU Glenview until 1970 , when it was redesignated as Attack Squadron 209 and became part of Carrier Air Wing Reserve TWENTY from 1970 onward . became became from 1970 onward Attack Squadron 725 part of Carrier Air Wing Reserve TWENTY
-One of the better units based at NAS Glenview in the post-WWII period was Attack Squadron 725 , part of NARTU Glenview until 1970 , when it was redesignated as Attack Squadron 209 and became part of Carrier Air Wing Reserve TWENTY from 1970 onward . became became from 1970 onward One of the better units part of Carrier Air Wing Reserve TWENTY
-One of the better units based at NAS Glenview in the post-WWII period was Attack Squadron 725 , part of NARTU Glenview until 1970 , when it was redesignated as Attack Squadron 209 and became part of Carrier Air Wing Reserve TWENTY from 1970 onward . became became from 1970 onward Attack Squadron 209 part of Carrier Air Wing Reserve TWENTY
-Mark and Marisa , the Drive Time presenters , made the announcement live on air at 5.20 pm GMT and both the staff 's personal emails and the stations website was closed shortly thereafter 10pm GMT . made made Mark and Marisa the announcement and both the staff 's personal emails and the stations website was closed shortly thereafter 10pm GMT . at 5.20 pm GMT live on air
-Mark and Marisa , the Drive Time presenters , made the announcement live on air at 5.20 pm GMT and both the staff 's personal emails and the stations website was closed shortly thereafter 10pm GMT . made made the Drive Time presenters the announcement and both the staff 's personal emails and the stations website was closed shortly thereafter 10pm GMT . at 5.20 pm GMT live on air
-Mark and Marisa , the Drive Time presenters , made the announcement live on air at 5.20 pm GMT and both the staff 's personal emails and the stations website was closed shortly thereafter 10pm GMT . live live on air at 5.20 pm GMT
-Mark and Marisa , the Drive Time presenters , made the announcement live on air at 5.20 pm GMT and both the staff 's personal emails and the stations website was closed shortly thereafter 10pm GMT . closed closed the staff 's personal emails shortly thereafter 10pm GMT .
-Mark and Marisa , the Drive Time presenters , made the announcement live on air at 5.20 pm GMT and both the staff 's personal emails and the stations website was closed shortly thereafter 10pm GMT . closed closed the stations website shortly thereafter 10pm GMT .
-Standing in contrast to Descartes 's scientific reductionism and philosophical analysis , it proposes to view systems in a holistic manner . view may view systems in a holistic manner
-The culture of Bhutan is fully reflected in the capital city in respect of literature , religion , customs , and national dress code , the monastic practices of the monasteries , music , dance , literature and in the media . reflected reflected The culture of Bhutan in the capital city in respect of literature , religion , customs , and national dress code , the monastic practices of the monasteries , music , dance , literature and in the media
-`` My Classical Way '' was released on 21 September 2010 on Marc 's own label , Frazzy Frog Music . released released `` My Classical Way '' on 21 September 2010 Marc 's own label
-`` My Classical Way '' was released on 21 September 2010 on Marc 's own label , Frazzy Frog Music . released released `` My Classical Way '' on 21 September 2010 Frazzy Frog Music
-Continuing duties specified for freed slaves in manumission agreements became more common into the Hellenistic era , and they may have been customary earlier . Continuing continuing duties
-Continuing duties specified for freed slaves in manumission agreements became more common into the Hellenistic era , and they may have been customary earlier . specified specified duties slaves in manumission agreements
-Continuing duties specified for freed slaves in manumission agreements became more common into the Hellenistic era , and they may have been customary earlier . freed freed slaves
-Continuing duties specified for freed slaves in manumission agreements became more common into the Hellenistic era , and they may have been customary earlier . became became Continuing duties specified for freed slaves in manumission agreements more common into the Hellenistic era
-In England and Wales , as an `` attempt '' , attempted murder is an offence under section 1 of the Criminal Attempts Act 1981 and is an indictable offence which carries a maximum penalty of life imprisonment . carries carries attempted murder a maximum penalty of life imprisonment
-Frowin founded the Benedictine monastery of New Engleberg at Conception , which was erected into an abbey in 1881 . founded founded Frowin the Benedictine monastery of New Engleberg , which was erected into an abbey in 1881 . at Conception
-Frowin founded the Benedictine monastery of New Engleberg at Conception , which was erected into an abbey in 1881 . erected erected the Benedictine monastery of New Engleberg an abbey in 1881
-Local football team Ammanford A.F.C. play in the Welsh Football League Second Division , while rugby union team Ammanford RFC were formed in 1887 and play in the Welsh Rugby Union leagues . play play Local football team Welsh Football League
-Local football team Ammanford A.F.C. play in the Welsh Football League Second Division , while rugby union team Ammanford RFC were formed in 1887 and play in the Welsh Rugby Union leagues . play play Ammanford A.F.C. Welsh Football League
-Local football team Ammanford A.F.C. play in the Welsh Football League Second Division , while rugby union team Ammanford RFC were formed in 1887 and play in the Welsh Rugby Union leagues . formed formed rugby union team 1887
-Local football team Ammanford A.F.C. play in the Welsh Football League Second Division , while rugby union team Ammanford RFC were formed in 1887 and play in the Welsh Rugby Union leagues . formed formed Ammanford RFC 1887
-Local football team Ammanford A.F.C. play in the Welsh Football League Second Division , while rugby union team Ammanford RFC were formed in 1887 and play in the Welsh Rugby Union leagues . play play rugby union team Welsh Rugby Union leagues
-Local football team Ammanford A.F.C. play in the Welsh Football League Second Division , while rugby union team Ammanford RFC were formed in 1887 and play in the Welsh Rugby Union leagues . play play Ammanford RFC Welsh Rugby Union leagues
-This church is of medieval origin , the building has undergone a radical transformation in 1885 . undergone undergone the building a radical transformation in 1885
-Lugo and Lozano were released in 1993 and continue to reside in Venezuela . released released Lugo and Lozano in 1993
-Lugo and Lozano were released in 1993 and continue to reside in Venezuela . continue continue Lugo and Lozano reside in Venezuela
-Lugo and Lozano were released in 1993 and continue to reside in Venezuela . reside reside Lugo and Lozano in Venezuela
-Ballast tanks are equipped to change a ship 's trim and modify its stability . equipped equipped Ballast tanks change a ship 's trim and modify its stability
-Ballast tanks are equipped to change a ship 's trim and modify its stability . change change Ballast tanks a ship 's trim
-Ballast tanks are equipped to change a ship 's trim and modify its stability . modify modify Ballast tanks its stability
-Kabul had textile , cotton production , and carpet production industries , but most of its economy came through tourism which it lost during its destruction . had had Kabul textile
-Kabul had textile , cotton production , and carpet production industries , but most of its economy came through tourism which it lost during its destruction . had had Kabul cotton production
-Kabul had textile , cotton production , and carpet production industries , but most of its economy came through tourism which it lost during its destruction . had had Kabul carpet production industries
-Kabul had textile , cotton production , and carpet production industries , but most of its economy came through tourism which it lost during its destruction . came came most of its economy tourism which it lost during its destruction .
-Kabul had textile , cotton production , and carpet production industries , but most of its economy came through tourism which it lost during its destruction . lost lost most of its economy Kabul during its destruction
-Often , objects are so far away that they do not contribute significantly to the final image . contribute do n't contribute objects the final image are so far away
-This often results in unexpected deaths , either directly or from stress-induced illness . results results This unexpected deaths , either directly or from stress-induced illness .
-The school was founded in 1851 as the German-English Academy by a group of Milwaukee German Americans that included educationist Peter Engelmann and hardware wholesaler William Frankfurth . founded founded The school in 1851 as the German-English Academy by a group of Milwaukee German Americans that included educationist Peter Engelmann and hardware wholesaler William Frankfurth .
-The school was founded in 1851 as the German-English Academy by a group of Milwaukee German Americans that included educationist Peter Engelmann and hardware wholesaler William Frankfurth . included included group of Milwaukee German Americans educationist Peter Engelmann
-The school was founded in 1851 as the German-English Academy by a group of Milwaukee German Americans that included educationist Peter Engelmann and hardware wholesaler William Frankfurth . included included group of Milwaukee German Americans hardware wholesaler William Frankfurth
-Charles had concerns about being able to declare his belief in all the dogmas of the Church of England , so as well as hunting and fishing , he studied divinity books . had had Charles concerns about being able to declare his belief in all the dogmas of the Church of England , so as well as hunting and fishing , he studied divinity books .
-Charles had concerns about being able to declare his belief in all the dogmas of the Church of England , so as well as hunting and fishing , he studied divinity books . declare could declare his belief in all the dogmas of the Church of England , so as well as hunting and fishing , he studied divinity books .
-Charles had concerns about being able to declare his belief in all the dogmas of the Church of England , so as well as hunting and fishing , he studied divinity books . studied studied Charles divinity books .
-11 million copies of the flyer were distributed to the public via an 85-newspaper distribution chain . distributed distributed the flyer 11 million copies via an 85-newspaper distribution chain the public
-McLay also suggests that the songs negate what many consider to be a `` heretical '' ending for a comedy . suggests suggests McLay that the songs negate what many consider to be a `` heretical '' ending for a comedy
-McLay also suggests that the songs negate what many consider to be a `` heretical '' ending for a comedy . negate negate the songs what many consider to be a `` heretical '' ending for a comedy
-McLay also suggests that the songs negate what many consider to be a `` heretical '' ending for a comedy . consider might not consider many a `` heretical '' ending for a comedy the songs negate
-McLay also suggests that the songs negate what many consider to be a `` heretical '' ending for a comedy . ending ending a comedy heretical
-The town and surrounding villages were hit by two moderate earthquakes within ten years . surrounding surrounding The town villages
-The town and surrounding villages were hit by two moderate earthquakes within ten years . hit hit The town moderate earthquakes within ten years . two
-The town and surrounding villages were hit by two moderate earthquakes within ten years . hit hit surrounding villages moderate earthquakes within ten years . two
-Voorhees approved a plan in 2010 for an $ 850,000 artificial turf field to be completed by 2011 . approved approved Voorhees a plan for an in 2010 $ 850,000 artificial turf field to be completed by 2011 .
-Voorhees approved a plan in 2010 for an $ 850,000 artificial turf field to be completed by 2011 . completed would completed 2011 an $ 850,000 artificial turf field
-The theatrical flourishes and unique gimmicks she used in her stage show went beyond established burlesque routines like the fan dance and balloon dance . went went The theatrical flourishes and unique gimmicks she used beyond established burlesque routines like the fan dance and balloon dance . in her stage show
-The theatrical flourishes and unique gimmicks she used in her stage show went beyond established burlesque routines like the fan dance and balloon dance . established established burlesque routines like the fan dance and balloon dance .
-Many young South African artists made their debut on LM Radio through the numerous road shows which toured the country . made made Many young South African artists their debut on LM Radio through the numerous road shows which toured the country
-Many young South African artists made their debut on LM Radio through the numerous road shows which toured the country . toured toured the numerous road shows the country
-This work introduced the - fstack-protector flag , which protects only some vulnerable functions , and the - fstack-protector-all flag , which protects all functions whether they need it or not . introduced introduced This work the - fstack-protector flag
-This work introduced the - fstack-protector flag , which protects only some vulnerable functions , and the - fstack-protector-all flag , which protects all functions whether they need it or not . introduced introduced This work the - fstack-protector flag
-This work introduced the - fstack-protector flag , which protects only some vulnerable functions , and the - fstack-protector-all flag , which protects all functions whether they need it or not . protects protects the - fstack-protector flag vulnerable functions only some
-This work introduced the - fstack-protector flag , which protects only some vulnerable functions , and the - fstack-protector-all flag , which protects all functions whether they need it or not . protects protects the - fstack-protector-all flag functions whether they need it or not all
-In general , the rivalries between all the clubs were friendly , and families were known to switch affiliations depending on which one offered preferred services and events . known known the rivalries between all the clubs were friendly , and families to switch affiliations depending on which one offered preferred services and events
-In general , the rivalries between all the clubs were friendly , and families were known to switch affiliations depending on which one offered preferred services and events . switch switch affiliations depending on which one offered preferred services and events the rivalries between all the clubs were friendly , and families
-In general , the rivalries between all the clubs were friendly , and families were known to switch affiliations depending on which one offered preferred services and events . depending depending which one offered preferred services and events switch affiliations
-In general , the rivalries between all the clubs were friendly , and families were known to switch affiliations depending on which one offered preferred services and events . offered offered one preferred services and events
-When New Tomorrowland opened in 1967 , the space that this ride occupied was turned into the Tomorrowland Stage . opened opened New Tomorrowland in 1967
-When New Tomorrowland opened in 1967 , the space that this ride occupied was turned into the Tomorrowland Stage . occupied occupied this ride the space
-When New Tomorrowland opened in 1967 , the space that this ride occupied was turned into the Tomorrowland Stage . turned turned the space that this ride occupied the Tomorrowland Stage When New Tomorrowland opened in 1967
-The RIAA lists it as one of the Best Selling Albums of All Time . lists lists The RIAA Albums one of the Best Selling of All Time
-The RIAA lists it as one of the Best Selling Albums of All Time . Selling selling Albums
-Following the decision to withdraw tram services in London and replace them with buses , the station closed just after 12.30 am on 6 April 1952 . Following following the decision to withdraw tram services in London and replace them with buses
-Following the decision to withdraw tram services in London and replace them with buses , the station closed just after 12.30 am on 6 April 1952 . withdraw withdraw tram services Following the decision in London
-Following the decision to withdraw tram services in London and replace them with buses , the station closed just after 12.30 am on 6 April 1952 . replace replace tram services buses
-Following the decision to withdraw tram services in London and replace them with buses , the station closed just after 12.30 am on 6 April 1952 . closed closed the station just after 12.30 am on 6 April 1952
-The Cathedral and the belfry were thoroughly renovated from 2006 to 2008 . renovated renovated The Cathedral 2006 to 2008 thoroughly
-The Cathedral and the belfry were thoroughly renovated from 2006 to 2008 . renovated renovated the belfry 2006 to 2008 thoroughly
-Arrangements were made for mid-August performances in 1944 , but , following the 20 July plot to assassinate Hitler , Joseph Goebbels declared `` total war '' and closed all theatres within the Third Reich , resulting in the work not being allowed a public staging . made made Arrangements mid-August performances , but , following the 20 July plot to assassinate Hitler , Joseph Goebbels declared `` total war '' and closed all theatres within the Third Reich , resulting in the work not being allowed a public staging . in 1944
-Arrangements were made for mid-August performances in 1944 , but , following the 20 July plot to assassinate Hitler , Joseph Goebbels declared `` total war '' and closed all theatres within the Third Reich , resulting in the work not being allowed a public staging . following following the 20 July plot to assassinate Hitler , Joseph Goebbels declared `` total war '' and closed all theatres within the Third Reich , resulting in the work not being allowed a public staging .
-Arrangements were made for mid-August performances in 1944 , but , following the 20 July plot to assassinate Hitler , Joseph Goebbels declared `` total war '' and closed all theatres within the Third Reich , resulting in the work not being allowed a public staging . assassinate would assassinate Hitler 20 July
-Arrangements were made for mid-August performances in 1944 , but , following the 20 July plot to assassinate Hitler , Joseph Goebbels declared `` total war '' and closed all theatres within the Third Reich , resulting in the work not being allowed a public staging . declared declared Joseph Goebbels `` total war '' and closed all theatres within the Third Reich , resulting in the work not being allowed a public staging .
-Arrangements were made for mid-August performances in 1944 , but , following the 20 July plot to assassinate Hitler , Joseph Goebbels declared `` total war '' and closed all theatres within the Third Reich , resulting in the work not being allowed a public staging . closed closed Joseph Goebbels all theatres within the Third Reich , resulting in the work not being allowed a public staging .
-Arrangements were made for mid-August performances in 1944 , but , following the 20 July plot to assassinate Hitler , Joseph Goebbels declared `` total war '' and closed all theatres within the Third Reich , resulting in the work not being allowed a public staging . resulting resulting the work not being allowed a public staging .
-Arrangements were made for mid-August performances in 1944 , but , following the 20 July plot to assassinate Hitler , Joseph Goebbels declared `` total war '' and closed all theatres within the Third Reich , resulting in the work not being allowed a public staging . allowed was n't allowed work a public staging
-Crime Master slashes her when he finds out about this , but before passing out , she alerts the FBI that he is in league with Otto Octavius and his inhumane experiments . finds finds Crime Master this
-Later , it carried `` Monitor , '' the network 's very successful weekend radio service . carried carried the network Monitor Later
-Later , it carried `` Monitor , '' the network 's very successful weekend radio service . carried carried the network 's very successful weekend radio service Later
-Human behavioral ecologists assume that what might be the most adaptive strategy in one environment might not be the most adaptive strategy in another environment . assume assume Human behavioral ecologists that what might be the most adaptive strategy in one environment might not be the most adaptive strategy in another environment .
-However , Jesus is not accepted as the son by Muslims , who strictly maintain that he was a human being who was loved by God and exalted by God to ranks of the most righteous . accepted is n't accepted Jesus the son by Muslims
-However , Jesus is not accepted as the son by Muslims , who strictly maintain that he was a human being who was loved by God and exalted by God to ranks of the most righteous . maintain maintain Muslims that he was a human being who was loved by God and exalted by God to ranks of the most righteous strictly
-However , Jesus is not accepted as the son by Muslims , who strictly maintain that he was a human being who was loved by God and exalted by God to ranks of the most righteous . loved loved Jesus God
-However , Jesus is not accepted as the son by Muslims , who strictly maintain that he was a human being who was loved by God and exalted by God to ranks of the most righteous . exalted exalted Jesus God
-When the band is not touring , Peter Bywaters offers personal English as a second language tuition on a live-in basis at his home in Brighton . touring is n't touring the band
-When the band is not touring , Peter Bywaters offers personal English as a second language tuition on a live-in basis at his home in Brighton . offers offers Peter Bywaters personal English as a second language tuition on a live-in basis at his home in Brighton
-His works span a wide range of topics from the occult to natural history , literary criticism , biology , cartography , and iconography . span span His works a wide range of topics from the occult to natural history , literary criticism , biology , cartography , and iconography
-These screening activities include : review of group-based data ; hearing , vision , motor , and speech/language screening ; and review by the Special Education administration . include include These screening activities review of group-based data
-These screening activities include : review of group-based data ; hearing , vision , motor , and speech/language screening ; and review by the Special Education administration . include include These screening activities hearing , vision , motor , and speech/language screening
-These screening activities include : review of group-based data ; hearing , vision , motor , and speech/language screening ; and review by the Special Education administration . include include These screening activities review by the Special Education administration
-It was only incidentally that economic issues appeared in nationalist political forms . appeared appeared economic issues nationalist political forms . incidentally
-Owen and the French socialist Henri de Saint-Simon were the fathers of the utopian socialist movement ; they believed that the ills of industrial work relations could be removed by the establishment of small cooperative communities . believed believed Owen and the French socialist Henri de Saint-Simon the ills of industrial work relations could be removed by the establishment of small cooperative communities
-Owen and the French socialist Henri de Saint-Simon were the fathers of the utopian socialist movement ; they believed that the ills of industrial work relations could be removed by the establishment of small cooperative communities . believed believed the fathers of the utopian socialist movement the ills of industrial work relations could be removed by the establishment of small cooperative communities
-Owen and the French socialist Henri de Saint-Simon were the fathers of the utopian socialist movement ; they believed that the ills of industrial work relations could be removed by the establishment of small cooperative communities . removed could removed the ills of industrial work relations by the establishment of small cooperative communities
-The Nazis did however permit a single dress rehearsal in Salzburg , conducted by Clemens Krauss on 16 August , in order that Strauss and an invited audience could hear the work performed . permit permit The Nazis a single dress rehearsal , conducted by Clemens Krauss on 16 August , in order that Strauss and an invited audience could hear the work performed . in Salzburg
-The Nazis did however permit a single dress rehearsal in Salzburg , conducted by Clemens Krauss on 16 August , in order that Strauss and an invited audience could hear the work performed . conducted conducted Clemens Krauss , in order that Strauss and an invited audience could hear the work performed . on 16 August
-The Nazis did however permit a single dress rehearsal in Salzburg , conducted by Clemens Krauss on 16 August , in order that Strauss and an invited audience could hear the work performed . invited could invited audience hear the work performed .
-The Nazis did however permit a single dress rehearsal in Salzburg , conducted by Clemens Krauss on 16 August , in order that Strauss and an invited audience could hear the work performed . hear could hear the work performed an invited audience
-The Nazis did however permit a single dress rehearsal in Salzburg , conducted by Clemens Krauss on 16 August , in order that Strauss and an invited audience could hear the work performed . hear could hear the work performed Strauss
-The Nazis did however permit a single dress rehearsal in Salzburg , conducted by Clemens Krauss on 16 August , in order that Strauss and an invited audience could hear the work performed . performed performed work
-Two - and three-year programs are offered in various fields , through the divisions of Games and Animation , Industrial Design , Performing Arts , Information Communications , and Human Care . offered offered Two - and three-year programs in various fields , through the divisions of Games and Animation , Industrial Design , Performing Arts , Information Communications , and Human Care .
-This is usually caused by interacting inductive and capacitive elements in the oscillator . caused caused This interacting inductive and capacitive elements in the oscillator usually
-This is usually caused by interacting inductive and capacitive elements in the oscillator . interacting interacting inductive and capacitive elements in the oscillator
-A second factor is resource dependence ; there must be a perceptible threat of resource depletion , and it must be difficult to find substitutes . find might not find substitutes
-The term can be applied to any vessel ; turning turtle is less frequent but more dangerous on ships than on smaller boats . applied can applied The term any vessel
-The term can be applied to any vessel ; turning turtle is less frequent but more dangerous on ships than on smaller boats . turning turning turtle
-The enantioselectivity of this reaction is important because only the S enantiomer is medicinally desirable , whereas the R enantiomer produces harmful health effects . produces produces the R enantiomer harmful health effects
-Sligo town then became an incorporated municipal borough with a Royal Charter issued by the British King James I in 1613/14 . became became Sligo town an incorporated municipal borough in 1613/14
-Sligo town then became an incorporated municipal borough with a Royal Charter issued by the British King James I in 1613/14 . issued issued the British King an incorporated municipal borough a Royal Charter in 1613/14
-Sligo town then became an incorporated municipal borough with a Royal Charter issued by the British King James I in 1613/14 . issued issued King James I an incorporated municipal borough a Royal Charter in 1613/14
-Tom Bradley joined the London , Midland and Scottish Railway Company as a junior clerk in the Goods Depot at Kettering in 1941 . joined joined Tom Bradley the London a junior clerk in the Goods Depot in 1941
-Tom Bradley joined the London , Midland and Scottish Railway Company as a junior clerk in the Goods Depot at Kettering in 1941 . joined joined Tom Bradley Midland a junior clerk in the Goods Depot in 1941
-Tom Bradley joined the London , Midland and Scottish Railway Company as a junior clerk in the Goods Depot at Kettering in 1941 . joined joined Tom Bradley Scottish Railway Company a junior clerk in the Goods Depot in 1941
-A better alternative in order to find the best possible results would be to use the Smith-Waterman algorithm . find would find the best possible results A better alternative use the Smith-Waterman algorithm
-A better alternative in order to find the best possible results would be to use the Smith-Waterman algorithm . use would use the Smith-Waterman algorithm in order to find the best possible results
-High Court judges are therefore referred to as the Honourable Mr/Mrs Justice Smith . referred referred High Court judges the Honourable Mr/Mrs Justice Smith
-The second session , taking place on November 12 , 1960 , produced Joe Primrose 's `` St. James Infirmary '' and the sad and mood `` I 've Just Got to Forget You '' . taking taking The second session on November 12 , 1960
-The second session , taking place on November 12 , 1960 , produced Joe Primrose 's `` St. James Infirmary '' and the sad and mood `` I 've Just Got to Forget You '' . produced produced Joe Primrose 's `` St. James Infirmary '' and the sad and mood `` I 've Just Got to Forget You '' . The second session , taking place on November 12 , 1960
-Alexander supposedly said after this incident that he had never been so lucky in his entire career . said said Alexander that he had never been so lucky in his entire career after this incident supposedly
-Tom McMorran joined the band in 1994 after Mark Portmann left and in August of that year the band released `` Sahara '' . joined joined Tom McMorran the band in 1994
-Tom McMorran joined the band in 1994 after Mark Portmann left and in August of that year the band released `` Sahara '' . left left Mark Portmann
-Tom McMorran joined the band in 1994 after Mark Portmann left and in August of that year the band released `` Sahara '' . released released the band `` Sahara '' in August of that year
-Passenger services on the line were terminated on 31 December 1954 . terminated terminated Passenger services on 31 December 1954 on the line
-Later , the very different STA was converted into a flightworthy orbiter , re-designated OV-099 , and christened `` Challenger '' . converted converted the very different STA a flightworthy orbiter , re-designated OV-099 , and christened `` Challenger '' . Later
-Later , the very different STA was converted into a flightworthy orbiter , re-designated OV-099 , and christened `` Challenger '' . christened christened the very different STA `` Challenger ''
-The number of ones equals the number of zeros plus one , since the state containing only zeros can not occur . equals equals The number of ones the number of zeros plus one since the state containing only zeros can not occur
-The number of ones equals the number of zeros plus one , since the state containing only zeros can not occur . containing containing the state only zeros
-The number of ones equals the number of zeros plus one , since the state containing only zeros can not occur . occur ca n't occur the state containing only zeros
-In 1984 , KOMO became the first television station to broadcast daily programming in full stereo sound . became became KOMO In 1984 the first television station to broadcast daily programming in full stereo sound
-In 1984 , KOMO became the first television station to broadcast daily programming in full stereo sound . broadcast broadcast daily programming in full stereo sound KOMO
-In 1984 , KOMO became the first television station to broadcast daily programming in full stereo sound . broadcast broadcast daily programming in full stereo sound the first television station
-The Shi'a praise Muhammad ibn Abu Bakr for his devotion to ` Ali and his resistance to all the other caliphs who the Shi'a believe to be usurpers . believe believe Shi'a be usurpers
-Centuries later , in 1806 , during the Napoleonic era , was built the Canal de l'Ourcq , destined to the inland navigation when the Marne river is not navigable because of temporary sandbanks . built built the Canal de l'Ourcq in 1806
-Centuries later , in 1806 , during the Napoleonic era , was built the Canal de l'Ourcq , destined to the inland navigation when the Marne river is not navigable because of temporary sandbanks . destined destined the Canal de l'Ourcq to the inland navigation when the Marne river is not navigable because of temporary sandbanks
-The United States High Commissioner for Germany and his staff occupied the building from 1949 to 1952 . occupied occupied The United States High Commissioner for Germany the building from 1949 to 1952
-The United States High Commissioner for Germany and his staff occupied the building from 1949 to 1952 . occupied occupied his staff the building from 1949 to 1952
-As she reads the articles , she also makes veiled references and innuendo relating to the slang use of `` beaver '' . veiled veiled references and innuendo relating to the slang use of `` beaver '' .
-As she reads the articles , she also makes veiled references and innuendo relating to the slang use of `` beaver '' . relating relating veiled references and innuendo the slang use of `` beaver '' .
-At Vitoria and in Wellington 's invasion of southern France , Hill corps usually consisted of William Stewart 's 2nd Division , the Portuguese Division and Pablo Morillo 's Spanish Division . consisted consisted At Vitoria Hill corps usually William Stewart 's 2nd Division
-At Vitoria and in Wellington 's invasion of southern France , Hill corps usually consisted of William Stewart 's 2nd Division , the Portuguese Division and Pablo Morillo 's Spanish Division . consisted consisted At Vitoria Hill corps usually the Portuguese Division
-At Vitoria and in Wellington 's invasion of southern France , Hill corps usually consisted of William Stewart 's 2nd Division , the Portuguese Division and Pablo Morillo 's Spanish Division . consisted consisted At Vitoria Hill corps usually Pablo Morillo 's Spanish Division
-At Vitoria and in Wellington 's invasion of southern France , Hill corps usually consisted of William Stewart 's 2nd Division , the Portuguese Division and Pablo Morillo 's Spanish Division . consisted consisted in Wellington 's invasion of southern France Hill corps usually William Stewart 's 2nd Division
-At Vitoria and in Wellington 's invasion of southern France , Hill corps usually consisted of William Stewart 's 2nd Division , the Portuguese Division and Pablo Morillo 's Spanish Division . consisted consisted in Wellington 's invasion of southern France Hill corps usually the Portuguese Division
-At Vitoria and in Wellington 's invasion of southern France , Hill corps usually consisted of William Stewart 's 2nd Division , the Portuguese Division and Pablo Morillo 's Spanish Division . consisted consisted in Wellington 's invasion of southern France Hill corps usually Pablo Morillo 's Spanish Division
-Butters Drive in the Canberra suburb of Phillip is named in his honour . Drive drive in the Canberra suburb of Phillip is named in his honour .
-Butters Drive in the Canberra suburb of Phillip is named in his honour . named named Butters Drive in the Canberra suburb of Phillip his honour
-23.8 % of all households were made up of individuals and 13.0 % had someone living alone who was 65 years of age or older . made made 23.8 % of all households individuals
-23.8 % of all households were made up of individuals and 13.0 % had someone living alone who was 65 years of age or older . had had 13.0 % someone living alone who was 65 years of age or older
-23.8 % of all households were made up of individuals and 13.0 % had someone living alone who was 65 years of age or older . had had households someone living alone who was 65 years of age or older
-Overseas teams would not return to Russia until 1998 , when a youth tournament was held in Moscow . return did n't return Overseas teams to Russia 1998 youth tournament was held in Moscow .
-Overseas teams would not return to Russia until 1998 , when a youth tournament was held in Moscow . held held youth tournament in Moscow 1998
-Overseas teams would not return to Russia until 1998 , when a youth tournament was held in Moscow . held held youth tournament Russia 1998
-Their performance was well received and inspired Ruby Hunter , Archie Roach 's partner , to dub the trio Tiddas , which is Koori English for the word sisters . received received Their performance
-Their performance was well received and inspired Ruby Hunter , Archie Roach 's partner , to dub the trio Tiddas , which is Koori English for the word sisters . inspired inspired Ruby Hunter Their performance
-Their performance was well received and inspired Ruby Hunter , Archie Roach 's partner , to dub the trio Tiddas , which is Koori English for the word sisters . inspired inspired Archie Roach 's partner Their performance
-Their performance was well received and inspired Ruby Hunter , Archie Roach 's partner , to dub the trio Tiddas , which is Koori English for the word sisters . dub dub the trio Tiddas
-The British Army had been shown to be overstretched by the Crimean War , while the mutiny in India had led to the responsibility for providing a garrison in the subcontinent from the Honourable East India Company to the Crown forces . shown had shown The British Army overstretched by the Crimean War
-The British Army had been shown to be overstretched by the Crimean War , while the mutiny in India had led to the responsibility for providing a garrison in the subcontinent from the Honourable East India Company to the Crown forces . overstretched had overstretched The British Army the Crimean War
-The British Army had been shown to be overstretched by the Crimean War , while the mutiny in India had led to the responsibility for providing a garrison in the subcontinent from the Honourable East India Company to the Crown forces . led had led the mutiny in India the responsibility for providing a garrison in the subcontinent from the Honourable East India Company to the Crown forces
-The British Army had been shown to be overstretched by the Crimean War , while the mutiny in India had led to the responsibility for providing a garrison in the subcontinent from the Honourable East India Company to the Crown forces . providing providing a garrison in the subcontinent from the Honourable East India Company to the Crown forces
-Just above seen is a replica of a Shiva lingam . seen seen a replica of a Shiva lingam Just above
-The ninth leaf contains a circular world map measuring in circumference . contains contains a circular world map measuring in circumference The ninth leaf
-The ninth leaf contains a circular world map measuring in circumference . measuring measuring circumference The ninth leaf
-The ninth leaf contains a circular world map measuring in circumference . measuring measuring circumference a circular world map
-It hosts the `` Zomercarnaval '' , the second largest Caribbean carnival in Europe , originally called the Antillean carnival . called called `` Zomercarnaval '' the Antillean carnival originally
-It hosts the `` Zomercarnaval '' , the second largest Caribbean carnival in Europe , originally called the Antillean carnival . called called the second largest Caribbean carnival in Europe the Antillean carnival originally
-However , the term cob , defined as a short-legged , stout horse , is a body type rather than a breed . defined defined cob a short-legged , stout horse a body type rather than a breed
-The car was based around a Rodeck resleevable , modified Chevrolet 350 ci V8 racing engine coupled to a custom three-speed transmission . based based The car a Rodeck resleevable , modified Chevrolet 350 ci V8 racing engine coupled to a custom three-speed transmission .
-The car was based around a Rodeck resleevable , modified Chevrolet 350 ci V8 racing engine coupled to a custom three-speed transmission . modified modified Chevrolet 350 ci V8 racing engine coupled to a custom three-speed transmission .
-The car was based around a Rodeck resleevable , modified Chevrolet 350 ci V8 racing engine coupled to a custom three-speed transmission . coupled coupled a custom three-speed transmission .
-Moreover , some sponsors pulled their advertising off XM in protest of the suspension . pulled pulled some sponsors their advertising off XM in protest of the suspension
-The power cepstrum of a signal is defined as the squared magnitude of the inverse Fourier transform of the logarithm of the squared magnitude of the Fourier transform of a signal . defined defined The power cepstrum of a signal the squared magnitude of the inverse Fourier transform of the logarithm of the squared magnitude of the Fourier transform of a signal
-The power cepstrum of a signal is defined as the squared magnitude of the inverse Fourier transform of the logarithm of the squared magnitude of the Fourier transform of a signal . squared squared magnitude of the inverse Fourier transform
-The power cepstrum of a signal is defined as the squared magnitude of the inverse Fourier transform of the logarithm of the squared magnitude of the Fourier transform of a signal . transform transform the inverse Fourier
-The power cepstrum of a signal is defined as the squared magnitude of the inverse Fourier transform of the logarithm of the squared magnitude of the Fourier transform of a signal . squared squared magnitude of the Fourier transform of a signal
-The power cepstrum of a signal is defined as the squared magnitude of the inverse Fourier transform of the logarithm of the squared magnitude of the Fourier transform of a signal . transform transform Fourier
-The power cepstrum of a signal is defined as the squared magnitude of the inverse Fourier transform of the logarithm of the squared magnitude of the Fourier transform of a signal . transform transform of a signal
-KFI helped to keep the calm during the dark days of World War II by airing President Franklin D. Roosevelt 's `` Fireside Chats . '' helped helped KFI by airing President Franklin D. Roosevelt 's `` Fireside Chats . '' World War II
-KFI helped to keep the calm during the dark days of World War II by airing President Franklin D. Roosevelt 's `` Fireside Chats . '' helped helped KFI keep the calm World War II
-KFI helped to keep the calm during the dark days of World War II by airing President Franklin D. Roosevelt 's `` Fireside Chats . '' keep should keep the calm World War II by airing President Franklin D. Roosevelt 's `` Fireside Chats . ''
-KFI helped to keep the calm during the dark days of World War II by airing President Franklin D. Roosevelt 's `` Fireside Chats . '' airing airing Fireside Chats to keep the calm World War II KFI
-Many lodge members , youth and adult , are active staff members of both Scout and Cub Scout camps . lodge lodge members
-Many lodge members , youth and adult , are active staff members of both Scout and Cub Scout camps . lodge lodge youth and adult
-From 1970 to 1985 , Gideon Rodan taught at the University of Connecticut School of Dental Medicine until he switched over to Merck . taught taught Gideon Rodan 1970 to 1985 at the University of Connecticut School of Dental Medicine
-From 1970 to 1985 , Gideon Rodan taught at the University of Connecticut School of Dental Medicine until he switched over to Merck . taught taught Gideon Rodan until he switched over to Merck at the University of Connecticut School of Dental Medicine
-From 1970 to 1985 , Gideon Rodan taught at the University of Connecticut School of Dental Medicine until he switched over to Merck . switched switched Gideon Rodan Merck
-The European powers first gained a foothold in Somalia through the signing of various pacts and agreements with the Somali Sultans that then controlled the region , such as Yusuf Ali Kenadid , Boqor Osman Mahamuud and Mohamoud Ali Shire . gained gained The European powers a foothold in Somalia through the signing of various pacts and agreements with the Somali Sultans that then controlled the region , such as Yusuf Ali Kenadid , Boqor Osman Mahamuud and Mohamoud Ali Shire .
-The European powers first gained a foothold in Somalia through the signing of various pacts and agreements with the Somali Sultans that then controlled the region , such as Yusuf Ali Kenadid , Boqor Osman Mahamuud and Mohamoud Ali Shire . controlled controlled Somali Sultans the region , such as Yusuf Ali Kenadid , Boqor Osman Mahamuud and Mohamoud Ali Shire .
-These are known as Porter 's three generic strategies and can be applied to any size or form of business . known known These Porter 's three generic strategies
-These are known as Porter 's three generic strategies and can be applied to any size or form of business . applied can applied Porter 's three generic strategies any size or form of business
-Unsure of who he is , Zero helps the band of Reploids , who in turn marvel at his skills . helps helps Zero the band of Reploids
-Unsure of who he is , Zero helps the band of Reploids , who in turn marvel at his skills . marvel marvel the band of Reploids his skills
-The mouse is around nine inches long , and can jump in bounds of four feet when threatened . jump would jump The mouse in bounds of four feet when threatened
-The mouse is around nine inches long , and can jump in bounds of four feet when threatened . threatened threatened The mouse
-For patients who do not recover quickly , the protocol also includes support groups and/or psychotherapy . recover does n't recover patients quickly
-For patients who do not recover quickly , the protocol also includes support groups and/or psychotherapy . includes includes the protocol support groups and/or psychotherapy . patients who do not recover quickly
-Fishing boats and cargo ships typically have one or more cargo holds . have have Fishing boats and cargo ships one or more cargo holds typically
-Fishing boats and cargo ships typically have one or more cargo holds . holds holds cargo
-As the student of Torah ascends through the thought of the Pardes system , as the interpretations become more inward and spiritual , it becomes progressively understood that God desires man 's observance of the Jewish precepts , so to speak . ascends ascends the student of Torah the thought of the Pardes system
-As the student of Torah ascends through the thought of the Pardes system , as the interpretations become more inward and spiritual , it becomes progressively understood that God desires man 's observance of the Jewish precepts , so to speak . become become the interpretations more inward and spiritual
-As the student of Torah ascends through the thought of the Pardes system , as the interpretations become more inward and spiritual , it becomes progressively understood that God desires man 's observance of the Jewish precepts , so to speak . understood understood that God desires man 's observance of the Jewish precepts progressively As the student of Torah ascends through the thought of the Pardes system
-As the student of Torah ascends through the thought of the Pardes system , as the interpretations become more inward and spiritual , it becomes progressively understood that God desires man 's observance of the Jewish precepts , so to speak . understood understood that God desires man 's observance of the Jewish precepts progressively as the interpretations become more inward and spiritual
-An `` Dangaioh '' adventure game was released for the PC-8801 in Japan in April 1990 . released released An `` Dangaioh '' adventure game the PC-8801 in Japan in April 1990 .
-By opening for acts such as U2 and Bob Dylan , they became a popular alternative rock band of the 1980s , retaining a loyal following to the present day . opening opening acts such as U2 and Bob Dylan
-By opening for acts such as U2 and Bob Dylan , they became a popular alternative rock band of the 1980s , retaining a loyal following to the present day . following following a loyal the present day .
-On October 14 , 2012 , Sidney Rice caught the game winning touchdown from a 46-yard pass from Russell Wilson to beat the New England Patriots 24-23 . caught caught Sidney Rice the game winning touchdown On October 14 , 2012 a 46-yard pass from Russell Wilson
-On October 14 , 2012 , Sidney Rice caught the game winning touchdown from a 46-yard pass from Russell Wilson to beat the New England Patriots 24-23 . beat beat Sidney Rice the New England Patriots 24-23 On October 14 , 2012
-Passengers for or should change at Twyford during off peak . change should change at Twyford during off peak Passengers
-Hofmann was born in Salt Lake City , Utah . born born Hofmann in Salt Lake City , Utah
-Historical buildings and monuments in Meaux are mainly located in the old city , inside the old defensive walls , still nowadays partially kept thanks to an important segment of the original surrounding wall from the Gallo-Roman period . kept kept Historical buildings and monuments in Meaux are mainly located in the old city , inside the old defensive walls partially
-In 1962 , Salahuddin won from Patharghatti assembly seat as an Independent candidate and later from Charminar constituency in 1967 . won won Salahuddin from Patharghatti assembly seat as an Independent candidate In 1962
-`` Billboard '' magazine ranked the album thirty-second in the decade-end recap of the most successful albums of the 2000s , while placing it twelfth in the R&B field . ranked ranked `` Billboard '' magazine the album thirty-second in the decade-end recap of the most successful albums of the 2000s , while placing it twelfth in the R&B field
-`` Billboard '' magazine ranked the album thirty-second in the decade-end recap of the most successful albums of the 2000s , while placing it twelfth in the R&B field . placing placing `` Billboard '' magazine twelfth in the R&B field .
-The railways were separate , the S&D being administered by the Midland Railway and the London and South Western Railway companies and the North Somerset being run by and then owned by the Great Western Railway . administered administered the Midland Railway the S&D The railways were separate
-The railways were separate , the S&D being administered by the Midland Railway and the London and South Western Railway companies and the North Somerset being run by and then owned by the Great Western Railway . administered administered the London and South Western Railway companies the S&D The railways were separate
-The railways were separate , the S&D being administered by the Midland Railway and the London and South Western Railway companies and the North Somerset being run by and then owned by the Great Western Railway . run run the North Somerset Great Western Railway .
-The railways were separate , the S&D being administered by the Midland Railway and the London and South Western Railway companies and the North Somerset being run by and then owned by the Great Western Railway . owned owned the North Somerset the Great Western Railway .
-Walcott was brought on one knee in the third round and the fight ended with hardly a scratch on Langford . brought brought Walcott one knee in the third round
-Walcott was brought on one knee in the third round and the fight ended with hardly a scratch on Langford . ended ended the fight hardly a scratch on Langford
-Other people that can be classified using this title include the Vice President and Cabinet secretaries . classified can classified Other people using this title include the Vice President and Cabinet secretaries .
-Other people that can be classified using this title include the Vice President and Cabinet secretaries . using using this title
-Other people that can be classified using this title include the Vice President and Cabinet secretaries . include include Other people the Vice President
-Other people that can be classified using this title include the Vice President and Cabinet secretaries . include include Other people Cabinet secretaries
-But ex-slaves were able to own property outright , and their children were free of all constraint . own could own property ex-slaves outright
-The University of Florida however , refused to recognize BYX . refused refused The University of Florida to recognize BYX
-The University of Florida however , refused to recognize BYX . recognize did n't recognize The University of Florida BYX
-This used the section of the C&HP line from Buxton as far as Parsley Hay , from where a single line ran south to Ashbourne , where it connected with the North Staffordshire Railway . used used the section of the C&HP line from Buxton as far as Parsley Hay This
-This used the section of the C&HP line from Buxton as far as Parsley Hay , from where a single line ran south to Ashbourne , where it connected with the North Staffordshire Railway . ran ran a single line Parsley Hay Ashbourne south
-This used the section of the C&HP line from Buxton as far as Parsley Hay , from where a single line ran south to Ashbourne , where it connected with the North Staffordshire Railway . connected connected a single line Ashbourne North Staffordshire Railway .
-He was separated from his family as a young boy during the Cuban Revolution when he was sent to the United States to live with a foster family through an outreach program while his father was placed in a Cuban prison . placed placed in a Cuban prison . his father during the Cuban Revolution
-The Israeli controlled sector was captured by Israel in the Six-Day War of June 1967 . captured captured The Israeli controlled sector Israel in the Six-Day War of June 1967
-Around the `` triangle area , '' which includes Quanzhou , Xiamen and Zhangzhou , locals all speak Minnan languages . includes includes Quanzhou Around the `` triangle area , ''
-Around the `` triangle area , '' which includes Quanzhou , Xiamen and Zhangzhou , locals all speak Minnan languages . includes includes Xiamen Around the `` triangle area , ''
-Around the `` triangle area , '' which includes Quanzhou , Xiamen and Zhangzhou , locals all speak Minnan languages . includes includes Zhangzhou Around the `` triangle area , ''
-Around the `` triangle area , '' which includes Quanzhou , Xiamen and Zhangzhou , locals all speak Minnan languages . speak speak Minnan languages locals Around the `` triangle area , ''
-In 2004 it was expected that redevelopment work in the remaining subway would probably obliterate what remains exist . expected expected In 2004 that redevelopment work in the remaining subway would probably obliterate what remains exist
-In 2004 it was expected that redevelopment work in the remaining subway would probably obliterate what remains exist . remaining remaining subway
-In 2004 it was expected that redevelopment work in the remaining subway would probably obliterate what remains exist . obliterate would obliterate what remains exist
-In 2004 it was expected that redevelopment work in the remaining subway would probably obliterate what remains exist . exist exist what remains
-Ely Cathedral was never vaulted and retains a wooden ceiling over the nave . vaulted was n't vaulted Ely Cathedral
-Ely Cathedral was never vaulted and retains a wooden ceiling over the nave . retains retains Ely Cathedral a wooden ceiling over the nave
-Childers 's biographer Andrew Boyle noted : `` For the next ten years Childers 's book remained the most powerful contribution of any English writer to the debate on Britain 's alleged military unpreparedness '' . noted noted Childers 's biographer Andrew Boyle For the next ten years Childers 's book remained the most powerful contribution of any English writer to the debate on Britain 's alleged military unpreparedness
-The narrator does not end up being sexually assaulted ; instead , she has grabbed her suitcase and fled the compartment . end does n't end The narrator being sexually assaulted
-The narrator does not end up being sexually assaulted ; instead , she has grabbed her suitcase and fled the compartment . assaulted might assaulted sexually
-The narrator does not end up being sexually assaulted ; instead , she has grabbed her suitcase and fled the compartment . grabbed grabbed The narrator her suitcase
-The narrator does not end up being sexually assaulted ; instead , she has grabbed her suitcase and fled the compartment . fled fled the compartment
-Though this time , the Brumbies won , 47 to 38 in front of a record crowd at Canberra Stadium . won won this time the Brumbies 47 to 38 in front of a record crowd
-Though this time , the Brumbies won , 47 to 38 in front of a record crowd at Canberra Stadium . won won this time the Brumbies 47 to 38 Canberra Stadium
-Spielberger was formerly Chairman of the Psychology Department at the University of South Florida in Tampa , Florida and in 2012 belonged to a think tank there . belonged belonged Spielberger a think tank in 2012 there
-Spielberger was formerly Chairman of the Psychology Department at the University of South Florida in Tampa , Florida and in 2012 belonged to a think tank there . belonged belonged Spielberger a think tank in 2012 in Tampa , Florida
-Spielberger was formerly Chairman of the Psychology Department at the University of South Florida in Tampa , Florida and in 2012 belonged to a think tank there . belonged belonged Spielberger a think tank in 2012 at the University of South Florida
-Alan , one of the crew , begins to behave strangely and Pete suggests taking a blood sample to check . begins begins Alan behave strangely
-Alan , one of the crew , begins to behave strangely and Pete suggests taking a blood sample to check . begins begins one of the crew behave strangely
-Alan , one of the crew , begins to behave strangely and Pete suggests taking a blood sample to check . behave behave Alan strangely
-Alan , one of the crew , begins to behave strangely and Pete suggests taking a blood sample to check . behave behave one of the crew strangely
-Alan , one of the crew , begins to behave strangely and Pete suggests taking a blood sample to check . suggests suggests Pete taking a blood sample to check
-Alan , one of the crew , begins to behave strangely and Pete suggests taking a blood sample to check . taking would taking Pete a blood sample Alan to check
-Alan , one of the crew , begins to behave strangely and Pete suggests taking a blood sample to check . taking would taking Pete a blood sample one of the crew to check
-Alan , one of the crew , begins to behave strangely and Pete suggests taking a blood sample to check . check would check Pete blood sample Alan , one of the crew , begins to behave strangely
-A different judge then ordered the case reviewed by a higher court . ordered ordered A different judge the case reviewed by a higher court
-A different judge then ordered the case reviewed by a higher court . reviewed would reviewed the case a higher court
-From 1698 to 1843 the famous organ built by Arp Schnitger , one of the Baroque period 's best known organ makers was the main organ . built built Arp Schnitger From 1698 to 1843 the famous organ
-From 1698 to 1843 the famous organ built by Arp Schnitger , one of the Baroque period 's best known organ makers was the main organ . known known Arp Schnitger one of the Baroque period 's best
-US 258 and the two state highways cross the Tar River on the freeway , then exit US 64 onto Mutual Boulevard at a partial interchange on the east side of the river in Princeville . cross cross US 258 and the two state highways the Tar River on the freeway
-US 258 and the two state highways cross the Tar River on the freeway , then exit US 64 onto Mutual Boulevard at a partial interchange on the east side of the river in Princeville . exit exit US 64 onto Mutual Boulevard at a partial interchange on the east side of the river in Princeville US 258 and the two state highways
-As a result , environmental factors are also understood to contribute heavily to the strength of intimate relationships . understood understood environmental factors are also to contribute heavily to the strength of intimate relationships . As a result
-As a result , environmental factors are also understood to contribute heavily to the strength of intimate relationships . contribute can contribute environmental factors heavily strength of intimate relationships .
-During the celebrations of his Silver Jubilee in November 1955 , Haile Selassie introduced a revised constitution , whereby he retained effective power , while extending political participation to the people by allowing the lower house of parliament to become an elected body . introduced introduced Haile Selassie a revised constitution During the celebrations of his Silver Jubilee in November 1955
-During the celebrations of his Silver Jubilee in November 1955 , Haile Selassie introduced a revised constitution , whereby he retained effective power , while extending political participation to the people by allowing the lower house of parliament to become an elected body . retained retained Haile Selassie effective power
-During the celebrations of his Silver Jubilee in November 1955 , Haile Selassie introduced a revised constitution , whereby he retained effective power , while extending political participation to the people by allowing the lower house of parliament to become an elected body . extending extending Haile Selassie political participation the people by allowing the lower house of parliament to become an elected body
-During the celebrations of his Silver Jubilee in November 1955 , Haile Selassie introduced a revised constitution , whereby he retained effective power , while extending political participation to the people by allowing the lower house of parliament to become an elected body . allowing allowing Haile Selassie the lower house of parliament to become an elected body
-During the celebrations of his Silver Jubilee in November 1955 , Haile Selassie introduced a revised constitution , whereby he retained effective power , while extending political participation to the people by allowing the lower house of parliament to become an elected body . become become the lower house of parliament an elected body
-In 1577 , she unsuccessfully proposed to the city council that it should establish a home for poor women , of which she would become the administrator . establish should establish the city council a home poor women
-In November 1998 , the company suffered a public relations embarrassment when its sales flyer featured a prominent photograph of two grinning boys playing the board game `` Scrabble '' with the word `` RAPE '' spelled out in the center of the board , buried amongst nonsense words . suffered suffered the company In November 1998 a public relations embarrassment
-In November 1998 , the company suffered a public relations embarrassment when its sales flyer featured a prominent photograph of two grinning boys playing the board game `` Scrabble '' with the word `` RAPE '' spelled out in the center of the board , buried amongst nonsense words . featured featured its sales flyer a prominent photograph of two grinning boys playing the board game `` Scrabble '' with the word `` RAPE '' spelled out in the center of the board , buried amongst nonsense words In November 1998
-In November 1998 , the company suffered a public relations embarrassment when its sales flyer featured a prominent photograph of two grinning boys playing the board game `` Scrabble '' with the word `` RAPE '' spelled out in the center of the board , buried amongst nonsense words . grinning grinning boys
-In November 1998 , the company suffered a public relations embarrassment when its sales flyer featured a prominent photograph of two grinning boys playing the board game `` Scrabble '' with the word `` RAPE '' spelled out in the center of the board , buried amongst nonsense words . playing playing two grinning boys the board game `` Scrabble ''
-In November 1998 , the company suffered a public relations embarrassment when its sales flyer featured a prominent photograph of two grinning boys playing the board game `` Scrabble '' with the word `` RAPE '' spelled out in the center of the board , buried amongst nonsense words . spelled spelled the word `` RAPE '' in the center of the board , buried amongst nonsense words
-In November 1998 , the company suffered a public relations embarrassment when its sales flyer featured a prominent photograph of two grinning boys playing the board game `` Scrabble '' with the word `` RAPE '' spelled out in the center of the board , buried amongst nonsense words . buried buried the word `` RAPE '' nonsense words
-For liquid-packed vessels , thermal relief valves are generally characterized by the relatively small size of the valve necessary to provide protection from excess pressure caused by thermal expansion . characterized characterized thermal relief valves the relatively small size of the valve necessary to provide protection from excess pressure caused by thermal expansion
-For liquid-packed vessels , thermal relief valves are generally characterized by the relatively small size of the valve necessary to provide protection from excess pressure caused by thermal expansion . provide provide the valve protection from excess pressure caused by thermal expansion
-For liquid-packed vessels , thermal relief valves are generally characterized by the relatively small size of the valve necessary to provide protection from excess pressure caused by thermal expansion . caused caused thermal expansion excess pressure
-Callaghan 's decision on the Japanese pilot 's funeral in 1945 would receive praise years later , although a memorial service aboard the `` Missouri '' in April 2001 attracted controversy . receive would receive Callaghan 's decision on the Japanese pilot 's funeral in 1945 praise years later
-Callaghan 's decision on the Japanese pilot 's funeral in 1945 would receive praise years later , although a memorial service aboard the `` Missouri '' in April 2001 attracted controversy . attracted attracted a memorial service controversy in April 2001 aboard the `` Missouri ''
-They believe in God as a single entity , not as the Trinity accepted by the vast majority of Christians . accepted accepted the Trinity the vast majority of Christians
-The body was made largely of lightweight carbon fiber and Kevlar , known for its strength , and lightness . made made lightweight carbon fiber and Kevlar , known for its strength , and lightness . The body largely
-The body was made largely of lightweight carbon fiber and Kevlar , known for its strength , and lightness . known known lightweight carbon fiber and Kevlar its strength , and lightness
-In the post - `` Gregg '' era Texas has executed over four times more inmates than Virginia and nearly 37 times more inmates than California . executed executed over four times Texas
-Soon afterwards , Davis switched to the major Columbia record label and recorded seven albums over the next five years with producer Leo Graham and arranger James Mack who had collaborated with him for `` Turning Point '' . switched switched Davis major Columbia record label Soon afterwards
-Soon afterwards , Davis switched to the major Columbia record label and recorded seven albums over the next five years with producer Leo Graham and arranger James Mack who had collaborated with him for `` Turning Point '' . recorded recorded seven albums Davis producer Leo Graham
-Soon afterwards , Davis switched to the major Columbia record label and recorded seven albums over the next five years with producer Leo Graham and arranger James Mack who had collaborated with him for `` Turning Point '' . recorded recorded seven albums Davis arranger James Mack
-Soon afterwards , Davis switched to the major Columbia record label and recorded seven albums over the next five years with producer Leo Graham and arranger James Mack who had collaborated with him for `` Turning Point '' . recorded recorded seven albums Davis
-Soon afterwards , Davis switched to the major Columbia record label and recorded seven albums over the next five years with producer Leo Graham and arranger James Mack who had collaborated with him for `` Turning Point '' . collaborated collaborated James Mack for `` Turning Point ''
-Soon afterwards , Davis switched to the major Columbia record label and recorded seven albums over the next five years with producer Leo Graham and arranger James Mack who had collaborated with him for `` Turning Point '' . collaborated collaborated Davis for `` Turning Point ''
-Soon afterwards , Davis switched to the major Columbia record label and recorded seven albums over the next five years with producer Leo Graham and arranger James Mack who had collaborated with him for `` Turning Point '' . Turning turning Point
-After the Battle of Culloden in 1746 , these rebellions were crushed . crushed crushed these rebellions After the Battle of Culloden in 1746
-A very early form of vaccination known as variolation was developed several thousand years ago in China . known known A very early form of vaccination variolation
-A very early form of vaccination known as variolation was developed several thousand years ago in China . developed developed A very early form of vaccination known as variolation several thousand years ago in China
-This currently sees the club ranked sixth in terms of premierships won . sees sees the club ranked sixth
-This currently sees the club ranked sixth in terms of premierships won . ranked ranked the club sixth in terms of premierships won
-This currently sees the club ranked sixth in terms of premierships won . won won premierships
-Charles delayed declaring war , however , leading Shaftesbury to support a resolution of the House of Commons providing for immediately disbanding the army that Charles was raising . delayed delayed Charles declaring war
-Charles delayed declaring war , however , leading Shaftesbury to support a resolution of the House of Commons providing for immediately disbanding the army that Charles was raising . declaring did n't declaring Charles war
-Charles delayed declaring war , however , leading Shaftesbury to support a resolution of the House of Commons providing for immediately disbanding the army that Charles was raising . leading leading Charles delayed declaring war Shaftesbury to support a resolution of the House of Commons providing for immediately disbanding the army that Charles was raising
-Charles delayed declaring war , however , leading Shaftesbury to support a resolution of the House of Commons providing for immediately disbanding the army that Charles was raising . support support Shaftesbury a resolution of the House of Commons providing for immediately disbanding the army that Charles was raising Charles delayed declaring war
-Charles delayed declaring war , however , leading Shaftesbury to support a resolution of the House of Commons providing for immediately disbanding the army that Charles was raising . providing providing immediately disbanding the army that Charles was raising a resolution of the House of Commons
-Charles delayed declaring war , however , leading Shaftesbury to support a resolution of the House of Commons providing for immediately disbanding the army that Charles was raising . disbanding disbanding a resolution of the House of Commons the army that Charles was raising
-Charles delayed declaring war , however , leading Shaftesbury to support a resolution of the House of Commons providing for immediately disbanding the army that Charles was raising . raising raising Charles the army
-Excluding the special editions , the 2004-2005 Ram SRT-10 came in three colors : Brilliant Black Crystal Pearl Coat , Bright Silver Metallic Clear Coat , and Flame Red Clear Coat . Excluding excluding the special editions
-Excluding the special editions , the 2004-2005 Ram SRT-10 came in three colors : Brilliant Black Crystal Pearl Coat , Bright Silver Metallic Clear Coat , and Flame Red Clear Coat . came came the 2004-2005 Ram SRT-10 three colors
-Excluding the special editions , the 2004-2005 Ram SRT-10 came in three colors : Brilliant Black Crystal Pearl Coat , Bright Silver Metallic Clear Coat , and Flame Red Clear Coat . came came the 2004-2005 Ram SRT-10 Brilliant Black Crystal Pearl Coat
-Excluding the special editions , the 2004-2005 Ram SRT-10 came in three colors : Brilliant Black Crystal Pearl Coat , Bright Silver Metallic Clear Coat , and Flame Red Clear Coat . came came the 2004-2005 Ram SRT-10 Bright Silver Metallic Clear Coat
-Back at the hotel , Taylor went ahead of Lemmy and told him `` Eddie 's left the band '' . went went Taylor ahead of Lemmy and told him `` Eddie 's left the band '' . Back at the hotel
-Back at the hotel , Taylor went ahead of Lemmy and told him `` Eddie 's left the band '' . told told Eddie 's left the band Taylor Lemmy
-Back at the hotel , Taylor went ahead of Lemmy and told him `` Eddie 's left the band '' . left left Eddie 's the band
-`` Video Concert Hall '' ran daily on USA Network from 1978 to 1981 on a seemingly arbitrary schedule , appearing on early morning , daytime , late night , and early evening timeslots alike for durations ranging from one to four hours . ran ran Video Concert Hall daily on USA Network from 1978 to 1981 on a seemingly arbitrary schedule , appearing on early morning , daytime , late night , and early evening timeslots alike for durations ranging from one to four hours .
-`` Video Concert Hall '' ran daily on USA Network from 1978 to 1981 on a seemingly arbitrary schedule , appearing on early morning , daytime , late night , and early evening timeslots alike for durations ranging from one to four hours . appearing appearing on early morning , daytime , late night , and early evening timeslots alike for durations ranging from one to four hours . Video Concert Hall
-`` Video Concert Hall '' ran daily on USA Network from 1978 to 1981 on a seemingly arbitrary schedule , appearing on early morning , daytime , late night , and early evening timeslots alike for durations ranging from one to four hours . ranging ranging from . appearing on early morning , daytime , late night , and early evening timeslots alike for durations one to four hours
-In many of her writings , King often refers to the comical contradictions between the material reality of her upbringing and the snobbish behavior of her grandmother . refers refers King the comical contradictions between the material reality of her upbringing and the snobbish behavior of her grandmother In many of her writings
-Australian Amber Wing was the first woman to land a ts fs wake to wake 900 . land land Australian Amber Wing a ts fs wake to wake 900
-The RSNO 's base is at Henry Wood Hall in Glasgow and is also used as its recording venue ; a new base is being constructed within the Royal Concert Hall , Buchanan Street . used used RSNO 's base as its recording venue
-The RSNO 's base is at Henry Wood Hall in Glasgow and is also used as its recording venue ; a new base is being constructed within the Royal Concert Hall , Buchanan Street . used used Henry Wood Hall in Glasgow as its recording venue
-The RSNO 's base is at Henry Wood Hall in Glasgow and is also used as its recording venue ; a new base is being constructed within the Royal Concert Hall , Buchanan Street . constructed constructed within the Royal Concert Hall , Buchanan Street . a new base
-His main power , the Omega Beam , is a form of energy that he fires from his eyes as either a concussive force or disintegrating energy , capable of transmuting or erasing living objects and organisms from existence as well as resurrecting them , depending on the dark lord 's will . disintegrating disintegrating energy
-His main power , the Omega Beam , is a form of energy that he fires from his eyes as either a concussive force or disintegrating energy , capable of transmuting or erasing living objects and organisms from existence as well as resurrecting them , depending on the dark lord 's will . transmuting would transmuting His main power living objects depending on the dark lord 's will
-His main power , the Omega Beam , is a form of energy that he fires from his eyes as either a concussive force or disintegrating energy , capable of transmuting or erasing living objects and organisms from existence as well as resurrecting them , depending on the dark lord 's will . transmuting would transmuting His main power organisms depending on the dark lord 's will
-His main power , the Omega Beam , is a form of energy that he fires from his eyes as either a concussive force or disintegrating energy , capable of transmuting or erasing living objects and organisms from existence as well as resurrecting them , depending on the dark lord 's will . transmuting would transmuting the Omega Beam living objects depending on the dark lord 's will
-His main power , the Omega Beam , is a form of energy that he fires from his eyes as either a concussive force or disintegrating energy , capable of transmuting or erasing living objects and organisms from existence as well as resurrecting them , depending on the dark lord 's will . transmuting would transmuting the Omega Beam organisms depending on the dark lord 's will
-His main power , the Omega Beam , is a form of energy that he fires from his eyes as either a concussive force or disintegrating energy , capable of transmuting or erasing living objects and organisms from existence as well as resurrecting them , depending on the dark lord 's will . transmuting would transmuting a form of energy living objects depending on the dark lord 's will
-His main power , the Omega Beam , is a form of energy that he fires from his eyes as either a concussive force or disintegrating energy , capable of transmuting or erasing living objects and organisms from existence as well as resurrecting them , depending on the dark lord 's will . transmuting would transmuting a form of energy organisms depending on the dark lord 's will
-His main power , the Omega Beam , is a form of energy that he fires from his eyes as either a concussive force or disintegrating energy , capable of transmuting or erasing living objects and organisms from existence as well as resurrecting them , depending on the dark lord 's will . erasing would erasing His main power living objects depending on the dark lord 's will
-His main power , the Omega Beam , is a form of energy that he fires from his eyes as either a concussive force or disintegrating energy , capable of transmuting or erasing living objects and organisms from existence as well as resurrecting them , depending on the dark lord 's will . erasing would erasing His main power organisms depending on the dark lord 's will
-His main power , the Omega Beam , is a form of energy that he fires from his eyes as either a concussive force or disintegrating energy , capable of transmuting or erasing living objects and organisms from existence as well as resurrecting them , depending on the dark lord 's will . erasing would erasing the Omega Beam living objects depending on the dark lord 's will
-His main power , the Omega Beam , is a form of energy that he fires from his eyes as either a concussive force or disintegrating energy , capable of transmuting or erasing living objects and organisms from existence as well as resurrecting them , depending on the dark lord 's will . erasing would erasing the Omega Beam organisms depending on the dark lord 's will
-His main power , the Omega Beam , is a form of energy that he fires from his eyes as either a concussive force or disintegrating energy , capable of transmuting or erasing living objects and organisms from existence as well as resurrecting them , depending on the dark lord 's will . erasing would erasing a form of energy living objects depending on the dark lord 's will
-His main power , the Omega Beam , is a form of energy that he fires from his eyes as either a concussive force or disintegrating energy , capable of transmuting or erasing living objects and organisms from existence as well as resurrecting them , depending on the dark lord 's will . erasing would erasing a form of energy organisms depending on the dark lord 's will
-His main power , the Omega Beam , is a form of energy that he fires from his eyes as either a concussive force or disintegrating energy , capable of transmuting or erasing living objects and organisms from existence as well as resurrecting them , depending on the dark lord 's will . living living objects
-His main power , the Omega Beam , is a form of energy that he fires from his eyes as either a concussive force or disintegrating energy , capable of transmuting or erasing living objects and organisms from existence as well as resurrecting them , depending on the dark lord 's will . resurrecting would resurrecting living objects His main power depending on the dark lord 's will
-His main power , the Omega Beam , is a form of energy that he fires from his eyes as either a concussive force or disintegrating energy , capable of transmuting or erasing living objects and organisms from existence as well as resurrecting them , depending on the dark lord 's will . resurrecting would resurrecting living objects the Omega Beam depending on the dark lord 's will
-His main power , the Omega Beam , is a form of energy that he fires from his eyes as either a concussive force or disintegrating energy , capable of transmuting or erasing living objects and organisms from existence as well as resurrecting them , depending on the dark lord 's will . resurrecting would resurrecting living objects a form of energy depending on the dark lord 's will
-His main power , the Omega Beam , is a form of energy that he fires from his eyes as either a concussive force or disintegrating energy , capable of transmuting or erasing living objects and organisms from existence as well as resurrecting them , depending on the dark lord 's will . resurrecting would resurrecting organisms His main power depending on the dark lord 's will
-His main power , the Omega Beam , is a form of energy that he fires from his eyes as either a concussive force or disintegrating energy , capable of transmuting or erasing living objects and organisms from existence as well as resurrecting them , depending on the dark lord 's will . resurrecting would resurrecting organisms the Omega Beam depending on the dark lord 's will
-His main power , the Omega Beam , is a form of energy that he fires from his eyes as either a concussive force or disintegrating energy , capable of transmuting or erasing living objects and organisms from existence as well as resurrecting them , depending on the dark lord 's will . resurrecting would resurrecting organisms a form of energy depending on the dark lord 's will
-His main power , the Omega Beam , is a form of energy that he fires from his eyes as either a concussive force or disintegrating energy , capable of transmuting or erasing living objects and organisms from existence as well as resurrecting them , depending on the dark lord 's will . depending depending transmuting or erasing living objects and organisms from existence as well as resurrecting them
-The 2005 model introduced a third row of seats to the Pathfinder line for the first time . introduced introduced The 2005 model a third row of seats to the Pathfinder line for the first time
-On 12 July 2006 , Hezbollah launched a series of rocket attacks and raids into Israeli territory , where they killed three Israeli soldiers and captured a further two . launched launched Hezbollah a series of rocket attacks and raids On 12 July 2006 Israeli territory
-On 12 July 2006 , Hezbollah launched a series of rocket attacks and raids into Israeli territory , where they killed three Israeli soldiers and captured a further two . killed killed Hezbollah three Israeli soldiers Israeli territory On 12 July 2006
-On 12 July 2006 , Hezbollah launched a series of rocket attacks and raids into Israeli territory , where they killed three Israeli soldiers and captured a further two . captured captured Hezbollah a further two Israeli territory On 12 July 2006
-On 12 July 2006 , Hezbollah launched a series of rocket attacks and raids into Israeli territory , where they killed three Israeli soldiers and captured a further two . captured captured Hezbollah Israeli soldiers Israeli territory On 12 July 2006
-The department came under grant-in-aid scheme of Government of Karnataka in 1992 . came had came The department grant-in-aid scheme of Government of Karnataka in 1992 .
-The district also provides recreation and leisure services to many non-residents of the area on a fee basis . provides provides The district recreation and leisure services non-residents on a fee basis
-This font contains many largely recognized shapes and gestures as well as some recognized world symbols , such as the Star of David , the symbols of the zodiac , index or manicle signs and obscure ampersands . contains contains This font many largely recognized shapes and gestures as well as some recognized world symbols , such as the Star of David , the symbols of the zodiac , index or manicle signs and obscure ampersands .
-This font contains many largely recognized shapes and gestures as well as some recognized world symbols , such as the Star of David , the symbols of the zodiac , index or manicle signs and obscure ampersands . recognized recognized shapes and gestures as well as some recognized world symbols , such as the Star of David , the symbols of the zodiac , index or manicle signs and obscure ampersands . This font
-This font contains many largely recognized shapes and gestures as well as some recognized world symbols , such as the Star of David , the symbols of the zodiac , index or manicle signs and obscure ampersands . recognized recognized world symbols , such as the Star of David , the symbols of the zodiac , index or manicle signs and obscure ampersands . This font
-He accused Maroboduus of hiding in the Hercynian Forest while the other Germans fought for freedom , and accused Maroboduus of being the only king among the Germans . hiding might hiding Maroboduus in the Hercynian Forest while the other Germans fought for freedom
-He accused Maroboduus of hiding in the Hercynian Forest while the other Germans fought for freedom , and accused Maroboduus of being the only king among the Germans . fought fought the other Germans freedom
-Latchford viaduct was opened on 8 July 1893 to carry the London and North Western Railway 's Stockport to Warrington line over the Manchester Ship Canal . opened opened Latchford viaduct 1893 to carry the London and North Western Railway 's Stockport to Warrington line over the Manchester Ship Canal
-Latchford viaduct was opened on 8 July 1893 to carry the London and North Western Railway 's Stockport to Warrington line over the Manchester Ship Canal . carry would carry Latchford viaduct the London and North Western Railway 's Stockport to Warrington line over the Manchester Ship Canal
-Like most incarnations , Felicia has a relationship with Spider-Man Noir . has has Felicia a relationship Spider-Man Noir Like most incarnations
-The use of high ranking , anonymous sources has caused numerous scandals for the Bush Administration , most notably the Plame Affair . caused caused numerous scandals for , most notably the Plame Affair . the Bush Administration anonymous sources
-A dam on the creek has created a lake covering for fishing , boating , and swimming . created created A dam on the creek a lake covering fishing
-A dam on the creek has created a lake covering for fishing , boating , and swimming . created created A dam on the creek a lake covering boating
-A dam on the creek has created a lake covering for fishing , boating , and swimming . created created A dam on the creek a lake covering swimming
-A dam on the creek has created a lake covering for fishing , boating , and swimming . covering covering a lake fishing
-A dam on the creek has created a lake covering for fishing , boating , and swimming . covering covering a lake boating
-A dam on the creek has created a lake covering for fishing , boating , and swimming . covering covering a lake swimming
-A dam on the creek has created a lake covering for fishing , boating , and swimming . boating might boating A dam on the creek has created a lake covering
-That method relies heavily on inductive logic , seeking to show that his Christian beliefs fit best with the evidence . relies relies That method inductive logic
-That method relies heavily on inductive logic , seeking to show that his Christian beliefs fit best with the evidence . seeking seeking That method to show that his Christian beliefs fit best with the evidence
-That method relies heavily on inductive logic , seeking to show that his Christian beliefs fit best with the evidence . show show That method that his Christian beliefs fit best with the evidence
-That method relies heavily on inductive logic , seeking to show that his Christian beliefs fit best with the evidence . show show inductive logic that his Christian beliefs fit best with the evidence
-That method relies heavily on inductive logic , seeking to show that his Christian beliefs fit best with the evidence . fit fit his Christian beliefs the evidence
-In 1862 , Henry Letheby obtained a partly conductive material by anodic oxidation of aniline in sulfuric acid . obtained obtained Henry Letheby a partly conductive material In 1862 anodic oxidation of aniline in sulfuric acid .
-The lodge also hosts fellowship events , conclaves , training events , and an annual family banquet , and supports the council activities at Council-run events . lodge lodge also hosts fellowship events , conclaves , training events , and an annual family banquet , and supports the council activities at Council-run events .
-The lodge also hosts fellowship events , conclaves , training events , and an annual family banquet , and supports the council activities at Council-run events . hosts hosts The lodge fellowship events
-The lodge also hosts fellowship events , conclaves , training events , and an annual family banquet , and supports the council activities at Council-run events . hosts hosts The lodge conclaves
-The lodge also hosts fellowship events , conclaves , training events , and an annual family banquet , and supports the council activities at Council-run events . hosts hosts The lodge training events
-The lodge also hosts fellowship events , conclaves , training events , and an annual family banquet , and supports the council activities at Council-run events . hosts hosts The lodge an annual family banquet
-The lodge also hosts fellowship events , conclaves , training events , and an annual family banquet , and supports the council activities at Council-run events . supports supports The lodge the council activities at Council-run events .
-Hoechst 33342 exhibits a 10 fold greater cell-permeability than H 33258 . exhibits exhibits Hoechst 33342 a 10 fold greater cell-permeability than H 33258
-The Chapters of Bremen Cathedral and part of the administration were located within the city boundary in a district of immunity and extraterritorial status around the Cathedral of St. Peter , where the city council would refrain to interfere . refrain would refrain the city council interfere
-The Chapters of Bremen Cathedral and part of the administration were located within the city boundary in a district of immunity and extraterritorial status around the Cathedral of St. Peter , where the city council would refrain to interfere . interfere would n't interfere the city council in a district of immunity and extraterritorial status around the Cathedral of St. Peter
-The Tsar chose to accept the draft authored by Peter Kharitonov , Deputy State Secretary of the State Chancellory , as the basis for the new constitution . chose chose The Tsar accept the draft authored by Peter Kharitonov , Deputy State Secretary of the State Chancellory , as . the basis for the new constitution
-The Tsar chose to accept the draft authored by Peter Kharitonov , Deputy State Secretary of the State Chancellory , as the basis for the new constitution . accept accept The Tsar the draft authored by Peter Kharitonov , Deputy State Secretary of the State Chancellory , as the basis for the new constitution
-The Tsar chose to accept the draft authored by Peter Kharitonov , Deputy State Secretary of the State Chancellory , as the basis for the new constitution . authored authored the draft Peter Kharitonov
-The Tsar chose to accept the draft authored by Peter Kharitonov , Deputy State Secretary of the State Chancellory , as the basis for the new constitution . authored authored the draft Deputy State Secretary of the State Chancellory
-The very ease of acquiring Esperanto might even accelerate the process . acquiring acquiring Esperanto
-The very ease of acquiring Esperanto might even accelerate the process . accelerate might accelerate The very ease of acquiring Esperanto the process
-Blagoja ` Billy ' Celeski is an Australian footballer who plays as a midfielder for the Newcastle Jets . plays plays Blagoja ` Billy ' Celeski as a midfielder the Newcastle Jets
-He further stated that Hauptmann looked different and that `` John '' was actually dead because he had been murdered by his confederates . looked looked Hauptmann different
-He further stated that Hauptmann looked different and that `` John '' was actually dead because he had been murdered by his confederates . murdered murdered John his confederates
-Staff were only informed of the decision to cease broadcasting 24 hours earlier at 5pm on the evening of 23 December . informed informed Staff the decision to cease broadcasting 24 hours earlier at 5pm on the evening of 23 December .
-Staff were only informed of the decision to cease broadcasting 24 hours earlier at 5pm on the evening of 23 December . cease cease broadcasting
-Staff were only informed of the decision to cease broadcasting 24 hours earlier at 5pm on the evening of 23 December . broadcasting broadcasting Staff
-Pursuit of the routed enemy to the French border was halted on 2 May upon the German surrender in Italy . routed routed enemy to the French border
-Pursuit of the routed enemy to the French border was halted on 2 May upon the German surrender in Italy . halted halted Pursuit of the routed enemy to the French border on 2 May upon the German surrender in Italy
-The RSNO also performs throughout Scotland , at such venues as the Glasgow Royal Concert Hall , Usher Hall , Caird Hall , Aberdeen Music Hall , Perth Concert Hall and Eden Court Inverness . performs performs The RSNO throughout Scotland , at such venues as the Glasgow Royal Concert Hall , Usher Hall , Caird Hall , Aberdeen Music Hall , Perth Concert Hall and Eden Court Inverness .
-The Prahran and Malvern Tramways Trust opened a line from Alcand Street , St Kilda to Hawthorn Road , Caulfield North along Carlisle Street/Balaclava Road on 12 April 1913 . opened opened The Prahran and Malvern Tramways Trust a line from Alcand Street , St Kilda to Hawthorn Road , Caulfield North along Carlisle Street/Balaclava Road on 12 April 1913
-Also buried at Three Rivers cemetery are his first wife , Blanche , several members of the Blick family who had also pioneered 1890s Rhodesia with Burnham , Roderick , his granddaughter Martha Burnham Burleigh , and `` Pete '' Ingram , the Montana cowboy who had survived the Shangani Patrol massacre along with Burnham . buried buried his first wife , Blanche , several members of the Blick family who had also pioneered 1890s Rhodesia with Burnham , Roderick , his granddaughter Martha Burnham Burleigh , and `` Pete '' Ingram , the Montana cowboy who had survived the Shangani Patrol massacre along with Burnham at Three Rivers cemetery
-Also buried at Three Rivers cemetery are his first wife , Blanche , several members of the Blick family who had also pioneered 1890s Rhodesia with Burnham , Roderick , his granddaughter Martha Burnham Burleigh , and `` Pete '' Ingram , the Montana cowboy who had survived the Shangani Patrol massacre along with Burnham . pioneered had pioneered several members of the Blick family 1890s Rhodesia with Burnham
-Also buried at Three Rivers cemetery are his first wife , Blanche , several members of the Blick family who had also pioneered 1890s Rhodesia with Burnham , Roderick , his granddaughter Martha Burnham Burleigh , and `` Pete '' Ingram , the Montana cowboy who had survived the Shangani Patrol massacre along with Burnham . survived survived `` Pete '' Ingram the Shangani Patrol massacre along with Burnham
-Wild radish seeds contain up to 48 % oil content , and while not suitable for human consumption , this oil is a potential source of biofuel . contain contain Wild radish seeds up to 48 % oil
-On one occasion the lamps went out and the water became icy cold . went went the lamps On one occasion
-On one occasion the lamps went out and the water became icy cold . became became the water icy cold On one occasion
-Five years later , Alvarez was reunited with his family in New York and his father was able to start a business in Hoboken , New Jersey . reunited reunited Alvarez his family and his father was able to start a business in Hoboken , New Jersey . in New York Five years later
-Five years later , Alvarez was reunited with his family in New York and his father was able to start a business in Hoboken , New Jersey . start start his father in Hoboken , New Jersey .
-The Anti-Monitor began to siphon the positive matter of New York City to create his Antimatter waves . began began The Anti-Monitor siphon the positive matter of New York City create his Antimatter waves .
-The Anti-Monitor began to siphon the positive matter of New York City to create his Antimatter waves . siphon siphon The Anti-Monitor positive matter of New York City create his Antimatter waves .
-The Anti-Monitor began to siphon the positive matter of New York City to create his Antimatter waves . create create The Anti-Monitor his Antimatter waves . New York City siphon the positive matter of
-In Taiwan , the locals speak a version of the Minnan language which is called Taiwanese . speak speak the locals a version of the Minnan language which is called Taiwanese In Taiwan
-In Taiwan , the locals speak a version of the Minnan language which is called Taiwanese . called called a version of the Minnan language Taiwanese In Taiwan
-There are 109 individuals who belong to another church , and 20 individuals did not answer the question . belong belong 109 individuals another church
-There are 109 individuals who belong to another church , and 20 individuals did not answer the question . answer did n't answer 20 individuals the question
-The Commissioner of Parks and Public Property heads one of the departments in those local governments in New Jersey that operate under the Walsh Act form of municipal governance . heads heads The Commissioner one of the departments in those local governments that operate under the Walsh Act form of municipal governance . in New Jersey
-The Commissioner of Parks and Public Property heads one of the departments in those local governments in New Jersey that operate under the Walsh Act form of municipal governance . operate operate the Walsh Act form of municipal governance one of the departments in those local governments in New Jersey
-He played 37 times , mainly at right-back , in the 1987-88 season , and scored nine goals - excellent for a player who mainly featured in defence . played played 37 times in the 1987-88 season mainly at right-back
-He played 37 times , mainly at right-back , in the 1987-88 season , and scored nine goals - excellent for a player who mainly featured in defence . scored scored nine goals 1987-88 season
-He played 37 times , mainly at right-back , in the 1987-88 season , and scored nine goals - excellent for a player who mainly featured in defence . featured featured defence a player mainly
-The division maintained defensive positions until the offensive of 23 May , when it broke out of the beachhead , took Cisterna , and raced to Civitavecchia and Rome . maintained maintained The division defensive positions until the offensive of 23 May
-The division maintained defensive positions until the offensive of 23 May , when it broke out of the beachhead , took Cisterna , and raced to Civitavecchia and Rome . broke broke The division the beachhead
-The division maintained defensive positions until the offensive of 23 May , when it broke out of the beachhead , took Cisterna , and raced to Civitavecchia and Rome . took took Cisterna The division
-The division maintained defensive positions until the offensive of 23 May , when it broke out of the beachhead , took Cisterna , and raced to Civitavecchia and Rome . raced raced to Civitavecchia and Rome The division
-These tracks have subsequently been included on CD reissues of the album `` The Plan '' . included included These tracks CD reissues of the album `` The Plan '' .
-By the end of this experiment several results were found . found found several results By the end of this experiment
-He develops significance both as a recurrent character in the series and friend to Dream , appearing in a total of seven issues spanning six hundred years . Dream dream friend
-He develops significance both as a recurrent character in the series and friend to Dream , appearing in a total of seven issues spanning six hundred years . spanning spanning seven issues six hundred years
-In 1982 Caro was trying to organise an exhibition of British abstract art in South African townships when he met Robert Loder . trying trying In 1982 Caro organise an exhibition of British abstract art in South African townships
-In 1982 Caro was trying to organise an exhibition of British abstract art in South African townships when he met Robert Loder . organise organise In 1982 Caro an exhibition of British abstract art in South African townships
-In 1982 Caro was trying to organise an exhibition of British abstract art in South African townships when he met Robert Loder . met met In 1982 Caro in South African townships was trying to organise an exhibition of British abstract art
-In colonial times all grants of land from the Lords Baltimore were in the shape of leases subject to small and nominal ground rents , reserved by the Proprietary , and payable annually at Michaelmas , the Feast of St. Michael and All Angels . reserved reserved the Proprietary small and nominal ground rents
-Davis released about 25 singles during his seven years with Dakar , most of them big R&B sellers produced by Willie Henderson . released released Davis about 25 singles during his seven years with Dakar
-Davis released about 25 singles during his seven years with Dakar , most of them big R&B sellers produced by Willie Henderson . produced produced big R&B sellers Willie Henderson .
-The cockpit was protected from the engine by a firewall ahead of the wing center section where the fuel tanks were located . protected protected The cockpit the engine a firewall ahead of the wing center section where the fuel tanks were located
-Ed drives the creature into the airlock , with the intention of venting it into space . drives drives Ed the creature into the airlock with the intention of venting it into space
-Ed drives the creature into the airlock , with the intention of venting it into space . venting would venting into space
-In 2010 , popular internet reviewers RedLetterMedia delivered a scathing video critique of the film , drawing negative comparisons to The Three Stooges , Looney Tunes , and `` Home Alone '' . delivered delivered popular internet reviewers RedLetterMedia a scathing video critique of the film , drawing negative comparisons to The Three Stooges , Looney Tunes , and `` Home Alone '' In 2010
-In 2010 , popular internet reviewers RedLetterMedia delivered a scathing video critique of the film , drawing negative comparisons to The Three Stooges , Looney Tunes , and `` Home Alone '' . drawing drawing a scathing video critique of the film negative comparisons to The Three Stooges , Looney Tunes , and `` Home Alone ''
-Historically , the division has been a rural seat and fairly safe for the National Party , which held it for all but six years from 1922 to 2004 . held held the division National Party for all but six years from 1922 to 2004 .
-Within England and especially Scotland , there were repeated attempts by the deposed House of Stewart to regain the throne , leading to severe uprisings . repeated repeated attempts the deposed House of Stewart Within England and especially Scotland to regain the throne
-Within England and especially Scotland , there were repeated attempts by the deposed House of Stewart to regain the throne , leading to severe uprisings . deposed deposed House of Stewart
-Within England and especially Scotland , there were repeated attempts by the deposed House of Stewart to regain the throne , leading to severe uprisings . regain might regain the deposed House of Stewart the throne
-Within England and especially Scotland , there were repeated attempts by the deposed House of Stewart to regain the throne , leading to severe uprisings . leading leading severe uprisings repeated attempts by the deposed House of Stewart to regain the throne
-Ed tries to explain what happened to a skeptical Pete . tries tries Ed explain what happened
-Ed tries to explain what happened to a skeptical Pete . explain explain Ed what happened Pete
-Porter wrote in 1980 that strategy target either cost leadership , differentiation , or focus . wrote wrote Porter in 1980 that strategy target either cost leadership , differentiation , or focus
-In 2004 the Oxford English University Press included Makaton as a common usage word in the Oxford English Dictionary . included included the Oxford English University Press Makaton 2004 the Oxford English Dictionary
-Here , equality between the two vectors in homogeneous coordinates means that the numbers on the right side are equal to the numbers on the left side up to some common scaling factor formula_8 . coordinates coordinates homogeneous two vectors
-Here , equality between the two vectors in homogeneous coordinates means that the numbers on the right side are equal to the numbers on the left side up to some common scaling factor formula_8 . means means between the two vectors in homogeneous coordinates the numbers on the right side are equal to the numbers on the left side up to some common scaling factor formula_8 . equality
-Here , equality between the two vectors in homogeneous coordinates means that the numbers on the right side are equal to the numbers on the left side up to some common scaling factor formula_8 . means means equality between the two vectors in coordinates the numbers on the right side are equal to the numbers on the left side up to some common scaling factor formula_8 . homogeneous
-Thomas soon became a regular in the Arsenal side , making his league debut on 14 February 1987 in a 1-1 draw with Sheffield Wednesday at Hillsborough . became became Thomas a regular in the Arsenal side
-Thomas soon became a regular in the Arsenal side , making his league debut on 14 February 1987 in a 1-1 draw with Sheffield Wednesday at Hillsborough . making making league debut Thomas 14 February 1987 Hillsborough
-Necro became a regular member of the PWG roster through the majority of 2008 , teaming with Chris Hero to defend the honor of Candice LeRae against the Human Tornado and his allies in Claudio Castagnoli and Eddie Kingston . became became Necro a regular member of the PWG roster through the majority of 2008 , teaming with Chris Hero to defend the honor of Candice LeRae against the Human Tornado and his allies in Claudio Castagnoli and Eddie Kingston .
-Necro became a regular member of the PWG roster through the majority of 2008 , teaming with Chris Hero to defend the honor of Candice LeRae against the Human Tornado and his allies in Claudio Castagnoli and Eddie Kingston . teaming teaming Necro Chris Hero to defend the honor of Candice LeRae against the Human Tornado and his allies in Claudio Castagnoli and Eddie Kingston .
-Necro became a regular member of the PWG roster through the majority of 2008 , teaming with Chris Hero to defend the honor of Candice LeRae against the Human Tornado and his allies in Claudio Castagnoli and Eddie Kingston . defend defend the honor of Candice LeRae against Necro the Human Tornado and his allies in Claudio Castagnoli and Eddie Kingston .
-Necro became a regular member of the PWG roster through the majority of 2008 , teaming with Chris Hero to defend the honor of Candice LeRae against the Human Tornado and his allies in Claudio Castagnoli and Eddie Kingston . defend defend the honor of Candice LeRae against Chris Hero the Human Tornado and his allies in Claudio Castagnoli and Eddie Kingston .
-Their purpose is to be fair to both parties , disallowing the raising of allegations without a basis in provable fact . disallowing would disallowing the raising of allegations without a basis in provable fact to be fair to both parties
-These skills were readily proven when squadrons and personnel were mobilized and recalled back to active duty during the Korean War and the Berlin Crisis . proven proven These skills readily when squadrons and personnel were mobilized and recalled back to active duty during the Korean War and the Berlin Crisis
-These skills were readily proven when squadrons and personnel were mobilized and recalled back to active duty during the Korean War and the Berlin Crisis . mobilized mobilized personnel during the Korean War and the Berlin Crisis
-These skills were readily proven when squadrons and personnel were mobilized and recalled back to active duty during the Korean War and the Berlin Crisis . mobilized mobilized squadrons during the Korean War and the Berlin Crisis
-These skills were readily proven when squadrons and personnel were mobilized and recalled back to active duty during the Korean War and the Berlin Crisis . recalled recalled personnel during the Korean War and the Berlin Crisis active duty
-These skills were readily proven when squadrons and personnel were mobilized and recalled back to active duty during the Korean War and the Berlin Crisis . recalled recalled squadrons during the Korean War and the Berlin Crisis active duty
-New York City is iconic not only for Americans , but also for many Europeans as the city of melting pot where many ethnic groups live , often in specific neighborhoods , such as Chinatown , Little Italy . live live many ethnic groups New York City
-Byers does not oppose the concept of global citizenship , however he criticizes potential implications of the term depending on one 's definition of it , such as ones that provide support for the `` ruthlessly capitalist economic system that now dominates the planet . '' oppose does n't oppose Byers the concept of global citizenship
-Byers does not oppose the concept of global citizenship , however he criticizes potential implications of the term depending on one 's definition of it , such as ones that provide support for the `` ruthlessly capitalist economic system that now dominates the planet . '' criticizes criticizes Byers potential implications of the term depending on one 's definition of it
-Byers does not oppose the concept of global citizenship , however he criticizes potential implications of the term depending on one 's definition of it , such as ones that provide support for the `` ruthlessly capitalist economic system that now dominates the planet . '' depending depending potential implications of the term one 's definition of it
-Byers does not oppose the concept of global citizenship , however he criticizes potential implications of the term depending on one 's definition of it , such as ones that provide support for the `` ruthlessly capitalist economic system that now dominates the planet . '' provide provide ones support for the `` ruthlessly capitalist economic system that now dominates the planet . ''
-Byers does not oppose the concept of global citizenship , however he criticizes potential implications of the term depending on one 's definition of it , such as ones that provide support for the `` ruthlessly capitalist economic system that now dominates the planet . '' dominates dominates the `` ruthlessly capitalist economic system the planet now
-Wallonia is also home to about 80 % of the population of the French Community of Belgium , a political level responsible for matters related mainly to culture and education , with the remainder living in Brussels . related related a political level responsible for matters mainly to culture and education
-Wallonia is also home to about 80 % of the population of the French Community of Belgium , a political level responsible for matters related mainly to culture and education , with the remainder living in Brussels . living living the remainder in Brussels
-Plans to artificially oxygenate areas of the Baltic that have experienced eutrophication have been proposed by the University of Gothenburg and Inocean AB . oxygenate might oxygenate areas of the Baltic that have experienced eutrophication artificially
-Plans to artificially oxygenate areas of the Baltic that have experienced eutrophication have been proposed by the University of Gothenburg and Inocean AB . experienced experienced areas of the Baltic eutrophication
-Plans to artificially oxygenate areas of the Baltic that have experienced eutrophication have been proposed by the University of Gothenburg and Inocean AB . proposed proposed Plans to artificially oxygenate areas of the Baltic that have experienced eutrophication the University of Gothenburg and Inocean AB
-On 15 January 1999 , Senchuk was appointed as governor of the Lviv region ; for some time he combined two posts . appointed appointed Senchuk On 15 January 1999 governor of the Lviv region ; for some time he combined two posts .
-On 15 January 1999 , Senchuk was appointed as governor of the Lviv region ; for some time he combined two posts . combined combined Senchuk two posts
-Thus , acquisition of quantitative heavy-element spectra can be time-consuming , taking tens of minutes to hours . taking taking tens of minutes to hours acquisition of quantitative heavy-element spectra
-For example , when two such hydrophobic particles come very close , the clathrate-like baskets surrounding them merge . come come hydrophobic particles very close
-For example , when two such hydrophobic particles come very close , the clathrate-like baskets surrounding them merge . surrounding surrounding the clathrate-like baskets hydrophobic particles merge
-For example , when two such hydrophobic particles come very close , the clathrate-like baskets surrounding them merge . merge merge the clathrate-like baskets when two such hydrophobic particles come very close
-The doctor , Erasistratus , suspects love is behind Antiochus 's suffering . suspects suspects The doctor love is behind Antiochus 's suffering
-The doctor , Erasistratus , suspects love is behind Antiochus 's suffering . suspects suspects Erasistratus love is behind Antiochus 's suffering
-The lead single that holds the same name , is a soft melodic song that differs from Tiger JK 's past releases . holds holds The lead single the same name
-The lead single that holds the same name , is a soft melodic song that differs from Tiger JK 's past releases . differs differs The lead single that holds the same name Tiger JK 's past releases
-The Lletty Shenkin explosion of 1849 , in particular , led to demands the local middle classes in Aberdare , for improved safety in the mines . led led The Lletty Shenkin explosion of 1849 demands the local middle classes in Aberdare , for improved safety in the mines .
-The Lletty Shenkin explosion of 1849 , in particular , led to demands the local middle classes in Aberdare , for improved safety in the mines . improved improved safety in the mines
-Although the villages were located close to industrial sites , they were generally physically separated from them and generally consisted of relatively high quality housing , with integrated community amenities and attractive physical environments . separated separated the villages industrial sites
-Although the villages were located close to industrial sites , they were generally physically separated from them and generally consisted of relatively high quality housing , with integrated community amenities and attractive physical environments . consisted consisted the villages relatively high quality housing , with integrated community amenities and attractive physical environments
-In 1717 Lady Mary Wortley Montagu observed the practice in Istanbul and attempted to popularize it in Britain , but encountered considerable resistance . observed observed Lady Mary Wortley Montagu the practice in Istanbul In 1717
-In 1717 Lady Mary Wortley Montagu observed the practice in Istanbul and attempted to popularize it in Britain , but encountered considerable resistance . attempted attempted Lady Mary Wortley Montagu to popularize it in Britain In 1717
-In 1717 Lady Mary Wortley Montagu observed the practice in Istanbul and attempted to popularize it in Britain , but encountered considerable resistance . popularize might popularize the practice in Britain Lady Mary Wortley Montagu
-In 1717 Lady Mary Wortley Montagu observed the practice in Istanbul and attempted to popularize it in Britain , but encountered considerable resistance . encountered encountered Lady Mary Wortley Montagu considerable resistance in Britain
-Agen would have another successful run in the 1940s , beginning with the 1943 season when they defeated Stade Bordelais 11 to 4 to win the Coupe de France . have would have Agen another successful run in the 1940s
-Agen would have another successful run in the 1940s , beginning with the 1943 season when they defeated Stade Bordelais 11 to 4 to win the Coupe de France . beginning beginning the 1943 season when they defeated Stade Bordelais 11 to 4 to win the Coupe de France
-Agen would have another successful run in the 1940s , beginning with the 1943 season when they defeated Stade Bordelais 11 to 4 to win the Coupe de France . defeated defeated Agen Stade Bordelais the 1943 season
-Agen would have another successful run in the 1940s , beginning with the 1943 season when they defeated Stade Bordelais 11 to 4 to win the Coupe de France . win did n't win Agen the Coupe de France the 1943 season Stade Bordelais
-The two companies are teaming up again for the Future Vertical Lift prototype called SB-1 Defiant , where employees from both companies will work together . teaming teaming The two companies for the Future Vertical Lift prototype called SB-1 Defiant , where employees from both companies will work together
-The two companies are teaming up again for the Future Vertical Lift prototype called SB-1 Defiant , where employees from both companies will work together . called called SB-1 Defiant Future Vertical Lift prototype
-The two companies are teaming up again for the Future Vertical Lift prototype called SB-1 Defiant , where employees from both companies will work together . work will work employees from both companies together
-El Camino High School offers the recommended A-G courses based upon the University of California that illustrates the minimum level of academic preparation students ought to achieve in high school to undertake university level work . offers offers El Camino High School the recommended A-G courses based upon the University of California that illustrates the minimum level of academic preparation students ought to achieve in high school to undertake university level work
-El Camino High School offers the recommended A-G courses based upon the University of California that illustrates the minimum level of academic preparation students ought to achieve in high school to undertake university level work . recommended recommended A-G courses based upon the University of California
-El Camino High School offers the recommended A-G courses based upon the University of California that illustrates the minimum level of academic preparation students ought to achieve in high school to undertake university level work . based based the University of California the recommended A-G courses
-El Camino High School offers the recommended A-G courses based upon the University of California that illustrates the minimum level of academic preparation students ought to achieve in high school to undertake university level work . illustrates illustrates the recommended A-G courses the minimum level of academic preparation students ought to achieve in high school to undertake university level work
-El Camino High School offers the recommended A-G courses based upon the University of California that illustrates the minimum level of academic preparation students ought to achieve in high school to undertake university level work . achieve should achieve students the minimum level of academic preparation in high school to undertake university level work
-El Camino High School offers the recommended A-G courses based upon the University of California that illustrates the minimum level of academic preparation students ought to achieve in high school to undertake university level work . undertake might undertake students university level work
-Its bus operations were merged with another city-owned company , Suomen Turistiauto , to form a new bus company called Helsingin Bussiliikenne . merged merged Its bus operations another city-owned company
-Its bus operations were merged with another city-owned company , Suomen Turistiauto , to form a new bus company called Helsingin Bussiliikenne . merged merged Its bus operations Suomen Turistiauto
-Its bus operations were merged with another city-owned company , Suomen Turistiauto , to form a new bus company called Helsingin Bussiliikenne . form form a new bus company Its bus operations were merged with another city-owned company
-Its bus operations were merged with another city-owned company , Suomen Turistiauto , to form a new bus company called Helsingin Bussiliikenne . form form Helsingin Bussiliikenne Its bus operations were merged with another city-owned company
-Its bus operations were merged with another city-owned company , Suomen Turistiauto , to form a new bus company called Helsingin Bussiliikenne . called called a new bus company Helsingin Bussiliikenne
-From 1953 till 1957 Speranskaya worked as chief artist in Kazan Dolls Theatre , since 1957 she worked as stage-artist director in Kazan theatres , also she was invited to other cities of Russian Federation . worked worked From 1953 till 1957 Speranskaya chief artist in Kazan Dolls Theatre
-From 1953 till 1957 Speranskaya worked as chief artist in Kazan Dolls Theatre , since 1957 she worked as stage-artist director in Kazan theatres , also she was invited to other cities of Russian Federation . worked worked since 1957 Speranskaya stage-artist director in Kazan Dolls Theatre
-In 1914 , the BSA gave local councils the power to segregate African Americans from white Scouts . gave gave the BSA the power to segregate African Americans from white Scouts In 1914 local councils
-In 1914 , the BSA gave local councils the power to segregate African Americans from white Scouts . segregate can segregate local councils African Americans from white Scouts
-Byrom Street Cutting became a runaway catch point for runaway trains in the tunnel . Cutting cutting a runaway catch point for runaway trains in the tunnel . Byrom Street
-Byrom Street Cutting became a runaway catch point for runaway trains in the tunnel . became became a runaway catch point for runaway trains in the tunnel . Byrom Street Cutting
-In the first volume of the series , The Noh 's nature and background is explained . explained explained The Noh 's nature and background first volume of the series
-The first , at a severity of Mw 6.0 , occurred on May 26 , 1994 . occurred occurred May 26 , 1994 . a severity of Mw 6.0
-All three had been photography students at The Art Center College of Design in Pasadena , California in 1979 when they became Newton 's longtime assistants , and all three went on to independent careers . became became all three assistants 1979
-All three had been photography students at The Art Center College of Design in Pasadena , California in 1979 when they became Newton 's longtime assistants , and all three went on to independent careers . went went independent careers all three
-All three had been photography students at The Art Center College of Design in Pasadena , California in 1979 when they became Newton 's longtime assistants , and all three went on to independent careers . went went independent careers Newton 's longtime assistants
-The Federal Trade Commission began an investigation in late 1995 . began began an investigation The Federal Trade Commission in late 1995
-His elder brother , Conte Quinto Mazzolini , served as Italian consul in Jerusalem , and undertook negotiations with Abraham Stern , head of the Lehi terrorist group , which sought to obtain Italian recognition of Jewish sovereignty in Palestine in exchange for placing Zionism under the aegis of Italian fascism . served served Conte Quinto Mazzolini as Italian consul in Jerusalem
-His elder brother , Conte Quinto Mazzolini , served as Italian consul in Jerusalem , and undertook negotiations with Abraham Stern , head of the Lehi terrorist group , which sought to obtain Italian recognition of Jewish sovereignty in Palestine in exchange for placing Zionism under the aegis of Italian fascism . undertook undertook Conte Quinto Mazzolini negotiations with Abraham Stern , head of the Lehi terrorist group , which sought to obtain Italian recognition of Jewish sovereignty in Palestine in exchange for placing Zionism under the aegis of Italian fascism
-His elder brother , Conte Quinto Mazzolini , served as Italian consul in Jerusalem , and undertook negotiations with Abraham Stern , head of the Lehi terrorist group , which sought to obtain Italian recognition of Jewish sovereignty in Palestine in exchange for placing Zionism under the aegis of Italian fascism . sought sought negotiations with Abraham Stern to obtain Italian recognition of Jewish sovereignty in Palestine in exchange for placing Zionism under the aegis of Italian fascism
-His elder brother , Conte Quinto Mazzolini , served as Italian consul in Jerusalem , and undertook negotiations with Abraham Stern , head of the Lehi terrorist group , which sought to obtain Italian recognition of Jewish sovereignty in Palestine in exchange for placing Zionism under the aegis of Italian fascism . obtain would obtain Italian recognition of Jewish sovereignty in Palestine in exchange for placing Zionism under the aegis of Italian fascism
-His elder brother , Conte Quinto Mazzolini , served as Italian consul in Jerusalem , and undertook negotiations with Abraham Stern , head of the Lehi terrorist group , which sought to obtain Italian recognition of Jewish sovereignty in Palestine in exchange for placing Zionism under the aegis of Italian fascism . placing placing Zionism under the aegis of Italian fascism
-The city is served by two long-distance bus stations : Jiaxing North Bus Station and the new Jiaxing Transportation Center . served served The city two long-distance bus stations : Jiaxing North Bus Station and the new Jiaxing Transportation Center
-The Harford County Public Schools system is the public school system serving the residents of Harford County . serving serving the public school system the residents of Harford County
-The Harford County Public Schools system is the public school system serving the residents of Harford County . serving serving The Harford County Public Schools system the residents of Harford County
-However , the two sometimes work as partners , and during a point in which Robin and Ariana were unable to see each other , he and Stephanie grow even closer . see might not see each other Robin and Ariana
-However , the two sometimes work as partners , and during a point in which Robin and Ariana were unable to see each other , he and Stephanie grow even closer . grow grow he and Stephanie even closer
-A number of rare and endemic plants are adapted to the unique limestone soils of the mountains , including the cliffdweller , bristlecone cryptantha , and Inyo rock daisy . adapted adapted A number of rare and endemic plants to the unique limestone soils of the mountains , including the cliffdweller , bristlecone cryptantha , and Inyo rock daisy
-A number of rare and endemic plants are adapted to the unique limestone soils of the mountains , including the cliffdweller , bristlecone cryptantha , and Inyo rock daisy . including including the cliffdweller , bristlecone cryptantha , and Inyo rock daisy
-In `` The Scarpetta Factor , '' she is working full-time and Wesley is working part-time in New York . working working in New York part-time Wesley
-The waist line was put higher and the skirts became longer . put put higher
-The waist line was put higher and the skirts became longer . became became skirts longer
-Adnan Latif was in a car accident in 1994 , during which he suffered significant head injuries , which left him with on-going neurological problems . suffered suffered Adnan Latif head injuries in a car accident
-Adnan Latif was in a car accident in 1994 , during which he suffered significant head injuries , which left him with on-going neurological problems . suffered suffered Adnan Latif head injuries 1994
-Adnan Latif was in a car accident in 1994 , during which he suffered significant head injuries , which left him with on-going neurological problems . left left a car accident neurological problems
-Adnan Latif was in a car accident in 1994 , during which he suffered significant head injuries , which left him with on-going neurological problems . left left significant head injuries neurological problems
-He played for the Kangaroos in all four matches , including the final , scoring one try . including including the final all four matches
-Dripping can be clarified by adding a sliced raw potato and cooking until potato turns brown . Dripping can dripping by adding a sliced raw potato and cooking until potato turns brown .
-Dripping can be clarified by adding a sliced raw potato and cooking until potato turns brown . clarified can clarified by adding a sliced raw potato and cooking until potato turns brown . Dripping
-Dripping can be clarified by adding a sliced raw potato and cooking until potato turns brown . adding can adding a sliced raw potato and cooking until potato turns brown .
-Dripping can be clarified by adding a sliced raw potato and cooking until potato turns brown . turns turns cooking brown potato
-The oilseed radish grows well in cool climates and , apart from its industrial use , can be used as a cover crop , grown to increase soil fertility , to scavenge nutrients , suppress weeds , help alleviate soil compaction and prevent winter erosion of the soil . grows grows The oilseed radish well in cool climates
-The oilseed radish grows well in cool climates and , apart from its industrial use , can be used as a cover crop , grown to increase soil fertility , to scavenge nutrients , suppress weeds , help alleviate soil compaction and prevent winter erosion of the soil . used can used The oilseed radish a cover crop
-The oilseed radish grows well in cool climates and , apart from its industrial use , can be used as a cover crop , grown to increase soil fertility , to scavenge nutrients , suppress weeds , help alleviate soil compaction and prevent winter erosion of the soil . grown can grown The oilseed radish to increase soil fertility
-The oilseed radish grows well in cool climates and , apart from its industrial use , can be used as a cover crop , grown to increase soil fertility , to scavenge nutrients , suppress weeds , help alleviate soil compaction and prevent winter erosion of the soil . grown can grown The oilseed radish to scavenge nutrients
-The oilseed radish grows well in cool climates and , apart from its industrial use , can be used as a cover crop , grown to increase soil fertility , to scavenge nutrients , suppress weeds , help alleviate soil compaction and prevent winter erosion of the soil . grown can grown The oilseed radish suppress weeds
-The oilseed radish grows well in cool climates and , apart from its industrial use , can be used as a cover crop , grown to increase soil fertility , to scavenge nutrients , suppress weeds , help alleviate soil compaction and prevent winter erosion of the soil . grown can grown The oilseed radish help alleviate soil compaction
-The oilseed radish grows well in cool climates and , apart from its industrial use , can be used as a cover crop , grown to increase soil fertility , to scavenge nutrients , suppress weeds , help alleviate soil compaction and prevent winter erosion of the soil . increase can increase soil fertility The oilseed radish
-The oilseed radish grows well in cool climates and , apart from its industrial use , can be used as a cover crop , grown to increase soil fertility , to scavenge nutrients , suppress weeds , help alleviate soil compaction and prevent winter erosion of the soil . scavenge can scavenge The oilseed radish nutrients
-The oilseed radish grows well in cool climates and , apart from its industrial use , can be used as a cover crop , grown to increase soil fertility , to scavenge nutrients , suppress weeds , help alleviate soil compaction and prevent winter erosion of the soil . suppress can suppress The oilseed radish weeds
-The oilseed radish grows well in cool climates and , apart from its industrial use , can be used as a cover crop , grown to increase soil fertility , to scavenge nutrients , suppress weeds , help alleviate soil compaction and prevent winter erosion of the soil . help can help The oilseed radish alleviate soil compaction
-The oilseed radish grows well in cool climates and , apart from its industrial use , can be used as a cover crop , grown to increase soil fertility , to scavenge nutrients , suppress weeds , help alleviate soil compaction and prevent winter erosion of the soil . alleviate can alleviate The oilseed radish soil compaction
-The oilseed radish grows well in cool climates and , apart from its industrial use , can be used as a cover crop , grown to increase soil fertility , to scavenge nutrients , suppress weeds , help alleviate soil compaction and prevent winter erosion of the soil . prevent can prevent The oilseed radish erosion
-It was regained by Syria on October 6 , 1973 , the first day of the Yom Kippur War , following the First Battle of Mount Hermon . following following the First Battle of Mount Hermon October 6 , 1973
-It was regained by Syria on October 6 , 1973 , the first day of the Yom Kippur War , following the First Battle of Mount Hermon . following following the First Battle of Mount Hermon the first day of the Yom Kippur War
-The Library Board is charged with reviewing the strategic plans of the Harvard Library and assessing its progress in meeting those plans , reviewing system-wide policies and standards and overseeing the progress of the central services . charged charged The Library Board reviewing the strategic plans of the Harvard Library and assessing its progress in meeting those plans , reviewing system-wide policies and standards and overseeing the progress of the central services .
-The Library Board is charged with reviewing the strategic plans of the Harvard Library and assessing its progress in meeting those plans , reviewing system-wide policies and standards and overseeing the progress of the central services . reviewing will reviewing The Library Board the strategic plans of the Harvard Library
-The Library Board is charged with reviewing the strategic plans of the Harvard Library and assessing its progress in meeting those plans , reviewing system-wide policies and standards and overseeing the progress of the central services . assessing will assessing The Library Board its progress in meeting those plans the Harvard Library
-The Library Board is charged with reviewing the strategic plans of the Harvard Library and assessing its progress in meeting those plans , reviewing system-wide policies and standards and overseeing the progress of the central services . meeting will meeting those plans the Harvard Library
-The Library Board is charged with reviewing the strategic plans of the Harvard Library and assessing its progress in meeting those plans , reviewing system-wide policies and standards and overseeing the progress of the central services . reviewing will reviewing The Library Board system-wide policies and standards the Harvard Library
-The Library Board is charged with reviewing the strategic plans of the Harvard Library and assessing its progress in meeting those plans , reviewing system-wide policies and standards and overseeing the progress of the central services . overseeing will overseeing The Library Board the progress of the central services
-Charles prorogued parliament on 25 June , but the army was not disbanded , which worried Shaftesbury . prorogued prorogued Charles parliament on 25 June
-Charles prorogued parliament on 25 June , but the army was not disbanded , which worried Shaftesbury . disbanded was n't disbanded the army on 25 June
-Charles prorogued parliament on 25 June , but the army was not disbanded , which worried Shaftesbury . worried worried the army was not disbanded Shaftesbury on 25 June
-He had been at the Battle of the Granicus River , and had believed that Memnon 's scorched Earth strategy would work here . scorched had scorched Earth Memnon
-He had been at the Battle of the Granicus River , and had believed that Memnon 's scorched Earth strategy would work here . work might not work Memnon 's scorched Earth strategy here
-The film uses some computer-generated graphics : The northern lights in the scene where Inge walks through the fields to Olaf 's house to take a bath , and , later in the film , the geese flying over Olaf 's house . uses uses The film some computer-generated graphics
-The film uses some computer-generated graphics : The northern lights in the scene where Inge walks through the fields to Olaf 's house to take a bath , and , later in the film , the geese flying over Olaf 's house . walks walks Inge to Olaf 's house the fields to take a bath
-The film uses some computer-generated graphics : The northern lights in the scene where Inge walks through the fields to Olaf 's house to take a bath , and , later in the film , the geese flying over Olaf 's house . take take Inge a bath Olaf 's house
-The film uses some computer-generated graphics : The northern lights in the scene where Inge walks through the fields to Olaf 's house to take a bath , and , later in the film , the geese flying over Olaf 's house . flying flying the geese over Olaf 's house
-The weapons do not influence the other racers at all . influence does n't influence The weapons the other racers at all
-Legislation sponsored by Sweeney and signed into law provides state pensions to surviving family members of police , firefighters and emergency services workers who die in the line of duty , as well as the law that removes the remarriage prohibition to receive death benefits for spouses of police officers and firefighters killed while serving the public good . sponsored sponsored Sweeney Legislation
-Legislation sponsored by Sweeney and signed into law provides state pensions to surviving family members of police , firefighters and emergency services workers who die in the line of duty , as well as the law that removes the remarriage prohibition to receive death benefits for spouses of police officers and firefighters killed while serving the public good . signed signed Legislation law
-Legislation sponsored by Sweeney and signed into law provides state pensions to surviving family members of police , firefighters and emergency services workers who die in the line of duty , as well as the law that removes the remarriage prohibition to receive death benefits for spouses of police officers and firefighters killed while serving the public good . provides provides Legislation sponsored by Sweeney and signed into law state pensions to surviving family members of police , firefighters and emergency services workers who die in the line of duty
-Legislation sponsored by Sweeney and signed into law provides state pensions to surviving family members of police , firefighters and emergency services workers who die in the line of duty , as well as the law that removes the remarriage prohibition to receive death benefits for spouses of police officers and firefighters killed while serving the public good . surviving surviving family members of police , firefighters and emergency services workers
-Legislation sponsored by Sweeney and signed into law provides state pensions to surviving family members of police , firefighters and emergency services workers who die in the line of duty , as well as the law that removes the remarriage prohibition to receive death benefits for spouses of police officers and firefighters killed while serving the public good . die die in the line of duty police , firefighters and emergency services workers
-Legislation sponsored by Sweeney and signed into law provides state pensions to surviving family members of police , firefighters and emergency services workers who die in the line of duty , as well as the law that removes the remarriage prohibition to receive death benefits for spouses of police officers and firefighters killed while serving the public good . removes removes the remarriage prohibition to receive death benefits for spouses of police officers and firefighters killed while serving the public good the law
-Legislation sponsored by Sweeney and signed into law provides state pensions to surviving family members of police , firefighters and emergency services workers who die in the line of duty , as well as the law that removes the remarriage prohibition to receive death benefits for spouses of police officers and firefighters killed while serving the public good . receive receive death benefits spouses of police officers and firefighters
-Legislation sponsored by Sweeney and signed into law provides state pensions to surviving family members of police , firefighters and emergency services workers who die in the line of duty , as well as the law that removes the remarriage prohibition to receive death benefits for spouses of police officers and firefighters killed while serving the public good . killed killed police officers and firefighters while serving the public good
-Legislation sponsored by Sweeney and signed into law provides state pensions to surviving family members of police , firefighters and emergency services workers who die in the line of duty , as well as the law that removes the remarriage prohibition to receive death benefits for spouses of police officers and firefighters killed while serving the public good . serving serving police officers and firefighters the public good
-A series of councils were held in 657 , 669 , 846 , 850 , 852 , 853 , 862 , 980 , 986 , 996 , 1048 , 1071 and 1080 . held held A series of councils in 657 , 669 , 846 , 850 , 852 , 853 , 862 , 980 , 986 , 996 , 1048 , 1071 and 1080
-The latter was lifted only as the b-side of `` Keep on Loving Me '' . lifted lifted The latter the b-side of `` Keep on Loving Me '' .
-The latter was lifted only as the b-side of `` Keep on Loving Me '' . Keep should keep Loving Me
-Consistent with systems philosophy , systems thinking concerns an understanding of a system by examining the linkages and interactions between the elements that compose the entirety of the system . examining examining the linkages and interactions between the elements understanding of a system
-Consistent with systems philosophy , systems thinking concerns an understanding of a system by examining the linkages and interactions between the elements that compose the entirety of the system . compose compose the elements the entirety of the system
-Furious at being passed over again , Michael secures another job with a rival company and plans on leaving his family behind for good . passed passed Michael again
-Furious at being passed over again , Michael secures another job with a rival company and plans on leaving his family behind for good . secures secures Michael another job with a rival company and plans on leaving his family behind for good
-Furious at being passed over again , Michael secures another job with a rival company and plans on leaving his family behind for good . leaving leaving Michael his family behind for good
-Korean villagers hiding resistance fighters were dealt with harshly , often with summary execution , rape , forced labour , and looting . hiding hiding Korean villagers resistance fighters
-Korean villagers hiding resistance fighters were dealt with harshly , often with summary execution , rape , forced labour , and looting . dealt dealt Korean villagers harshly
-Korean villagers hiding resistance fighters were dealt with harshly , often with summary execution , rape , forced labour , and looting . dealt dealt Korean villagers often with summary execution , rape , forced labour , and looting
-In particular , her grandmother required high standards of behavior from Florence , referring to the family as descendants of Virginia 's colonial elite . required required her grandmother high standards of behavior from Florence
-In particular , her grandmother required high standards of behavior from Florence , referring to the family as descendants of Virginia 's colonial elite . referring referring the family as descendants of Virginia 's colonial elite her grandmother
-Until its 2007 acquisition by Tavistock Group , Freebirds World Burrito had its corporate headquarters in College Station . had had Freebirds World Burrito its corporate headquarters in College Station Until its 2007 acquisition
-In 1891 , the academy moved to the German-English Academy Building in downtown Milwaukee . moved moved In 1891 the academy the German-English Academy Building in downtown Milwaukee
-They point to other easy-to-learn languages such as Tok Pisin in Papua New Guinea , which have had deleterious effects on minority languages . had had had Tok Pisin deleterious effects on minority languages
-One of the prisoners , Kasim Mehaddi Hilas , said that one day he asked Graner for the time so that he could pray . said said One of the prisoners one day he asked Graner for the time so that he could pray
-One of the prisoners , Kasim Mehaddi Hilas , said that one day he asked Graner for the time so that he could pray . said said Kasim Mehaddi Hilas one day he asked Graner for the time so that he could pray
-One of the prisoners , Kasim Mehaddi Hilas , said that one day he asked Graner for the time so that he could pray . asked asked Kasim Mehaddi Hilas Graner time so that he could pray
-One of the prisoners , Kasim Mehaddi Hilas , said that one day he asked Graner for the time so that he could pray . asked asked One of the prisoners Graner time so that he could pray
-One of the prisoners , Kasim Mehaddi Hilas , said that one day he asked Graner for the time so that he could pray . pray could pray Kasim Mehaddi Hilas
-One of the prisoners , Kasim Mehaddi Hilas , said that one day he asked Graner for the time so that he could pray . pray could pray One of the prisoners
-At the end of 2008 the Uzbek-Italian Joint Venture Roison-Candy was established by the Uzbek Limited Liability Company Roison Electronics with partnership of Candy Group . established established the Uzbek-Italian Joint Venture Roison-Candy At the end of 2008 the Uzbek Limited Liability Company Roison Electronics with partnership of Candy Group
-Its objective is to organize in-service Continuous Capacity Building and professional development training sessions , workshops and local and international conferences for enhancement of skills and competitive strength of faculty , staff and M.Phil and PhD students at their campuses . organize will organize in-service Continuous Capacity Building and professional development training sessions , workshops and local and international conferences for enhancement of skills and competitive strength of faculty , staff and M.Phil and PhD students at their campuses
-In April 2014 , Zane , along with friend Derek Stevens , announced a Kickstarter to fund a 50th anniversary Furthur Bus Trip , offering donors a chance to ride the famous bus . announced announced Zane a Kickstarter to fund a 50th anniversary Furthur Bus Trip In April 2014
-In April 2014 , Zane , along with friend Derek Stevens , announced a Kickstarter to fund a 50th anniversary Furthur Bus Trip , offering donors a chance to ride the famous bus . announced announced friend a Kickstarter to fund a 50th anniversary Furthur Bus Trip In April 2014
-In April 2014 , Zane , along with friend Derek Stevens , announced a Kickstarter to fund a 50th anniversary Furthur Bus Trip , offering donors a chance to ride the famous bus . announced announced Derek Stevens a Kickstarter to fund a 50th anniversary Furthur Bus Trip In April 2014
-In April 2014 , Zane , along with friend Derek Stevens , announced a Kickstarter to fund a 50th anniversary Furthur Bus Trip , offering donors a chance to ride the famous bus . fund would fund a Kickstarter a 50th anniversary Furthur Bus Trip
-In April 2014 , Zane , along with friend Derek Stevens , announced a Kickstarter to fund a 50th anniversary Furthur Bus Trip , offering donors a chance to ride the famous bus . fund would fund a Kickstarter a chance to ride the famous bus
-In April 2014 , Zane , along with friend Derek Stevens , announced a Kickstarter to fund a 50th anniversary Furthur Bus Trip , offering donors a chance to ride the famous bus . offering will offering a chance to ride the famous bus donors Zane
-In April 2014 , Zane , along with friend Derek Stevens , announced a Kickstarter to fund a 50th anniversary Furthur Bus Trip , offering donors a chance to ride the famous bus . offering will offering a chance to ride the famous bus donors friend
-In April 2014 , Zane , along with friend Derek Stevens , announced a Kickstarter to fund a 50th anniversary Furthur Bus Trip , offering donors a chance to ride the famous bus . offering will offering a chance to ride the famous bus donors Derek Stevens
-In April 2014 , Zane , along with friend Derek Stevens , announced a Kickstarter to fund a 50th anniversary Furthur Bus Trip , offering donors a chance to ride the famous bus . ride will ride donors the famous bus
-In 2005 , Kesey 's son Zane asked a friend , Matthew Rick , also known as Shady Backflash , to put on a 40th anniversary of his father 's Acid Tests . asked asked Kesey 's son to put on a 40th anniversary of his father 's Acid Tests In 2005
-In 2005 , Kesey 's son Zane asked a friend , Matthew Rick , also known as Shady Backflash , to put on a 40th anniversary of his father 's Acid Tests . asked asked Zane to put on a 40th anniversary of his father 's Acid Tests In 2005
-In 2005 , Kesey 's son Zane asked a friend , Matthew Rick , also known as Shady Backflash , to put on a 40th anniversary of his father 's Acid Tests . known known a friend Shady Backflash
-In 2005 , Kesey 's son Zane asked a friend , Matthew Rick , also known as Shady Backflash , to put on a 40th anniversary of his father 's Acid Tests . known known Matthew Rick Shady Backflash
-In 2005 , Kesey 's son Zane asked a friend , Matthew Rick , also known as Shady Backflash , to put on a 40th anniversary of his father 's Acid Tests . put put a friend a 40th anniversary of his father 's Acid Tests In 2005
-In 2005 , Kesey 's son Zane asked a friend , Matthew Rick , also known as Shady Backflash , to put on a 40th anniversary of his father 's Acid Tests . put put Matthew Rick a 40th anniversary of his father 's Acid Tests In 2005
-In 2005 , Kesey 's son Zane asked a friend , Matthew Rick , also known as Shady Backflash , to put on a 40th anniversary of his father 's Acid Tests . put put Shady Backflash a 40th anniversary of his father 's Acid Tests In 2005
-The first single , `` Dreamer , '' features performances by keyboardist Philippe Saisse , and vocalists Jasmine Roy and Rebeca Vega . features features The first single performances keyboardist Philippe Saisse
-The first single , `` Dreamer , '' features performances by keyboardist Philippe Saisse , and vocalists Jasmine Roy and Rebeca Vega . features features The first single performances vocalists Jasmine Roy and Rebeca Vega
-The first single , `` Dreamer , '' features performances by keyboardist Philippe Saisse , and vocalists Jasmine Roy and Rebeca Vega . features features `` Dreamer , '' performances keyboardist Philippe Saisse
-The first single , `` Dreamer , '' features performances by keyboardist Philippe Saisse , and vocalists Jasmine Roy and Rebeca Vega . features features `` Dreamer , '' performances vocalists Jasmine Roy and Rebeca Vega
-Since many of the rebbes of the Nadvorna Dynasty married relatives , many of the rebbes in this list are sons-in-law of other rebbes on the list . married married relatives many of the rebbes of the Nadvorna Dynasty
-The Bears would have to wait until 2000 to play another international , when they played France in the lead-up to the 2000 Rugby League World Cup . have have The Bears wait until 2000 to play another international , when they played France in the lead-up to the 2000 Rugby League World Cup .
-The Bears would have to wait until 2000 to play another international , when they played France in the lead-up to the 2000 Rugby League World Cup . wait wait The Bears to play another international 2000
-The Bears would have to wait until 2000 to play another international , when they played France in the lead-up to the 2000 Rugby League World Cup . play play The Bears another international France in the lead-up to the Rugby League World Cup . 2000
-The Bears would have to wait until 2000 to play another international , when they played France in the lead-up to the 2000 Rugby League World Cup . played played France in the lead-up to the Rugby League World Cup . 2000
-The Bears would have to wait until 2000 to play another international , when they played France in the lead-up to the 2000 Rugby League World Cup . played played another international 2000
-In 1970 , Arad moved to the United States and enrolled at Hofstra University to study industrial management . moved moved Arad 1970 United States to study industrial management
-In 1970 , Arad moved to the United States and enrolled at Hofstra University to study industrial management . enrolled enrolled Arad 1970 Hofstra University to study industrial management
-In 1970 , Arad moved to the United States and enrolled at Hofstra University to study industrial management . study might study Arad 1970 Hofstra University industrial management
-Upon exiting Davidson Township , Sullivan County , Muncy Creek enters Lycoming County and flows along the border between Shrewsbury Township and Penn Township for several miles . exiting exiting Davidson Township , Sullivan County
-Upon exiting Davidson Township , Sullivan County , Muncy Creek enters Lycoming County and flows along the border between Shrewsbury Township and Penn Township for several miles . enters enters Muncy Creek Lycoming County
-Upon exiting Davidson Township , Sullivan County , Muncy Creek enters Lycoming County and flows along the border between Shrewsbury Township and Penn Township for several miles . flows flows along the border between Shrewsbury Township and Penn Township for several miles
-The novel follows Cashel Byron , a world champion prizefighter , as he tries to woo wealthy aristocrat Lydia Carew without revealing his illegal profession . follows follows The novel Cashel Byron as he tries to woo wealthy aristocrat Lydia Carew without revealing his illegal profession
-The novel follows Cashel Byron , a world champion prizefighter , as he tries to woo wealthy aristocrat Lydia Carew without revealing his illegal profession . follows follows The novel a world champion prizefighter as he tries to woo wealthy aristocrat Lydia Carew without revealing his illegal profession
-The novel follows Cashel Byron , a world champion prizefighter , as he tries to woo wealthy aristocrat Lydia Carew without revealing his illegal profession . tries tries Cashel Byron woo wealthy aristocrat Lydia Carew without revealing his illegal profession
-The novel follows Cashel Byron , a world champion prizefighter , as he tries to woo wealthy aristocrat Lydia Carew without revealing his illegal profession . tries tries a world champion prizefighter woo wealthy aristocrat Lydia Carew without revealing his illegal profession
-The novel follows Cashel Byron , a world champion prizefighter , as he tries to woo wealthy aristocrat Lydia Carew without revealing his illegal profession . woo might woo Cashel Byron wealthy aristocrat Lydia Carew without revealing his illegal profession
diff --git a/3-NLP_services/src/Multi2OIE/evaluate/OIE2016_test.txt b/3-NLP_services/src/Multi2OIE/evaluate/OIE2016_test.txt
deleted file mode 100644
index db62a0b..0000000
--- a/3-NLP_services/src/Multi2OIE/evaluate/OIE2016_test.txt
+++ /dev/null
@@ -1,1730 +0,0 @@
-The effect is that lawsuits that might have been barred because they were filed too late could proceed because of the one - year extension . barred might have been barred lawsuits because they were filed too late could proceed because of the one - year extension
-The effect is that lawsuits that might have been barred because they were filed too late could proceed because of the one - year extension . filed could filed lawsuits proceed because of the one - year extension too late
-The effect is that lawsuits that might have been barred because they were filed too late could proceed because of the one - year extension . proceed could proceed lawsuits because of the one - year extension
-In 1988 , a year and a half after Mrs. Marcos and her late husband , Ferdinand Marcos , the ousted president of the Philippines , fled the Philippines for Hawaii , they were charged with racketeering , conspiracy , obstruction of justice and mail fraud in a scheme in which they allegedly embezzled more than $ 100 million from their homeland . ousted ousted president of the Philippines fled the Philippines for Hawaii from the Philippines
-In 1988 , a year and a half after Mrs. Marcos and her late husband , Ferdinand Marcos , the ousted president of the Philippines , fled the Philippines for Hawaii , they were charged with racketeering , conspiracy , obstruction of justice and mail fraud in a scheme in which they allegedly embezzled more than $ 100 million from their homeland . ousted ousted president of the Philippines fled the Philippines for Hawaii from homeland
-In 1988 , a year and a half after Mrs. Marcos and her late husband , Ferdinand Marcos , the ousted president of the Philippines , fled the Philippines for Hawaii , they were charged with racketeering , conspiracy , obstruction of justice and mail fraud in a scheme in which they allegedly embezzled more than $ 100 million from their homeland . ousted ousted Ferdinand Marcos fled the Philippines for Hawaii from the Philippines
-In 1988 , a year and a half after Mrs. Marcos and her late husband , Ferdinand Marcos , the ousted president of the Philippines , fled the Philippines for Hawaii , they were charged with racketeering , conspiracy , obstruction of justice and mail fraud in a scheme in which they allegedly embezzled more than $ 100 million from their homeland . ousted ousted Ferdinand Marcos fled the Philippines for Hawaii from homeland
-In 1988 , a year and a half after Mrs. Marcos and her late husband , Ferdinand Marcos , the ousted president of the Philippines , fled the Philippines for Hawaii , they were charged with racketeering , conspiracy , obstruction of justice and mail fraud in a scheme in which they allegedly embezzled more than $ 100 million from their homeland . ousted ousted her late husband fled the Philippines for Hawaii from the Philippines
-In 1988 , a year and a half after Mrs. Marcos and her late husband , Ferdinand Marcos , the ousted president of the Philippines , fled the Philippines for Hawaii , they were charged with racketeering , conspiracy , obstruction of justice and mail fraud in a scheme in which they allegedly embezzled more than $ 100 million from their homeland . ousted ousted her late husband fled the Philippines for Hawaii from homeland
-In 1988 , a year and a half after Mrs. Marcos and her late husband , Ferdinand Marcos , the ousted president of the Philippines , fled the Philippines for Hawaii , they were charged with racketeering , conspiracy , obstruction of justice and mail fraud in a scheme in which they allegedly embezzled more than $ 100 million from their homeland . fled fled Mrs. Marcos and her late husband , Ferdinand Marcos , the ousted president of the Philippines to Hawaii from the Philippines In 1988 , a year and a half after
-In 1988 , a year and a half after Mrs. Marcos and her late husband , Ferdinand Marcos , the ousted president of the Philippines , fled the Philippines for Hawaii , they were charged with racketeering , conspiracy , obstruction of justice and mail fraud in a scheme in which they allegedly embezzled more than $ 100 million from their homeland . fled fled Mrs. Marcos and her late husband , Ferdinand Marcos , the ousted president of the Philippines to Hawaii from homeland In 1988 , a year and a half after
-In 1988 , a year and a half after Mrs. Marcos and her late husband , Ferdinand Marcos , the ousted president of the Philippines , fled the Philippines for Hawaii , they were charged with racketeering , conspiracy , obstruction of justice and mail fraud in a scheme in which they allegedly embezzled more than $ 100 million from their homeland . charged charged with Mrs. Marcos and her late husband , Ferdinand Marcos , the ousted president of the Philippines racketeering , conspiracy , obstruction of justice and mail fraud In 1988
-In 1988 , a year and a half after Mrs. Marcos and her late husband , Ferdinand Marcos , the ousted president of the Philippines , fled the Philippines for Hawaii , they were charged with racketeering , conspiracy , obstruction of justice and mail fraud in a scheme in which they allegedly embezzled more than $ 100 million from their homeland . embezzled embezzled Mrs. Marcos and her late husband , Ferdinand Marcos , the ousted president of the Philippines more than $ 100 million from their homeland from the Philippines $ 100 million
-In 1988 , a year and a half after Mrs. Marcos and her late husband , Ferdinand Marcos , the ousted president of the Philippines , fled the Philippines for Hawaii , they were charged with racketeering , conspiracy , obstruction of justice and mail fraud in a scheme in which they allegedly embezzled more than $ 100 million from their homeland . embezzled embezzled Mrs. Marcos and her late husband , Ferdinand Marcos , the ousted president of the Philippines more than $ 100 million from their homeland from homeland $ 100 million
-The latest 10 - year notes ended at about 100 16\/32 to yield 7.90 % , compared with 100 11\/32 to yield 7.93 % on Friday . ended ended The latest 10 - year notes at about 100 16\/32
-The latest 10 - year notes ended at about 100 16\/32 to yield 7.90 % , compared with 100 11\/32 to yield 7.93 % on Friday . yield yield The latest 10 - year notes 7.90 %
-The latest 10 - year notes ended at about 100 16\/32 to yield 7.90 % , compared with 100 11\/32 to yield 7.93 % on Friday . compared compared with 100 16\/32 100 11\/32
-The latest 10 - year notes ended at about 100 16\/32 to yield 7.90 % , compared with 100 11\/32 to yield 7.93 % on Friday . compared compared with 7.93 % 100 11\/32
-The latest 10 - year notes ended at about 100 16\/32 to yield 7.90 % , compared with 100 11\/32 to yield 7.93 % on Friday . compared compared with 100 16\/32 7.90 %
-The latest 10 - year notes ended at about 100 16\/32 to yield 7.90 % , compared with 100 11\/32 to yield 7.93 % on Friday . compared compared with 7.93 % 7.90 %
-The latest 10 - year notes ended at about 100 16\/32 to yield 7.90 % , compared with 100 11\/32 to yield 7.93 % on Friday . yield yield 10 - year notes 7.93 % on Friday
-The two leaders are expected to discuss changes sweeping the East bloc as well as human - rights issues , regional disputes and economic cooperation . expected expected to The two leaders discuss changes sweeping the East bloc as well as human - rights issues , regional disputes and economic cooperation
-The two leaders are expected to discuss changes sweeping the East bloc as well as human - rights issues , regional disputes and economic cooperation . discuss might discuss The two leaders changes sweeping the East bloc as well as human - rights issues , regional disputes and economic cooperation
-The two leaders are expected to discuss changes sweeping the East bloc as well as human - rights issues , regional disputes and economic cooperation . sweeping sweeping changes the East bloc
-The centerpiece of that complex , the Landmark Tower , will be Japan 's tallest building when it is completed in 1993 . completed will be completed the Landmark Tower in 1993 Japan
-The centerpiece of that complex , the Landmark Tower , will be Japan 's tallest building when it is completed in 1993 . completed will be completed The centerpiece of that complex in 1993 Japan
-The centerpiece of that complex , the Landmark Tower , will be Japan 's tallest building when it is completed in 1993 . completed will be completed Japan 's tallest building in 1993 Japan
-Warner Communications Inc. , which is being acquired by Time Warner , has filed a $ 1 billion breach - of - contract suit against Sony and the two producers . acquired will acquired Time Warner Warner Communications Inc.
-Warner Communications Inc. , which is being acquired by Time Warner , has filed a $ 1 billion breach - of - contract suit against Sony and the two producers . filed filed Warner Communications Inc. a $ 1 billion breach - of - contract suit against Sony and the two producers $ 1 billion
-The field took off in 1985 after scientists at Britain 's Sheffield University developed a handy , compact magnet for brain stimulation . took took off The field off in 1985 off scientists at Britain 's Sheffield University developed a handy , compact magnet for brain stimulation
-The field took off in 1985 after scientists at Britain 's Sheffield University developed a handy , compact magnet for brain stimulation . developed developed scientists a handy , compact magnet for brain stimulation in 1985 Britain 's Sheffield University
-Milk sold to the nation 's dairy plants and dealers averaged $ 14.50 for each hundred pounds , up 50 cents from September and up $ 1.50 from October 1988 , the department said . sold sold the nation 's dairy plants and dealers Milk up 50 cents from September for $ 14.50 for each hundred pounds
-Milk sold to the nation 's dairy plants and dealers averaged $ 14.50 for each hundred pounds , up 50 cents from September and up $ 1.50 from October 1988 , the department said . sold sold the nation 's dairy plants and dealers Milk up $ 1.50 from October 1988 for $ 14.50 for each hundred pounds
-Milk sold to the nation 's dairy plants and dealers averaged $ 14.50 for each hundred pounds , up 50 cents from September and up $ 1.50 from October 1988 , the department said . averaged averaged Milk sold to the nation 's dairy plants and dealers averaged for $ 14.50 for each hundred pounds
-Milk sold to the nation 's dairy plants and dealers averaged $ 14.50 for each hundred pounds , up 50 cents from September and up $ 1.50 from October 1988 , the department said . said said the department Milk sold to the nation 's dairy plants and dealers averaged $ 14.50 for each hundred pounds , up 50 cents from September and up $ 1.50 from October 1988
-After years of talking about selling in Japan , more and more U.S. companies are seriously pouring in . talking talked about selling in Japan
-After years of talking about selling in Japan , more and more U.S. companies are seriously pouring in . selling being sold in Japan
-After years of talking about selling in Japan , more and more U.S. companies are seriously pouring in . pouring pouring in more and more U.S. companies seriously After years of talking about selling in Japan
-Nixon , on the fourth day of a private visit to China , said that damage to Sino - U.S. relations was `` very great , '' calling the situation `` the most serious '' since 1972 . said said Nixon that damage to Sino - U.S. relations was `` very great , '' calling the situation `` the most serious '' since 1972 on the fourth day of a private visit to China
-Nixon , on the fourth day of a private visit to China , said that damage to Sino - U.S. relations was `` very great , '' calling the situation `` the most serious '' since 1972 . calling calling Nixon the situation `` the most serious '' since 1972 on the fourth day of a private visit to China
-THE CHIEF NURSING officer can be responsible for more than 1,000 employees and at least one - third of a hospital 's budget ; a head nurse typically oversees up to 80 employees and $ 8 million . oversees oversees a head nurse up to 80 employees and $ 8 million $ 8 million
-But yesterday , Mr. Carpenter said big institutional investors , which he would n't identify , `` told us they would n't do business with firms '' that continued to do index arbitrage for their own accounts . said said Mr. Carpenter big institutional investors , which he would n't identify , `` told us they would n't do business with firms '' that continued to do index arbitrage for their own accounts yesterday
-But yesterday , Mr. Carpenter said big institutional investors , which he would n't identify , `` told us they would n't do business with firms '' that continued to do index arbitrage for their own accounts . identify would n't identify Mr. Carpenter big institutional investors
-But yesterday , Mr. Carpenter said big institutional investors , which he would n't identify , `` told us they would n't do business with firms '' that continued to do index arbitrage for their own accounts . told told Mr. Carpenter they would n't do business with firms '' that continued to do index arbitrage for their own accounts big institutional investors
-But yesterday , Mr. Carpenter said big institutional investors , which he would n't identify , `` told us they would n't do business with firms '' that continued to do index arbitrage for their own accounts . do would n't do big institutional investors business with firms '' that continued to do index arbitrage for their own accounts
-But yesterday , Mr. Carpenter said big institutional investors , which he would n't identify , `` told us they would n't do business with firms '' that continued to do index arbitrage for their own accounts . continued had continued firms do index arbitrage for their own accounts
-But yesterday , Mr. Carpenter said big institutional investors , which he would n't identify , `` told us they would n't do business with firms '' that continued to do index arbitrage for their own accounts . do would do firms index arbitrage for their own accounts
-On a recent afternoon , Mr. Baker and a reporter go ghost - busting , visiting Kathleen Stinnett , a Lexington woman who has phoned the University of Kentucky to report mysterious happenings in her house . go go Mr. Baker and a reporter ghost - busting On a recent afternoon visiting Kathleen Stinnett , a Lexington woman who has phoned the University of Kentucky to report mysterious happenings in her house
-On a recent afternoon , Mr. Baker and a reporter go ghost - busting , visiting Kathleen Stinnett , a Lexington woman who has phoned the University of Kentucky to report mysterious happenings in her house . ghost ghost Mr. Baker and a reporter visiting Kathleen Stinnett , a Lexington woman who has phoned the University of Kentucky to report mysterious happenings in her house On a recent afternoon
-On a recent afternoon , Mr. Baker and a reporter go ghost - busting , visiting Kathleen Stinnett , a Lexington woman who has phoned the University of Kentucky to report mysterious happenings in her house . busting busting Mr. Baker and a reporter ghost On a recent afternoon
-On a recent afternoon , Mr. Baker and a reporter go ghost - busting , visiting Kathleen Stinnett , a Lexington woman who has phoned the University of Kentucky to report mysterious happenings in her house . visiting visiting Mr. Baker and a reporter Kathleen Stinnett On a recent afternoon mysterious happenings in her house
-On a recent afternoon , Mr. Baker and a reporter go ghost - busting , visiting Kathleen Stinnett , a Lexington woman who has phoned the University of Kentucky to report mysterious happenings in her house . visiting visiting Mr. Baker and a reporter Kathleen Stinnett On a recent afternoon ghost - busting
-On a recent afternoon , Mr. Baker and a reporter go ghost - busting , visiting Kathleen Stinnett , a Lexington woman who has phoned the University of Kentucky to report mysterious happenings in her house . visiting visiting Mr. Baker and a reporter a Lexington woman On a recent afternoon mysterious happenings in her house
-On a recent afternoon , Mr. Baker and a reporter go ghost - busting , visiting Kathleen Stinnett , a Lexington woman who has phoned the University of Kentucky to report mysterious happenings in her house . visiting visiting Mr. Baker and a reporter a Lexington woman On a recent afternoon ghost - busting
-On a recent afternoon , Mr. Baker and a reporter go ghost - busting , visiting Kathleen Stinnett , a Lexington woman who has phoned the University of Kentucky to report mysterious happenings in her house . phoned phoned Kathleen Stinnett the University of Kentucky to report mysterious happenings in her house
-On a recent afternoon , Mr. Baker and a reporter go ghost - busting , visiting Kathleen Stinnett , a Lexington woman who has phoned the University of Kentucky to report mysterious happenings in her house . phoned phoned a Lexington woman the University of Kentucky to report mysterious happenings in her house
-On a recent afternoon , Mr. Baker and a reporter go ghost - busting , visiting Kathleen Stinnett , a Lexington woman who has phoned the University of Kentucky to report mysterious happenings in her house . report report Kathleen Stinnett mysterious happenings in her house to the University of Kentucky phoned
-On a recent afternoon , Mr. Baker and a reporter go ghost - busting , visiting Kathleen Stinnett , a Lexington woman who has phoned the University of Kentucky to report mysterious happenings in her house . report report a Lexington woman mysterious happenings in her house to the University of Kentucky phoned
-The surprise announcement came after the IRS broke off negotiations with Mr. Hunt on a settlement of the one - time tycoon 's personal bankruptcy case . came came The surprise announcement after the IRS broke off negotiations with Mr. Hunt
-The surprise announcement came after the IRS broke off negotiations with Mr. Hunt on a settlement of the one - time tycoon 's personal bankruptcy case . broke broke the IRS off negotiations with Mr. Hunt
-The surprise announcement came after the IRS broke off negotiations with Mr. Hunt on a settlement of the one - time tycoon 's personal bankruptcy case . broke broke the IRS off negotiations with the one - time tycoon
-For the record , Jeffrey Kaufman , an attorney for Fireman 's Fund , said he was `` rattled -- both literally and figuratively . '' said said Jeffrey Kaufman he was `` rattled -- both literally and figuratively . ''
-For the record , Jeffrey Kaufman , an attorney for Fireman 's Fund , said he was `` rattled -- both literally and figuratively . '' rattled rattled Jeffrey Kaufman both literally and figuratively
-Hani Zayadi was appointed president and chief executive officer of this financially troubled department store chain , effective Nov. 15 , succeeding Frank Robertson , who is retiring early . appointed appointed Hani Zayadi president and chief executive officer of this financially troubled department store chain of this financially troubled department store chain
-Hani Zayadi was appointed president and chief executive officer of this financially troubled department store chain , effective Nov. 15 , succeeding Frank Robertson , who is retiring early . troubled troubled department store chain financially
-Hani Zayadi was appointed president and chief executive officer of this financially troubled department store chain , effective Nov. 15 , succeeding Frank Robertson , who is retiring early . succeeding will succeeding Frank Robertson Hani Zayadi Nov. 15 retiring early president and chief executive officer of this financially troubled department store chain
-Hani Zayadi was appointed president and chief executive officer of this financially troubled department store chain , effective Nov. 15 , succeeding Frank Robertson , who is retiring early . retiring will retiring Frank Robertson president and chief executive officer of this financially troubled department store chain Nov. 15
-With more than 15 million exercise bikes sold in the past five years , he adds , `` a lot of garages , basements and attics must be populated with them . '' sold sold more than 15 million exercise bikes in the past five years
-With real estate experts Olympia & York and Samuel Zell 's Itel owning close to 40 % of Santa Fe 's stock , management was under pressure -- in a favored phrase of Wall Street -- to quickly `` maximize values . '' owning owning Olympia & York and Samuel Zell 's Itel close to 40 % of Santa Fe 's stock
-With real estate experts Olympia & York and Samuel Zell 's Itel owning close to 40 % of Santa Fe 's stock , management was under pressure -- in a favored phrase of Wall Street -- to quickly `` maximize values . '' maximize maximized values quickly
-He discovered a 75 - cent discrepancy in the charges made to various departments for computer time and traced it to a user named `` Hunter , '' who had no valid billing address . made made Hunter a 75 - cent discrepancy in the charges made to various departments for computer time
-He discovered a 75 - cent discrepancy in the charges made to various departments for computer time and traced it to a user named `` Hunter , '' who had no valid billing address . made made user a 75 - cent discrepancy in the charges made to various departments for computer time
-He discovered a 75 - cent discrepancy in the charges made to various departments for computer time and traced it to a user named `` Hunter , '' who had no valid billing address . named named user Hunter
-He discovered a 75 - cent discrepancy in the charges made to various departments for computer time and traced it to a user named `` Hunter , '' who had no valid billing address . had does n't have user valid billing address
-He discovered a 75 - cent discrepancy in the charges made to various departments for computer time and traced it to a user named `` Hunter , '' who had no valid billing address . had does n't have Hunter valid billing address
-Mr. Guber and Mr. Peters also almost certainly would n't be able to participate in future sequels to `` Batman , '' the blockbuster hit they produced for Warner . participate would n't participate in Mr. Guber future sequels to `` Batman , ''
-Mr. Guber and Mr. Peters also almost certainly would n't be able to participate in future sequels to `` Batman , '' the blockbuster hit they produced for Warner . participate would n't participate in Mr. Peters future sequels to `` Batman , ''
-Mr. Guber and Mr. Peters also almost certainly would n't be able to participate in future sequels to `` Batman , '' the blockbuster hit they produced for Warner . produced had produced Mr. Guber Batman for Warner
-Mr. Guber and Mr. Peters also almost certainly would n't be able to participate in future sequels to `` Batman , '' the blockbuster hit they produced for Warner . produced had produced Mr. Peters Batman for Warner
-Mr. Guber and Mr. Peters also almost certainly would n't be able to participate in future sequels to `` Batman , '' the blockbuster hit they produced for Warner . produced had produced Mr. Guber the blockbuster hit for Warner
-Mr. Guber and Mr. Peters also almost certainly would n't be able to participate in future sequels to `` Batman , '' the blockbuster hit they produced for Warner . produced had produced Mr. Peters the blockbuster hit for Warner
-Norris McLaughlin is a general - practice firm that has expanded recently into such specialties as banking , labor and environmental work . expanded expanded Norris McLaughlin recently into such specialties as banking , labor and environmental work
-Norris McLaughlin is a general - practice firm that has expanded recently into such specialties as banking , labor and environmental work . expanded expanded a general - practice firm recently into such specialties as banking , labor and environmental work
-The conviction stemmed from federal charges of consumer fraud for sale of phony infant apple juice between 1978 and 1983 . stemmed stemmed The conviction from federal charges
-Repeat customers also can purchase luxury items at reduced prices . purchase can purchase Repeat customers luxury items at reduced prices at reduced prices
-Repeat customers also can purchase luxury items at reduced prices . reduced reduced prices
-Metromedia , headed by John W. Kluge , has interests in telecommunications , robotic painting , computer software , restaurants and entertainment . headed headed John W. Kluge Metromedia
-Metromedia , headed by John W. Kluge , has interests in telecommunications , robotic painting , computer software , restaurants and entertainment . has has Metromedia interests in telecommunications , robotic painting , computer software , restaurants and entertainment
-Mrs. Marcos has n't admitted that she filed any documents such as those sought by the government . admitted has n't admitted Mrs. Marcos that she filed any documents such as those sought by the government
-Mrs. Marcos has n't admitted that she filed any documents such as those sought by the government . filed might not have filed Mrs. Marcos any documents such as those sought by the government
-Mrs. Marcos has n't admitted that she filed any documents such as those sought by the government . sought sought the government documents Mrs. Marcos
-By increasing the number of PCs it uses from 66 to 1,000 , Omron Tateishi Electronics Co. , of Kyoto , hopes not only to make certain tasks easier but also to transform the way the company is run . increasing increasing Omron Tateishi Electronics Co. the number of PCs it uses from 66 to 1,000 to make certain tasks easier but also to transform the way the company is run . to 1,000 from 66
-By increasing the number of PCs it uses from 66 to 1,000 , Omron Tateishi Electronics Co. , of Kyoto , hopes not only to make certain tasks easier but also to transform the way the company is run . increasing increasing company the number of PCs it uses from 66 to 1,000 to make certain tasks easier but also to transform the way the company is run . to 1,000 from 66
-By increasing the number of PCs it uses from 66 to 1,000 , Omron Tateishi Electronics Co. , of Kyoto , hopes not only to make certain tasks easier but also to transform the way the company is run . uses uses Omron Tateishi Electronics Co. PCs to make certain tasks easier but also to transform the way the company is run .
-By increasing the number of PCs it uses from 66 to 1,000 , Omron Tateishi Electronics Co. , of Kyoto , hopes not only to make certain tasks easier but also to transform the way the company is run . uses uses company PCs to make certain tasks easier but also to transform the way the company is run .
-By increasing the number of PCs it uses from 66 to 1,000 , Omron Tateishi Electronics Co. , of Kyoto , hopes not only to make certain tasks easier but also to transform the way the company is run . hopes hopes Omron Tateishi Electronics Co. make certain tasks easier but also to transform the way the company is run
-By increasing the number of PCs it uses from 66 to 1,000 , Omron Tateishi Electronics Co. , of Kyoto , hopes not only to make certain tasks easier but also to transform the way the company is run . hopes hopes company make certain tasks easier but also to transform the way the company is run
-By increasing the number of PCs it uses from 66 to 1,000 , Omron Tateishi Electronics Co. , of Kyoto , hopes not only to make certain tasks easier but also to transform the way the company is run . make will make Omron Tateishi Electronics Co. certain tasks easier By increasing the number of PCs it uses from 66 to 1,000
-By increasing the number of PCs it uses from 66 to 1,000 , Omron Tateishi Electronics Co. , of Kyoto , hopes not only to make certain tasks easier but also to transform the way the company is run . make will make company certain tasks easier By increasing the number of PCs it uses from 66 to 1,000
-By increasing the number of PCs it uses from 66 to 1,000 , Omron Tateishi Electronics Co. , of Kyoto , hopes not only to make certain tasks easier but also to transform the way the company is run . transform will transform Omron Tateishi Electronics Co. the way the company is run By increasing the number of PCs it uses from 66 to 1,000
-By increasing the number of PCs it uses from 66 to 1,000 , Omron Tateishi Electronics Co. , of Kyoto , hopes not only to make certain tasks easier but also to transform the way the company is run . transform will transform company the way the company is run By increasing the number of PCs it uses from 66 to 1,000
-By increasing the number of PCs it uses from 66 to 1,000 , Omron Tateishi Electronics Co. , of Kyoto , hopes not only to make certain tasks easier but also to transform the way the company is run . run will run Omron Tateishi Electronics Co. By increasing the number of PCs it uses from 66 to 1,000
-By increasing the number of PCs it uses from 66 to 1,000 , Omron Tateishi Electronics Co. , of Kyoto , hopes not only to make certain tasks easier but also to transform the way the company is run . run will run company By increasing the number of PCs it uses from 66 to 1,000
-Standard & Poor 's 500 - Stock Index climbed 5.29 to 340.36 , the Dow Jones Equity Market Index added 4.70 to 318.79 and the New York Stock Exchange Composite Index climbed 2.65 to climbed climbed Standard & Poor 's 500 - Stock Index to 340.36 5.29
-Standard & Poor 's 500 - Stock Index climbed 5.29 to 340.36 , the Dow Jones Equity Market Index added 4.70 to 318.79 and the New York Stock Exchange Composite Index climbed 2.65 to added added the Dow Jones Equity Market Index 4.70 to 318.79
-Standard & Poor 's 500 - Stock Index climbed 5.29 to 340.36 , the Dow Jones Equity Market Index added 4.70 to 318.79 and the New York Stock Exchange Composite Index climbed 2.65 to climbed climbed the New York Stock Exchange Composite Index 2.65
-And do n't expect many complete games by pitchers -- perhaps three out of 288 , laughs Mr. Fingers , the former Oakland reliever . expect should n't expect Mr. Fingers many complete games by pitchers perhaps three out of 288
-And do n't expect many complete games by pitchers -- perhaps three out of 288 , laughs Mr. Fingers , the former Oakland reliever . expect should n't expect former Oakland reliever . many complete games by pitchers perhaps three out of 288
-And do n't expect many complete games by pitchers -- perhaps three out of 288 , laughs Mr. Fingers , the former Oakland reliever . laughs laughs Mr. Fingers do n't expect many complete games by pitchers -- perhaps three out of 288
-And do n't expect many complete games by pitchers -- perhaps three out of 288 , laughs Mr. Fingers , the former Oakland reliever . laughs laughs former Oakland reliever . do n't expect many complete games by pitchers -- perhaps three out of 288
-Although the Treasury will announce details of the November refunding tomorrow , it could be delayed if Congress and President Bush fail to increase the Treasury 's borrowing capacity . announce will announce the Treasury details of the November refunding tomorrow
-Although the Treasury will announce details of the November refunding tomorrow , it could be delayed if Congress and President Bush fail to increase the Treasury 's borrowing capacity . delayed could be delayed announce details of the November refunding tomorrow
-Although the Treasury will announce details of the November refunding tomorrow , it could be delayed if Congress and President Bush fail to increase the Treasury 's borrowing capacity . fail might fail Congress and President Bush increase the Treasury 's borrowing capacity .
-Although the Treasury will announce details of the November refunding tomorrow , it could be delayed if Congress and President Bush fail to increase the Treasury 's borrowing capacity . increase might not increase Congress and President Bush the Treasury 's borrowing capacity .
-To increase their share of that business , jewelry makers such as Crystal Brands Inc. 's Trifari and Monet units and Swank Inc. , maker of Anne Klein jewelry , are launching new lines with as much fanfare as the fragrance companies . increase will increase their share of that business
-To increase their share of that business , jewelry makers such as Crystal Brands Inc. 's Trifari and Monet units and Swank Inc. , maker of Anne Klein jewelry , are launching new lines with as much fanfare as the fragrance companies . launching launching jewelry makers such as Crystal Brands Inc. 's Trifari and Monet units and Swank Inc. , maker of Anne Klein jewelry new lines with as much fanfare as the fragrance companies . To increase their share of that business
-At Giant Bicycle Inc. , Rancho Dominguez , Calif. , sales have tripled since the company entered the U.S. mountain - bike business in 1987 . tripled tripled sales since the company entered the U.S. mountain - bike business At Giant Bicycle Inc.
-At Giant Bicycle Inc. , Rancho Dominguez , Calif. , sales have tripled since the company entered the U.S. mountain - bike business in 1987 . tripled tripled sales in 1987 At Giant Bicycle Inc.
-At Giant Bicycle Inc. , Rancho Dominguez , Calif. , sales have tripled since the company entered the U.S. mountain - bike business in 1987 . entered entered Giant Bicycle Inc. in 1987 the U.S. mountain - bike business
-At Giant Bicycle Inc. , Rancho Dominguez , Calif. , sales have tripled since the company entered the U.S. mountain - bike business in 1987 . entered entered the company in 1987 the U.S. mountain - bike business
-First Boston incurred millions of dollars of losses on Campeau securities it owned as well as on special securities it could n't sell . incurred incurred First Boston millions of dollars of losses
-First Boston incurred millions of dollars of losses on Campeau securities it owned as well as on special securities it could n't sell . owned owned First Boston Campeau securities
-First Boston incurred millions of dollars of losses on Campeau securities it owned as well as on special securities it could n't sell . sell could n't sell First Boston special securities
-However , a Canadian Embassy official in Tel Aviv said that Canada was unlikely to sell the Candu heavy - water reactor to Israel since Israel has n't signed the Nuclear Non - Proliferation Treaty . said said a Canadian Embassy official Canada was unlikely to sell the Candu heavy - water reactor to Israel since Israel has n't signed the Nuclear Non - Proliferation Treaty Tel Aviv
-However , a Canadian Embassy official in Tel Aviv said that Canada was unlikely to sell the Candu heavy - water reactor to Israel since Israel has n't signed the Nuclear Non - Proliferation Treaty . sell might not sell Canada the Candu heavy - water reactor since Israel has n't signed the Nuclear Non - Proliferation Treaty to Israel
-However , a Canadian Embassy official in Tel Aviv said that Canada was unlikely to sell the Candu heavy - water reactor to Israel since Israel has n't signed the Nuclear Non - Proliferation Treaty . signed has n't signed Israel the Nuclear Non - Proliferation Treaty
-Takeover stock traders noted that with the junk - bond market in disarray , Georgia - Pacific 's bid is an indication of where the takeover game is headed : namely , industrial companies can continue bidding for one another , but financial buyers such as leveraged buy - out firms will be at a disadvantage in obtaining financing . noted noted Takeover stock traders with the junk - bond market in disarray , Georgia - Pacific 's bid is an indication of where the takeover game is headed : namely , industrial companies can continue bidding for one another , but financial buyers such as leveraged buy - out firms will be at a disadvantage in obtaining financing .
-Takeover stock traders noted that with the junk - bond market in disarray , Georgia - Pacific 's bid is an indication of where the takeover game is headed : namely , industrial companies can continue bidding for one another , but financial buyers such as leveraged buy - out firms will be at a disadvantage in obtaining financing . headed headed to takeover game industrial companies can continue bidding for one another , but financial buyers such as leveraged buy - out firms will be at a disadvantage in obtaining financing . the junk - bond market in disarray
-Takeover stock traders noted that with the junk - bond market in disarray , Georgia - Pacific 's bid is an indication of where the takeover game is headed : namely , industrial companies can continue bidding for one another , but financial buyers such as leveraged buy - out firms will be at a disadvantage in obtaining financing . continue can continue industrial companies industrial companies can continue bidding for one another
-Takeover stock traders noted that with the junk - bond market in disarray , Georgia - Pacific 's bid is an indication of where the takeover game is headed : namely , industrial companies can continue bidding for one another , but financial buyers such as leveraged buy - out firms will be at a disadvantage in obtaining financing . bidding can bidding industrial companies for one another
-Takeover stock traders noted that with the junk - bond market in disarray , Georgia - Pacific 's bid is an indication of where the takeover game is headed : namely , industrial companies can continue bidding for one another , but financial buyers such as leveraged buy - out firms will be at a disadvantage in obtaining financing . bidding can bidding industrial companies for industrial companies
-Takeover stock traders noted that with the junk - bond market in disarray , Georgia - Pacific 's bid is an indication of where the takeover game is headed : namely , industrial companies can continue bidding for one another , but financial buyers such as leveraged buy - out firms will be at a disadvantage in obtaining financing . obtaining might not obtaining financial buyers such as leveraged buy - out firms financing junk - bond market in disarray
-Prime Minister Lee Kuan Yew , Singapore 's leader and one of Asia 's leading statesmen for 30 years , recently announced his intention to retire next year -- though not necessarily to end his influence . leading been leading Prime Minister Lee Kuan Yew 30 years
-Prime Minister Lee Kuan Yew , Singapore 's leader and one of Asia 's leading statesmen for 30 years , recently announced his intention to retire next year -- though not necessarily to end his influence . announced announced Prime Minister Lee Kuan Yew his intention to retire next year -- though not necessarily to end his influence recently
-Prime Minister Lee Kuan Yew , Singapore 's leader and one of Asia 's leading statesmen for 30 years , recently announced his intention to retire next year -- though not necessarily to end his influence . retire will retire Prime Minister Lee Kuan Yew next year
-Prime Minister Lee Kuan Yew , Singapore 's leader and one of Asia 's leading statesmen for 30 years , recently announced his intention to retire next year -- though not necessarily to end his influence . end would n't end Prime Minister Lee Kuan Yew his influence
-`` Business across the country is spending more time addressing this issue , '' says Sen. Edward Kennedy ( D. , Mass . ) . spending spending Business across the country more time addressing this issue across the country
-`` Business across the country is spending more time addressing this issue , '' says Sen. Edward Kennedy ( D. , Mass . ) . addressing addressing Business this issue spending more time
-`` Business across the country is spending more time addressing this issue , '' says Sen. Edward Kennedy ( D. , Mass . ) . says says Sen. Edward Kennedy Business across the country is spending more time addressing this issue
-`` Business across the country is spending more time addressing this issue , '' says Sen. Edward Kennedy ( D. , Mass . ) . says says D. , Mass . Business across the country is spending more time addressing this issue
-But amid the two dozen bureaucrats and secretaries sits only one real - life PC . sits sits bureaucrats and secretaries one real - life PC amid the two dozen bureaucrats and secretaries two dozen
-Mr. Ridley 's decision fires the starting pistol for perhaps a costly contest between the world 's auto giants for Britain 's leading luxury - car maker . fires fires Mr. Ridley 's decision the starting pistol for perhaps a costly contest between the world 's auto giants for Britain 's leading luxury - car maker for perhaps a costly contest between the world 's auto giants for Britain 's leading luxury - car maker
-Mr. Ridley 's decision fires the starting pistol for perhaps a costly contest between the world 's auto giants for Britain 's leading luxury - car maker . starting starting for perhaps a costly contest between the world 's auto giants for Britain 's leading luxury - car maker pistol
-`` Now everything '' -- such as program trading and wide stock market swings -- `` that everyone had pushed back in their consciousness is just sitting right there . '' pushed pushed everyone back in their consciousness
-`` Now everything '' -- such as program trading and wide stock market swings -- `` that everyone had pushed back in their consciousness is just sitting right there . '' sitting been sitting `` Now everything '' -- such as program trading and wide stock market swings -- `` that everyone had pushed back in their consciousness right there
-Mr. Phelan is an adroit diplomat who normally appears to be solidly in control of the Big Board 's factions . appears appears Mr. Phelan to be solidly in control of the Big Board 's factions normally
-Mr. Phelan is an adroit diplomat who normally appears to be solidly in control of the Big Board 's factions . appears appears an adroit diplomat to be solidly in control of the Big Board 's factions normally
-Among other things , they said , Mr. Azoff would develop musical acts for a new record label . develop would develop Mr. Azoff musical acts for a new record label
-A year earlier UniFirst earned $ 2.4 million , or 24 cents a share adjusted for the split . earned earned UniFirst $ 2.4 million A year earlier for the split
-A year earlier UniFirst earned $ 2.4 million , or 24 cents a share adjusted for the split . earned earned UniFirst 24 cents a share A year earlier for the split
-A year earlier UniFirst earned $ 2.4 million , or 24 cents a share adjusted for the split . adjusted adjusted a share for the split 24 cents a share
-The Lone Star Steel lawsuit also asks the court to rule that Lone Star Technologies is jointly responsible for a $ 4.5 million Lone Star Steel pension payment that was due , but was n't paid , in September and that the parent company ca n't recover the amount from its subsidiary if the parent company makes the payment . asks asks The Lone Star Steel lawsuit the court to rule that Lone Star Technologies is jointly responsible for a $ 4.5 million Lone Star Steel pension payment that was due , but was n't paid , in September and that the parent company ca n't recover the amount from its subsidiary if the parent company makes the payment
-The Lone Star Steel lawsuit also asks the court to rule that Lone Star Technologies is jointly responsible for a $ 4.5 million Lone Star Steel pension payment that was due , but was n't paid , in September and that the parent company ca n't recover the amount from its subsidiary if the parent company makes the payment . rule will rule the court that Lone Star Technologies is jointly responsible for a $ 4.5 million Lone Star Steel pension payment that was due , but was n't paid , in September and that the parent company ca n't recover the amount from its subsidiary if the parent company makes the payment
-The Lone Star Steel lawsuit also asks the court to rule that Lone Star Technologies is jointly responsible for a $ 4.5 million Lone Star Steel pension payment that was due , but was n't paid , in September and that the parent company ca n't recover the amount from its subsidiary if the parent company makes the payment . paid was n't paid Lone Star Technologies a $ 4.5 million Lone Star Steel pension payment that was due $ 4.5 million
-The Lone Star Steel lawsuit also asks the court to rule that Lone Star Technologies is jointly responsible for a $ 4.5 million Lone Star Steel pension payment that was due , but was n't paid , in September and that the parent company ca n't recover the amount from its subsidiary if the parent company makes the payment . recover could n't recover the parent company the amount from its subsidiary if the parent company makes the payment
-The Lone Star Steel lawsuit also asks the court to rule that Lone Star Technologies is jointly responsible for a $ 4.5 million Lone Star Steel pension payment that was due , but was n't paid , in September and that the parent company ca n't recover the amount from its subsidiary if the parent company makes the payment . makes makes the parent company the payment
-Coca - Cola Co. , aiming to boost soft - drink volume in Singapore , said it is discussing a joint venture with Fraser & Neave Ltd. , its bottling franchisee in that country . aiming aiming for Coca - Cola Co. boost soft - drink volume in Singapore Singapore boost soft - drink volume
-Coca - Cola Co. , aiming to boost soft - drink volume in Singapore , said it is discussing a joint venture with Fraser & Neave Ltd. , its bottling franchisee in that country . boost may boost Coca - Cola Co. soft - drink volume in Singapore Singapore joint venture with Fraser & Neave Ltd. , its bottling franchisee in that country .
-Coca - Cola Co. , aiming to boost soft - drink volume in Singapore , said it is discussing a joint venture with Fraser & Neave Ltd. , its bottling franchisee in that country . said said Coca - Cola Co. it is discussing a joint venture with Fraser & Neave Ltd. , its bottling franchisee in that country . aiming to boost soft - drink volume in Singapore
-Coca - Cola Co. , aiming to boost soft - drink volume in Singapore , said it is discussing a joint venture with Fraser & Neave Ltd. , its bottling franchisee in that country . discussing discussing Coca - Cola Co. joint venture boost soft - drink volume in Singapore
-Coca - Cola Co. , aiming to boost soft - drink volume in Singapore , said it is discussing a joint venture with Fraser & Neave Ltd. , its bottling franchisee in that country . discussing discussing Fraser & Neave Ltd. joint venture boost soft - drink volume in Singapore
-Coca - Cola Co. , aiming to boost soft - drink volume in Singapore , said it is discussing a joint venture with Fraser & Neave Ltd. , its bottling franchisee in that country . discussing discussing bottling franchisee joint venture boost soft - drink volume in Singapore
-Coca - Cola Co. , aiming to boost soft - drink volume in Singapore , said it is discussing a joint venture with Fraser & Neave Ltd. , its bottling franchisee in that country . bottling bottling Fraser & Neave Ltd. Coca - Cola Singapore bottling franchisee in that country .
-While the campaign was Mr. Gibbons 's idea , however , he wo n't be paying for it : The donations will come out of the chain 's national advertising fund , which is financed by the franchisees . paying wo n't be paying for Mr. Gibbons the campaign
-While the campaign was Mr. Gibbons 's idea , however , he wo n't be paying for it : The donations will come out of the chain 's national advertising fund , which is financed by the franchisees . come will come out of The donations the chain 's national advertising fund
-While the campaign was Mr. Gibbons 's idea , however , he wo n't be paying for it : The donations will come out of the chain 's national advertising fund , which is financed by the franchisees . financed financed by the chain 's national advertising fund the franchisees
-Most yields on short - term jumbo CDs , those with denominations over $ 90,000 , also moved in the opposite direction of Treasury bill yields . moved moved Most yields on short - term jumbo CDs , those with denominations over $ 90,000 in the opposite direction of Treasury bill yields
-Unemployment has reached 27.6 % in Azerbaijan , 25.7 % in Tadzhikistan , 22.8 % in Uzbekistan , 18.8 % in Turkmenia , 18 % in Armenia and 16.3 % in Kirgizia , the Communist Party newspaper said . reached reached Unemployment 27.6 % in Azerbaijan , 25.7 % in Tadzhikistan , 22.8 % in Uzbekistan , 18.8 % in Turkmenia , 18 % in Armenia and 16.3 % in Kirgizia
-Unemployment has reached 27.6 % in Azerbaijan , 25.7 % in Tadzhikistan , 22.8 % in Uzbekistan , 18.8 % in Turkmenia , 18 % in Armenia and 16.3 % in Kirgizia , the Communist Party newspaper said . said said Communist Party newspaper Unemployment has reached 27.6 % in Azerbaijan , 25.7 % in Tadzhikistan , 22.8 % in Uzbekistan , 18.8 % in Turkmenia , 18 % in Armenia and 16.3 % in Kirgizia
-But , with the state offering only $ 39,000 a year and California 's high standard of living , `` there are n't too many to choose from , '' says Brent Scott , a recruiting officer . offering offering state only $ 39,000 a year a year state $ 39,000
-But , with the state offering only $ 39,000 a year and California 's high standard of living , `` there are n't too many to choose from , '' says Brent Scott , a recruiting officer . choose is n't chosen from state offering only $ 39,000 a year and California 's high standard of living
-But , with the state offering only $ 39,000 a year and California 's high standard of living , `` there are n't too many to choose from , '' says Brent Scott , a recruiting officer . says says Brent Scott But , with the state offering only $ 39,000 a year and California 's high standard of living , `` there are n't too many to choose from , ''
-But , with the state offering only $ 39,000 a year and California 's high standard of living , `` there are n't too many to choose from , '' says Brent Scott , a recruiting officer . says says a recruiting officer But , with the state offering only $ 39,000 a year and California 's high standard of living , `` there are n't too many to choose from , ''
-The issue is backed by a 12 % letter of credit from Credit Suisse . backed backed by The issue a 12 % letter of credit from Credit Suisse
-In the corporate market , an expected debt offering today by International Business Machines Corp. generated considerable attention . generated generated International Business Machines Corp. considerable attention today
-Yesterday , Mr. Matthews , now a consultant with the Stamford , Conn. , firm Matthews & Johnston , quipped , `` I think he 'll be very good at that { new job } . quipped quipped Mr. Matthews I think he 'll be very good at that { new job } Yesterday
-Yesterday , Mr. Matthews , now a consultant with the Stamford , Conn. , firm Matthews & Johnston , quipped , `` I think he 'll be very good at that { new job } . think think Mr. Matthews he 'll be very good at that { new job }
-Senate Appropriations Committee Chairman Robert Byrd ( D. , W.Va . ) strongly resisted deeper cuts sought by the House . resisted resisted Senate Appropriations Committee Chairman deeper cuts sought by the House strongly
-Senate Appropriations Committee Chairman Robert Byrd ( D. , W.Va . ) strongly resisted deeper cuts sought by the House . resisted resisted Robert Byrd ( D. , W.Va . ) deeper cuts sought by the House strongly
-Senate Appropriations Committee Chairman Robert Byrd ( D. , W.Va . ) strongly resisted deeper cuts sought by the House . sought sought the House deeper cuts
-With companies such as Honda Motor Co. , Toyota Motor Corp. and Nissan Motor Co. running so - called transplant auto operations , Japanese auto production in the U.S. will reach one million vehicles this year . running running companies such as Honda Motor Co. , Toyota Motor Corp. and Nissan Motor Co. so - called transplant auto operations
-With companies such as Honda Motor Co. , Toyota Motor Corp. and Nissan Motor Co. running so - called transplant auto operations , Japanese auto production in the U.S. will reach one million vehicles this year . called called transplant auto operations
-With companies such as Honda Motor Co. , Toyota Motor Corp. and Nissan Motor Co. running so - called transplant auto operations , Japanese auto production in the U.S. will reach one million vehicles this year . reach will reach Japanese auto production in the U.S. this year one million vehicles
-Years ago , he collaborated with the new music gurus Peter Serkin and Fred Sherry in the very countercultural chamber group Tashi , which won audiences over to dreaded contemporary scores like Messiaen 's `` Quartet for the End of Time . '' won won over the very countercultural chamber group Tashi over to dreaded contemporary scores like Messiaen 's `` Quartet for the End of Time . '' audiences over Years ago
-Years ago , he collaborated with the new music gurus Peter Serkin and Fred Sherry in the very countercultural chamber group Tashi , which won audiences over to dreaded contemporary scores like Messiaen 's `` Quartet for the End of Time . '' won won over Peter SerkinFred Sherry over to dreaded contemporary scores like Messiaen 's `` Quartet for the End of Time . '' audiences over Years ago
-A San Francisco lawyer , Mr. Panelli rowed religiously when he first got the machine , but , he complains , it left grease marks on his carpet , `` and it was boring . rowed rowed A San Francisco lawyer the machine when he first got the machine religiously
-A San Francisco lawyer , Mr. Panelli rowed religiously when he first got the machine , but , he complains , it left grease marks on his carpet , `` and it was boring . rowed rowed Mr. Panelli the machine when he first got the machine religiously
-A San Francisco lawyer , Mr. Panelli rowed religiously when he first got the machine , but , he complains , it left grease marks on his carpet , `` and it was boring . got got A San Francisco lawyer the machine
-A San Francisco lawyer , Mr. Panelli rowed religiously when he first got the machine , but , he complains , it left grease marks on his carpet , `` and it was boring . got got Mr. Panelli the machine
-A San Francisco lawyer , Mr. Panelli rowed religiously when he first got the machine , but , he complains , it left grease marks on his carpet , `` and it was boring . complains complains A San Francisco lawyer it left grease marks on his carpet
-A San Francisco lawyer , Mr. Panelli rowed religiously when he first got the machine , but , he complains , it left grease marks on his carpet , `` and it was boring . complains complains A San Francisco lawyer it was boring
-A San Francisco lawyer , Mr. Panelli rowed religiously when he first got the machine , but , he complains , it left grease marks on his carpet , `` and it was boring . complains complains Mr. Panelli it left grease marks on his carpet
-A San Francisco lawyer , Mr. Panelli rowed religiously when he first got the machine , but , he complains , it left grease marks on his carpet , `` and it was boring . complains complains Mr. Panelli it was boring
-A San Francisco lawyer , Mr. Panelli rowed religiously when he first got the machine , but , he complains , it left grease marks on his carpet , `` and it was boring . left left the machine grease marks on his carpet
-A San Francisco lawyer , Mr. Panelli rowed religiously when he first got the machine , but , he complains , it left grease marks on his carpet , `` and it was boring . boring boring the machine
-Under a merger agreement reached Sept. 14 , the UAL board agreed to reimburse certain of the buy - out group 's expenses out of company funds even if the transaction was n't completed , provided the group did n't breach the agreement . reached reached UAL board a merger agreement Sept. 14
-Under a merger agreement reached Sept. 14 , the UAL board agreed to reimburse certain of the buy - out group 's expenses out of company funds even if the transaction was n't completed , provided the group did n't breach the agreement . agreed agreed UAL board reimburse certain of the buy - out group 's expenses out of company funds even if the transaction was n't completed , provided the group did n't breach the agreement . Sept. 14
-Under a merger agreement reached Sept. 14 , the UAL board agreed to reimburse certain of the buy - out group 's expenses out of company funds even if the transaction was n't completed , provided the group did n't breach the agreement . reimburse would reimburse UAL board certain of the buy - out group 's expenses out of company funds even if the transaction was n't completed , provided the group did n't breach the agreement
-Under a merger agreement reached Sept. 14 , the UAL board agreed to reimburse certain of the buy - out group 's expenses out of company funds even if the transaction was n't completed , provided the group did n't breach the agreement . completed was n't completed the transaction Sept. 14
-Under a merger agreement reached Sept. 14 , the UAL board agreed to reimburse certain of the buy - out group 's expenses out of company funds even if the transaction was n't completed , provided the group did n't breach the agreement . provided provided the group the group did n't breach the agreement .
-Under a merger agreement reached Sept. 14 , the UAL board agreed to reimburse certain of the buy - out group 's expenses out of company funds even if the transaction was n't completed , provided the group did n't breach the agreement . breach would n't breach the group the agreement Sept. 14
-According to one person familiar with the airline , the buy - out group -- led by United 's pilots union and UAL Chairman Stephen Wolf -- has begun billing UAL for fees and expenses it owes to investment bankers , law firms and banks . according according to the buy - out group -- led by United 's pilots union and UAL Chairman Stephen Wolf -- has begun billing UAL for fees and expenses it owes to investment bankers , law firms and banks . one person familiar with the airline
-According to one person familiar with the airline , the buy - out group -- led by United 's pilots union and UAL Chairman Stephen Wolf -- has begun billing UAL for fees and expenses it owes to investment bankers , law firms and banks . led led the buy - out group billing UAL for fees and expenses it owes to investment bankers , law firms and banks . by United 's pilots union and UAL Chairman Stephen Wolf
-According to one person familiar with the airline , the buy - out group -- led by United 's pilots union and UAL Chairman Stephen Wolf -- has begun billing UAL for fees and expenses it owes to investment bankers , law firms and banks . begun begun the buy - out group billing UAL for fees and expenses it owes to investment bankers , law firms and banks .
-According to one person familiar with the airline , the buy - out group -- led by United 's pilots union and UAL Chairman Stephen Wolf -- has begun billing UAL for fees and expenses it owes to investment bankers , law firms and banks . begun begun United 's pilots union and UAL Chairman Stephen Wolf billing UAL for fees and expenses it owes to investment bankers , law firms and banks .
-According to one person familiar with the airline , the buy - out group -- led by United 's pilots union and UAL Chairman Stephen Wolf -- has begun billing UAL for fees and expenses it owes to investment bankers , law firms and banks . billing billing the buy - out group for fees and expenses it owes to investment bankers , law firms and banks . UAL
-According to one person familiar with the airline , the buy - out group -- led by United 's pilots union and UAL Chairman Stephen Wolf -- has begun billing UAL for fees and expenses it owes to investment bankers , law firms and banks . billing billing United 's pilots union and UAL Chairman Stephen Wolf for fees and expenses it owes to investment bankers , law firms and banks . UAL
-According to one person familiar with the airline , the buy - out group -- led by United 's pilots union and UAL Chairman Stephen Wolf -- has begun billing UAL for fees and expenses it owes to investment bankers , law firms and banks . billing billing the buy - out group for fees and expenses it owes to investment bankers , law firms and banks . the airline
-According to one person familiar with the airline , the buy - out group -- led by United 's pilots union and UAL Chairman Stephen Wolf -- has begun billing UAL for fees and expenses it owes to investment bankers , law firms and banks . billing billing United 's pilots union and UAL Chairman Stephen Wolf for fees and expenses it owes to investment bankers , law firms and banks . the airline
-According to one person familiar with the airline , the buy - out group -- led by United 's pilots union and UAL Chairman Stephen Wolf -- has begun billing UAL for fees and expenses it owes to investment bankers , law firms and banks . owes owes investment bankers , law firms and banks . UAL fees and expenses
-According to one person familiar with the airline , the buy - out group -- led by United 's pilots union and UAL Chairman Stephen Wolf -- has begun billing UAL for fees and expenses it owes to investment bankers , law firms and banks . owes owes investment bankers , law firms and banks . the airline fees and expenses
-Early in the morning Mr. Sider , an estate lawyer , pores over last wills and testaments . pores pores Mr. Sider over last wills and testaments Early in the morning
-Early in the morning Mr. Sider , an estate lawyer , pores over last wills and testaments . pores pores an estate lawyer over last wills and testaments Early in the morning
-The government , already buffeted by high interest rates and a slowing economy , has been badly hurt by last week 's shake - up in Mrs. Thatcher 's cabinet . buffeted buffeted high interest rates and a slowing economy The government
-The government , already buffeted by high interest rates and a slowing economy , has been badly hurt by last week 's shake - up in Mrs. Thatcher 's cabinet . slowing slowed economy
-The government , already buffeted by high interest rates and a slowing economy , has been badly hurt by last week 's shake - up in Mrs. Thatcher 's cabinet . hurt been hurt The government by last week 's shake - up in Mrs. Thatcher 's cabinet
-Combined PC and work - station use in Japan will jump as much as 25 % annually over the next five years , according to some analysts , compared with about 10 % in the U.S. . combined will combined jump as much as 25 % annually PC and work - station use in Japan
-Combined PC and work - station use in Japan will jump as much as 25 % annually over the next five years , according to some analysts , compared with about 10 % in the U.S. . combined will combined jump as much as 25 % annually PC and work - station use in the U.S.
-Combined PC and work - station use in Japan will jump as much as 25 % annually over the next five years , according to some analysts , compared with about 10 % in the U.S. . jump will jump Combined PC and work - station use over the next five years in Japan as much as 25 % annually
-Combined PC and work - station use in Japan will jump as much as 25 % annually over the next five years , according to some analysts , compared with about 10 % in the U.S. . jump will jump Combined PC and work - station use over the next five years in Japan about 10 %
-Combined PC and work - station use in Japan will jump as much as 25 % annually over the next five years , according to some analysts , compared with about 10 % in the U.S. . jump will jump Combined PC and work - station use over the next five years in the U.S. as much as 25 % annually
-Combined PC and work - station use in Japan will jump as much as 25 % annually over the next five years , according to some analysts , compared with about 10 % in the U.S. . jump will jump Combined PC and work - station use over the next five years in the U.S. about 10 %
-Combined PC and work - station use in Japan will jump as much as 25 % annually over the next five years , according to some analysts , compared with about 10 % in the U.S. . according according to Combined PC and work - station use in Japan will jump as much as 25 % annually over the next five years some analysts
-Combined PC and work - station use in Japan will jump as much as 25 % annually over the next five years , according to some analysts , compared with about 10 % in the U.S. . according according to compared with about 10 % in the U.S. some analysts
-Combined PC and work - station use in Japan will jump as much as 25 % annually over the next five years , according to some analysts , compared with about 10 % in the U.S. . compared been compared Combined PC and work - station use about 10 % for Japan
-Combined PC and work - station use in Japan will jump as much as 25 % annually over the next five years , according to some analysts , compared with about 10 % in the U.S. . compared been compared Combined PC and work - station use as much as 25 % annually for Japan
-Combined PC and work - station use in Japan will jump as much as 25 % annually over the next five years , according to some analysts , compared with about 10 % in the U.S. . compared been compared Combined PC and work - station use about 10 % for the U.S.
-Combined PC and work - station use in Japan will jump as much as 25 % annually over the next five years , according to some analysts , compared with about 10 % in the U.S. . compared been compared Combined PC and work - station use as much as 25 % annually for the U.S.
-The executives had profited handsomely by building American National Can Co. , Triangle 's chief asset . profited profited The executives handsomely by building American National Can Co. , Triangle 's chief asset
-The executives had profited handsomely by building American National Can Co. , Triangle 's chief asset . building building The executives American National Can Co.
-The executives had profited handsomely by building American National Can Co. , Triangle 's chief asset . building building The executives Triangle 's chief asset
-The basket product , while it has got off to a slow start , is being supported by some big brokerage firms -- another member of Mr. Phelan 's splintered constituency . got got off to The basket product a slow start
-The basket product , while it has got off to a slow start , is being supported by some big brokerage firms -- another member of Mr. Phelan 's splintered constituency . supported supported some big brokerage firms The basket product
-The basket product , while it has got off to a slow start , is being supported by some big brokerage firms -- another member of Mr. Phelan 's splintered constituency . splintered splintered constituency
-But although the golden share has been waived , a hostile bidder for Jaguar would still have to alter the British concern 's articles of association which ban shareholdings of more than 15 % . waived been waived the golden share
-But although the golden share has been waived , a hostile bidder for Jaguar would still have to alter the British concern 's articles of association which ban shareholdings of more than 15 % . alter would alter a hostile bidder for Jaguar the British concern 's articles of association which ban shareholdings of more than 15 %
-But although the golden share has been waived , a hostile bidder for Jaguar would still have to alter the British concern 's articles of association which ban shareholdings of more than 15 % . ban ban the British concern 's articles of association shareholdings of more than 15 %
-But fully 90 % of those polled felt they did n't need to belong to a health club . polled polled those
-But fully 90 % of those polled felt they did n't need to belong to a health club . felt felt 90 % of those polled they did n't need to belong to a health club
-But fully 90 % of those polled felt they did n't need to belong to a health club . belong would n't belong to 90 % of those polled a health club
-This week , New York City announced a 10 - point policy patterned on the federal bill of rights for taxpayers . announced announced New York City a 10 - point policy patterned on the federal bill of rights for taxpayers This week for taxpayers
-This week , New York City announced a 10 - point policy patterned on the federal bill of rights for taxpayers . patterned patterned a 10 - point policy on the federal bill of rights for taxpayers
-`` Nobody told us ; nobody called us , '' says an official close to the case who asked not to be named . says says an official Nobody told us
-`` Nobody told us ; nobody called us , '' says an official close to the case who asked not to be named . says says an official nobody called us
-`` Nobody told us ; nobody called us , '' says an official close to the case who asked not to be named . asked asked an official not to be named
-`` Nobody told us ; nobody called us , '' says an official close to the case who asked not to be named . named was n't named an official
-The prices of most corn , soybean and wheat futures contracts dropped slightly as farmers in the Midwest continued to rebuild stockpiles that were depleted by the 1988 drought . dropped dropped The prices of most corn , soybean and wheat futures contracts slightly farmers in the Midwest continued to rebuild stockpiles that were depleted by the 1988 drought
-The prices of most corn , soybean and wheat futures contracts dropped slightly as farmers in the Midwest continued to rebuild stockpiles that were depleted by the 1988 drought . continued continued farmers rebuild stockpiles in the Midwest depleted by the 1988 drought
-The prices of most corn , soybean and wheat futures contracts dropped slightly as farmers in the Midwest continued to rebuild stockpiles that were depleted by the 1988 drought . rebuild will rebuild farmers stockpiles in the Midwest were depleted by the 1988 drought
-The prices of most corn , soybean and wheat futures contracts dropped slightly as farmers in the Midwest continued to rebuild stockpiles that were depleted by the 1988 drought . depleted had depleted stockpiles 1988 in the Midwest the 1988 drought farmers
-`` It 's a super - exciting set of discoveries , '' says Bert Vogelstein , a Johns Hopkins University researcher who has just found a gene pivotal to the triggering of colon cancer . exciting exciting set of discoveries
-`` It 's a super - exciting set of discoveries , '' says Bert Vogelstein , a Johns Hopkins University researcher who has just found a gene pivotal to the triggering of colon cancer . says says Bert Vogelstein , a Johns Hopkins University researcher who has just found a gene pivotal to the triggering of colon cancer `` It 's a super - exciting set of discoveries , ''
-`` It 's a super - exciting set of discoveries , '' says Bert Vogelstein , a Johns Hopkins University researcher who has just found a gene pivotal to the triggering of colon cancer . found found Bert Vogelstein , a Johns Hopkins University researcher a gene pivotal to the triggering of colon cancer
-`` It 's a super - exciting set of discoveries , '' says Bert Vogelstein , a Johns Hopkins University researcher who has just found a gene pivotal to the triggering of colon cancer . triggering triggering a gene colon cancer
-Here are price trends on the world 's major stock markets , as calculated by Morgan Stanley Capital International Perspective , Geneva . calculated been calculated price trends on the world 's major stock markets by Morgan Stanley Capital International Perspective , Geneva
-Her recent report classifies the stock as a `` hold . '' classifies classifies Her recent report the stock a `` hold . ''
-Soviets remain in charge of education programs , a former head of an African military tribunal for executions is in charge of culture , and a hard - line Polish communist in exile directs the human - rights and peace division . remain remained Soviets in charge of education programs
-Soviets remain in charge of education programs , a former head of an African military tribunal for executions is in charge of culture , and a hard - line Polish communist in exile directs the human - rights and peace division . directs directs a hard - line Polish communist in exile human - rights and peace division
-A month ago , when Beatrice first filed to sell debt , the company had planned to offer $ 200 million of its senior subordinated reset notes at a yield of 12 3\/4 % . filed filed Beatrice to sell debt A month ago
-A month ago , when Beatrice first filed to sell debt , the company had planned to offer $ 200 million of its senior subordinated reset notes at a yield of 12 3\/4 % . sell sold Beatrice debt A month ago
-A month ago , when Beatrice first filed to sell debt , the company had planned to offer $ 200 million of its senior subordinated reset notes at a yield of 12 3\/4 % . planned had planned to the company offer $ 200 million of its senior subordinated reset notes at a yield of 12 3\/4 % A month ago
-A month ago , when Beatrice first filed to sell debt , the company had planned to offer $ 200 million of its senior subordinated reset notes at a yield of 12 3\/4 % . offer might offer the company $ 200 million of its senior subordinated reset notes at a yield of 12 3\/4 %
-A month ago , when Beatrice first filed to sell debt , the company had planned to offer $ 200 million of its senior subordinated reset notes at a yield of 12 3\/4 % . subordinated had subordinated reset notes the company
-A month ago , when Beatrice first filed to sell debt , the company had planned to offer $ 200 million of its senior subordinated reset notes at a yield of 12 3\/4 % . reset reset notes
-Meanwhile , at home , Mitsubishi has control of some major projects . has has Mitsubishi control of some major projects at home
-Warner has a five - year exclusive contract with Mr. Guber and Mr. Peters that requires them to make movies exclusively at the Warner Bros. studio . has has Warner a five - year exclusive contract with Mr. Guber and Mr. Peters that requires them to make movies exclusively at the Warner Bros. studio
-Warner has a five - year exclusive contract with Mr. Guber and Mr. Peters that requires them to make movies exclusively at the Warner Bros. studio . requires requires a five - year exclusive contract with Mr. Guber and Mr. Peters to make movies exclusively at the Warner Bros. studio
-Warner has a five - year exclusive contract with Mr. Guber and Mr. Peters that requires them to make movies exclusively at the Warner Bros. studio . make will make Mr. Guber and Mr. Peters movies exclusively at the Warner Bros. studio
-Strong sales so far this year are certain to turn the tide , but even the 25 % market share that Nissan expects in 1989 will leave it far below its position at the beginning of the decade . turn will turn Strong sales so far this year the tide
-Strong sales so far this year are certain to turn the tide , but even the 25 % market share that Nissan expects in 1989 will leave it far below its position at the beginning of the decade . expects expects Nissan 25 % market share 1989
-Strong sales so far this year are certain to turn the tide , but even the 25 % market share that Nissan expects in 1989 will leave it far below its position at the beginning of the decade . leave will be left the 25 % market share that Nissan expects in 1989 far below its position at the beginning of the decade
-British government bonds ended moderately higher , encouraged by a steadier pound and a rise in British stocks . ended ended British government bonds moderately higher
-British government bonds ended moderately higher , encouraged by a steadier pound and a rise in British stocks . encouraged encouraged British government bonds by a steadier pound
-British government bonds ended moderately higher , encouraged by a steadier pound and a rise in British stocks . encouraged encouraged British government bonds by a rise in British stocks
-Employers could also pay a subminimum `` training wage '' for 90 days to new workers who are up to 19 years old , and then for another 90 days if the company institutes a specific training program for the newcomers . pay could pay Employers a subminimum `` training wage ''
-Employers could also pay a subminimum `` training wage '' for 90 days to new workers who are up to 19 years old , and then for another 90 days if the company institutes a specific training program for the newcomers . institutes could institutes company a specific training program for the newcomers . for the newcomers .
-Employers could also pay a subminimum `` training wage '' for 90 days to new workers who are up to 19 years old , and then for another 90 days if the company institutes a specific training program for the newcomers . training training for the newcomers . program
-The campaign , a patriotic celebration of the 200th anniversary of the Bill of Rights , does n't mention cigarettes or smoking ; cigarette ads have been prohibited on television since 1971 . mention does n't mention The campaign cigarettes or smoking
-The campaign , a patriotic celebration of the 200th anniversary of the Bill of Rights , does n't mention cigarettes or smoking ; cigarette ads have been prohibited on television since 1971 . mention does n't mention a patriotic celebration of the 200th anniversary of the Bill of Rights cigarettes or smoking
-The campaign , a patriotic celebration of the 200th anniversary of the Bill of Rights , does n't mention cigarettes or smoking ; cigarette ads have been prohibited on television since 1971 . prohibited prohibited cigarette ads since 1971 on television
-A surprising 78 % of people said they exercise regularly , up from 73 % in 1981 . said said 78 % of people they exercise regularly
-A surprising 78 % of people said they exercise regularly , up from 73 % in 1981 . exercise exercise 78 % of people s
-Mrs. Marcos 's trial is expected to begin in March . expected expected Mrs. Marcos 's trial to begin in March
-Mrs. Marcos 's trial is expected to begin in March . begin might begin Mrs. Marcos 's trial in March for Mrs. Marcos
-The share price was languishing at about 400 pence before Ford 's Sept. 19 announcement of its interest in a minority stake . languishing languishing The share price before Ford 's Sept. 19 announcement for about 400 pence
-But it does that at the cost of deepening the taxpayer 's exposure if the FHA is forced to pay for more loans going sour . deepening deepened the taxpayer 's exposure if the FHA is forced to pay for more loans going sour
-But it does that at the cost of deepening the taxpayer 's exposure if the FHA is forced to pay for more loans going sour . forced forced to the FHA pay for more loans going sour
-But it does that at the cost of deepening the taxpayer 's exposure if the FHA is forced to pay for more loans going sour . pay might pay the FHA more loans going sour
-But it does that at the cost of deepening the taxpayer 's exposure if the FHA is forced to pay for more loans going sour . going will going more loans sour
-In the U.S. , more than half the PC software sold is either for spreadsheets or for database analysis , according to Lotus . sold sold PC software for spreadsheets or for database analysis In the U.S. more than half
-In the U.S. , more than half the PC software sold is either for spreadsheets or for database analysis , according to Lotus . according according to In the U.S. , more than half the PC software sold is either for spreadsheets or for database analysis Lotus
-Labor costs are climbing at a far more rapid pace in the health care industry than in other industries . climbing climbing Labor costs at a far more rapid pace in the health care industry than in other industries
-`` Most people -- whether in Toledo , Tucson or Topeka -- have n't got a clue who we are , '' says Guy L. Smith , Philip Morris 's vice president of corporate affairs . got might not got Most people a clue Toledo about who we are
-`` Most people -- whether in Toledo , Tucson or Topeka -- have n't got a clue who we are , '' says Guy L. Smith , Philip Morris 's vice president of corporate affairs . got might not got Most people a clue Tucson about who we are
-`` Most people -- whether in Toledo , Tucson or Topeka -- have n't got a clue who we are , '' says Guy L. Smith , Philip Morris 's vice president of corporate affairs . got might not got Most people a clue Topeka about who we are
-`` Most people -- whether in Toledo , Tucson or Topeka -- have n't got a clue who we are , '' says Guy L. Smith , Philip Morris 's vice president of corporate affairs . says says Guy L. Smith `` Most people -- whether in Toledo , Tucson or Topeka -- have n't got a clue who we are , ''
-`` Most people -- whether in Toledo , Tucson or Topeka -- have n't got a clue who we are , '' says Guy L. Smith , Philip Morris 's vice president of corporate affairs . says says Philip Morris 's vice president of corporate affairs `` Most people -- whether in Toledo , Tucson or Topeka -- have n't got a clue who we are , ''
-But then Judge O'Kicki often behaved like a man who would be king -- and , some say , an arrogant and abusive one . behaved behaved Judge O'Kicki like a man who would be king -- and , some say , an arrogant and abusive one often
-But then Judge O'Kicki often behaved like a man who would be king -- and , some say , an arrogant and abusive one . say say some an arrogant and abusive one Judge O'Kicki often behaved like a man who would be king
-The National Transportation Safety Board ruled that pilots failed to set the plane 's wing flaps and slats properly for takeoff and failed to make mandatory preflight checks that would have detected the error . ruled ruled The National Transportation Safety Board pilots failed to set the plane 's wing flaps and slats properly for takeoff and failed to make mandatory preflight checks that would have detected the error
-The National Transportation Safety Board ruled that pilots failed to set the plane 's wing flaps and slats properly for takeoff and failed to make mandatory preflight checks that would have detected the error . failed failed pilots set the plane 's wing flaps and slats properly for takeoff and failed to make mandatory preflight checks that would have detected the error
-The National Transportation Safety Board ruled that pilots failed to set the plane 's wing flaps and slats properly for takeoff and failed to make mandatory preflight checks that would have detected the error . set would set pilots the plane 's wing flaps and slats properly for takeoff for takeoff properly
-The National Transportation Safety Board ruled that pilots failed to set the plane 's wing flaps and slats properly for takeoff and failed to make mandatory preflight checks that would have detected the error . failed failed pilots make mandatory preflight checks that would have detected the error
-The National Transportation Safety Board ruled that pilots failed to set the plane 's wing flaps and slats properly for takeoff and failed to make mandatory preflight checks that would have detected the error . make could make pilots mandatory preflight checks that would have detected the error
-The National Transportation Safety Board ruled that pilots failed to set the plane 's wing flaps and slats properly for takeoff and failed to make mandatory preflight checks that would have detected the error . detected would detected preflight checks error
-Medical cooperatives , among the most successful in the U.S.S.R. , are banned from providing general - practitioner services ( their main source of income ) , carrying out surgery , and treating cancer patients , drug addicts and pregnant women . banned banned from Medical cooperatives providing general - practitioner services ( their main source of income ) , carrying out surgery , and treating cancer patients , drug addicts and pregnant women .
-Medical cooperatives , among the most successful in the U.S.S.R. , are banned from providing general - practitioner services ( their main source of income ) , carrying out surgery , and treating cancer patients , drug addicts and pregnant women . providing ca n't provide Medical cooperatives general - practitioner services ( their main source of income ) , carrying out surgery , and treating cancer patients , drug addicts and pregnant women . are banned
-Medical cooperatives , among the most successful in the U.S.S.R. , are banned from providing general - practitioner services ( their main source of income ) , carrying out surgery , and treating cancer patients , drug addicts and pregnant women . carrying wo n't carrying Medical cooperatives out surgery out are banned
-Medical cooperatives , among the most successful in the U.S.S.R. , are banned from providing general - practitioner services ( their main source of income ) , carrying out surgery , and treating cancer patients , drug addicts and pregnant women . treating wo n't treating Medical cooperatives cancer patients , drug addicts and pregnant women . are banned
-Daimler said it has had talks with Jaguar about possible joint ventures . said said Daimler about possible joint ventures it has had talks with Jaguar about possible joint ventures about Jaguar
-Daimler said it has had talks with Jaguar about possible joint ventures . had had Daimler talks
-Sometimes , if you have a headache , you can go out and walk it right off . '' walk would walk off a headache
-Although Heathrow authorities have been watching a group of allegedly crooked baggage handlers for some time , the Gauguin may be `` lost . '' watching watching Heathrow authorities a group of allegedly crooked baggage handlers Heathrow for some time
-Although Heathrow authorities have been watching a group of allegedly crooked baggage handlers for some time , the Gauguin may be `` lost . '' lost may lost Heathrow authorities the Gauguin Heathrow
-`` I do n't foresee any shortages over the next few months , '' says Ken Allen , an official of Operating Engineers Local 3 in San Francisco . foresee does n't foresee Ken Allen any shortages over the next few months over the next few months
-`` I do n't foresee any shortages over the next few months , '' says Ken Allen , an official of Operating Engineers Local 3 in San Francisco . foresee does n't foresee an official of Operating Engineers Local 3 in San Francisco any shortages over the next few months over the next few months
-`` I do n't foresee any shortages over the next few months , '' says Ken Allen , an official of Operating Engineers Local 3 in San Francisco . says says Ken Allen I do n't foresee any shortages over the next few months
-`` I do n't foresee any shortages over the next few months , '' says Ken Allen , an official of Operating Engineers Local 3 in San Francisco . says says an official of Operating Engineers Local 3 in San Francisco I do n't foresee any shortages over the next few months
-At one point , almost all of the shares in the 20 - stock Major Market Index , which mimics the industrial average , were sharply higher . mimics mimics almost all of the shares in the 20 - stock Major Market Index the industrial average
-$ 300 million of bonds due Nov. 16 , 1993 , with equity - purchase warrants , indicating a 3 3\/4 % coupon at par via Nomura International Ltd . indicating indicating equity - purchase warrants a 3 3\/4 % coupon at par via Nomura International Ltd a 3 3\/4 % coupon
-There 's light at the end of the tunnel for municipals , '' he said , adding that he expects prices to `` inch up '' in the near term . inch might inch prices in the near term up
-RISC technology speeds up a computer by simplifying the internal software . speeds speeds RISC technology computer simplifying the internal software .
-RISC technology speeds up a computer by simplifying the internal software . simplifying simplified internal software . RISC technology
-This provision met early and strong resistance from investment bankers worried about disruptions in their clients ' portfolios . met met This provision early and strong resistance early
-This provision met early and strong resistance from investment bankers worried about disruptions in their clients ' portfolios . worried worried about investment bankers disruptions in their clients ' portfolios
-Procter & Gamble Co. recently introduced refillable versions of four products , including Tide and Mr. Clean , in Canada , but does n't plan to bring them to the U.S. . introduced introduced Procter & Gamble Co. refillable versions of four products , including Tide and Mr. Clean recently Canada
-Procter & Gamble Co. recently introduced refillable versions of four products , including Tide and Mr. Clean , in Canada , but does n't plan to bring them to the U.S. . including including Tide and Mr. Clean
-Procter & Gamble Co. recently introduced refillable versions of four products , including Tide and Mr. Clean , in Canada , but does n't plan to bring them to the U.S. . plan did n't plan Procter & Gamble Co. bring them to the U.S.
-Procter & Gamble Co. recently introduced refillable versions of four products , including Tide and Mr. Clean , in Canada , but does n't plan to bring them to the U.S. . bring might not bring Procter & Gamble Co to the U.S.
-A similar technique is almost impossible to apply to other crops , such as cotton , soybeans and rice . apply might not apply A similar technique to other crops , such as cotton , soybeans and rice
-Roger M. Marino , president , was named to the new post of vice chairman . named named Roger M. Marino to the new post of vice chairman
-Roger M. Marino , president , was named to the new post of vice chairman . named named president to the new post of vice chairman
-Jaguar 's own defenses against a hostile bid are weakened , analysts add , because fewer than 3 % of its shares are owned by employees and management . weakened weakened Jaguar 's own defenses against a hostile bid because fewer than 3 % of its shares are owned by employees and management
-Jaguar 's own defenses against a hostile bid are weakened , analysts add , because fewer than 3 % of its shares are owned by employees and management . add add analysts because fewer than 3 % of its shares are owned by employees and management
-Jaguar 's own defenses against a hostile bid are weakened , analysts add , because fewer than 3 % of its shares are owned by employees and management . owned owned employees and management fewer than 3 % of its shares
-Pennzoil 's poison pill covers five years in order to give current management enough time to put these proceeds to work in a prudent manner . covers covers Pennzoil 's poison pill five years in order to give current management enough time to put these proceeds to work in a prudent manner
-Pennzoil 's poison pill covers five years in order to give current management enough time to put these proceeds to work in a prudent manner . give will be given current management enough time to put these proceeds to work in a prudent manner
-Pennzoil 's poison pill covers five years in order to give current management enough time to put these proceeds to work in a prudent manner . put will put current management these proceeds to work in a prudent manner
-Panhandle Eastern Corp. said it applied , on behalf of two of its subsidiaries , to the Federal Energy Regulatory Commission for permission to build a 352 - mile , $ 273 million pipeline system from Pittsburg County , Okla. , to Independence , Miss . said said Panhandle Eastern Corp. it applied , on behalf of two of its subsidiaries , to the Federal Energy Regulatory Commission for permission to build a 352 - mile , $ 273 million pipeline system from Pittsburg County , Okla. , to Independence , Miss .
-Panhandle Eastern Corp. said it applied , on behalf of two of its subsidiaries , to the Federal Energy Regulatory Commission for permission to build a 352 - mile , $ 273 million pipeline system from Pittsburg County , Okla. , to Independence , Miss . applied applied Panhandle Eastern Corp. permission to build a 352 - mile , $ 273 million pipeline system from Pittsburg County , Okla. , to Independence , Miss .
-Panhandle Eastern Corp. said it applied , on behalf of two of its subsidiaries , to the Federal Energy Regulatory Commission for permission to build a 352 - mile , $ 273 million pipeline system from Pittsburg County , Okla. , to Independence , Miss . build will build Panhandle Eastern Corp. a 352 - mile , $ 273 million pipeline system from Pittsburg County , Okla. , to Independence , Miss . from Pittsburg County , Okla. , to Independence , Miss .
-Keeping the Japanese happy will be one of the most important tasks facing conservative leader Ernesto Ruffo when he takes office Nov. 1 , as the first opposition governor in Mexico 's modern history . keeping should keeping the Japanes conservative leader
-Keeping the Japanese happy will be one of the most important tasks facing conservative leader Ernesto Ruffo when he takes office Nov. 1 , as the first opposition governor in Mexico 's modern history . keeping should keeping the Japanes Ernesto Ruffo
-Keeping the Japanese happy will be one of the most important tasks facing conservative leader Ernesto Ruffo when he takes office Nov. 1 , as the first opposition governor in Mexico 's modern history . facing will facing conservative leader Keeping the Japanese happy when he takes office Nov. 1 , as the first opposition governor in Mexico 's modern history
-Keeping the Japanese happy will be one of the most important tasks facing conservative leader Ernesto Ruffo when he takes office Nov. 1 , as the first opposition governor in Mexico 's modern history . facing will facing Ernesto Ruffo Keeping the Japanese happy when he takes office Nov. 1 , as the first opposition governor in Mexico 's modern history
-Keeping the Japanese happy will be one of the most important tasks facing conservative leader Ernesto Ruffo when he takes office Nov. 1 , as the first opposition governor in Mexico 's modern history . takes will takes conservative leader office Mexico
-Keeping the Japanese happy will be one of the most important tasks facing conservative leader Ernesto Ruffo when he takes office Nov. 1 , as the first opposition governor in Mexico 's modern history . takes will takes Ernesto Ruffo office Mexico
-If there 's something ' weird and it do n't look good . look does n't look something it do n't look good .
-Fraser & Neave , which also has interests in packaging , beer and dairy products , holds the Coke licenses for Malaysia and Brunei , where per - capita consumption is n't as high as in Singapore . has has Fraser & Neave interests in packaging , beer and dairy products
-Fraser & Neave , which also has interests in packaging , beer and dairy products , holds the Coke licenses for Malaysia and Brunei , where per - capita consumption is n't as high as in Singapore . holds holds Fraser & Neave the Coke licenses for Malaysia and Brunei Malaysia and Brunei
-As of Sept. 30 , American Brands had 95.2 million shares outstanding . had had American Brands 95.2 million shares outstanding As of Sept. 30
-The forest - products concern currently has about 38 million shares outstanding . has have The forest - products about 38 million shares outstanding about 38 million shares outstanding
-`` It 's really bizarre , '' says Albert Lerman , creative director at the Wells Rich Greene ad agency . says says Albert Lerman `` It 's really bizarre , ''
-But it appears to be the sort of hold one makes while heading for the door . makes might make while heading for the door the sort of hold
-But it appears to be the sort of hold one makes while heading for the door . heading heading for the door
-Now Mr. Broberg , a lawyer , claims he 'd play for free . claims claims Mr. Broberg he 'd play for free for free
-Now Mr. Broberg , a lawyer , claims he 'd play for free . claims claims a lawyer he 'd play for free for free
-Now Mr. Broberg , a lawyer , claims he 'd play for free . play would play Mr. Broberg for free for free
-Now Mr. Broberg , a lawyer , claims he 'd play for free . play would play a lawyer for free for free
-Only his factories in Japan and Korea , employing his followers at subsistence wages and producing everything from rifles to ginseng to expensive marble vases , kept the money flowing westward . producing producing his followers rifles Japan
-Only his factories in Japan and Korea , employing his followers at subsistence wages and producing everything from rifles to ginseng to expensive marble vases , kept the money flowing westward . producing producing his followers rifles Korea
-Only his factories in Japan and Korea , employing his followers at subsistence wages and producing everything from rifles to ginseng to expensive marble vases , kept the money flowing westward . producing producing his followers ginseng Japan
-Only his factories in Japan and Korea , employing his followers at subsistence wages and producing everything from rifles to ginseng to expensive marble vases , kept the money flowing westward . producing producing his followers ginseng Korea
-Only his factories in Japan and Korea , employing his followers at subsistence wages and producing everything from rifles to ginseng to expensive marble vases , kept the money flowing westward . producing producing his followers expensive marble vases Japan
-Only his factories in Japan and Korea , employing his followers at subsistence wages and producing everything from rifles to ginseng to expensive marble vases , kept the money flowing westward . producing producing his followers expensive marble vases Korea
-Only his factories in Japan and Korea , employing his followers at subsistence wages and producing everything from rifles to ginseng to expensive marble vases , kept the money flowing westward . kept kept the money flowing his factories in Japan and Korea westward employing his followers at subsistence wages and producing everything from rifles to ginseng to expensive marble vases
-Only his factories in Japan and Korea , employing his followers at subsistence wages and producing everything from rifles to ginseng to expensive marble vases , kept the money flowing westward . flowing flowing the money westward from Japan
-Only his factories in Japan and Korea , employing his followers at subsistence wages and producing everything from rifles to ginseng to expensive marble vases , kept the money flowing westward . flowing flowing the money westward from Korea
-The 41 - year - old Mr. Azoff , a former rock 'n' roll manager , is credited with turning around MCA 's once - moribund music division in his six years at the company . credited been credited with The 41 - year - old Mr. Azoff urning around MCA 's once - moribund music division in his six years at the company
-The 41 - year - old Mr. Azoff , a former rock 'n' roll manager , is credited with turning around MCA 's once - moribund music division in his six years at the company . credited been credited with a former rock 'n' roll manager urning around MCA 's once - moribund music division in his six years at the company
-The 41 - year - old Mr. Azoff , a former rock 'n' roll manager , is credited with turning around MCA 's once - moribund music division in his six years at the company . turning turning The 41 - year - old Mr. Azoff around in his six years at the company around MCA 's once - moribund music division in his six years at the company
-The 41 - year - old Mr. Azoff , a former rock 'n' roll manager , is credited with turning around MCA 's once - moribund music division in his six years at the company . turning turning a former rock 'n' roll manager around in his six years at the company around MCA 's once - moribund music division in his six years at the company
-The Second Section index , which fell 36.87 points Friday , was down 21.44 points , or 0.59 % , to close at 3636.06 . fell fell The Second Section index to 3636.06 Friday 36.87 points
-The Second Section index , which fell 36.87 points Friday , was down 21.44 points , or 0.59 % , to close at 3636.06 . close close The Second Section index at 3636.06
-Avery Inc. said it completed the sale of Uniroyal Chemical Holding Co. to a group led by management of Uniroyal Chemical Co. , the unit 's main business . said said Avery Inc. about sale of Uniroyal Chemical Holding Co. it completed the sale of Uniroyal Chemical Holding Co. to a group led by management of Uniroyal Chemical Co. , the unit 's main business
-Avery Inc. said it completed the sale of Uniroyal Chemical Holding Co. to a group led by management of Uniroyal Chemical Co. , the unit 's main business . completed completed Avery Inc. the sale of Uniroyal Chemical Holding Co. to a group led by management of Uniroyal Chemical Co. , the unit 's main business to a group led by management of Uniroyal Chemical Co.
-Avery Inc. said it completed the sale of Uniroyal Chemical Holding Co. to a group led by management of Uniroyal Chemical Co. , the unit 's main business . led led a group by management of Uniroyal Chemical Co.
-It surged 2 3\/4 to 6 on volume of more than 1.7 million shares after the company agreed to be acquired by Japan 's Chugai Pharmaceutical for about $ 110 million -- almost double the market price of Gen - Probe 's stock . agreed agreed the company to be acquired by Japan 's Chugai Pharmaceutical for about $ 110 million -- almost double the market price of Gen - Probe 's stock .
-It surged 2 3\/4 to 6 on volume of more than 1.7 million shares after the company agreed to be acquired by Japan 's Chugai Pharmaceutical for about $ 110 million -- almost double the market price of Gen - Probe 's stock . acquired would acquired Japan 's Chugai Pharmaceutical for about $ 110 million -- almost double the market price of Gen - Probe 's stock . the company for about $ 110 million -- almost double the market price of Gen - Probe 's stock
-Though Mr. Packer has since sold his stake , Courtaulds is moving to keep its institutional shareholders happy . sold sold Mr. Packer his stake
-Though Mr. Packer has since sold his stake , Courtaulds is moving to keep its institutional shareholders happy . moving moving to Courtaulds keep its institutional shareholders happy
-Though Mr. Packer has since sold his stake , Courtaulds is moving to keep its institutional shareholders happy . keep might keep Courtaulds its institutional shareholders happy
-Finally , Mitsubishi Estate has no plans to interfere with Rockefeller 's management beyond taking a place on the board . has does n't have Mitsubishi Estate plans to interfere with Rockefeller 's management
-Finally , Mitsubishi Estate has no plans to interfere with Rockefeller 's management beyond taking a place on the board . interfere wo n't interfere Mitsubishi Estate with Rockefeller 's management
-Finally , Mitsubishi Estate has no plans to interfere with Rockefeller 's management beyond taking a place on the board . taking will be taking Mitsubishi Estate a place on the board
-Both reflect the dismissal of lower - level and shorter - tenure executives . reflect reflect Both the dismissal of lower - level and shorter - tenure executives
-But wire transfers from a standing account -- including those bigger than $ 10,000 -- are n't reported . including included those bigger than $ 10,000 with wire transfers from a standing account
-But wire transfers from a standing account -- including those bigger than $ 10,000 -- are n't reported . reported is n't reported wire transfers from a standing account
-As a result , he said he will examine the Marcos documents sought by the prosecutors to determine whether turning over the filings is self - incrimination . sought sought prosecutors Marcos documents
-As a result , he said he will examine the Marcos documents sought by the prosecutors to determine whether turning over the filings is self - incrimination . turning have been turned over the filings
-Japanese office workers use PCs at half the rate of their European counterparts and one - third that of the Americans . use use Japanese office workers PCs at half the rate of their European counterparts and one - third that of the Americans
-But when they arrived at the door , all were afraid to go in , fearing that they would be out of place . arrived arrived were at the door
-But when they arrived at the door , all were afraid to go in , fearing that they would be out of place . go would n't go in all all were afraid
-But when they arrived at the door , all were afraid to go in , fearing that they would be out of place . go would n't go in all fearing that they would be out of place
-But when they arrived at the door , all were afraid to go in , fearing that they would be out of place . fearing fearing all to go in they would be out of place
-A specialist is an exchange member designated to maintain a fair and orderly market in a specified stock . designated designated A specialist to maintain a fair and orderly market
-A specialist is an exchange member designated to maintain a fair and orderly market in a specified stock . designated designated an exchange member to maintain a fair and orderly market
-A specialist is an exchange member designated to maintain a fair and orderly market in a specified stock . maintain will maintain A specialist a fair and orderly market
-A specialist is an exchange member designated to maintain a fair and orderly market in a specified stock . maintain will maintain an exchange member a fair and orderly market
-A specialist is an exchange member designated to maintain a fair and orderly market in a specified stock . specified specified stock
-A state judge postponed a decision on a move by holders of Telerate Inc. to block the tender offer of Dow Jones & Co. for the 33 % of Telerate it does n't already own . postponed postponed A state judge a decision on a move by holders of Telerate Inc. to block the tender offer of Dow Jones & Co.
-A state judge postponed a decision on a move by holders of Telerate Inc. to block the tender offer of Dow Jones & Co. for the 33 % of Telerate it does n't already own . block will block Telerate Inc. the tender offer for Dow Jones & Co.
-A state judge postponed a decision on a move by holders of Telerate Inc. to block the tender offer of Dow Jones & Co. for the 33 % of Telerate it does n't already own . own does n't own Dow Jones & Co. 33 % of Telerate
-The three existing plants and their land will be sold . existing existing plants three
-The three existing plants and their land will be sold . sold will be sold three existing plants
-The three existing plants and their land will be sold . sold will be sold their land
-`` It 's a wait - and - see attitude , '' said Dave Vellante , vice president of storage research for International Data Corp . said said Dave Vellante It 's a wait - and - see attitude
-`` It 's a wait - and - see attitude , '' said Dave Vellante , vice president of storage research for International Data Corp . said said vice president of storage research It 's a wait - and - see attitude
-Osamu Nagayama , deputy president of Chugai , which spends about 15 % of its sales on research and development , was unable to pinpoint how much money Chugai would pump into Gen - Probe . spends spends Chugai its sales about 15 % on research and development
-Osamu Nagayama , deputy president of Chugai , which spends about 15 % of its sales on research and development , was unable to pinpoint how much money Chugai would pump into Gen - Probe . pinpoint could n't pinpoint Osamu Nagayama how much money Chugai would pump into Gen - Probe
-Osamu Nagayama , deputy president of Chugai , which spends about 15 % of its sales on research and development , was unable to pinpoint how much money Chugai would pump into Gen - Probe . pump would pump Chugai money into Gen - Probe
-A spokesman said HealthVest has paid two of the three banks it owed interest to in October and is in negotiations with the third bank . said said A spokesman HealthVest has paid two of the three banks it owed interest to in October and is in negotiations with the third bank
-A spokesman said HealthVest has paid two of the three banks it owed interest to in October and is in negotiations with the third bank . paid paid HealthVest two of the three banks it owed interest to in October
-A spokesman said HealthVest has paid two of the three banks it owed interest to in October and is in negotiations with the third bank . owed owed HealthVest interest to banks
-The Soviets complicated the issue by offering to include light tanks , which are as light as 10 tons . complicated complicated The Soviets the issue by offering to include light tanks
-The Soviets complicated the issue by offering to include light tanks , which are as light as 10 tons . offering offering The Soviets to include light tanks
-The Soviets complicated the issue by offering to include light tanks , which are as light as 10 tons . include will include The Soviets light tanks
-The dollar drew strength from the stock market 's climb . drew drew The dollar strength from the stock market 's climb
-Yet the Soviet leader 's readiness to embark on foreign visits and steady accumulation of personal power , particularly since the last Politburo reshuffle on Sept. 30 , do not suggest that Mr. Gorbachev is on the verge of being toppled ; nor does he look likely to reverse the powers of perestroika . embark might embark the Soviet leader on foreign visits
-Yet the Soviet leader 's readiness to embark on foreign visits and steady accumulation of personal power , particularly since the last Politburo reshuffle on Sept. 30 , do not suggest that Mr. Gorbachev is on the verge of being toppled ; nor does he look likely to reverse the powers of perestroika . embark might embark Mr. Gorbachev on foreign visits
-Yet the Soviet leader 's readiness to embark on foreign visits and steady accumulation of personal power , particularly since the last Politburo reshuffle on Sept. 30 , do not suggest that Mr. Gorbachev is on the verge of being toppled ; nor does he look likely to reverse the powers of perestroika . suggest does n't suggest the Soviet leader 's readiness to embark on foreign visits and steady accumulation of personal power , particularly since the last Politburo reshuffle on Sept. 30 that Mr. Gorbachev is on the verge of being toppled
-Yet the Soviet leader 's readiness to embark on foreign visits and steady accumulation of personal power , particularly since the last Politburo reshuffle on Sept. 30 , do not suggest that Mr. Gorbachev is on the verge of being toppled ; nor does he look likely to reverse the powers of perestroika . toppled might be toppled Mr. Gorbachev
-Yet the Soviet leader 's readiness to embark on foreign visits and steady accumulation of personal power , particularly since the last Politburo reshuffle on Sept. 30 , do not suggest that Mr. Gorbachev is on the verge of being toppled ; nor does he look likely to reverse the powers of perestroika . look does n't look the Soviet leader likely to reverse the powers of perestroika
-Yet the Soviet leader 's readiness to embark on foreign visits and steady accumulation of personal power , particularly since the last Politburo reshuffle on Sept. 30 , do not suggest that Mr. Gorbachev is on the verge of being toppled ; nor does he look likely to reverse the powers of perestroika . look does n't look Mr. Gorbachev likely to reverse the powers of perestroika
-Yet the Soviet leader 's readiness to embark on foreign visits and steady accumulation of personal power , particularly since the last Politburo reshuffle on Sept. 30 , do not suggest that Mr. Gorbachev is on the verge of being toppled ; nor does he look likely to reverse the powers of perestroika . reverse might not reverse the Soviet leader the powers of perestroika
-Yet the Soviet leader 's readiness to embark on foreign visits and steady accumulation of personal power , particularly since the last Politburo reshuffle on Sept. 30 , do not suggest that Mr. Gorbachev is on the verge of being toppled ; nor does he look likely to reverse the powers of perestroika . reverse might not reverse Mr. Gorbachev the powers of perestroika
-The last time IBM tapped the corporate debt market was in April 1988 , when it offered $ 500 million of debt securities . tapped tapped IBM the corporate debt market April 1988
-The last time IBM tapped the corporate debt market was in April 1988 , when it offered $ 500 million of debt securities . tapped tapped IBM the corporate debt market when it offered $ 500 million of debt securities
-The last time IBM tapped the corporate debt market was in April 1988 , when it offered $ 500 million of debt securities . offered offered IBM $ 500 million of debt securities April 1988 $ 500 million
-Although Mr. Azoff wo n't produce films at first , it is possible that he could do so later , the sources said . produce wo n't produce Mr. Azoff films later
-Although Mr. Azoff wo n't produce films at first , it is possible that he could do so later , the sources said . do could do Mr. Azoff later
-Although Mr. Azoff wo n't produce films at first , it is possible that he could do so later , the sources said . said said the sources Although Mr. Azoff wo n't produce films at first , it is possible that he could do so later
-Now that the New York decision has been left intact , other states may follow suit . left been left the New York decision Now intact
-Now that the New York decision has been left intact , other states may follow suit . follow may follow other states
-Few people in the advertising business have raised as many hackles as Alvin A. Achenbaum . raised raised Few people in the advertising business as many hackles as Alvin A. Achenbaum
-Because patients require less attention from nurses and other staff , room charges are lower -- about $ 100 less per day than a regular room at the Vermont hospital . require require patients attention from nurses less
-Because patients require less attention from nurses and other staff , room charges are lower -- about $ 100 less per day than a regular room at the Vermont hospital . require require patients attention from other staff less
-One had best not dance on top of a coffin until the lid is sealed tightly shut . '' had had best not dance on top of a coffin until the lid is sealed tightly shut One
-One had best not dance on top of a coffin until the lid is sealed tightly shut . '' dance had n't dance One on top of a coffin until the lid is sealed tightly shut
-One had best not dance on top of a coffin until the lid is sealed tightly shut . '' sealed sealed the lid tightly shut
-One had best not dance on top of a coffin until the lid is sealed tightly shut . '' shut should be shut the lid sealed tightly
-Although no specific agreements are expected , Mr. Shevardnadze said `` that does n't mean they will be without an agenda . '' expected is n't expected specific agreements
-Although no specific agreements are expected , Mr. Shevardnadze said `` that does n't mean they will be without an agenda . '' said said Mr. Shevardnadze that does n't mean they will be without an agenda
-Although no specific agreements are expected , Mr. Shevardnadze said `` that does n't mean they will be without an agenda . '' said said Mr. Shevardnadze Although no specific agreements are expected
-Although no specific agreements are expected , Mr. Shevardnadze said `` that does n't mean they will be without an agenda . '' mean does n't mean that they will be without an agenda
-`` Most of the LBO guys do n't know how to run a business anyway . '' know does n't know Most of the LBO guys how to run a business
-`` Most of the LBO guys do n't know how to run a business anyway . '' run may run the LBO guys a business
-Indeed , the insurance adjusters had already bolted out of the courtroom . bolted had bolted the insurance adjusters out of the courtroom
-And he got rid of low - margin businesses that just were n't making money for the company . making is n't making low - margin businesses money for the company
-Vernon E. Jordan was elected to the board of this transportation services concern . elected elected Vernon E. Jordan to the board of this transportation services concern
-And Dewar 's gave discounts on Scottish merchandise to people who sent in bottle labels . gave gave Dewar 's discounts on Scottish merchandise to people who sent in bottle labels
-And Dewar 's gave discounts on Scottish merchandise to people who sent in bottle labels . sent sent people bottle labels in
-Since the real estate unit also includes debt , the imputed value of the real estate itself is close to $ 3 billion . includes includes real estate unit debt
-Since the real estate unit also includes debt , the imputed value of the real estate itself is close to $ 3 billion . imputed imputed value of the real estate close to $ 3 billion
-The company said the fastener business `` has been under severe cost pressures for some time . '' said said The company the fastener business `` has been under severe cost pressures for some time . ''
-Ford Motor Co. said it is recalling about 3,600 of its 1990 - model Escorts because the windshield adhesive was improperly applied to some cars . said said Ford Motor Co. it is recalling about 3,600 of its 1990 - model Escorts because the windshield adhesive was improperly applied to some cars
-Ford Motor Co. said it is recalling about 3,600 of its 1990 - model Escorts because the windshield adhesive was improperly applied to some cars . recalling recalling Ford Motor Co. about 3,600 of its 1990 - model Escorts because the windshield adhesive was improperly applied to some cars about 3,600
-Ford Motor Co. said it is recalling about 3,600 of its 1990 - model Escorts because the windshield adhesive was improperly applied to some cars . applied applied windshield adhesive the windshield improperly
-The two sides are also discussing certain business ventures involving cable rights to Columbia 's movies . discussing discussing The two sides business ventures
-The two sides are also discussing certain business ventures involving cable rights to Columbia 's movies . involving involving business ventures cable rights
-Industrial Bank of Japan , which claims to be the biggest Japanese buyer of U.S. mortgage securities , says it will more than double its purchases this year , to an amount one official puts at several billion dollars . claims claims Industrial Bank of Japan to be the biggest Japanese buyer of U.S. mortgage securities
-Industrial Bank of Japan , which claims to be the biggest Japanese buyer of U.S. mortgage securities , says it will more than double its purchases this year , to an amount one official puts at several billion dollars . says says Industrial Bank of Japan it will more than double its purchases this year , to an amount one official puts at several billion dollars .
-Industrial Bank of Japan , which claims to be the biggest Japanese buyer of U.S. mortgage securities , says it will more than double its purchases this year , to an amount one official puts at several billion dollars . will will more than double its purchases this year , to an amount one official puts at several billion dollars Industrial Bank of Japan this year
-Industrial Bank of Japan , which claims to be the biggest Japanese buyer of U.S. mortgage securities , says it will more than double its purchases this year , to an amount one official puts at several billion dollars . double will double Industrial Bank of Japan its purchases this year , to an amount one official puts at several billion dollars to an amount one official puts at several billion dollars this year
-Industrial Bank of Japan , which claims to be the biggest Japanese buyer of U.S. mortgage securities , says it will more than double its purchases this year , to an amount one official puts at several billion dollars . puts will puts one official amount at several billion dollars at this year
-I was pleased to note that your Oct. 23 Centennial Journal item recognized the money - fund concept as one of the significant events of the past century . recognized recognized your Oct. 23 Centennial Journal item the money - fund concept Oct. 23 as one of the significant events of the past century
-To avoid a runoff , one candidate would have to win 50 % of the vote -- a feat that most analysts consider impossible with so many candidates running . avoid might avoid a runoff one candidate would have to win 50 % of the vote
-To avoid a runoff , one candidate would have to win 50 % of the vote -- a feat that most analysts consider impossible with so many candidates running . win must win one candidate 50 % of the vote To avoid a runoff
-To avoid a runoff , one candidate would have to win 50 % of the vote -- a feat that most analysts consider impossible with so many candidates running . consider consider most analyst one candidate would have to win 50 % of the vote with so many candidates running
-To avoid a runoff , one candidate would have to win 50 % of the vote -- a feat that most analysts consider impossible with so many candidates running . running have been running candidates
-The fitness craze itself has gone soft , the survey found . gone gone The fitness craze soft
-The fitness craze itself has gone soft , the survey found . found found the survey The fitness craze itself has gone soft
-For the past five years , unions have n't managed to win wage increases as large as those granted to nonunion workers . managed have n't managed unions win wage increases as large as those granted to nonunion workers
-For the past five years , unions have n't managed to win wage increases as large as those granted to nonunion workers . win have n't win unions wage increases as large as those granted to nonunion workers
-For the past five years , unions have n't managed to win wage increases as large as those granted to nonunion workers . granted granted nonunion workers wage increases
-The U.S. market , too , is dominated by a giant , International Business Machines Corp . dominated dominated a giant The U.S. market
-The U.S. market , too , is dominated by a giant , International Business Machines Corp . dominated dominated International Business Machines Corp The U.S. market
-Richard Newsom , a California state official who last year examined Lincoln 's parent , American Continental Corp. , said he also saw evidence that crimes had been committed . examined examined Richard Newsom Lincoln 's parent last year
-Richard Newsom , a California state official who last year examined Lincoln 's parent , American Continental Corp. , said he also saw evidence that crimes had been committed . examined examined Richard Newsom American Continental Corp. last year
-Richard Newsom , a California state official who last year examined Lincoln 's parent , American Continental Corp. , said he also saw evidence that crimes had been committed . said said Richard Newsom he also saw evidence that crimes had been committed
-Richard Newsom , a California state official who last year examined Lincoln 's parent , American Continental Corp. , said he also saw evidence that crimes had been committed . saw saw Richard Newsom evidence that crimes had been committed
-Richard Newsom , a California state official who last year examined Lincoln 's parent , American Continental Corp. , said he also saw evidence that crimes had been committed . committed had committed Lincoln 's parent crimes
-Richard Newsom , a California state official who last year examined Lincoln 's parent , American Continental Corp. , said he also saw evidence that crimes had been committed . committed had committed American Continental Corp. crimes
-Student job postings at Boston University slip 10 % this year following a 10 % drop in 1988 . slip slipped Student job postings this year Boston University 10 %
-Student job postings at Boston University slip 10 % this year following a 10 % drop in 1988 . following following Student job postings at Boston University slip 10 % this year a 10 % drop in 1988 . this year Boston University
-Despite the modest gains , traders said the market remains dull , with investors remaining cautiously on the sidelines . said said traders the market remains dull , with investors remaining cautiously on the sidelines . Despite the modest gains
-Despite the modest gains , traders said the market remains dull , with investors remaining cautiously on the sidelines . remains remains the market dull , with investors remaining cautiously on the sidelines .
-Despite the modest gains , traders said the market remains dull , with investors remaining cautiously on the sidelines . remaining remaining investors on the sidelines . cautiously
-Considered as a whole , Mr. Lane said , the filings required under the proposed rules `` will be at least as effective , if not more so , for investors following transactions . '' considered considered Mr. Lane the filings as a whole
-Considered as a whole , Mr. Lane said , the filings required under the proposed rules `` will be at least as effective , if not more so , for investors following transactions . '' said said Mr. Lane the filings required under the proposed rules `` will be at least as effective
-Considered as a whole , Mr. Lane said , the filings required under the proposed rules `` will be at least as effective , if not more so , for investors following transactions . '' required required the filings under the proposed rules
-Considered as a whole , Mr. Lane said , the filings required under the proposed rules `` will be at least as effective , if not more so , for investors following transactions . '' proposed proposed rules
-Considered as a whole , Mr. Lane said , the filings required under the proposed rules `` will be at least as effective , if not more so , for investors following transactions . '' following will following the filings transactions
-Company officials said the current robust domestic demand that has been fueling sustained economic expansion helped push up sales of products like ships , steel structures , power systems and machinery and resulted in sharply higher profit . said said Company officials the current robust domestic demand that has been fueling sustained economic expansion helped push up sales of products like ships , steel structures , power systems and machinery and resulted in sharply higher profit
-Company officials said the current robust domestic demand that has been fueling sustained economic expansion helped push up sales of products like ships , steel structures , power systems and machinery and resulted in sharply higher profit . fueling fueling the current robust domestic demand sustained economic expansion
-Company officials said the current robust domestic demand that has been fueling sustained economic expansion helped push up sales of products like ships , steel structures , power systems and machinery and resulted in sharply higher profit . sustained sustained economic expansion
-Company officials said the current robust domestic demand that has been fueling sustained economic expansion helped push up sales of products like ships , steel structures , power systems and machinery and resulted in sharply higher profit . helped helped the current robust domestic demand that has been fueling sustained economic expansion push up sales of products like ships , steel structures , power systems and machinery
-Company officials said the current robust domestic demand that has been fueling sustained economic expansion helped push up sales of products like ships , steel structures , power systems and machinery and resulted in sharply higher profit . push pushed the current robust domestic demand that has been fueling sustained economic expansion sales of products like ships , steel structures , power systems and machinery up
-Company officials said the current robust domestic demand that has been fueling sustained economic expansion helped push up sales of products like ships , steel structures , power systems and machinery and resulted in sharply higher profit . resulted resulted the current robust domestic demand that has been fueling sustained economic expansion in sharply higher profit
-Ever since , the remaining members have been desperate for the United States to rejoin this dreadful group . remaining remaining members Ever since
-Second , the dollar is showing persistent strength despite a slowdown in the U.S. economy shown by economic indicators . showing showing the dollar persistent strength despite a slowdown in the U.S. economy shown by economic indicators
-Merrill said it continues to believe that `` the causes of excess market volatility are far more complex than any particular computer trading strategy . said said Merrill it continues to believe that `` the causes of excess market volatility are far more complex than any particular computer trading strategy
-Merrill said it continues to believe that `` the causes of excess market volatility are far more complex than any particular computer trading strategy . continues continues Merrill to believe that `` the causes of excess market volatility are far more complex than any particular computer trading strategy
-Merrill said it continues to believe that `` the causes of excess market volatility are far more complex than any particular computer trading strategy . believe believe Merrill that `` the causes of excess market volatility are far more complex than any particular computer trading strategy
-The discount rate on three - month Treasury bills rose slightly from the average rate at Monday 's auction to 7.79 % for a bond - equivalent yield of 8.04 % . rose rose The discount rate on three - month Treasury bills Monday at Monday's auction slightly from the average rate at Monday 's auction
-The discount rate on three - month Treasury bills rose slightly from the average rate at Monday 's auction to 7.79 % for a bond - equivalent yield of 8.04 % . rose rose The discount rate on three - month Treasury bills Monday at Monday's auction to 7.79 % for a bond - equivalent yield of 8.04 %
-Tom Panelli had a perfectly good reason for not using the $ 300 rowing machine he bought three years ago . had had Tom Panelli a perfectly good reason for not using the $ 300 rowing machine he bought three years ago for perfectly
-Tom Panelli had a perfectly good reason for not using the $ 300 rowing machine he bought three years ago . using is n't using Tom Panelli the $ 300 rowing machine
-Tom Panelli had a perfectly good reason for not using the $ 300 rowing machine he bought three years ago . bought bought Tom Panelli rowing machine three years ago for $ 300
-He sold them well below market value to raise cash `` to pay off mounting credit - card debts , '' incurred to buy presents for his girlfriend , his attorney , Philip Russell , told IFAR . raise would raise pay off mounting credit - card debts cash He sold them well below market value
-He sold them well below market value to raise cash `` to pay off mounting credit - card debts , '' incurred to buy presents for his girlfriend , his attorney , Philip Russell , told IFAR . pay would pay off mounting credit - card debts off cash
-He sold them well below market value to raise cash `` to pay off mounting credit - card debts , '' incurred to buy presents for his girlfriend , his attorney , Philip Russell , told IFAR . mounting mounting credit - card debts
-He sold them well below market value to raise cash `` to pay off mounting credit - card debts , '' incurred to buy presents for his girlfriend , his attorney , Philip Russell , told IFAR . incurred incurred credit - card debts buy presents for his girlfriend
-He sold them well below market value to raise cash `` to pay off mounting credit - card debts , '' incurred to buy presents for his girlfriend , his attorney , Philip Russell , told IFAR . buy had buy cash presents for his girlfriend for his girlfriend
-He sold them well below market value to raise cash `` to pay off mounting credit - card debts , '' incurred to buy presents for his girlfriend , his attorney , Philip Russell , told IFAR . told told his attorney He sold them well below market value to raise cash `` to pay off mounting credit - card debts , '' incurred to buy presents for his girlfriend IFAR
-He sold them well below market value to raise cash `` to pay off mounting credit - card debts , '' incurred to buy presents for his girlfriend , his attorney , Philip Russell , told IFAR . told told Philip Russell He sold them well below market value to raise cash `` to pay off mounting credit - card debts , '' incurred to buy presents for his girlfriend IFAR
-About $ 70 billion is estimated to be tied up in the short - term money market , which acts both as a hedge against inflation for consumers and an accelerator of inflation and deficits for the government . estimated estimated to be tied up in the short - term money market , which acts both as a hedge against inflation for consumers and an accelerator of inflation and deficits for the government About $ 70 billion
-About $ 70 billion is estimated to be tied up in the short - term money market , which acts both as a hedge against inflation for consumers and an accelerator of inflation and deficits for the government . tied tied up About $ 70 billion in the short - term money market
-About $ 70 billion is estimated to be tied up in the short - term money market , which acts both as a hedge against inflation for consumers and an accelerator of inflation and deficits for the government . acts acts short - term money market both as a hedge against inflation for consumers and an accelerator of inflation and deficits for the government
-Separately , Ford and Mazda Motor Corp. 's U.S. sales arm said they are recalling about 88,500 1988 - model Mercury Tracers and 220,000 1986 , 1987 and 1988 model Mazda 323s equipped with 1.6 - liter fuel - injected engines to replace the oil filler cap . said said Ford they are recalling about 88,500 1988 - model Mercury Tracers and 220,000 1986 , 1987 and 1988 model Mazda 323s equipped with 1.6 - liter fuel - injected engines to replace the oil filler cap .
-Separately , Ford and Mazda Motor Corp. 's U.S. sales arm said they are recalling about 88,500 1988 - model Mercury Tracers and 220,000 1986 , 1987 and 1988 model Mazda 323s equipped with 1.6 - liter fuel - injected engines to replace the oil filler cap . said said Mazda Motor Corp. they are recalling about 88,500 1988 - model Mercury Tracers and 220,000 1986 , 1987 and 1988 model Mazda 323s equipped with 1.6 - liter fuel - injected engines to replace the oil filler cap .
-Separately , Ford and Mazda Motor Corp. 's U.S. sales arm said they are recalling about 88,500 1988 - model Mercury Tracers and 220,000 1986 , 1987 and 1988 model Mazda 323s equipped with 1.6 - liter fuel - injected engines to replace the oil filler cap . said said U.S. sales arm they are recalling about 88,500 1988 - model Mercury Tracers and 220,000 1986 , 1987 and 1988 model Mazda 323s equipped with 1.6 - liter fuel - injected engines to replace the oil filler cap .
-Separately , Ford and Mazda Motor Corp. 's U.S. sales arm said they are recalling about 88,500 1988 - model Mercury Tracers and 220,000 1986 , 1987 and 1988 model Mazda 323s equipped with 1.6 - liter fuel - injected engines to replace the oil filler cap . recalling recalling Ford about 88,500 1988 - model Mercury Tracers and 220,000 1986 , 1987 and 1988 model Mazda 323s equipped with 1.6 - liter fuel - injected engines replace the oil filler cap
-Separately , Ford and Mazda Motor Corp. 's U.S. sales arm said they are recalling about 88,500 1988 - model Mercury Tracers and 220,000 1986 , 1987 and 1988 model Mazda 323s equipped with 1.6 - liter fuel - injected engines to replace the oil filler cap . recalling recalling Mazda Motor Corp. about 88,500 1988 - model Mercury Tracers and 220,000 1986 , 1987 and 1988 model Mazda 323s equipped with 1.6 - liter fuel - injected engines replace the oil filler cap
-Separately , Ford and Mazda Motor Corp. 's U.S. sales arm said they are recalling about 88,500 1988 - model Mercury Tracers and 220,000 1986 , 1987 and 1988 model Mazda 323s equipped with 1.6 - liter fuel - injected engines to replace the oil filler cap . recalling recalling U.S. sales arm about 88,500 1988 - model Mercury Tracers and 220,000 1986 , 1987 and 1988 model Mazda 323s equipped with 1.6 - liter fuel - injected engines replace the oil filler cap
-Separately , Ford and Mazda Motor Corp. 's U.S. sales arm said they are recalling about 88,500 1988 - model Mercury Tracers and 220,000 1986 , 1987 and 1988 model Mazda 323s equipped with 1.6 - liter fuel - injected engines to replace the oil filler cap . equipped been equipped with about 88,500 1988 - model Mercury Tracers and 220,000 1986 , 1987 and 1988 model Mazda 323s 1.6 - liter fuel - injected engines replace the oil filler cap
-Separately , Ford and Mazda Motor Corp. 's U.S. sales arm said they are recalling about 88,500 1988 - model Mercury Tracers and 220,000 1986 , 1987 and 1988 model Mazda 323s equipped with 1.6 - liter fuel - injected engines to replace the oil filler cap . injected will injected replace the oil filler cap 1.6 - liter fuel engines
-Separately , Ford and Mazda Motor Corp. 's U.S. sales arm said they are recalling about 88,500 1988 - model Mercury Tracers and 220,000 1986 , 1987 and 1988 model Mazda 323s equipped with 1.6 - liter fuel - injected engines to replace the oil filler cap . replace will replace 1.6 - liter fuel - injected engines the oil filler cap
-Mr. Wathen , who says Pinkerton 's had a loss of nearly $ 8 million in 1987 under American Brands , boasts that he 's made Pinkerton 's profitable again . says had says Mr. Wathen Pinkerton 's had a loss of nearly $ 8 million in 1987 under American Brands Pinkerton 's
-Mr. Wathen , who says Pinkerton 's had a loss of nearly $ 8 million in 1987 under American Brands , boasts that he 's made Pinkerton 's profitable again . had had Pinkerton 's loss of nearly $ 8 million in 1987
-Mr. Wathen , who says Pinkerton 's had a loss of nearly $ 8 million in 1987 under American Brands , boasts that he 's made Pinkerton 's profitable again . boasts boasts Mr. Wathen that he 's made Pinkerton 's profitable again about Pinkerton 's
-Mr. Wathen , who says Pinkerton 's had a loss of nearly $ 8 million in 1987 under American Brands , boasts that he 's made Pinkerton 's profitable again . made made Mr. Wathen Pinkerton 's profitable again for Pinkerton 's
-( Separately , the Senate last week passed a bill permitting execution of terrorists who kill Americans abroad . ) passed passed Senate a bill about permitting execution of terrorists who kill Americans abroad last week
-( Separately , the Senate last week passed a bill permitting execution of terrorists who kill Americans abroad . ) permitting will permitting a bill execution of terrorists who kill Americans abroad
-( Separately , the Senate last week passed a bill permitting execution of terrorists who kill Americans abroad . ) kill kill Americans abroad terrorists
-( Separately , the Senate last week passed a bill permitting execution of terrorists who kill Americans abroad . ) kill kill Americans abroad who
-Workers at two Chilean mines , Los Bronces and El Soldado , which belong to the Exxon - owned Minera Disputado group , will vote Thursday on whether to strike after a two - year labor pact ends today . belong belong two Chilean mines to the Exxon - owned Minera Disputado group
-Workers at two Chilean mines , Los Bronces and El Soldado , which belong to the Exxon - owned Minera Disputado group , will vote Thursday on whether to strike after a two - year labor pact ends today . belong belong Los Bronces and El Soldado to the Exxon - owned Minera Disputado group
-Workers at two Chilean mines , Los Bronces and El Soldado , which belong to the Exxon - owned Minera Disputado group , will vote Thursday on whether to strike after a two - year labor pact ends today . owned owned Exxon Minera Disputado group
-Workers at two Chilean mines , Los Bronces and El Soldado , which belong to the Exxon - owned Minera Disputado group , will vote Thursday on whether to strike after a two - year labor pact ends today . vote will vote Workers at two Chilean mines on whether to strike after a two - year labor pact ends Thursday
-Workers at two Chilean mines , Los Bronces and El Soldado , which belong to the Exxon - owned Minera Disputado group , will vote Thursday on whether to strike after a two - year labor pact ends today . strike might strike Workers at two Chilean mines a two - year labor pact ends today
-Workers at two Chilean mines , Los Bronces and El Soldado , which belong to the Exxon - owned Minera Disputado group , will vote Thursday on whether to strike after a two - year labor pact ends today . ends will end a two - year labor pact today
-To my knowledge , no government entities , including the EPA , are pursuing UV - B measurements . including included are pursuing UV - B measurements the EPA
-To my knowledge , no government entities , including the EPA , are pursuing UV - B measurements . pursuing are n't pursuing government entities UV - B measurements
-To my knowledge , no government entities , including the EPA , are pursuing UV - B measurements . pursuing are n't pursuing the EPA UV - B measurements
-Within two hours , viewers pledged over $ 400,000 , according to a Red Cross executive . pledged pledged viewers over $ 400,000 Within two hours
-Within two hours , viewers pledged over $ 400,000 , according to a Red Cross executive . according according to Within two hours , viewers pledged over $ 400,000 a Red Cross executive
-Rolls - Royce Motor Cars Inc. said it expects its U.S. sales to remain steady at about 1,200 cars in 1990 . said said Rolls - Royce Motor Cars Inc. it expects its U.S. sales to remain steady at about 1,200 cars in 1990
-Rolls - Royce Motor Cars Inc. said it expects its U.S. sales to remain steady at about 1,200 cars in 1990 . expects expects Rolls - Royce Motor Cars Inc. its U.S. sales to remain steady at about 1,200 cars in 1990 1990 1,200 cars
-Rolls - Royce Motor Cars Inc. said it expects its U.S. sales to remain steady at about 1,200 cars in 1990 . remain will remain U.S. sales 1990 steady at about 1,200 cars in 1990
-It said CS First Boston `` has consistently been one of the most aggressive firms in merchant banking '' and that `` a very significant portion '' of the firm 's profit in recent years has come from merchant banking - related business . come came to a very significant portion '' of the firm 's profit in recent years CS First Boston in recent years merchant banking - related business . a very significant portion
-It said CS First Boston `` has consistently been one of the most aggressive firms in merchant banking '' and that `` a very significant portion '' of the firm 's profit in recent years has come from merchant banking - related business . come came to a very significant portion '' of the firm 's profit in recent years one of the most aggressive firms in merchant banking in recent years merchant banking - related business . a very significant portion
-It said CS First Boston `` has consistently been one of the most aggressive firms in merchant banking '' and that `` a very significant portion '' of the firm 's profit in recent years has come from merchant banking - related business . banking banking CS First Boston a very significant portion '' of the firm 's profit in recent years a very significant portion
-It said CS First Boston `` has consistently been one of the most aggressive firms in merchant banking '' and that `` a very significant portion '' of the firm 's profit in recent years has come from merchant banking - related business . banking banking one of the most aggressive firms in merchant banking a very significant portion '' of the firm 's profit in recent years a very significant portion
-It said CS First Boston `` has consistently been one of the most aggressive firms in merchant banking '' and that `` a very significant portion '' of the firm 's profit in recent years has come from merchant banking - related business . related related to business
-Annualized interest rates on certain investments as reported by the Federal Reserve Board on a weekly - average basis : annualized annualized interest rates for certain investments
-Annualized interest rates on certain investments as reported by the Federal Reserve Board on a weekly - average basis : reported reported the Federal Reserve Board Annualized interest rates on certain investments on a weekly - average basis
-The Chemical spokeswoman said the bank has examined its methodologies and internal controls . said said The Chemical spokeswoman the bank has examined its methodologies
-The Chemical spokeswoman said the bank has examined its methodologies and internal controls . examined examined the bank its methodologies
-Earlier this year , Blackstone Group , a New York investment bank , had no trouble selling out a special $ 570 million mortgage - securities trust it created for Japanese investors . selling had been selling out Blackstone Group , a New York investment bank a special $ 570 million mortgage - securities trust it created for Japanese investors Earlier this year
-Earlier this year , Blackstone Group , a New York investment bank , had no trouble selling out a special $ 570 million mortgage - securities trust it created for Japanese investors . created created Blackstone Group , a New York investment bank a special $ 570 million mortgage - securities trust for Japanese investors
-The operative definition of newsworthiness will favor virtually unrestrained use of personal , sensitive and intimate facts . favor will favor operative definition of newsworthiness virtually unrestrained use of personal , sensitive and intimate facts
-However , the problem is that once most poison pills are adopted , they survive forever . adopted adopted most poison pills
-However , the problem is that once most poison pills are adopted , they survive forever . survive will survive most poison pills
-He said he expects the company to have $ 500 million in sales for this year . have will have the company $ 500 million this year
-The senior subordinated debentures maturing in 2004 are targeted to be offered at a yield of between 12 5\/8 % to 12 3\/4 % . subordinated subordinated debentures maturing in 2004 are targeted to be offered at a yield of between 12 5\/8 % to 12 3\/4 %
-The senior subordinated debentures maturing in 2004 are targeted to be offered at a yield of between 12 5\/8 % to 12 3\/4 % . maturing maturing The senior subordinated debenture in 2004
-The senior subordinated debentures maturing in 2004 are targeted to be offered at a yield of between 12 5\/8 % to 12 3\/4 % . targeted targeted The senior subordinated debenture
-The senior subordinated debentures maturing in 2004 are targeted to be offered at a yield of between 12 5\/8 % to 12 3\/4 % . offered will be offered The senior subordinated debenture at a yield of between 12 5\/8 % to 12 3\/4 %
-Crouched at shortstop , Bert Campaneris , once Oakland 's master thief , effortlessly scoops up a groundball and flips it to second . crouched crouched Bert Campaneris at shortstop
-Crouched at shortstop , Bert Campaneris , once Oakland 's master thief , effortlessly scoops up a groundball and flips it to second . crouched crouched Oakland 's master thief at shortstop
-Crouched at shortstop , Bert Campaneris , once Oakland 's master thief , effortlessly scoops up a groundball and flips it to second . scoops scoops Bert Campaneris a groundball effortlessly
-Crouched at shortstop , Bert Campaneris , once Oakland 's master thief , effortlessly scoops up a groundball and flips it to second . scoops scoops Oakland 's master thief a groundball effortlessly
-Crouched at shortstop , Bert Campaneris , once Oakland 's master thief , effortlessly scoops up a groundball and flips it to second . flips flips Bert Campaneris a groundball to second
-Crouched at shortstop , Bert Campaneris , once Oakland 's master thief , effortlessly scoops up a groundball and flips it to second . flips flips Oakland 's master thief a groundball to second
-`` Nothing can be better than this , '' says Don Sider , owner of the West Palm Beach Tropics . says said Don Side Nothing can be better than this
-`` Nothing can be better than this , '' says Don Sider , owner of the West Palm Beach Tropics . says said owner of the West Palm Beach Tropics Nothing can be better than this
-Mr. Stoll suspected the intruder was one of those precocious students who has fun breaking into computers . suspected suspected Mr. Stoll the intruder was one of those precocious students
-Mr. Stoll suspected the intruder was one of those precocious students who has fun breaking into computers . breaking breaking students into computers
-That compares with 3.5 % butterfat for whole milk . compares compares that with 3.5 % butterfat for whole milk
-The market 's tempo was helped by the dollar 's resiliency , he said . helped helped The market's tempo by the dollar 's resiliency
-Ryukichi Imai , Japan 's ambassador to Mexico , agrees that Mexico may be too eager . agrees agrees Ryukichi Imai that Mexico may be too eager
-Ryukichi Imai , Japan 's ambassador to Mexico , agrees that Mexico may be too eager . agrees agrees Japan 's ambassador to Mexico that Mexico may be too eager
-In the first nine months , profit rose 10 % to $ 313.2 million , or $ 3.89 a share , from $ 283.9 million , or $ 3.53 a share . rose rose profit In the first nine months from $ 283.9 million to $ 313.2 million 10 %
-In the first nine months , profit rose 10 % to $ 313.2 million , or $ 3.89 a share , from $ 283.9 million , or $ 3.53 a share . rose rose profit In the first nine months from $ 3.53 a share to $ 313.2 million 10 %
-In the first nine months , profit rose 10 % to $ 313.2 million , or $ 3.89 a share , from $ 283.9 million , or $ 3.53 a share . rose rose profit In the first nine months from $ 283.9 million to $ 3.89 a share 10 %
-In the first nine months , profit rose 10 % to $ 313.2 million , or $ 3.89 a share , from $ 283.9 million , or $ 3.53 a share . rose rose profit In the first nine months from $ 3.53 a share to $ 3.89 a share 10 %
-Of the self - starting vacuum cleaner , he says : `` Could be Cuddles , { Mrs. Stinnett 's dog } . '' starting starting vacuum cleaner self
-To make them directly comparable , each index is based on the close of 1969 equaling 100 . based based on each index the close of 1969 equaling 100 To make them directly comparable
-To make them directly comparable , each index is based on the close of 1969 equaling 100 . equaling equaling the close of 1969 100 To make them directly comparable
-Overall , net sales of all mutual funds , excluding money market funds , fell to $ 1.9 billion in September from $ 4.2 billion in August , the trade group said . excluding excluding net sales of all mutual funds money market funds
-Overall , net sales of all mutual funds , excluding money market funds , fell to $ 1.9 billion in September from $ 4.2 billion in August , the trade group said . fell did n't fell money market funds net sales of all mutual funds in September from in August from $ 4.2 billion to $ 1.9 billion
-Overall , net sales of all mutual funds , excluding money market funds , fell to $ 1.9 billion in September from $ 4.2 billion in August , the trade group said . said said the trade group Overall , net sales of all mutual funds , excluding money market funds , fell to $ 1.9 billion in September from $ 4.2 billion in August
-He also contended that the plaintiffs failed to cite any legal authority that would justify such an injunction . failed failed plaintiffs cite any legal authority that would justify such an injunction
-He also contended that the plaintiffs failed to cite any legal authority that would justify such an injunction . cite did n't cite plaintiffs any legal authority that would justify such an injunction
-He also contended that the plaintiffs failed to cite any legal authority that would justify such an injunction . justify would justify any legal authority such an injunction
-It was the most active of the 100 - share index at 8.3 million shares , 6.5 million of which were traded by midday . traded traded shares midday 100 - share index 6.5 million
-It was the most active of the 100 - share index at 8.3 million shares , 6.5 million of which were traded by midday . traded traded shares midday 100 - share index 8.3 million shares
-Between flashes , certain areas in subjects ' brains are jolted with a magnetic stimulator . jolted jolted certain areas in subjects ' brains with a magnetic stimulator
-Humana contends that $ 8,000 represents an extreme case and that its regular charge for lithotripsy is $ 4,900 . contends contends Humana $ 8,000 represents an extreme case and that its regular charge for lithotripsy is $ 4,900 .
-Humana contends that $ 8,000 represents an extreme case and that its regular charge for lithotripsy is $ 4,900 . represents represents $ 8,000 an extreme case
-`` I ca n't believe they ( GM ) will let Ford have a free run , '' said Stephen Reitman , a European auto industry analyst at UBS - Phillips & Drew . believe ca n't believe Stephen Reitman they ( GM ) will let Ford have a free run
-`` I ca n't believe they ( GM ) will let Ford have a free run , '' said Stephen Reitman , a European auto industry analyst at UBS - Phillips & Drew . believe ca n't believe a European auto industry analyst at UBS - Phillips & Drew they ( GM ) will let Ford have a free run
-`` I ca n't believe they ( GM ) will let Ford have a free run , '' said Stephen Reitman , a European auto industry analyst at UBS - Phillips & Drew . have might have Ford a free run
-`` I ca n't believe they ( GM ) will let Ford have a free run , '' said Stephen Reitman , a European auto industry analyst at UBS - Phillips & Drew . said said Stephen Reitman I ca n't believe they ( GM ) will let Ford have a free run
-`` I ca n't believe they ( GM ) will let Ford have a free run , '' said Stephen Reitman , a European auto industry analyst at UBS - Phillips & Drew . said said a European auto industry analyst at UBS - Phillips & Drew I ca n't believe they ( GM ) will let Ford have a free run
-Hungary 's Parliament voted to hold a national referendum on an election to fill the new post of president . voted voted Hungary 's Parliament hold a national referendum on an election to fill the new post of president . fill the new post of president .
-Hungary 's Parliament voted to hold a national referendum on an election to fill the new post of president . hold should hold Hungary 's Parliament national referendum on an election to fill the new post of president . fill the new post of president .
-Hungary 's Parliament voted to hold a national referendum on an election to fill the new post of president . fill should fill Hungary 's Parliament the new post of president . election
-Edison Brothers Stores Inc. said it agreed to buy 229 Foxmoor women 's apparel stores from Foxmoor Specialty Stores Corp. , a unit of Dylex Ltd. of Toronto . said said Edison Brothers Stores Inc. it agreed to buy 229 Foxmoor women 's apparel stores from Foxmoor Specialty Stores Corp. , a unit of Dylex Ltd. of Toronto .
-Edison Brothers Stores Inc. said it agreed to buy 229 Foxmoor women 's apparel stores from Foxmoor Specialty Stores Corp. , a unit of Dylex Ltd. of Toronto . agreed agreed Edison Brothers Stores Inc. to buy 229 Foxmoor women 's apparel stores from Foxmoor Specialty Stores Corp. , a unit of Dylex Ltd. of Toronto with Foxmoor Specialty Stores Corp
-Edison Brothers Stores Inc. said it agreed to buy 229 Foxmoor women 's apparel stores from Foxmoor Specialty Stores Corp. , a unit of Dylex Ltd. of Toronto . agreed agreed Edison Brothers Stores Inc. to buy 229 Foxmoor women 's apparel stores from Foxmoor Specialty Stores Corp. , a unit of Dylex Ltd. of Toronto with a unit of Dylex Ltd. of Toronto
-Edison Brothers Stores Inc. said it agreed to buy 229 Foxmoor women 's apparel stores from Foxmoor Specialty Stores Corp. , a unit of Dylex Ltd. of Toronto . buy might buy Edison Brothers Stores Inc. 229 Foxmoor women 's apparel stores from Foxmoor Specialty Stores Corp
-Edison Brothers Stores Inc. said it agreed to buy 229 Foxmoor women 's apparel stores from Foxmoor Specialty Stores Corp. , a unit of Dylex Ltd. of Toronto . buy might buy Edison Brothers Stores Inc. 229 Foxmoor women 's apparel stores from a unit of Dylex Ltd. of Toronto
-Also , the premiums paid by the U.S. government on a purchase of copper for the U.S. Mint were lower than expected , and acted as a price depressant , analysts said . paid paid the U.S. government premiums for a purchase of copper for the U.S. Mint
-Also , the premiums paid by the U.S. government on a purchase of copper for the U.S. Mint were lower than expected , and acted as a price depressant , analysts said . acted acted the premiums paid as a price depressant
-Also , the premiums paid by the U.S. government on a purchase of copper for the U.S. Mint were lower than expected , and acted as a price depressant , analysts said . said said analysts Also , the premiums paid by the U.S. government on a purchase of copper for the U.S. Mint were lower than expected , and acted as a price depressant
-The office may also be able to advise foreign and multinational clients on international law and general matters . advise might advise may also be able to advise foreign and multinational clients on international law and general matters . on international law and general matters foreign and multinational clients
-During the past 25 years , the number of balloonists ( those who have passed a Federal Aviation Authority lighter - than - air test ) have swelled from a couple hundred to several thousand , with some estimates running as high as 10,000 . passed passed balloonists a Federal Aviation Authority lighter - than - air test During the past 25 years
-During the past 25 years , the number of balloonists ( those who have passed a Federal Aviation Authority lighter - than - air test ) have swelled from a couple hundred to several thousand , with some estimates running as high as 10,000 . swelled swelled the number of balloonists ( those who have passed a Federal Aviation Authority lighter - than - air test During the past 25 years from a couple hundred to several thousand , with some estimates running as high as 10,000
-During the past 25 years , the number of balloonists ( those who have passed a Federal Aviation Authority lighter - than - air test ) have swelled from a couple hundred to several thousand , with some estimates running as high as 10,000 . running running some estimates as high as 10,000
-Mr. Mulford said reports of tension between the Treasury and Fed have been exaggerated , insisting that they involved `` nuances . '' said said Mr. Mulford reports of tension between the Treasury and Fed have been exaggerated , insisting that they involved `` nuances . '' reports of tension between the Treasury and Fed
-Mr. Mulford said reports of tension between the Treasury and Fed have been exaggerated , insisting that they involved `` nuances . '' exaggerated exaggerated reports of tension between the Treasury and Fed
-Mr. Mulford said reports of tension between the Treasury and Fed have been exaggerated , insisting that they involved `` nuances . '' insisting insisting Mr. Mulford involved `` nuances . '' reports of tension between the Treasury and Fed have been exaggerated
-Mr. Zayadi was previously president and chief operating officer of Zellers Inc. , a retail chain that is owned by Toronto - based Hudson 's Bay Co. , Canada 's largest department store operator . owned owned Toronto - based Hudson 's Bay Co Zellers Inc
-Mr. Zayadi was previously president and chief operating officer of Zellers Inc. , a retail chain that is owned by Toronto - based Hudson 's Bay Co. , Canada 's largest department store operator . owned owned Toronto - based Hudson 's Bay Co retail chain
-Mr. Zayadi was previously president and chief operating officer of Zellers Inc. , a retail chain that is owned by Toronto - based Hudson 's Bay Co. , Canada 's largest department store operator . owned owned Canada 's largest department store operator Zellers Inc
-Mr. Zayadi was previously president and chief operating officer of Zellers Inc. , a retail chain that is owned by Toronto - based Hudson 's Bay Co. , Canada 's largest department store operator . owned owned Canada 's largest department store operator retail chain
-Mr. Zayadi was previously president and chief operating officer of Zellers Inc. , a retail chain that is owned by Toronto - based Hudson 's Bay Co. , Canada 's largest department store operator . based based Hudson 's Bay Co. Toronto
-Mr. Zayadi was previously president and chief operating officer of Zellers Inc. , a retail chain that is owned by Toronto - based Hudson 's Bay Co. , Canada 's largest department store operator . based based Canada 's largest department store operator Toronto
-Sen. Mitchell is confident he has sufficient votes to block such a measure with procedural actions . has has Sen. Mitchell sufficient votes to block such a measure with procedural actions
-Sen. Mitchell is confident he has sufficient votes to block such a measure with procedural actions . block might block Sen. Mitchell such a measure with procedural actions he has sufficient votes
-`` The only people who are flying are those who have to , '' said Frank Moore , chairman of the Australian Tourist Industry Association . flying flying those who have to
-`` The only people who are flying are those who have to , '' said Frank Moore , chairman of the Australian Tourist Industry Association . said said Frank Moore , chairman of the Australian Tourist Industry Association `` The only people who are flying are those who have to , ''
-For example , a passenger can fly from Chardon , Neb. , to Denver for as little as $ 89 to $ 109 , according to prices quoted by the company . fly can fly a passenger to Denver from Chardon for as little as $ 89 to $ 109
-For example , a passenger can fly from Chardon , Neb. , to Denver for as little as $ 89 to $ 109 , according to prices quoted by the company . according according a passenger can fly from Chardon , Neb. , to Denver for as little as $ 89 to $ 109 to prices quoted by the company
-For example , a passenger can fly from Chardon , Neb. , to Denver for as little as $ 89 to $ 109 , according to prices quoted by the company . quoted quoted the company prices
-On a broader scale , the ruling could encourage other states ' courts to adopt the logic of the New York court , not only in DES cases but in other product - related lawsuits , as well . encourage could encourage the ruling other states ' courts to adopt the logic of the New York court , not only in DES cases but in other product - related lawsuits , as well other states ' courts adopt the logic of the New York court , not only in DES cases but in other product - related lawsuits , as well
-On a broader scale , the ruling could encourage other states ' courts to adopt the logic of the New York court , not only in DES cases but in other product - related lawsuits , as well . adopt could adopt other states ' courts the logic of the New York court , not only in DES cases but in other product - related lawsuits , as well
-On a broader scale , the ruling could encourage other states ' courts to adopt the logic of the New York court , not only in DES cases but in other product - related lawsuits , as well . related related other product lawsuits
-USG Corp. agreed to sell its headquarters building here to Manufacturers Life Insurance Co. of Toronto , and will lease the 19 - story facility until it moves to a new quarters in 1992 . agreed agreed to USG Corp sell its headquarters building here to Manufacturers Life Insurance Co. of Toronto
-USG Corp. agreed to sell its headquarters building here to Manufacturers Life Insurance Co. of Toronto , and will lease the 19 - story facility until it moves to a new quarters in 1992 . sell will sell USG Corp to Manufacturers Life Insurance Co. of Toronto
-USG Corp. agreed to sell its headquarters building here to Manufacturers Life Insurance Co. of Toronto , and will lease the 19 - story facility until it moves to a new quarters in 1992 . lease will lease USG Corp the 19 - story facility until it moves to a new quarters in 1992
-USG Corp. agreed to sell its headquarters building here to Manufacturers Life Insurance Co. of Toronto , and will lease the 19 - story facility until it moves to a new quarters in 1992 . moves will move USG Corp. to a new quarters in 1992
-This involves trade - offs and { it } cuts against the grain of existing consumer and even provider conceptions of what is ` necessary . ' '' involves involves This trade - offs
-This involves trade - offs and { it } cuts against the grain of existing consumer and even provider conceptions of what is ` necessary . ' '' cuts cuts against the grain This
-This involves trade - offs and { it } cuts against the grain of existing consumer and even provider conceptions of what is ` necessary . ' '' existing exists consumer and even provider conceptions
-The tax has raised less than one billion marks ( $ 545.3 million ) annually in recent years , but the government has been reluctant to abolish the levy for budgetary concerns . raised raised The tax less than one billion marks ( $ 545.3 million ) annually in recent years annually in recent years $ 545.3 million
-The tax has raised less than one billion marks ( $ 545.3 million ) annually in recent years , but the government has been reluctant to abolish the levy for budgetary concerns . abolish should abolish the government the levy for budgetary concerns
-U.S. makers have under 10 % share , compared with half the market in Europe and 80 % at home . have have U.S. makers under 10 % share
-U.S. makers have under 10 % share , compared with half the market in Europe and 80 % at home . compared compared U.S. makers with half the market in Europe and 80 % at home
-Rather ominously , rabbit studies reveal that RU-486 can cause birth defects , Lancet , the British medical journal , reported in 1987 . reveal reveal studies that RU-486 can cause birth defects
-Rather ominously , rabbit studies reveal that RU-486 can cause birth defects , Lancet , the British medical journal , reported in 1987 . cause can cause RU-486 defects
-Rather ominously , rabbit studies reveal that RU-486 can cause birth defects , Lancet , the British medical journal , reported in 1987 . reported reported Lancet RU-486 can cause birth defects in 1987
-Rather ominously , rabbit studies reveal that RU-486 can cause birth defects , Lancet , the British medical journal , reported in 1987 . reported reported the British medical journal RU-486 can cause birth defects in 1987
-Similar studies are expected to reveal how stroke patients ' brains regroup -- a first step toward finding ways to bolster that process and speed rehabilitation . expected expected Similar studies to reveal how stroke patients ' brains regroup
-Similar studies are expected to reveal how stroke patients ' brains regroup -- a first step toward finding ways to bolster that process and speed rehabilitation . reveal would reveal Similar studies how stroke patients ' brains regroup
-Similar studies are expected to reveal how stroke patients ' brains regroup -- a first step toward finding ways to bolster that process and speed rehabilitation . regroup regroups stroke patients ' brains
-Similar studies are expected to reveal how stroke patients ' brains regroup -- a first step toward finding ways to bolster that process and speed rehabilitation . finding would be found ways to bolster that process and speed rehabilitation
-Similar studies are expected to reveal how stroke patients ' brains regroup -- a first step toward finding ways to bolster that process and speed rehabilitation . bolster would be bolstered that process and speed rehabilitation
-Similar studies are expected to reveal how stroke patients ' brains regroup -- a first step toward finding ways to bolster that process and speed rehabilitation . speed would be sped rehabilitation
-In recent testimony on Capitol Hill , Treasury officials said they were considering the new reporting requirements , and the expected publication of the proposal in the Federal Register today is the first official step toward creating final regulations . said said Treasury officials they were considering the new reporting requirements , and the expected publication of the proposal in the Federal Register today is the first official step toward creating final regulations Capitol Hill
-In recent testimony on Capitol Hill , Treasury officials said they were considering the new reporting requirements , and the expected publication of the proposal in the Federal Register today is the first official step toward creating final regulations . considering considering Treasury officials the new reporting requirements
-In recent testimony on Capitol Hill , Treasury officials said they were considering the new reporting requirements , and the expected publication of the proposal in the Federal Register today is the first official step toward creating final regulations . expected expected publication of the proposal in the Federal Register today
-In recent testimony on Capitol Hill , Treasury officials said they were considering the new reporting requirements , and the expected publication of the proposal in the Federal Register today is the first official step toward creating final regulations . creating will be created final regulations
-As the London trading session drew to a close , the market was still listening to the parliamentary debate on the economy , with new Chancellor of the Exchequer John Major expected to clarify his approach to the British economy and currency issues . drew drawn to the London trading session a close
-As the London trading session drew to a close , the market was still listening to the parliamentary debate on the economy , with new Chancellor of the Exchequer John Major expected to clarify his approach to the British economy and currency issues . listening listening to the market the parliamentary debate on the economy As the London trading session drew to a close
-As the London trading session drew to a close , the market was still listening to the parliamentary debate on the economy , with new Chancellor of the Exchequer John Major expected to clarify his approach to the British economy and currency issues . listening listening to the market the parliamentary debate on the economy still
-As the London trading session drew to a close , the market was still listening to the parliamentary debate on the economy , with new Chancellor of the Exchequer John Major expected to clarify his approach to the British economy and currency issues . expected expected of new Chancellor of the Exchequer to clarify his approach to the British economy and currency issues
-As the London trading session drew to a close , the market was still listening to the parliamentary debate on the economy , with new Chancellor of the Exchequer John Major expected to clarify his approach to the British economy and currency issues . expected expected of John Major to clarify his approach to the British economy and currency issues
-As the London trading session drew to a close , the market was still listening to the parliamentary debate on the economy , with new Chancellor of the Exchequer John Major expected to clarify his approach to the British economy and currency issues . clarify would clarify new Chancellor of the Exchequer his approach to the British economy and currency issues
-As the London trading session drew to a close , the market was still listening to the parliamentary debate on the economy , with new Chancellor of the Exchequer John Major expected to clarify his approach to the British economy and currency issues . clarify would clarify John Major his approach to the British economy and currency issues
-Six years ago , Judge O'Kicki was voted president of the Pennsylvania Conference of State Trial Judges by the state 's 400 judges . voted voted Judge O'Kicki to president of the Pennsylvania Conference of State Trial Judges the state 's 400 judges .
-The $ 150 million in senior subordinated floating - rate notes were targeted to be offered at a price to float four percentage points above the three - month LIBOR . subordinated subordinated targeted to be offered at a price to float four percentage points above the three - month LIBOR floating - rate notes $ 150 million
-The $ 150 million in senior subordinated floating - rate notes were targeted to be offered at a price to float four percentage points above the three - month LIBOR . targeted targeted senior subordinated floating - rate notes be offered at a price to float four percentage points above the three - month LIBO $ 150 million
-The $ 150 million in senior subordinated floating - rate notes were targeted to be offered at a price to float four percentage points above the three - month LIBOR . offered would offered senior subordinated floating - rate notes a price to float four percentage points above the three - month LIBOR
-The $ 150 million in senior subordinated floating - rate notes were targeted to be offered at a price to float four percentage points above the three - month LIBOR . float would float a price above the three - month LIBOR four percentage points
-Under the debt - equity program , potential investors will submit sealed bids on the percentage of discount they are willing to purchase the debt at , and the bids will be allocated based on these discount offers . submit will submit potential investors sealed bids on the percentage of discount they are willing to purchase the debt at
-Under the debt - equity program , potential investors will submit sealed bids on the percentage of discount they are willing to purchase the debt at , and the bids will be allocated based on these discount offers . sealed been sealed bids on the percentage of discount they are willing to purchase the debt at
-Under the debt - equity program , potential investors will submit sealed bids on the percentage of discount they are willing to purchase the debt at , and the bids will be allocated based on these discount offers . purchase will be purchased the debt at the percentage of discount Under the debt - equity program , potential investors will submit sealed bids
-Under the debt - equity program , potential investors will submit sealed bids on the percentage of discount they are willing to purchase the debt at , and the bids will be allocated based on these discount offers . allocated will be allocated bids based on these discount offers
-Under the debt - equity program , potential investors will submit sealed bids on the percentage of discount they are willing to purchase the debt at , and the bids will be allocated based on these discount offers . based based bids on these discount offers
-Technology stocks bore the brunt of the OTC market 's recent sell - off , and traders say it 's natural that they rebound sharply now that the market has turned around . bore bore Technology stocks the brunt of the OTC market recent sell - off
-Technology stocks bore the brunt of the OTC market 's recent sell - off , and traders say it 's natural that they rebound sharply now that the market has turned around . say say traders it 's natural that they rebound sharply the market has turned around
-Technology stocks bore the brunt of the OTC market 's recent sell - off , and traders say it 's natural that they rebound sharply now that the market has turned around . rebound rebound Technology stocks sharply the market has turned around
-Technology stocks bore the brunt of the OTC market 's recent sell - off , and traders say it 's natural that they rebound sharply now that the market has turned around . turned turned around the market around now around around market 's recent sell - off
-The offering was priced with an 8.95 % coupon rate at 99.1875 % to yield 9.19 % . priced priced The offering 8.95 % coupon rate at 99.1875 % to yield 9.19 % .
-The offering was priced with an 8.95 % coupon rate at 99.1875 % to yield 9.19 % . yield will yield The offering 9.19 % . The offering was priced with an 8.95 % coupon rate at 99.1875 %
-Shaw Industries , which agreed to acquire Armstrong World Industries ' carpet operations for an undisclosed price , rose 2 1\/4 to 26 1\/8 . agreed agreed Shaw Industries to acquire Armstrong World Industries ' carpet operations for an undisclosed price , rose 2 1\/4 to 26 1\/8
-Shaw Industries , which agreed to acquire Armstrong World Industries ' carpet operations for an undisclosed price , rose 2 1\/4 to 26 1\/8 . acquire acquired Armstrong World Industries ' carpet operations for an undisclosed price , rose 2 1\/4 to 26 1\/8
-Shaw Industries , which agreed to acquire Armstrong World Industries ' carpet operations for an undisclosed price , rose 2 1\/4 to 26 1\/8 . rose rose undisclosed price 2 1\/4 to 26 1\/8
-It rose 4.8 % for the 12 months ended in June and 4.7 % in the 12 months ended in September 1988 . ended ended It rose 4.8 % June
-It rose 4.8 % for the 12 months ended in June and 4.7 % in the 12 months ended in September 1988 . ended ended 4.7 % September 1988
-It rose 4.8 % for the 12 months ended in June and 4.7 % in the 12 months ended in September 1988 . ended ended It rose September 1988
-A half - dozen Soviet space officials , in Tokyo in July for an exhibit , stopped by to see their counterparts at the National Space Development Agency of Japan . stopped stopped Soviet space officials by the National Space Development Agency of Japan in July to see their counterparts A half - dozen
-Sidley will maintain its association with the Hashidate Law Office in Tokyo . maintain will maintain Sidley its association with the Hashidate Law Office
-`` To allow this massive level of unfettered federal borrowing without prior congressional approval would be irresponsible , '' said Rep. Fortney Stark ( D. , Calif. ) , who has introduced a bill to limit the RTC 's authority to issue debt . allow might be allowed federal borrowing without prior congressional approval
-`` To allow this massive level of unfettered federal borrowing without prior congressional approval would be irresponsible , '' said Rep. Fortney Stark ( D. , Calif. ) , who has introduced a bill to limit the RTC 's authority to issue debt . said said Fortney Stark To allow this massive level of unfettered federal borrowing without prior congressional approval would be irresponsible
-`` To allow this massive level of unfettered federal borrowing without prior congressional approval would be irresponsible , '' said Rep. Fortney Stark ( D. , Calif. ) , who has introduced a bill to limit the RTC 's authority to issue debt . introduced introduced Fortney Stark a bill to limit the RTC 's authority
-`` To allow this massive level of unfettered federal borrowing without prior congressional approval would be irresponsible , '' said Rep. Fortney Stark ( D. , Calif. ) , who has introduced a bill to limit the RTC 's authority to issue debt . limit might limit a bill the RTC 's authority
-`` To allow this massive level of unfettered federal borrowing without prior congressional approval would be irresponsible , '' said Rep. Fortney Stark ( D. , Calif. ) , who has introduced a bill to limit the RTC 's authority to issue debt . issue might issue the RTC debt
-The New Orleans oil and gas exploration and diving operations company added that it does n't expect any further adverse financial impact from the restructuring . added added New Orleans oil and gas exploration and diving operations company that it does n't expect any further adverse financial impact from the restructuring
-The New Orleans oil and gas exploration and diving operations company added that it does n't expect any further adverse financial impact from the restructuring . expect does n't expect The New Orleans oil and gas exploration and diving operations company any further adverse financial impact from the restructuring from the restructuring
-This is the U.N. group that managed to traduce its own charter of promoting education , science and culture . managed managed the U.N. group to traduce its own charter
-This is the U.N. group that managed to traduce its own charter of promoting education , science and culture . managed managed This to traduce its own charter
-This is the U.N. group that managed to traduce its own charter of promoting education , science and culture . traduce traduced This its own charter
-This is the U.N. group that managed to traduce its own charter of promoting education , science and culture . traduce traduced the U.N. group its own charter
-This is the U.N. group that managed to traduce its own charter of promoting education , science and culture . promoting should promoting This education
-This is the U.N. group that managed to traduce its own charter of promoting education , science and culture . promoting should promoting the U.N. group education
-This is the U.N. group that managed to traduce its own charter of promoting education , science and culture . promoting should promoting This science
-This is the U.N. group that managed to traduce its own charter of promoting education , science and culture . promoting should promoting the U.N. group science
-This is the U.N. group that managed to traduce its own charter of promoting education , science and culture . promoting should promoting This culture
-This is the U.N. group that managed to traduce its own charter of promoting education , science and culture . promoting should promoting the U.N. group culture
-He also unfortunately illustrated this intricate , jazzy tapestry with Mr. Pearson 's images , this time of geometric or repeating objects , in a kitschy mirroring of the musical structure that was thoroughly distracting from Mr. Reich 's piece and Mr. Stoltzman 's elegant execution of it . repeating repeating objects this intricate , jazzy tapestry
-He also unfortunately illustrated this intricate , jazzy tapestry with Mr. Pearson 's images , this time of geometric or repeating objects , in a kitschy mirroring of the musical structure that was thoroughly distracting from Mr. Reich 's piece and Mr. Stoltzman 's elegant execution of it . repeating repeating objects in a kitschy mirroring of the musical structure
-He also unfortunately illustrated this intricate , jazzy tapestry with Mr. Pearson 's images , this time of geometric or repeating objects , in a kitschy mirroring of the musical structure that was thoroughly distracting from Mr. Reich 's piece and Mr. Stoltzman 's elegant execution of it . distracting distracting a kitschy mirroring of the musical structure from Mr. Reich 's piece
-He also unfortunately illustrated this intricate , jazzy tapestry with Mr. Pearson 's images , this time of geometric or repeating objects , in a kitschy mirroring of the musical structure that was thoroughly distracting from Mr. Reich 's piece and Mr. Stoltzman 's elegant execution of it . distracting distracting a kitschy mirroring of the musical structure from Mr. Stoltzman 's elegant execution of it
-Only when one is ascending -- or in our case descending a tad trop rapidement -- does one feel , well , airborne in a picnic basket . ascending ascending one
-Only when one is ascending -- or in our case descending a tad trop rapidement -- does one feel , well , airborne in a picnic basket . descending descending a tad trop rapidement
-Mr. Rifenburgh said the board still has n't acted on most of the internal report 's recommendations , pending restatement of the balance sheet . said said Mr. Rifenburgh the board still has n't acted on most of the internal report 's recommendations , pending restatement of the balance sheet
-Mr. Rifenburgh said the board still has n't acted on most of the internal report 's recommendations , pending restatement of the balance sheet . acted has n't acted the board on most of the internal report 's recommendations , pending restatement of the balance sheet
-Mr. Rifenburgh said the board still has n't acted on most of the internal report 's recommendations , pending restatement of the balance sheet . pending pending the board restatement of the balance sheet . the board still has n't acted on most of the internal report 's recommendations
-`` If working capital financing is not provided , '' he said , `` the RTC may have to slow { S&L sales } or dump acquired assets through fire sales . provided is n't provided working capital financing
-`` If working capital financing is not provided , '' he said , `` the RTC may have to slow { S&L sales } or dump acquired assets through fire sales . have may have to the RTC slow { S&L sales } or dump acquired assets through fire sales
-`` If working capital financing is not provided , '' he said , `` the RTC may have to slow { S&L sales } or dump acquired assets through fire sales . slow might slow the RTC S&L sales If working capital financing is not provided
-`` If working capital financing is not provided , '' he said , `` the RTC may have to slow { S&L sales } or dump acquired assets through fire sales . dump will dump the RTC acquired assets through fire sales If working capital financing is not provided
-`` If working capital financing is not provided , '' he said , `` the RTC may have to slow { S&L sales } or dump acquired assets through fire sales . acquired been acquired assets through fire sales through fire sales
-However , StatesWest is n't abandoning its pursuit of the much - larger Mesa . abandoning is n't abandoning StatesWest its pursuit
-Each company 's share of liability would be based on their share of the national DES market . based would be based on Each company 's share of liability their share of the national DES market
-The price was n't disclosed but one analyst estimated that it was $ 150 million . disclosed was n't disclosed The price
-The price was n't disclosed but one analyst estimated that it was $ 150 million . estimated estimated one analyst The price $ 150 million
-In Japan , those functions account for only about a third of the software market . account account those functions for a third of the software market In Japan for only about a third
-And , since the public has always been fascinated by gossip and voyeurism , reporters and editors will strain for creative angles to justify the inclusion of collateral facts about private lives including sexual activities and domestic relationships , activities of family members , and all matters about mental and physical health . fascinated fascinated the public with gossip and voyeurism
-And , since the public has always been fascinated by gossip and voyeurism , reporters and editors will strain for creative angles to justify the inclusion of collateral facts about private lives including sexual activities and domestic relationships , activities of family members , and all matters about mental and physical health . fascinated fascinated the public with private lives including sexual activities and domestic relationships , activities of family members , and all matters about mental and physical health
-And , since the public has always been fascinated by gossip and voyeurism , reporters and editors will strain for creative angles to justify the inclusion of collateral facts about private lives including sexual activities and domestic relationships , activities of family members , and all matters about mental and physical health . strain will strain for reporters and editors creative angles to justify the inclusion of collateral facts about private lives the public has always been fascinated by gossip and voyeurism
-And , since the public has always been fascinated by gossip and voyeurism , reporters and editors will strain for creative angles to justify the inclusion of collateral facts about private lives including sexual activities and domestic relationships , activities of family members , and all matters about mental and physical health . justify will justify reporters and editors the inclusion of collateral facts about private lives including sexual activities and domestic relationships , activities of family members , and all matters about mental and physical health
-And , since the public has always been fascinated by gossip and voyeurism , reporters and editors will strain for creative angles to justify the inclusion of collateral facts about private lives including sexual activities and domestic relationships , activities of family members , and all matters about mental and physical health . including including collateral facts about private lives sexual activities and domestic relationships , activities of family members , and all matters about mental and physical health
-While pursuing his MFA at Columbia in New York , Scieszka painted apartments . pursuing pursuing Scieszka his MFA at Columbia in New York
-While pursuing his MFA at Columbia in New York , Scieszka painted apartments . painted painted Scieszka apartments
-Kostabi 's other releases include : `` Songs For Sumera '' , `` New Alliance '' and `` The Spectre Of Modernism '' . include include Kostabi 's other releases Songs For Sumera
-Kostabi 's other releases include : `` Songs For Sumera '' , `` New Alliance '' and `` The Spectre Of Modernism '' . include include Kostabi 's other releases New Alliance
-Kostabi 's other releases include : `` Songs For Sumera '' , `` New Alliance '' and `` The Spectre Of Modernism '' . include include Kostabi 's other releases The Spectre Of Modernism
-Erotica and pornography involving sex between women have been predominantly produced by men for a male and female audience . involving involving Erotica and pornography sex between women
-Erotica and pornography involving sex between women have been predominantly produced by men for a male and female audience . produced produced men Erotica and pornography involving sex between women for a male and female audience
-The external gauge is usually readable directly , and most also incorporate an electronic sender to operate a fuel gauge on the dashboard . incorporate incorporate The external gauge an electronic sender to operate a fuel gauge on the dashboard
-The external gauge is usually readable directly , and most also incorporate an electronic sender to operate a fuel gauge on the dashboard . operate operate an electric sender a fuel gauge on the dashboard
-This change was soon picked up by Huguenot writers , who began to expand on Calvin and promote the idea of the sovereignty of the people , ideas to which Catholic writers and preachers responded fiercely . picked picked up by This change Huguenot writers soon
-This change was soon picked up by Huguenot writers , who began to expand on Calvin and promote the idea of the sovereignty of the people , ideas to which Catholic writers and preachers responded fiercely . began began Huguenot writers to expand on Calvin
-This change was soon picked up by Huguenot writers , who began to expand on Calvin and promote the idea of the sovereignty of the people , ideas to which Catholic writers and preachers responded fiercely . expand expand Huguenot writers on Calvin
-This change was soon picked up by Huguenot writers , who began to expand on Calvin and promote the idea of the sovereignty of the people , ideas to which Catholic writers and preachers responded fiercely . promote promoted Huguenot writers the idea
-This change was soon picked up by Huguenot writers , who began to expand on Calvin and promote the idea of the sovereignty of the people , ideas to which Catholic writers and preachers responded fiercely . responded responded Catholic writers to ideas fiercely
-This change was soon picked up by Huguenot writers , who began to expand on Calvin and promote the idea of the sovereignty of the people , ideas to which Catholic writers and preachers responded fiercely . responded responded Catholic writers to the idea of the sovereignty of the people fiercely
-This change was soon picked up by Huguenot writers , who began to expand on Calvin and promote the idea of the sovereignty of the people , ideas to which Catholic writers and preachers responded fiercely . responded responded preachers to ideas fiercely
-This change was soon picked up by Huguenot writers , who began to expand on Calvin and promote the idea of the sovereignty of the people , ideas to which Catholic writers and preachers responded fiercely . responded responded preachers to the idea of the sovereignty of the people fiercely
-On 16 June 1944 , British double agent `` Garbo '' was requested by his German controllers to give information on the sites and times of V-1 impacts , with similar requests made to the other German agents in Britain , `` Brutus '' and `` Tate '' . requested requested his German controllers to give information on the sites and times of V-1 impacts British double agent `` Garbo '' On 16 June 1944
-On 16 June 1944 , British double agent `` Garbo '' was requested by his German controllers to give information on the sites and times of V-1 impacts , with similar requests made to the other German agents in Britain , `` Brutus '' and `` Tate '' . give might give British double agent `` Garbo '' information on the sites and times of V-1 impacts to his German controllers
-On 16 June 1944 , British double agent `` Garbo '' was requested by his German controllers to give information on the sites and times of V-1 impacts , with similar requests made to the other German agents in Britain , `` Brutus '' and `` Tate '' . made made similar requests On 16 June 1944 to the other German agents in Britain
-On 16 June 1944 , British double agent `` Garbo '' was requested by his German controllers to give information on the sites and times of V-1 impacts , with similar requests made to the other German agents in Britain , `` Brutus '' and `` Tate '' . made made similar requests On 16 June 1944 to `` Brutus ''
-On 16 June 1944 , British double agent `` Garbo '' was requested by his German controllers to give information on the sites and times of V-1 impacts , with similar requests made to the other German agents in Britain , `` Brutus '' and `` Tate '' . made made similar requests On 16 June 1944 to `` Tate ''
-And ABS has formed a partnership with Habitat for Humanity to give a free Bible to each of its new homeowners in the United States . formed formed ABS a partnership with Habitat for Humanity to give a free Bible to each of its new homeowners in the United States with Habitat for Humanity to give a free Bible to each of its new homeowners in the United States
-And ABS has formed a partnership with Habitat for Humanity to give a free Bible to each of its new homeowners in the United States . give should give a partnership each of its new homeowners in the United States a free Bible to each of its new homeowners in the United States
-The town was previously served by a station on the Somerset and Dorset Railway but this closed in 1966 , and by a second station on the Bristol and North Somerset Railway at Welton in the valley . served served a station on the Somerset and Dorset Railway the town
-The town was previously served by a station on the Somerset and Dorset Railway but this closed in 1966 , and by a second station on the Bristol and North Somerset Railway at Welton in the valley . served served station on the Bristol and North Somerset Railway at Welton in the valley . the town
-The town was previously served by a station on the Somerset and Dorset Railway but this closed in 1966 , and by a second station on the Bristol and North Somerset Railway at Welton in the valley . closed closed a station on the Somerset and Dorset Railway in 1966
-By this point , Simpson had returned to his mansion in Brentwood and had surrendered to police . returned had returned Simpson to his mansion in Brentwood and had surrendered to police . By this point
-By this point , Simpson had returned to his mansion in Brentwood and had surrendered to police . surrendered had surrendered to Simpson police
-Several isomers of octene are known , depending on the position and the geometry of the double bond in the carbon chain . known known Several isomers of octene depending on the position and the geometry of the double bond in the carbon chain
-Several isomers of octene are known , depending on the position and the geometry of the double bond in the carbon chain . depending depending Several isomers of octene are known on the position and the geometry of the double bond in the carbon chain
-On November 2 , 2005 , Brown ended his contract early and left the federal government . ended ended Brown his contract On November 2 , 2005 early
-On November 2 , 2005 , Brown ended his contract early and left the federal government . left left Brown the federal government On November 2 , 2005
-Twice divorced and currently married , Ladd is the mother of actress Laura Dern , by her ex-husband , actor Bruce Dern . divorced divorced Ladd
-Twice divorced and currently married , Ladd is the mother of actress Laura Dern , by her ex-husband , actor Bruce Dern . divorced divorced the mother of actress Laura Dern
-Twice divorced and currently married , Ladd is the mother of actress Laura Dern , by her ex-husband , actor Bruce Dern . divorced divorced her ex-husband
-Twice divorced and currently married , Ladd is the mother of actress Laura Dern , by her ex-husband , actor Bruce Dern . divorced divorced actor Bruce Dern
-Twice divorced and currently married , Ladd is the mother of actress Laura Dern , by her ex-husband , actor Bruce Dern . married married Ladd currently
-Twice divorced and currently married , Ladd is the mother of actress Laura Dern , by her ex-husband , actor Bruce Dern . married married the mother of actress Laura Dern currently
-At one point , Ballard is nearly possessed , but resists when she is given a drug and discovers that the spirits are attacking them as they believe that the humans are invaders and plan to exterminate the humans on Mars . possessed was n't possessed Ballard the spirits At one point she is given a drug
-At one point , Ballard is nearly possessed , but resists when she is given a drug and discovers that the spirits are attacking them as they believe that the humans are invaders and plan to exterminate the humans on Mars . resists resists Ballard the spirits she is given a drug
-At one point , Ballard is nearly possessed , but resists when she is given a drug and discovers that the spirits are attacking them as they believe that the humans are invaders and plan to exterminate the humans on Mars . given given Ballard a drug Ballard is nearly possessed
-At one point , Ballard is nearly possessed , but resists when she is given a drug and discovers that the spirits are attacking them as they believe that the humans are invaders and plan to exterminate the humans on Mars . discovers discovers Ballard that the spirits are attacking them as they believe that the humans are invaders and plan to exterminate the humans on Mars . when she is given a drug
-At one point , Ballard is nearly possessed , but resists when she is given a drug and discovers that the spirits are attacking them as they believe that the humans are invaders and plan to exterminate the humans on Mars . attacking attacking Ballard the spirits they believe that the humans are invaders and plan to exterminate the humans on Mars .
-At one point , Ballard is nearly possessed , but resists when she is given a drug and discovers that the spirits are attacking them as they believe that the humans are invaders and plan to exterminate the humans on Mars . attacking attacking humans the spirits they believe that the humans are invaders and plan to exterminate the humans on Mars .
-At one point , Ballard is nearly possessed , but resists when she is given a drug and discovers that the spirits are attacking them as they believe that the humans are invaders and plan to exterminate the humans on Mars . believe believed the spirits that the humans are invaders and plan to exterminate the humans on Mars .
-At one point , Ballard is nearly possessed , but resists when she is given a drug and discovers that the spirits are attacking them as they believe that the humans are invaders and plan to exterminate the humans on Mars . plan plan the spirits to exterminate the humans on Mars . they believe that the humans are invaders
-At one point , Ballard is nearly possessed , but resists when she is given a drug and discovers that the spirits are attacking them as they believe that the humans are invaders and plan to exterminate the humans on Mars . exterminate will exterminate the humans on Mars the spirits they believe that the humans are invaders
-The redesigned 2006 Ram SRT-10 came in Mineral Gray Metallic , Inferno Red , and Brilliant Black Crystal Clear Coat . redesigned redesigned 2006 Ram SRT-10
-The redesigned 2006 Ram SRT-10 came in Mineral Gray Metallic , Inferno Red , and Brilliant Black Crystal Clear Coat . came came The redesigned 2006 Ram SRT-10 in Mineral Gray Metallic
-The redesigned 2006 Ram SRT-10 came in Mineral Gray Metallic , Inferno Red , and Brilliant Black Crystal Clear Coat . came came The redesigned 2006 Ram SRT-10 in Inferno Red
-The redesigned 2006 Ram SRT-10 came in Mineral Gray Metallic , Inferno Red , and Brilliant Black Crystal Clear Coat . came came The redesigned 2006 Ram SRT-10 in Brilliant Black Crystal Clear Coat
-Keats 's long and expensive medical training with Hammond and at Guy 's Hospital led his family to assume he would pursue a lifelong career in medicine , assuring financial security , and it seems that at this point Keats had a genuine desire to become a doctor . led led Keats 's long and expensive medical training with Hammond and at Guy 's Hospital his family assume he would pursue a lifelong career in medicine , assuring financial security
-Keats 's long and expensive medical training with Hammond and at Guy 's Hospital led his family to assume he would pursue a lifelong career in medicine , assuring financial security , and it seems that at this point Keats had a genuine desire to become a doctor . assume assume his family he would pursue a lifelong career in medicine , assuring financial security about Keats 's long and expensive medical training with Hammond and at Guy 's Hospital
-Keats 's long and expensive medical training with Hammond and at Guy 's Hospital led his family to assume he would pursue a lifelong career in medicine , assuring financial security , and it seems that at this point Keats had a genuine desire to become a doctor . pursue would pursue Keats a lifelong career in medicine
-Keats 's long and expensive medical training with Hammond and at Guy 's Hospital led his family to assume he would pursue a lifelong career in medicine , assuring financial security , and it seems that at this point Keats had a genuine desire to become a doctor . assuring would assure a lifelong career in medicine financial security
-Keats 's long and expensive medical training with Hammond and at Guy 's Hospital led his family to assume he would pursue a lifelong career in medicine , assuring financial security , and it seems that at this point Keats had a genuine desire to become a doctor . had had Keats a genuine desire to become a doctor at this point
-Keats 's long and expensive medical training with Hammond and at Guy 's Hospital led his family to assume he would pursue a lifelong career in medicine , assuring financial security , and it seems that at this point Keats had a genuine desire to become a doctor . become might have become Keats a doctor
-The album , produced by Roy Thomas Baker , was promoted with American and European tours . produced produced Roy Thomas Baker The album
-The album , produced by Roy Thomas Baker , was promoted with American and European tours . promoted promoted with The album American and European tours
-Kim graduated from Ballard High School in Louisville , Kentucky , in 1989 and from Oberlin College in Ohio in 1993 where he double-majored in Government and English and played for the varsity lacrosse team . graduated graduated Kim from Ballard High School in Louisville , Kentucky , in 1989 and from Oberlin College in Ohio in 1993 in 1989
-Kim graduated from Ballard High School in Louisville , Kentucky , in 1989 and from Oberlin College in Ohio in 1993 where he double-majored in Government and English and played for the varsity lacrosse team . graduated graduated Kim from Ballard High School in Louisville , Kentucky , in 1989 and from Oberlin College in Ohio in 1993 in 1993
-Kim graduated from Ballard High School in Louisville , Kentucky , in 1989 and from Oberlin College in Ohio in 1993 where he double-majored in Government and English and played for the varsity lacrosse team . double-majored double-majored Kim Government and English
-Kim graduated from Ballard High School in Louisville , Kentucky , in 1989 and from Oberlin College in Ohio in 1993 where he double-majored in Government and English and played for the varsity lacrosse team . played played Kim for the varsity lacrosse team
-Keibler then asked for time off to appear on `` Dancing with the Stars '' . asked asked Keibler for time off then to appear on `` Dancing with the Stars ''
-Keibler then asked for time off to appear on `` Dancing with the Stars '' . appear appear Keibler on `` Dancing with the Stars ''
-Keibler then asked for time off to appear on `` Dancing with the Stars '' . dancing dancing the Stars
-After the battle , Battra rested in the Arctic Ocean , whereas Mothra retired to Infant Island , accompanied by the two Cosmos . rested rested Battra in the Arctic Ocean After the battle
-After the battle , Battra rested in the Arctic Ocean , whereas Mothra retired to Infant Island , accompanied by the two Cosmos . retired retired Mothra to Infant Island After the battle with the two Cosmos
-Due to the transmitter location being based in Tyrone and a smaller signal wattage , it was barely hearable in the northern portions of Atlanta beyond the downtown area or even the northern reaches of Fulton or DeKalb Counties , as it was a rimshot to the southwest of the city . based based transmitter location in Tyrone
-In Jewish belief , its fulfilment will be revealed in the cumulation of Creation , in the era of resurrection , in the physical World . revealed will be revealed its fulfilment in the cumulation of Creation in the physical World
-In Jewish belief , its fulfilment will be revealed in the cumulation of Creation , in the era of resurrection , in the physical World . revealed will be revealed its fulfilment in the era of resurrection in the physical World
-With this act , Russia was officially transformed from an absolute monarchy into a constitutional one , though the exact extent of just `` how '' constitutional quickly became the subject of debate , based upon the emperor 's subsequent actions . transformed transformed Russia into a constitutional one , though the exact extent of just `` how '' constitutional quickly became the subject of debate , based upon the emperor 's subsequent actions . from an absolute monarchy into a constitutional one , though the exact extent of just `` how '' constitutional quickly became the subject of debate , based upon the emperor 's subsequent actions . With this act
-With this act , Russia was officially transformed from an absolute monarchy into a constitutional one , though the exact extent of just `` how '' constitutional quickly became the subject of debate , based upon the emperor 's subsequent actions . became became Russia was officially transformed from an absolute monarchy into a constitutional one the subject of debate
-With this act , Russia was officially transformed from an absolute monarchy into a constitutional one , though the exact extent of just `` how '' constitutional quickly became the subject of debate , based upon the emperor 's subsequent actions . based based upon Russia was officially transformed from an absolute monarchy into a constitutional one , though the exact extent of just `` how '' constitutional quickly became the subject of debate the emperor 's subsequent actions .
-The establishment of a museum had first been planned in 1821 by the Philosophical Society of Australasia , and although specimens were collected , the Society folded in 1822 . planned planned the Philosophical Society of Australasia The establishment of a museum in 1821
-The establishment of a museum had first been planned in 1821 by the Philosophical Society of Australasia , and although specimens were collected , the Society folded in 1822 . collected collected specimens
-The establishment of a museum had first been planned in 1821 by the Philosophical Society of Australasia , and although specimens were collected , the Society folded in 1822 . folded folded the Society in 1822
-Then the fillets are put in a mix of olive oil , vinegar , sugar , garlic , chill peppers , and lots of parsley or celery . put put in fillets a mix of olive oil , vinegar , sugar , garlic , chill peppers , and lots of parsley or celery
-Newhan split the season between Triple-A Round Rock , where he hit .308 . split split between Newhan the season Triple-A Round Rock , where he hit .308
-Newhan split the season between Triple-A Round Rock , where he hit .308 . hit hit Newhan .308
-The video was the first ever to feature the use of dialogue . feature featured The video the use of dialogue
-As of `` A Wind in the Door '' , Sandy aspires to become a banker , on the grounds that it is practical and lucrative . aspires aspires Sandy become a banker As of `` A Wind in the Door '' on the grounds that it is practical and lucrative
-As of `` A Wind in the Door '' , Sandy aspires to become a banker , on the grounds that it is practical and lucrative . become might become Sandy a banker on the grounds that it is practical and lucrative
-The canal was dammed off from the river for most of the construction period . dammed dammed off from The canal for most of the construction period the river
-Byers states that global citizenship is a `` powerful term '' because `` people that invoke it do so to provoke and justify action , '' and encourages the attendees of his lecture to re-appropriate it in order for its meaning to have a positive purpose , based on idealistic values . states states Byers that global citizenship is a `` powerful term '' because `` people that invoke it do so to provoke and justify action , '
-Byers states that global citizenship is a `` powerful term '' because `` people that invoke it do so to provoke and justify action , '' and encourages the attendees of his lecture to re-appropriate it in order for its meaning to have a positive purpose , based on idealistic values . invoke invoking people global citizenship
-Byers states that global citizenship is a `` powerful term '' because `` people that invoke it do so to provoke and justify action , '' and encourages the attendees of his lecture to re-appropriate it in order for its meaning to have a positive purpose , based on idealistic values . invoke invoking people a `` powerful term ''
-Byers states that global citizenship is a `` powerful term '' because `` people that invoke it do so to provoke and justify action , '' and encourages the attendees of his lecture to re-appropriate it in order for its meaning to have a positive purpose , based on idealistic values . do doing people invoke it to provoke and justify action
-Byers states that global citizenship is a `` powerful term '' because `` people that invoke it do so to provoke and justify action , '' and encourages the attendees of his lecture to re-appropriate it in order for its meaning to have a positive purpose , based on idealistic values . provoke provoking people action
-Byers states that global citizenship is a `` powerful term '' because `` people that invoke it do so to provoke and justify action , '' and encourages the attendees of his lecture to re-appropriate it in order for its meaning to have a positive purpose , based on idealistic values . justify justifying people action
-Byers states that global citizenship is a `` powerful term '' because `` people that invoke it do so to provoke and justify action , '' and encourages the attendees of his lecture to re-appropriate it in order for its meaning to have a positive purpose , based on idealistic values . encourages encourages Byers to re-appropriate it in order for its meaning to have a positive purpose , based on idealistic values . the attendees of his lecture
-Byers states that global citizenship is a `` powerful term '' because `` people that invoke it do so to provoke and justify action , '' and encourages the attendees of his lecture to re-appropriate it in order for its meaning to have a positive purpose , based on idealistic values . re-appropriate should re-appropriate the attendees of his lecture global citizenship in order for its meaning to have a positive purpose , based on idealistic values .
-Byers states that global citizenship is a `` powerful term '' because `` people that invoke it do so to provoke and justify action , '' and encourages the attendees of his lecture to re-appropriate it in order for its meaning to have a positive purpose , based on idealistic values . re-appropriate should re-appropriate the attendees of his lecture a `` powerful term '' in order for its meaning to have a positive purpose , based on idealistic values .
-Byers states that global citizenship is a `` powerful term '' because `` people that invoke it do so to provoke and justify action , '' and encourages the attendees of his lecture to re-appropriate it in order for its meaning to have a positive purpose , based on idealistic values . have should have its meaning a positive purpose , based on idealistic values .
-Byers states that global citizenship is a `` powerful term '' because `` people that invoke it do so to provoke and justify action , '' and encourages the attendees of his lecture to re-appropriate it in order for its meaning to have a positive purpose , based on idealistic values . based should based global citizenship on idealistic values
-Byers states that global citizenship is a `` powerful term '' because `` people that invoke it do so to provoke and justify action , '' and encourages the attendees of his lecture to re-appropriate it in order for its meaning to have a positive purpose , based on idealistic values . based should based a `` powerful term '' on idealistic values
-After 1895 cable hauling ceased and locomotives pulled trains the whole length of the Victoria and Waterloo tunnels . hauling hauled cable
-After 1895 cable hauling ceased and locomotives pulled trains the whole length of the Victoria and Waterloo tunnels . ceased ceased cable hauling After 1895
-After 1895 cable hauling ceased and locomotives pulled trains the whole length of the Victoria and Waterloo tunnels . pulled pulled locomotives trains the whole length of the Victoria and Waterloo tunnels .
-He was a member of the European Convention , which drafted the text of the European Constitution that never entered into force . drafted drafted the European Convention the text of the European Constitution
-He was a member of the European Convention , which drafted the text of the European Constitution that never entered into force . entered did n't enter the European Constitution into force
-Pakistan Chrome Mines Ltd. is a mining company incorporated in the Islamic Republic of Pakistan . incorporated incorporated in Pakistan Chrome Mines Ltd. the Islamic Republic of Pakistan .
-Failure to perform the duty could lead to prosecution at law and re-enslavement . perform might not be performed the duty
-Failure to perform the duty could lead to prosecution at law and re-enslavement . lead could lead to Failure to perform the duty prosecution
-Failure to perform the duty could lead to prosecution at law and re-enslavement . lead could lead to Failure to perform the duty re-enslavement
-In the 1960s and 70s most of Kabul 's economy depended on tourism . depended depended most of Kabul 's economy on tourism In the 1960s and 70s
-Piffaro generally performs a concert series of four to five concerts a year in Philadelphia , in addition to touring throughout the United States , Canada , Europe and elsewhere . performs performs Piffaro a concert series of four to five concerts a year in Philadelphia
-Piffaro generally performs a concert series of four to five concerts a year in Philadelphia , in addition to touring throughout the United States , Canada , Europe and elsewhere . touring touring Piffaro throughout the United States
-Piffaro generally performs a concert series of four to five concerts a year in Philadelphia , in addition to touring throughout the United States , Canada , Europe and elsewhere . touring touring Piffaro Canada
-Piffaro generally performs a concert series of four to five concerts a year in Philadelphia , in addition to touring throughout the United States , Canada , Europe and elsewhere . touring touring Piffaro Europe
-Piffaro generally performs a concert series of four to five concerts a year in Philadelphia , in addition to touring throughout the United States , Canada , Europe and elsewhere . touring touring Piffaro elsewhere
-In June , Nasser took control of the interior ministry post from Naguib loyalist Sulayman Hafez , and pressured Naguib to conclude the abolition of the monarchy . took took Nasser control of the interior ministry post In June from Sulayman Hafez
-In June , Nasser took control of the interior ministry post from Naguib loyalist Sulayman Hafez , and pressured Naguib to conclude the abolition of the monarchy . pressured pressured to Naguib to conclude the abolition of the monarchy In June Nasser
-In June , Nasser took control of the interior ministry post from Naguib loyalist Sulayman Hafez , and pressured Naguib to conclude the abolition of the monarchy . conclude might conclude Naguib the abolition of the monarchy
-A CEN forms an important but small part of a Local Strategic Partnership . forms forms A CEN part of a Local Strategic Partnership
-It was named for Gen. Eleazer Wheelock Ripley , an officer in the War of 1812 , who was mainly remembered for the Battle of Lundy 's Lane and the Siege of Fort Erie , in 1814 . remembered remembered for Gen. Eleazer Wheelock Ripley the Battle of Lundy 's Lane and the Siege of Fort Erie , in 1814
-It was named for Gen. Eleazer Wheelock Ripley , an officer in the War of 1812 , who was mainly remembered for the Battle of Lundy 's Lane and the Siege of Fort Erie , in 1814 . remembered remembered for an officer in the War of 1812 the Battle of Lundy 's Lane and the Siege of Fort Erie , in 1814
-Hapoel Lod played in the top division during the 1960s and 1980s , and won the State Cup in 1984 . played played Hapoel Lod in the top division during the 1960s and 1980s
-Hapoel Lod played in the top division during the 1960s and 1980s , and won the State Cup in 1984 . won won Hapoel Lod the State Cup in 1984
-Noatak has a gravel public airstrip and is primarily reached by air . has has Noatak a gravel public airstrip
-Noatak has a gravel public airstrip and is primarily reached by air . reached reached Noatak by air
-A common name , logo , and programming schedule followed in 1982 , with the establishment of the `` TV8 '' network between the three stations , changed to the `` Southern Cross Network '' seven years later . followed followed common name in 1982 with the establishment of the `` TV8 '' network between the three stations
-A common name , logo , and programming schedule followed in 1982 , with the establishment of the `` TV8 '' network between the three stations , changed to the `` Southern Cross Network '' seven years later . followed followed logo in 1982 with the establishment of the `` TV8 '' network between the three stations
-A common name , logo , and programming schedule followed in 1982 , with the establishment of the `` TV8 '' network between the three stations , changed to the `` Southern Cross Network '' seven years later . followed followed programming schedule in 1982 with the establishment of the `` TV8 '' network between the three stations
-A common name , logo , and programming schedule followed in 1982 , with the establishment of the `` TV8 '' network between the three stations , changed to the `` Southern Cross Network '' seven years later . changed changed TV8 to Southern Cross Network seven years later
-In 1977 she appeared in two television films , as the mother of Lesley Ann Warren 's character in `` 79 Park Avenue '' and as Emily McPhail in `` Tell Me My Name '' . tell will tell Me My Name
-Citizens for Responsibility and Ethics in Washington filed an Ethics Committee complaint against Bond over his role in the ouster of Graves . filed filed Citizens for Responsibility and Ethics in Washington an Ethics Committee complaint against Bond over his role in the ouster of Graves in Washington
-`` Greenfish '' was launched by the Electric Boat Co. , Groton , Conn. , 21 December 1945 ; sponsored by Mrs. Thomas J. Doyle ; and commissioned 7 June 1946 , Comdr. R. M. Metcalf commanding . launched launched Greenfish by Electric Boat Co. 21 December 1945 Groton , Conn.
-`` Greenfish '' was launched by the Electric Boat Co. , Groton , Conn. , 21 December 1945 ; sponsored by Mrs. Thomas J. Doyle ; and commissioned 7 June 1946 , Comdr. R. M. Metcalf commanding . sponsored sponsored Mrs. Thomas J. Doyle Greenfish
-`` Greenfish '' was launched by the Electric Boat Co. , Groton , Conn. , 21 December 1945 ; sponsored by Mrs. Thomas J. Doyle ; and commissioned 7 June 1946 , Comdr. R. M. Metcalf commanding . commissioned commissioned Greenfish 7 June 1946
-`` Greenfish '' was launched by the Electric Boat Co. , Groton , Conn. , 21 December 1945 ; sponsored by Mrs. Thomas J. Doyle ; and commissioned 7 June 1946 , Comdr. R. M. Metcalf commanding . commanding commanding Comdr. R. M. Metcalf Greenfish
-A mid-March 2002 court order to stop printing for three months , was evaded by printing under other titles , such as `` Not That Respublika '' . stop could stop A mid-March 2002 court order printing three months
-A mid-March 2002 court order to stop printing for three months , was evaded by printing under other titles , such as `` Not That Respublika '' . printing would n't print three months
-A mid-March 2002 court order to stop printing for three months , was evaded by printing under other titles , such as `` Not That Respublika '' . evaded evaded A mid-March 2002 court order to stop printing for three months by printing under other titles , such as `` Not That Respublika ''
-A mid-March 2002 court order to stop printing for three months , was evaded by printing under other titles , such as `` Not That Respublika '' . printing printing other titles , such as `` Not That Respublika ''
-Fans reacted to the news of the suspension by canceling their XM Radio subscriptions , with some fans even going as far as smashing their XM units . reacted reacted Fans to the news of the suspension by canceling their XM Radio subscriptions
-Fans reacted to the news of the suspension by canceling their XM Radio subscriptions , with some fans even going as far as smashing their XM units . reacted reacted Fans to the news of the suspension with some fans even going as far as smashing their XM units
-Fans reacted to the news of the suspension by canceling their XM Radio subscriptions , with some fans even going as far as smashing their XM units . canceling canceling Fans their XM Radio subscriptions
-Fans reacted to the news of the suspension by canceling their XM Radio subscriptions , with some fans even going as far as smashing their XM units . going going some fans as far as smashing their XM units
-Fans reacted to the news of the suspension by canceling their XM Radio subscriptions , with some fans even going as far as smashing their XM units . smashing smashing some fans their XM units
-Much of the station remains in the disused subway but there is no public access . remains remains Much of the station in the disused subway but there is no public access
-In 1005 for example , the governor of the important Adriatic port of Dyrrhachium had surrendered the town to Basil II . surrendered surrendered the governor the important Adriatic port of Dyrrhachium 1005 to Basil II
-In 1005 for example , the governor of the important Adriatic port of Dyrrhachium had surrendered the town to Basil II . surrendered surrendered the governor the town 1005 to Basil II
-Tyabb also has Tyabb Airport , a private airfield which has been operating for more than thirty years . has has Tyabb Tyabb Airport
-Tyabb also has Tyabb Airport , a private airfield which has been operating for more than thirty years . has has Tyabb a private airfield
-Tyabb also has Tyabb Airport , a private airfield which has been operating for more than thirty years . operating been operating for a private airfield Tyabb
-Tyabb also has Tyabb Airport , a private airfield which has been operating for more than thirty years . operating been operating for Tyabb Airport Tyabb
-Obviously the epilogue was not an afterthought supplied too late for the English edition , for it is referred to in `` The Castaway '' : `` in the sequel of the narrative , it will then be seen what like abandonment befell myself . '' supplied might have been supplied an afterthought too late for the English edition
-Obviously the epilogue was not an afterthought supplied too late for the English edition , for it is referred to in `` The Castaway '' : `` in the sequel of the narrative , it will then be seen what like abandonment befell myself . '' referred referred to the epilogue in `` The Castaway ''
-Obviously the epilogue was not an afterthought supplied too late for the English edition , for it is referred to in `` The Castaway '' : `` in the sequel of the narrative , it will then be seen what like abandonment befell myself . '' seen will be seen what like abandonment befell myself then in the sequel of the narrative
-Their numbers continued to increase each year as rumours about immigration restrictions appeared in much of the Cypriot media . continued continued Their numbers to increase each year as rumours about immigration restrictions appeared in much of the Cypriot media
-Their numbers continued to increase each year as rumours about immigration restrictions appeared in much of the Cypriot media . increase increase Their numbers each year as rumours about immigration restrictions appeared in much of the Cypriot media
-Their numbers continued to increase each year as rumours about immigration restrictions appeared in much of the Cypriot media . appeared appeared rumours about immigration restrictions in much of the Cypriot media
-In 2012 , Bloomberg Businessweek voted San Francisco as America 's Best City . voted voted Bloomberg Businessweek San Francisco as America 's Best City In 2012
-In 2010 , scam websites co-opted a photograph of her to promote health treatments , the ubiquitous `` 1 weird old tip '' belly fat diets , and penny auctions , unauthorized usage of which Theuriau was initially unaware . co-opted co-opted scam websites a photograph of her to promote health treatments , the ubiquitous `` 1 weird old tip '' belly fat diets , and penny auctions , unauthorized usage of which Theuriau was initially unaware . to promote health treatments , the ubiquitous `` 1 weird old tip '' belly fat diets , and penny auctions , unauthorized usage of which Theuriau was initially unaware . In 2010
-In 2010 , scam websites co-opted a photograph of her to promote health treatments , the ubiquitous `` 1 weird old tip '' belly fat diets , and penny auctions , unauthorized usage of which Theuriau was initially unaware . promote promoted health treatments , the ubiquitous `` 1 weird old tip '' belly fat diets , and penny auctions , unauthorized usage of which Theuriau was initially unaware . In 2010 scam websites co-opted a photograph of her
-Sukhum functioned as the capital of the `` Union treaty '' Abkhaz Soviet Socialist Republic associated with the Georgian SSR from 1921 until 1931 , when it became the capital of the Abkhazian Autonomous Soviet Socialist Republic within the Georgian SSR . functioned functioned Sukhum as the capital of the `` Union treaty '' Abkhaz Soviet Socialist Republic from 1921 until 1931
-Sukhum functioned as the capital of the `` Union treaty '' Abkhaz Soviet Socialist Republic associated with the Georgian SSR from 1921 until 1931 , when it became the capital of the Abkhazian Autonomous Soviet Socialist Republic within the Georgian SSR . associated associated with the capital of the `` Union treaty '' Abkhaz Soviet Socialist Republic the Georgian SSR
-Sukhum functioned as the capital of the `` Union treaty '' Abkhaz Soviet Socialist Republic associated with the Georgian SSR from 1921 until 1931 , when it became the capital of the Abkhazian Autonomous Soviet Socialist Republic within the Georgian SSR . associated associated with Sukhum the Georgian SSR
-Sukhum functioned as the capital of the `` Union treaty '' Abkhaz Soviet Socialist Republic associated with the Georgian SSR from 1921 until 1931 , when it became the capital of the Abkhazian Autonomous Soviet Socialist Republic within the Georgian SSR . became became Sukhum the capital of the Abkhazian Autonomous Soviet Socialist Republic 1931
-A spectrum from a single FID has a low signal-to-noise ratio , but fortunately it improves readily with averaging of repeated acquisitions . has has A spectrum from a single FID a low signal-to-noise ratio
-A spectrum from a single FID has a low signal-to-noise ratio , but fortunately it improves readily with averaging of repeated acquisitions . improves improves low signal-to-noise ratio with averaging of repeated acquisitions
-A spectrum from a single FID has a low signal-to-noise ratio , but fortunately it improves readily with averaging of repeated acquisitions . repeated repeated acquisitions
-In 1975 Barrie was directed by Lee Grant in the television movie `` For The Use Of The Hall '' as `` Charlotte '' . directed directed Barrie in the television movie `` For The Use Of The Hall '' In 1975 by Lee Grant as `` Charlotte ''
-Hawker Pacific Aerospace is a MRO-Service company which offers landing gear and hydraulic MRO services for all major aircraft types . offers offers Hawker Pacific Aerospace landing gear and hydraulic MRO services for all major aircraft types
-Hawker Pacific Aerospace is a MRO-Service company which offers landing gear and hydraulic MRO services for all major aircraft types . offers offers a MRO-Service company landing gear and hydraulic MRO services for all major aircraft types
-In this explanation the purpose of Creation is that `` God desired a dwelling place in the lower realms '' - it is man who transforms the mundane , lowest World into an abode for God 's essence . desired desired God a dwelling place in the lower realms
-In this explanation the purpose of Creation is that `` God desired a dwelling place in the lower realms '' - it is man who transforms the mundane , lowest World into an abode for God 's essence . transforms transforms man the mundane , lowest World into an abode for God 's essence
-The diocese was originally erected as the Prefecture Apostolic of Hpyeng-yang on 17 March 1927 , and renamed as the Prefecture Apostolic of Peng-yang on 17 March 1929 . erected erected The diocese as the Prefecture Apostolic of Hpyeng-yang on 17 March 1927 , and renamed as the Prefecture Apostolic of Peng-yang on 17 March 1929 .
-The diocese was originally erected as the Prefecture Apostolic of Hpyeng-yang on 17 March 1927 , and renamed as the Prefecture Apostolic of Peng-yang on 17 March 1929 . renamed renamed The diocese as the Prefecture Apostolic of Peng-yang on 17 March 1929 . on 17 March 1929
-The stations were both called `` Midsomer Norton and Welton '' ; under British Railways , the S&D station was renamed as Midsomer Norton South after a short period as Midsomer Norton Upper ; and is currently being restored with occasional open weekends with engines in steam . called called The stations ` Midsomer Norton and Welton '
-The stations were both called `` Midsomer Norton and Welton '' ; under British Railways , the S&D station was renamed as Midsomer Norton South after a short period as Midsomer Norton Upper ; and is currently being restored with occasional open weekends with engines in steam . renamed renamed the S&D station as Midsomer Norton South after a short period as Midsomer Norton Upper
-The stations were both called `` Midsomer Norton and Welton '' ; under British Railways , the S&D station was renamed as Midsomer Norton South after a short period as Midsomer Norton Upper ; and is currently being restored with occasional open weekends with engines in steam . renamed renamed Midsomer Norton Upper as Midsomer Norton South after a short period as Midsomer Norton Upper
-The stations were both called `` Midsomer Norton and Welton '' ; under British Railways , the S&D station was renamed as Midsomer Norton South after a short period as Midsomer Norton Upper ; and is currently being restored with occasional open weekends with engines in steam . restored being restored the S&D station occasional open weekends
-The stations were both called `` Midsomer Norton and Welton '' ; under British Railways , the S&D station was renamed as Midsomer Norton South after a short period as Midsomer Norton Upper ; and is currently being restored with occasional open weekends with engines in steam . restored being restored Midsomer Norton South occasional open weekends
-`` Le Griffon '' is reported to be the `` Holy Grail '' of Great Lakes shipwreck hunters . reported reported Le Griffon to be the `` Holy Grail '' of Great Lakes shipwreck hunters
-Modification of the river began in earnest with the arrival of the Florida East Coast Railway in Miami in 1896 . began began Modification of the river with the arrival of the Florida East Coast Railway in Miami in 1896 in Miami in earnest
-Watson was the founder and editor of `` newcritics.com , '' an online journal of media and arts criticism launched in January , 2007 and shuttered in June , 2009 . launched launched newcritics.com in January , 2007
-Watson was the founder and editor of `` newcritics.com , '' an online journal of media and arts criticism launched in January , 2007 and shuttered in June , 2009 . launched launched an online journal of media and arts criticism in January , 2007
-Watson was the founder and editor of `` newcritics.com , '' an online journal of media and arts criticism launched in January , 2007 and shuttered in June , 2009 . shuttered shuttered newcritics.com in June , 2009 .
-Watson was the founder and editor of `` newcritics.com , '' an online journal of media and arts criticism launched in January , 2007 and shuttered in June , 2009 . shuttered shuttered an online journal of media and arts criticism in June , 2009 .
-With no assigned task , the Cosmos expressed concern for what Battra might do . assigned is n't assigned task
-With no assigned task , the Cosmos expressed concern for what Battra might do . expressed expressed the Cosmos concern for what Battra might do
-With no assigned task , the Cosmos expressed concern for what Battra might do . do might do Battra
-The second was titled `` Consider Her Ways '' and also starred Barrie as the lead named Jane Waterleigh . titled titled The second `` Consider Her Ways ''
-The second was titled `` Consider Her Ways '' and also starred Barrie as the lead named Jane Waterleigh . consider consider Her Ways
-The second was titled `` Consider Her Ways '' and also starred Barrie as the lead named Jane Waterleigh . starred starred The second as the lead named Jane Waterleigh Barrie
-The second was titled `` Consider Her Ways '' and also starred Barrie as the lead named Jane Waterleigh . starred starred `` Consider Her Ways '' as the lead named Jane Waterleigh Barrie
-The second was titled `` Consider Her Ways '' and also starred Barrie as the lead named Jane Waterleigh . named named the lead Jane Waterleigh
-These beams stem from a cosmic energy source called the `` Omega Effect '' . stem stem These beams from a cosmic energy source called the `` Omega Effect ''
-These beams stem from a cosmic energy source called the `` Omega Effect '' . called called a cosmic energy source the `` Omega Effect ''
-Andrea Bianco 's atlas of 1436 comprises ten leaves of vellum , measuring , in an 18th-century binding . comprises comprises Andrea Bianco 's atlas of 1436 of ten leaves of vellum in an 18th-century binding
-Andrea Bianco 's atlas of 1436 comprises ten leaves of vellum , measuring , in an 18th-century binding . measuring measured ten leaves of vellum in an 18th-century binding
-Only Ballard and Williams are left after Sergeant Jericho and the other officers , along with the two train operators , are killed when they try to finish the fight . left left Ballard and Williams Sergeant Jericho and the other officers , along with the two train operators , are killed when they try to finish the fight .
-Only Ballard and Williams are left after Sergeant Jericho and the other officers , along with the two train operators , are killed when they try to finish the fight . killed killed Sergeant Jericho and the other officers , along with the two train operators when they try to finish the fight .
-Only Ballard and Williams are left after Sergeant Jericho and the other officers , along with the two train operators , are killed when they try to finish the fight . try try Sergeant Jericho and the other officers , along with the two train operators to finish the fight
-Only Ballard and Williams are left after Sergeant Jericho and the other officers , along with the two train operators , are killed when they try to finish the fight . finish could n't finish Sergeant Jericho and the other officers , along with the two train operators the fight
-Wright was the subject of `` This Is Your Life '' on two occasions : in May 1961 when he was surprised by Eamonn Andrews , and in January 1990 , when Michael Aspel surprised him at Thames Television 's Teddington Studios . surprised surprised Wright by Eamonn Andrews 1961
-Wright was the subject of `` This Is Your Life '' on two occasions : in May 1961 when he was surprised by Eamonn Andrews , and in January 1990 , when Michael Aspel surprised him at Thames Television 's Teddington Studios . surprised surprised Wright at Thames Television 's Teddington Studios 1990 by Michael Aspel
-Due to the opposing nature of the two songs , they can be viewed as a debate on the opposing attitudes on love found throughout the play . viewed can be viewed the two songs as a debate on the opposing attitudes on love throughout the play the opposing nature of the two songs
-Due to the opposing nature of the two songs , they can be viewed as a debate on the opposing attitudes on love found throughout the play . opposing opposing attitudes on love throughout the play
-Due to the opposing nature of the two songs , they can be viewed as a debate on the opposing attitudes on love found throughout the play . found can be found the opposing attitudes on love throughout the play
-The Nadvorna dynasty is notable inasmuch as many of its descendants become rebbes . become become The Nadvorna dynasty rebbes .
-The Nadvorna dynasty is notable inasmuch as many of its descendants become rebbes . become become many of its descendants rebbes .
-At a presentation in the Toronto Pearson International Airport hangar , Celine Dion helped the newly solvent airline debut its new image . helped helped to Celine Dion the newly solvent airline debut its new image At a presentation in the Toronto Pearson International Airport hangar
-To the north , along and across the same border , live speakers of Lakha . live live speakers of Lakha To the north , along and across the same border
-This policy was , however , opposed by the miners who demanded that the inspections be carried out by experienced colliers . opposed opposed the miners who demanded that the inspections be carried out by experienced colliers . This policy
-This policy was , however , opposed by the miners who demanded that the inspections be carried out by experienced colliers . demanded demanded miners that the inspections be carried out by experienced colliers .
-This policy was , however , opposed by the miners who demanded that the inspections be carried out by experienced colliers . carried carried out by inspections experienced colliers
-After leaving `` Hex '' , Cole went on to appear as Blanche Ingram in the critically acclaimed `` Jane Eyre '' TV serial for the BBC and guest starred as Lilith in the `` Doctor Who '' episode `` The Shakespeare Code '' . leaving leaving Cole `` Hex ''
-After leaving `` Hex '' , Cole went on to appear as Blanche Ingram in the critically acclaimed `` Jane Eyre '' TV serial for the BBC and guest starred as Lilith in the `` Doctor Who '' episode `` The Shakespeare Code '' . went went Cole appear as Blanche Ingram in the critically acclaimed `` Jane Eyre '' TV serial for the BBC and guest starred as Lilith in the `` Doctor Who '' episode `` The Shakespeare Code ''
-After leaving `` Hex '' , Cole went on to appear as Blanche Ingram in the critically acclaimed `` Jane Eyre '' TV serial for the BBC and guest starred as Lilith in the `` Doctor Who '' episode `` The Shakespeare Code '' . appear appear Cole in the critically acclaimed `` Jane Eyre '' TV serial for the BBC as Blanche Ingram
-After leaving `` Hex '' , Cole went on to appear as Blanche Ingram in the critically acclaimed `` Jane Eyre '' TV serial for the BBC and guest starred as Lilith in the `` Doctor Who '' episode `` The Shakespeare Code '' . starred starred Cole in the `` Doctor Who '' episode `` The Shakespeare Code '' as Lilith
-Barbara , however , unable to leave behind her vigilante life , fought a mugger and ultimately miscarried her child . leave would n't leave Barbara behind her vigilante life , fought a mugger and ultimately miscarried her child
-Barbara , however , unable to leave behind her vigilante life , fought a mugger and ultimately miscarried her child . fought fought Barbara a mugger and ultimately miscarried her child unable to leave behind her vigilante life
-Barbara , however , unable to leave behind her vigilante life , fought a mugger and ultimately miscarried her child . miscarried miscarried Barbara child
-The engine had twin turbochargers , and produced an advertised at 5700 rpm and of torque on 8 lbs of boost . had had The engine twin turbochargers , and produced an advertised at 5700 rpm and of torque on 8 lbs of boost .
-The engine had twin turbochargers , and produced an advertised at 5700 rpm and of torque on 8 lbs of boost . produced produced The engine an advertised at 5700 rpm and of torque on 8 lbs of boost . The engine had twin turbochargers
-The engine had twin turbochargers , and produced an advertised at 5700 rpm and of torque on 8 lbs of boost . advertised had advertised at The engine 5700 rpm
-The lodge is open from mid-May to mid-October , with two weeks starting in the end of August reserved for the Dartmouth First-Year Trips . starting starting two weeks in the end of August
-The lodge is open from mid-May to mid-October , with two weeks starting in the end of August reserved for the Dartmouth First-Year Trips . reserved reserved two weeks starting in the end of August for the Dartmouth First-Year Trips
-According to the 2010 census , the population of the town is 2,310 . according accorded to the population of the town the 2010 census
-He talked to McGee about using his name and received permission , which is confirmed by correspondence between McGee and his family . confirmed confirmed correspondence between McGee and his family about using his name and received permission McGee and his family
-Each of the Matoran brought their Toa stone and met each other at the Great Temple . brought brought Each of the Matoran Toa stone
-Each of the Matoran brought their Toa stone and met each other at the Great Temple . met met Each of the Matoran at the Great Temple
-It is essentially the same as the dialect spoken in Xiamen , and is unintelligible with Standard Chinese . spoken spoken the dialect in Xiamen
-Sometimes extra payments were specified by which a freed slave could liberate himself from these residual duties . specified specified payments Sometimes
-Sometimes extra payments were specified by which a freed slave could liberate himself from these residual duties . freed freed slave
-Sometimes extra payments were specified by which a freed slave could liberate himself from these residual duties . liberate could be liberated a freed slave from residual duties payments
-She published more than 15 research publications , including International Journals , International Conferences , National Conferences , workshops and seminars . including including more than 15 research publications International Journals
-She published more than 15 research publications , including International Journals , International Conferences , National Conferences , workshops and seminars . including including more than 15 research publications International Conferences
-She published more than 15 research publications , including International Journals , International Conferences , National Conferences , workshops and seminars . including including more than 15 research publications National Conferences
-She published more than 15 research publications , including International Journals , International Conferences , National Conferences , workshops and seminars . including including more than 15 research publications workshops and seminars
-As Attorney General he clashed with Daniel O'Connell when he insisted , against O'Connell 's wishes , on the appointment of Abraham Brewster as Law Adviser to the Lord Lieutenant of Ireland . clashed clashed Attorney General with Daniel O'Connell he insisted , against O'Connell 's wishes , on the appointment of Abraham Brewster as Law Adviser to the Lord Lieutenant of Ireland
-Hofmann was a below-average high school student , but he had many hobbies including magic , electronics , chemistry , and stamp and coin collecting . had had Hofmann many hobbies including magic , electronics , chemistry , and stamp and coin collecting
-Hofmann was a below-average high school student , but he had many hobbies including magic , electronics , chemistry , and stamp and coin collecting . including included many hobbies magic Hofmann
-Hofmann was a below-average high school student , but he had many hobbies including magic , electronics , chemistry , and stamp and coin collecting . including included many hobbies electronics Hofmann
-Hofmann was a below-average high school student , but he had many hobbies including magic , electronics , chemistry , and stamp and coin collecting . including included many hobbies chemistry Hofmann
-Hofmann was a below-average high school student , but he had many hobbies including magic , electronics , chemistry , and stamp and coin collecting . including included many hobbies stamp and coin collecting Hofmann
-Hofmann was a below-average high school student , but he had many hobbies including magic , electronics , chemistry , and stamp and coin collecting . collecting collecting Hofmann stamp
-Hofmann was a below-average high school student , but he had many hobbies including magic , electronics , chemistry , and stamp and coin collecting . collecting collecting Hofmann coin
-The following tour featured extensive dates in East Asia , where the group played Tokyo , Osaka , Fukuoka , and Southeast Asia including Jakarta , Manila as well as Singapore and Guam . following followed tour
-The following tour featured extensive dates in East Asia , where the group played Tokyo , Osaka , Fukuoka , and Southeast Asia including Jakarta , Manila as well as Singapore and Guam . featured featured The following tour extensive dates in East Asia
-The following tour featured extensive dates in East Asia , where the group played Tokyo , Osaka , Fukuoka , and Southeast Asia including Jakarta , Manila as well as Singapore and Guam . played played the group Tokyo , Osaka , Fukuoka , and Southeast Asia including Jakarta , Manila as well as Singapore and Guam
-The following tour featured extensive dates in East Asia , where the group played Tokyo , Osaka , Fukuoka , and Southeast Asia including Jakarta , Manila as well as Singapore and Guam . including included Southeast Asia Jakarta , Manila as well as Singapore and Guam
-According to the South Koreans , many Koreans became victims of Japanese brutalities during the colonial period . according according to many Koreans became victims of Japanese brutalities during the colonial period the South Koreans
-According to the South Koreans , many Koreans became victims of Japanese brutalities during the colonial period . became became many Koreans victims of Japanese brutalities during the colonial period
-Dodo was originally intended to have a `` common '' accent , and is portrayed this way at the end of `` The Massacre '' . intended intended Dodo to have a `` common '' accent
-Dodo was originally intended to have a `` common '' accent , and is portrayed this way at the end of `` The Massacre '' . have should have Dodo a `` common '' accent
-Dodo was originally intended to have a `` common '' accent , and is portrayed this way at the end of `` The Massacre '' . portrayed portrayed Dodo Dodo was originally intended to have a `` common '' accent way at the end of `` The Massacre ''
-In fact , Condon , after seeing Hauptmann in a lineup at New York Police Department Greenwich Street Station told FBI Special Agent Turrou that Hauptmann was not `` John , '' the man to whom Condon claimed he passed the ransom money to in St. Raymond 's Cemetery . seeing seeing Condon Hauptmann in a lineup
-In fact , Condon , after seeing Hauptmann in a lineup at New York Police Department Greenwich Street Station told FBI Special Agent Turrou that Hauptmann was not `` John , '' the man to whom Condon claimed he passed the ransom money to in St. Raymond 's Cemetery . seeing seeing Condon Hauptmann at New York Police Department
-In fact , Condon , after seeing Hauptmann in a lineup at New York Police Department Greenwich Street Station told FBI Special Agent Turrou that Hauptmann was not `` John , '' the man to whom Condon claimed he passed the ransom money to in St. Raymond 's Cemetery . seeing seeing Condon Hauptmann Greenwich Street Station
-In fact , Condon , after seeing Hauptmann in a lineup at New York Police Department Greenwich Street Station told FBI Special Agent Turrou that Hauptmann was not `` John , '' the man to whom Condon claimed he passed the ransom money to in St. Raymond 's Cemetery . told told Condon that Hauptmann was not `` John , '' the man to whom Condon claimed he passed the ransom money to in St. Raymond 's Cemetery to FBI Special Agent Turrou
-In fact , Condon , after seeing Hauptmann in a lineup at New York Police Department Greenwich Street Station told FBI Special Agent Turrou that Hauptmann was not `` John , '' the man to whom Condon claimed he passed the ransom money to in St. Raymond 's Cemetery . claimed claimed Condon he passed the ransom money to in St. Raymond 's Cemetery
-In fact , Condon , after seeing Hauptmann in a lineup at New York Police Department Greenwich Street Station told FBI Special Agent Turrou that Hauptmann was not `` John , '' the man to whom Condon claimed he passed the ransom money to in St. Raymond 's Cemetery . passed passed Condon the ransom money in St. Raymond 's Cemetery to `` John , ''
-Although under constant attack from kamikazes as well as fighters and dive-bombers , `` Hazelwood '' came through the invasion untouched and on the night of 25 February sank two small enemy freighters with her guns . came came `` Hazelwood '' through the invasion untouched
-Although under constant attack from kamikazes as well as fighters and dive-bombers , `` Hazelwood '' came through the invasion untouched and on the night of 25 February sank two small enemy freighters with her guns . sank sank two small enemy freighters with her guns on the night of 25 February
-The rest of the group reach a small shop , where Brady attempts to phone the Sheriff , but the crocodile breaks through a wall and devours Annabelle . reach reach The rest of the group a small shop , where Brady attempts to phone the Sheriff , but the crocodile breaks through a wall and devours Annabelle .
-The rest of the group reach a small shop , where Brady attempts to phone the Sheriff , but the crocodile breaks through a wall and devours Annabelle . attempts attempts Brady phone the Sheriff , but the crocodile breaks through a wall and devours Annabelle .
-The rest of the group reach a small shop , where Brady attempts to phone the Sheriff , but the crocodile breaks through a wall and devours Annabelle . phone phoned the Sheriff , but the crocodile breaks through a wall and devours Annabelle . Brady
-The rest of the group reach a small shop , where Brady attempts to phone the Sheriff , but the crocodile breaks through a wall and devours Annabelle . devours devoured crocodile Annabelle
-In 1926 , `` The News and Courier '' was bought by the owners of Charleston 's main evening paper , `` The Evening Post . '' bought bought the owners of Charleston 's main evening paper , `` The Evening Post . '' `` The News and Courier '' In 1926
-Superboy-Prime , seeing an opportunity to defeat the now-weakened Anti-Monitor , flew through the Anti-Monitor 's chest and hurled his shattered body into space . seeing seeing Superboy-Prime an opportunity to defeat the now-weakened Anti-Monitor
-Superboy-Prime , seeing an opportunity to defeat the now-weakened Anti-Monitor , flew through the Anti-Monitor 's chest and hurled his shattered body into space . defeat defeated Anti-Monitor space Superboy-Prime flew through the Anti-Monitor 's chest and hurled his shattered body into space . now-weakened
-Superboy-Prime , seeing an opportunity to defeat the now-weakened Anti-Monitor , flew through the Anti-Monitor 's chest and hurled his shattered body into space . flew flew through Anti-Monitor Superboy-Prime through Anti-Monitor 's chest through now-weakened Anti-Monitor through opportunity to defeat the now-weakened Anti-Monitor
-Superboy-Prime , seeing an opportunity to defeat the now-weakened Anti-Monitor , flew through the Anti-Monitor 's chest and hurled his shattered body into space . hurled hurled Anti-Monitor into space Superboy-Prime flew through the Anti-Monitor 's chest opportunity to defeat the now-weakened Anti-Monitor
-Superboy-Prime , seeing an opportunity to defeat the now-weakened Anti-Monitor , flew through the Anti-Monitor 's chest and hurled his shattered body into space . hurled hurled Anti-Monitor into space Superboy-Prime now-weakened opportunity to defeat the now-weakened Anti-Monitor
-There have been two crashes involving fatalities at the airfield since it was established . involving involving two crashes fatalities at the airfield
-There have been two crashes involving fatalities at the airfield since it was established . established established the airfield
-Applying this technique facilitates the connection of the center of the foot with the lower abdomen . applying applying this technique
-Applying this technique facilitates the connection of the center of the foot with the lower abdomen . facilitates facilitates Applying this technique the connection of the center of the foot with the lower abdomen
-Falun Gong 's teachings are compiled from Li 's lectures , and Li holds definitional power in that belief system . compiled compiled from Falun Gong 's teachings Li 's lectures
-Falun Gong 's teachings are compiled from Li 's lectures , and Li holds definitional power in that belief system . lectures lectures Li
-Falun Gong 's teachings are compiled from Li 's lectures , and Li holds definitional power in that belief system . holds holds Li definitional power in that belief system in that belief system
-The Acrolepiidae family of moths are also known as False Diamondback moths . known known The Acrolepiidae family of moths as False Diamondback moths
-The economy of Ostrov is based on food , electronic , and textile industries . based based on The economy of Ostrov food , electronic , and textile industries
-HTB 's aim is for an Alpha course to be accessible to anyone who would like to attend the course , and in this way HTB seeks to spread the teachings of Christianity . like might like to anyone attend the course
-HTB 's aim is for an Alpha course to be accessible to anyone who would like to attend the course , and in this way HTB seeks to spread the teachings of Christianity . attend might attend anyone the course
-HTB 's aim is for an Alpha course to be accessible to anyone who would like to attend the course , and in this way HTB seeks to spread the teachings of Christianity . seeks seeks HTB spread the teachings of Christianity an Alpha course to be accessible to anyone who would like to attend the course
-HTB 's aim is for an Alpha course to be accessible to anyone who would like to attend the course , and in this way HTB seeks to spread the teachings of Christianity . spread spread HTB the teachings of Christianity
-The suit alleged that they conspired to fix prices for e-books , and weaken Amazon.com 's position in the market , in violation of antitrust law . alleged alleged The suit they conspired to fix prices for e-books
-Chevalier fulfilled his promise the following year by erecting a shrine dedicated to the honour of Mary under the title of `` Our Lady of the Sacred Heart '' . fulfilled fulfilled Chevalier his promise the following year by erecting a shrine dedicated to the honour of Mary under the title of `` Our Lady of the Sacred Heart '' . the following year by erecting a shrine dedicated to the honour of Mary under the title of `` Our Lady of the Sacred Heart '' . by erecting a shrine dedicated to the honour of Mary under the title of `` Our Lady of the Sacred Heart '' .
-Chevalier fulfilled his promise the following year by erecting a shrine dedicated to the honour of Mary under the title of `` Our Lady of the Sacred Heart '' . erecting erecting Chevalier a shrine dedicated to the honour of Mary under the title of `` Our Lady of the Sacred Heart '' . the following year
-Chevalier fulfilled his promise the following year by erecting a shrine dedicated to the honour of Mary under the title of `` Our Lady of the Sacred Heart '' . dedicated dedicated Mary a shrine to the honour of Mary under the title of `` Our Lady of the Sacred Heart '' .
-From 1909 to 1912 , the Miami Canal was dug , bypassing the rapids at the head of the North Fork . dug dug Miami Canal From 1909 to 1912
-From 1909 to 1912 , the Miami Canal was dug , bypassing the rapids at the head of the North Fork . bypassing bypassed the rapids From 1909 to 1912 at the head of the North Fork
-This line was extended east by the Prahran & Malvern Tramways Trust from Hawthorn Road to Darling Road , Malvern East on 13 November 1913 . extended extended This line on 13 November 1913 east by the Prahran & Malvern Tramways Trust from Hawthorn Road to Darling Road , Malvern East
-As in his first novel , Armah contrasts the two worlds of materialism and moral values , corruption and dreams , two worlds of integrity and social pressure . contrasts contrasts Armah the two worlds of materialism and moral values
-As in his first novel , Armah contrasts the two worlds of materialism and moral values , corruption and dreams , two worlds of integrity and social pressure . contrasts contrasts Armah corruption and dreams
-As in his first novel , Armah contrasts the two worlds of materialism and moral values , corruption and dreams , two worlds of integrity and social pressure . contrasts contrasts Armah two worlds of integrity and social pressure
-Since joining the competition in 1908 , Richmond has won ten premierships , the most recent victory being in 1980 . joining joining Richmond the competition in 1908
-Since joining the competition in 1908 , Richmond has won ten premierships , the most recent victory being in 1980 . won won Richmond ten premierships
-At least 11 villagers disappeared and 8 people were killed in the ensuing tsunami , two of which are prisoners at one of the Permisan prisons . disappeared disappeared At least 11 villagers in the ensuing tsunami
-At least 11 villagers disappeared and 8 people were killed in the ensuing tsunami , two of which are prisoners at one of the Permisan prisons . killed killed 8 people in the ensuing tsunami
-At least 11 villagers disappeared and 8 people were killed in the ensuing tsunami , two of which are prisoners at one of the Permisan prisons . killed killed two of which are prisoners at one of the Permisan prisons in the ensuing tsunami
-At least 11 villagers disappeared and 8 people were killed in the ensuing tsunami , two of which are prisoners at one of the Permisan prisons . ensuing ensuing tsunami
-Modern educational methods were more widely spread throughout the Empire , and the country embarked on a development scheme and plans for modernization , tempered by Ethiopian traditions , and within the framework of the ancient monarchical structure of the state . spread spread Modern educational methods throughout the Empire more widely
-Modern educational methods were more widely spread throughout the Empire , and the country embarked on a development scheme and plans for modernization , tempered by Ethiopian traditions , and within the framework of the ancient monarchical structure of the state . embarked embarked the country on a development scheme and plans for modernization , tempered by Ethiopian traditions , and within the framework of the ancient monarchical structure of the state
-Modern educational methods were more widely spread throughout the Empire , and the country embarked on a development scheme and plans for modernization , tempered by Ethiopian traditions , and within the framework of the ancient monarchical structure of the state . tempered tempered a development scheme and plans for modernization by Ethiopian traditions
-As a result , it becomes clear that the microbe can not survive outside a narrow pH range . survive ca n't survive microbe outside a narrow pH range .
-A Democrat , he became the youngest mayor in Pittsburgh 's history in September 2006 at the age of 26 . became became A Democrat the youngest mayor in Pittsburgh 's history in September 2006
-Bruce 's Justice Lord counterpart was happily married to Wonder Woman as well until her Justice Lord counterpart killed him . married married Bruce 's Justice Lord counterpart happily to Wonder Woman
-Bruce 's Justice Lord counterpart was happily married to Wonder Woman as well until her Justice Lord counterpart killed him . killed killed Bruce 's Justice Lord counterpart Justice Lord counterpart
-The failure of 1st Armored to arrive intact and deploy as a single entity would have important consequences in later action against German forces in Tunisia . arrive did n't arrive intact
-The failure of 1st Armored to arrive intact and deploy as a single entity would have important consequences in later action against German forces in Tunisia . deploy was n't deployed as a single entity
-The failure of 1st Armored to arrive intact and deploy as a single entity would have important consequences in later action against German forces in Tunisia . have would have The failure of 1st Armored to arrive intact and deploy as a single entity consequences in later action
-Burnham died of heart failure at the age of 86 , on September 1 , 1947 at his home in Santa , Barbara , California . died died Burnham at his home in Santa , Barbara , California on September 1 , 1947 heart failure
-`` See also : Grand Duke of Luxembourg , List of Prime Ministers of Luxembourg '' see must be seen Grand Duke of Luxembourg
-`` See also : Grand Duke of Luxembourg , List of Prime Ministers of Luxembourg '' see must be seen List of Prime Ministers of Luxembourg
-He defines Wild Cards as ` Low Probability , High Impact events that , were they to occur , would severely impact the human condition ' . occur could occur Low Probability , High Impact events
-He defines Wild Cards as ` Low Probability , High Impact events that , were they to occur , would severely impact the human condition ' . impact would impact Low Probability , High Impact events that , were they to occur the human condition severely
-John Stewart and Guy Gardner brought down New Warworld and the Yellow Central Power Battery , which were detonated next to the Anti-Monitor , and contained by a shield created by hundreds of Green Lanterns to contain the explosion ; even this was not enough to kill him . brought brought down John Stewart New Warworld detonated next to the Anti-Monitor
-John Stewart and Guy Gardner brought down New Warworld and the Yellow Central Power Battery , which were detonated next to the Anti-Monitor , and contained by a shield created by hundreds of Green Lanterns to contain the explosion ; even this was not enough to kill him . brought brought down John Stewart New Warworld kill him
-John Stewart and Guy Gardner brought down New Warworld and the Yellow Central Power Battery , which were detonated next to the Anti-Monitor , and contained by a shield created by hundreds of Green Lanterns to contain the explosion ; even this was not enough to kill him . brought brought down John Stewart Yellow Central Power Battery detonated next to the Anti-Monitor
-John Stewart and Guy Gardner brought down New Warworld and the Yellow Central Power Battery , which were detonated next to the Anti-Monitor , and contained by a shield created by hundreds of Green Lanterns to contain the explosion ; even this was not enough to kill him . brought brought down John Stewart Yellow Central Power Battery kill him
-John Stewart and Guy Gardner brought down New Warworld and the Yellow Central Power Battery , which were detonated next to the Anti-Monitor , and contained by a shield created by hundreds of Green Lanterns to contain the explosion ; even this was not enough to kill him . brought brought down Guy Gardner New Warworld detonated next to the Anti-Monitor
-John Stewart and Guy Gardner brought down New Warworld and the Yellow Central Power Battery , which were detonated next to the Anti-Monitor , and contained by a shield created by hundreds of Green Lanterns to contain the explosion ; even this was not enough to kill him . brought brought down Guy Gardner New Warworld kill him
-John Stewart and Guy Gardner brought down New Warworld and the Yellow Central Power Battery , which were detonated next to the Anti-Monitor , and contained by a shield created by hundreds of Green Lanterns to contain the explosion ; even this was not enough to kill him . brought brought down Guy Gardner Yellow Central Power Battery detonated next to the Anti-Monitor
-John Stewart and Guy Gardner brought down New Warworld and the Yellow Central Power Battery , which were detonated next to the Anti-Monitor , and contained by a shield created by hundreds of Green Lanterns to contain the explosion ; even this was not enough to kill him . brought brought down Guy Gardner Yellow Central Power Battery kill him
-John Stewart and Guy Gardner brought down New Warworld and the Yellow Central Power Battery , which were detonated next to the Anti-Monitor , and contained by a shield created by hundreds of Green Lanterns to contain the explosion ; even this was not enough to kill him . detonated detonated New Warworld next to the Anti-Monitor kill him
-John Stewart and Guy Gardner brought down New Warworld and the Yellow Central Power Battery , which were detonated next to the Anti-Monitor , and contained by a shield created by hundreds of Green Lanterns to contain the explosion ; even this was not enough to kill him . detonated detonated Yellow Central Power Battery next to the Anti-Monitor kill him
-John Stewart and Guy Gardner brought down New Warworld and the Yellow Central Power Battery , which were detonated next to the Anti-Monitor , and contained by a shield created by hundreds of Green Lanterns to contain the explosion ; even this was not enough to kill him . contained contained hundreds of Green Lanterns explosion detonated a shield
-John Stewart and Guy Gardner brought down New Warworld and the Yellow Central Power Battery , which were detonated next to the Anti-Monitor , and contained by a shield created by hundreds of Green Lanterns to contain the explosion ; even this was not enough to kill him . created created hundreds of Green Lanterns shield contain the explosion
-John Stewart and Guy Gardner brought down New Warworld and the Yellow Central Power Battery , which were detonated next to the Anti-Monitor , and contained by a shield created by hundreds of Green Lanterns to contain the explosion ; even this was not enough to kill him . contain contained shield explosion
-John Stewart and Guy Gardner brought down New Warworld and the Yellow Central Power Battery , which were detonated next to the Anti-Monitor , and contained by a shield created by hundreds of Green Lanterns to contain the explosion ; even this was not enough to kill him . kill was n't kill explosion Anti-Monitor John Stewart
-John Stewart and Guy Gardner brought down New Warworld and the Yellow Central Power Battery , which were detonated next to the Anti-Monitor , and contained by a shield created by hundreds of Green Lanterns to contain the explosion ; even this was not enough to kill him . kill was n't kill explosion Anti-Monitor Guy Gardner
-John Stewart and Guy Gardner brought down New Warworld and the Yellow Central Power Battery , which were detonated next to the Anti-Monitor , and contained by a shield created by hundreds of Green Lanterns to contain the explosion ; even this was not enough to kill him . kill was n't kill explosion Anti-Monitor hundreds of Green Lanterns
-The riders climbed off and began walking , shouting protests in general and in particular abuse at the race doctor , Pierre Dumas , whom some demanded should also take a test to see if he 'd been drinking wine or taking aspirin to make his own job easier . climbed climbed off The riders
-The riders climbed off and began walking , shouting protests in general and in particular abuse at the race doctor , Pierre Dumas , whom some demanded should also take a test to see if he 'd been drinking wine or taking aspirin to make his own job easier . began began The riders walking , shouting protests in general and in particular abuse at the race doctor , Pierre Dumas
-The riders climbed off and began walking , shouting protests in general and in particular abuse at the race doctor , Pierre Dumas , whom some demanded should also take a test to see if he 'd been drinking wine or taking aspirin to make his own job easier . walking walking The riders
-The riders climbed off and began walking , shouting protests in general and in particular abuse at the race doctor , Pierre Dumas , whom some demanded should also take a test to see if he 'd been drinking wine or taking aspirin to make his own job easier . shouting shouting The riders protests in general and in particular abuse at the race doctor
-The riders climbed off and began walking , shouting protests in general and in particular abuse at the race doctor , Pierre Dumas , whom some demanded should also take a test to see if he 'd been drinking wine or taking aspirin to make his own job easier . demanded demanded some should also take a test to see if he 'd been drinking wine or taking aspirin to make his own job easier
-The riders climbed off and began walking , shouting protests in general and in particular abuse at the race doctor , Pierre Dumas , whom some demanded should also take a test to see if he 'd been drinking wine or taking aspirin to make his own job easier . demanded demanded the riders should also take a test to see if he 'd been drinking wine or taking aspirin to make his own job easier
-The riders climbed off and began walking , shouting protests in general and in particular abuse at the race doctor , Pierre Dumas , whom some demanded should also take a test to see if he 'd been drinking wine or taking aspirin to make his own job easier . take should take the race doctor a test to see if he 'd been drinking wine or taking aspirin to make his own job easier
-The riders climbed off and began walking , shouting protests in general and in particular abuse at the race doctor , Pierre Dumas , whom some demanded should also take a test to see if he 'd been drinking wine or taking aspirin to make his own job easier . take should take Pierre Dumas a test to see if he 'd been drinking wine or taking aspirin to make his own job easier
-The riders climbed off and began walking , shouting protests in general and in particular abuse at the race doctor , Pierre Dumas , whom some demanded should also take a test to see if he 'd been drinking wine or taking aspirin to make his own job easier . see should see if he 'd been drinking wine or taking aspirin to make his own job easier
-The riders climbed off and began walking , shouting protests in general and in particular abuse at the race doctor , Pierre Dumas , whom some demanded should also take a test to see if he 'd been drinking wine or taking aspirin to make his own job easier . drinking might have been drinking the race doctor wine to make his own job easier
-The riders climbed off and began walking , shouting protests in general and in particular abuse at the race doctor , Pierre Dumas , whom some demanded should also take a test to see if he 'd been drinking wine or taking aspirin to make his own job easier . drinking might have been drinking Pierre Dumas wine to make his own job easier
-The riders climbed off and began walking , shouting protests in general and in particular abuse at the race doctor , Pierre Dumas , whom some demanded should also take a test to see if he 'd been drinking wine or taking aspirin to make his own job easier . taking might have been taking the race doctor aspirin to make his own job easier
-The riders climbed off and began walking , shouting protests in general and in particular abuse at the race doctor , Pierre Dumas , whom some demanded should also take a test to see if he 'd been drinking wine or taking aspirin to make his own job easier . taking might have been taking Pierre Dumas aspirin to make his own job easier
-The riders climbed off and began walking , shouting protests in general and in particular abuse at the race doctor , Pierre Dumas , whom some demanded should also take a test to see if he 'd been drinking wine or taking aspirin to make his own job easier . make might make drinking wine or taking aspirin easier
-Godzilla and Battra battled on the ocean floor , until they caused a rift to open between tectonic plates . battled battled Godzilla on the ocean floor until they caused a rift to open between tectonic plates
-Godzilla and Battra battled on the ocean floor , until they caused a rift to open between tectonic plates . battled battled Battra on the ocean floor until they caused a rift to open between tectonic plates
-Godzilla and Battra battled on the ocean floor , until they caused a rift to open between tectonic plates . caused caused Godzilla a rift to open on the ocean floor
-Godzilla and Battra battled on the ocean floor , until they caused a rift to open between tectonic plates . caused caused Godzilla a rift to open between tectonic plates
-Godzilla and Battra battled on the ocean floor , until they caused a rift to open between tectonic plates . caused caused Battra a rift to open on the ocean floor
-Godzilla and Battra battled on the ocean floor , until they caused a rift to open between tectonic plates . caused caused Battra a rift to open between tectonic plates
-Godzilla and Battra battled on the ocean floor , until they caused a rift to open between tectonic plates . open opened a rift between tectonic plates
-Godzilla and Battra battled on the ocean floor , until they caused a rift to open between tectonic plates . open opened a rift on the ocean floor
-In the north and east inhabitants speak Bumthangkha , and in the extreme southeast Khengkha is spoken . speak speak inhabitants Bumthangkha In the north and east
-In the north and east inhabitants speak Bumthangkha , and in the extreme southeast Khengkha is spoken . spoken spoken Khengkha in the extreme southeast
-George Bluth Sr. , patriarch of the Bluth family , is the founder and former CEO of the Bluth Company which markets and builds mini-mansions among many other activities . builds builds the Bluth Company mini-mansions among many other activities .
-The Venezuelan government required that all private television stations dedicate at least 25 % of their airtime to programs created by community groups , non-profits , and other independent producers . required required The Venezuelan government that all private television stations dedicate at least 25 % of their airtime to programs created by community groups , non-profits , and other independent producers
-The Venezuelan government required that all private television stations dedicate at least 25 % of their airtime to programs created by community groups , non-profits , and other independent producers . dedicate must dedicate private television stations at least 25 % of their airtime to programs created by community groups , non-profits , and other independent producers The Venezuelan government required
-The Venezuelan government required that all private television stations dedicate at least 25 % of their airtime to programs created by community groups , non-profits , and other independent producers . created created community groups , non-profits , and other independent producers programs
-In the Civil War , he advocated strong prosecution of the Union War effort , the end of slavery , and civil rights for freed African Americans . freed freed African Americans he advocated strong prosecution of the Union War effort , the end of slavery , and civil rights
-There used to be a Youth Hostel but it closed in October 2008 and the building has since reopened as Keld Lodge , a hotel with bar and restaurant . closed closed a Youth Hostel 2008
-There used to be a Youth Hostel but it closed in October 2008 and the building has since reopened as Keld Lodge , a hotel with bar and restaurant . reopened reopened the building as Keld Lodge since
-There used to be a Youth Hostel but it closed in October 2008 and the building has since reopened as Keld Lodge , a hotel with bar and restaurant . reopened reopened the building as a hotel since
-`` Black Water '' became one of the few records by any act released as a B-side to another Hot 100 hit `` before '' topping the Hot 100 itself . became became Black Water one of the few records by any act released as a B-side to another Hot 100 hit `` before '' topping the Hot 100 itself .
-`` Black Water '' became one of the few records by any act released as a B-side to another Hot 100 hit `` before '' topping the Hot 100 itself . released released as Black Water a B-side to another Hot 100 hit `` before '' topping the Hot 100 itself .
-`` Black Water '' became one of the few records by any act released as a B-side to another Hot 100 hit `` before '' topping the Hot 100 itself . topping topping Black Water the Hot 100 itself .
-RedHat engineers identified problems with ProPolice though , and in 2005 re-implemented stack-smashing protection for inclusion in GCC 4.1 . identified identified RedHat engineers problems with ProPolice
-In 1972 , researchers found metallic conductivity in the charge-transfer complex TTF-TCNQ . found found researchers metallic conductivity in the charge-transfer complex TTF-TCNQ . In 1972
-The residue can be reprocessed for more dripping and strained through a cheesecloth lined sieve as an ingredient for a fine beef stock . reprocessed can be reprocessed The residue for more dripping and strained through a cheesecloth lined sieve as an ingredient for a fine beef stock .
-The residue can be reprocessed for more dripping and strained through a cheesecloth lined sieve as an ingredient for a fine beef stock . dripping can be dripped The residue
-The residue can be reprocessed for more dripping and strained through a cheesecloth lined sieve as an ingredient for a fine beef stock . strained can be strained The residue through a cheesecloth lined sieve as an ingredient for a fine beef stock
-The residue can be reprocessed for more dripping and strained through a cheesecloth lined sieve as an ingredient for a fine beef stock . lined lined cheesecloth
-It is not really passable , and must be done on foot if attempted . done must be done on foot if attempted .
-It is not really passable , and must be done on foot if attempted . attempted will be attempted must be done on foot
-Males had a median income of $ 36,016 versus $ 32,679 for females . had had Males a median income of $ 36,016
-`` For a list of all medalists , please see the List of Great American Beer Festival medalists '' see should see For a list of all medalists the List of Great American Beer Festival medalists
-According to Hofmann , while still a teenage coin collector , he forged a rare mint mark on a dime and was told by an organization of coin collectors that it was genuine . according had according he forged a rare mint mark on a dime and was told by an organization of coin collectors that it was genuine to Hofmann
-According to Hofmann , while still a teenage coin collector , he forged a rare mint mark on a dime and was told by an organization of coin collectors that it was genuine . forged forged Hofmann a rare mint mark on a dime and was told by an organization of coin collectors that it was genuine while still a teenage coin collector
-According to Hofmann , while still a teenage coin collector , he forged a rare mint mark on a dime and was told by an organization of coin collectors that it was genuine . told told Hofmann an organization of coin collectors while still a teenage coin collector that it was genuine
-Initially flying the A-4B Skyhawk , the squadron later transitioned to the A-4L Skyhawk . flying flying the squadron A-4B Skyhawk Initially
-Initially flying the A-4B Skyhawk , the squadron later transitioned to the A-4L Skyhawk . transitioned transitioned the squadron to A-4L Skyhawk later
-And he was in Ali 's army in the Battle of Jamal and later it was Muhammad ibn Abu Bakr who escorted Aisha back to Madina . escorted escorted Aisha back to Madina Muhammad ibn Abu Bakr
-In 54 BC , Marcus Perperna is mentioned as one of the consulars who bore testimony on behalf of Marcus Aemilius Scaurus at his trial . mentioned mentioned Marcus Perperna as one of the consulars who bore testimony on behalf of Marcus Aemilius Scaurus at his trial . In 54 BC
-In 54 BC , Marcus Perperna is mentioned as one of the consulars who bore testimony on behalf of Marcus Aemilius Scaurus at his trial . bore bore the consulars testimony on behalf of Marcus Aemilius Scaurus at his trial . at his trial on behalf of Marcus Aemilius Scaurus at his trial
-Accordingly , the 1962 Roman Missal , the edition whose continued use as an extraordinary form of the Roman Rite is authorized by the motu proprio `` Summorum Pontificum '' , also has no mention of her . continued continued use for the 1962 Roman Missal
-Accordingly , the 1962 Roman Missal , the edition whose continued use as an extraordinary form of the Roman Rite is authorized by the motu proprio `` Summorum Pontificum '' , also has no mention of her . continued continued use for the edition
-Accordingly , the 1962 Roman Missal , the edition whose continued use as an extraordinary form of the Roman Rite is authorized by the motu proprio `` Summorum Pontificum '' , also has no mention of her . authorized authorized continued use by the motu proprio `` Summorum Pontificum ''
-Accordingly , the 1962 Roman Missal , the edition whose continued use as an extraordinary form of the Roman Rite is authorized by the motu proprio `` Summorum Pontificum '' , also has no mention of her . has does n't have the 1962 Roman Missal mention of her Accordingly
-A casting director at the time told Scott that he had wished that he 'd met him a week before ; he was casting for the `` G.I. Joe '' cartoon . casting casting director
-A casting director at the time told Scott that he had wished that he 'd met him a week before ; he was casting for the `` G.I. Joe '' cartoon . told told A casting director Scott that he had wished that he 'd met him a week before
-A casting director at the time told Scott that he had wished that he 'd met him a week before ; he was casting for the `` G.I. Joe '' cartoon . wished had wished A casting director that he 'd met him a week before
-A casting director at the time told Scott that he had wished that he 'd met him a week before ; he was casting for the `` G.I. Joe '' cartoon . met should have met A casting director a week before
-A casting director at the time told Scott that he had wished that he 'd met him a week before ; he was casting for the `` G.I. Joe '' cartoon . casting casting for A casting director the `` G.I. Joe '' cartoon
-In a typical case of substrate interference , a Language A occupies a given territory and another Language B arrives in the same territory . occupies occupies Language A a given territory In a typical case of substrate interference
-In a typical case of substrate interference , a Language A occupies a given territory and another Language B arrives in the same territory . given given occupies territory
-In a typical case of substrate interference , a Language A occupies a given territory and another Language B arrives in the same territory . arrives arrives Language B In a typical case of substrate interference in the same territory
-He appeared in that game alongside his Arsenal midfield colleague Brian Marwood , who had joined them from Sheffield Wednesday eight months earlier . appeared appear alongside Arsenal midfield colleague in that game
-He appeared in that game alongside his Arsenal midfield colleague Brian Marwood , who had joined them from Sheffield Wednesday eight months earlier . appeared appear alongside Brian Marwood in that game
-He appeared in that game alongside his Arsenal midfield colleague Brian Marwood , who had joined them from Sheffield Wednesday eight months earlier . joined had joined Brian Marwood from Sheffield Wednesday eight months earlier
-The insurer sponsored the golf tournament known as the New Orleans Open beginning in 1981 . sponsored sponsored The insurer the golf tournament beginning in 1981
-The insurer sponsored the golf tournament known as the New Orleans Open beginning in 1981 . sponsored sponsored The insurer the New Orleans Open beginning in 1981
-The insurer sponsored the golf tournament known as the New Orleans Open beginning in 1981 . known known as the golf tournament the New Orleans Open
-The insurer sponsored the golf tournament known as the New Orleans Open beginning in 1981 . beginning beginning The insurer sponsored the golf tournament known as the New Orleans Open In 1981
-`` The Cure '' topped the online music sales charts . topped topped `` The Cure '' the online music sales charts
-In the Crimean War , the 5th Dragoon Guards formed part of the Heavy Cavalry Brigade and was sent to the Black Sea in 1854 . formed formed 5th Dragoon Guards part of the Heavy Cavalry Brigade In the Crimean Wa
-In the Crimean War , the 5th Dragoon Guards formed part of the Heavy Cavalry Brigade and was sent to the Black Sea in 1854 . sent sent 5th Dragoon Guards the Black Sea 1854 . Crimean War
-In the Crimean War , the 5th Dragoon Guards formed part of the Heavy Cavalry Brigade and was sent to the Black Sea in 1854 . sent sent part of the Heavy Cavalry Brigade the Black Sea 1854 . Crimean War
-The station has a concourse and ticket office area which was internally redesigned and reopened in mid-2012 . has has The station a concourse and ticket office area which was internally redesigned and reopened in mid-2012 .
-The station has a concourse and ticket office area which was internally redesigned and reopened in mid-2012 . redesigned redesigned a concourse and ticket office area internally
-The station has a concourse and ticket office area which was internally redesigned and reopened in mid-2012 . reopened reopened The station in mid-2012 .
-The opening credits sequence for the collection was directed by Hanada Daizaburo . credits credits sequence for the collection was directed by Hanada Daizaburo .
-The opening credits sequence for the collection was directed by Hanada Daizaburo . directed directed by The opening credits sequence for the collection Hanada Daizaburo
-Wakeboarding is practiced by both men and women at the competitive level , but they compete in separate categories . practiced practiced Wakeboarding at the competitive level by both men and women
-Wakeboarding is practiced by both men and women at the competitive level , but they compete in separate categories . compete compete both men and women in separate categories
-In Canada , there are two organizations that regulate university and collegiate athletics . regulate regulate two organizations university and collegiate athletics In Canada
-The band also confirmed that the album would be self-released . confirmed confirmed The band the album would be self-released
-In 1987 , Rodan became president of the American Society for Bone and Mineral Research . became became Rodan president of the American Society for Bone and Mineral Research 1987 of the American Society for Bone and Mineral Research
-On May 15 , 2007 , XM suspended Opie & Anthony for 30 days , in response to a broadcast featuring a homeless man who wandered into the studio . suspended suspended XM Opie & Anthony On May 15, 2007 in response to a broadcast featuring a homeless man who wandered into the studio
-On May 15 , 2007 , XM suspended Opie & Anthony for 30 days , in response to a broadcast featuring a homeless man who wandered into the studio . suspended suspended XM Opie & Anthony for 30 days in response to a broadcast featuring a homeless man who wandered into the studio
-On May 15 , 2007 , XM suspended Opie & Anthony for 30 days , in response to a broadcast featuring a homeless man who wandered into the studio . featuring featured a homeless man a broadcast Opie & Anthony
-On May 15 , 2007 , XM suspended Opie & Anthony for 30 days , in response to a broadcast featuring a homeless man who wandered into the studio . wandered wandered a homeless man into the studio
-The car used in `` Stealth '' was a band member 's car , and recorded just outside the studio in the parking lot . used used in The car `` Stealth '' was a band member 's car , and recorded just outside the studio in the parking lot .
-The car used in `` Stealth '' was a band member 's car , and recorded just outside the studio in the parking lot . recorded recorded The car just outside the studio in the parking lot .
-In its first six months , RCPO concluded 858 cases convictions in 88 % of cases . concluded concluded RCPO 858 cases convictions in 88 % of cases In its first six months
-A short distance to the east , NC 111 diverges on Greenwood Boulevard . diverges diverges NC 111 on Greenwood Boulevard
-These objects are thrown away if their screen projection is too small . thrown thrown These objects away if their screen projection is too small
-As a result , the lower river had to be dredged three times in two years . had had the lower river be dredged As a result three times
-As a result , the lower river had to be dredged three times in two years . dredged must be dredged the lower river three times in two years three As a result
-But this practice simply reduces government interest costs rather than truly canceling government debt , and can result in hyperinflation if used unsparingly . reduces reduces this practice government interest costs
-But this practice simply reduces government interest costs rather than truly canceling government debt , and can result in hyperinflation if used unsparingly . canceling might be canceled by government debt
-But this practice simply reduces government interest costs rather than truly canceling government debt , and can result in hyperinflation if used unsparingly . result can result this practice in hyperinflation
-But this practice simply reduces government interest costs rather than truly canceling government debt , and can result in hyperinflation if used unsparingly . used would be used unsparingly
-The Wilbur Cross Highway formerly ended in Sturbridge ; locals sometimes call Haynes Street and portions of Mashapaug Road `` Old Route 15 '' . ended ended The Wilbur Cross Highway formerly in Sturbridge
-The Wilbur Cross Highway formerly ended in Sturbridge ; locals sometimes call Haynes Street and portions of Mashapaug Road `` Old Route 15 '' . call call Haynes Street locals `` Old Route 15 '' sometimes
-The Wilbur Cross Highway formerly ended in Sturbridge ; locals sometimes call Haynes Street and portions of Mashapaug Road `` Old Route 15 '' . call call portions of Mashapaug Road locals `` Old Route 15 '' sometimes
-No announcement from UTV was made about the decision to close the station earlier than planned . made was n't made announcement from UTV about the decision to close the station earlier than planned .
-No announcement from UTV was made about the decision to close the station earlier than planned . close would be closed the station earlier than planned . earlier than planned
-No announcement from UTV was made about the decision to close the station earlier than planned . planned planned the decision to close the station
-The city was founded by the Western Town Lot Company in 1880 , and originally named Nordland , with the platted streets given Norwegian names . founded founded the Western Town Lot Company The city 1880
-The city was founded by the Western Town Lot Company in 1880 , and originally named Nordland , with the platted streets given Norwegian names . founded founded the Western Town Lot Company Nordland 1880
-The city was founded by the Western Town Lot Company in 1880 , and originally named Nordland , with the platted streets given Norwegian names . named named The city Nordland originally
-The city was founded by the Western Town Lot Company in 1880 , and originally named Nordland , with the platted streets given Norwegian names . given given the platted streets Norwegian names
-Prior to the 2012 season , the Royals signed Yost to a contract extension through the 2013 season . signed signed to Yost a contract extension through the 2013 season Prior to the 2012 season the Royals
-There were 143 households out of which 30.1 % had children under the age of 18 living with them , 49.7 % were married couples living together , 11.9 % had a female householder with no husband present , and 36.4 % were non-families . had had households children under the age of 18
-There were 143 households out of which 30.1 % had children under the age of 18 living with them , 49.7 % were married couples living together , 11.9 % had a female householder with no husband present , and 36.4 % were non-families . had had 30.1 % children under the age of 18
-There were 143 households out of which 30.1 % had children under the age of 18 living with them , 49.7 % were married couples living together , 11.9 % had a female householder with no husband present , and 36.4 % were non-families . married married couples 49.7 %
-There were 143 households out of which 30.1 % had children under the age of 18 living with them , 49.7 % were married couples living together , 11.9 % had a female householder with no husband present , and 36.4 % were non-families . living living married couples together 49.7 %
-There were 143 households out of which 30.1 % had children under the age of 18 living with them , 49.7 % were married couples living together , 11.9 % had a female householder with no husband present , and 36.4 % were non-families . had had households a female householder with no husband
-There were 143 households out of which 30.1 % had children under the age of 18 living with them , 49.7 % were married couples living together , 11.9 % had a female householder with no husband present , and 36.4 % were non-families . had had 11.9 % a female householder with no husband
-Having been directed to found a monastery of his order in the United States in 1873 , Fr . directed directed to in 1873 found a monastery of his order in the United States in 1873 , Fr . United States in 1873 , Fr .
-Having been directed to found a monastery of his order in the United States in 1873 , Fr . found found a monastery of his order in the United States in 1873 , Fr . in 1873 United States in 1873 , Fr .
-In the 1986 television series `` War and Remembrance '' , Johns took the role of the senior Nazi SS officer Adolf Eichmann . took took Johns the role of the senior Nazi SS officer Adolf Eichmann 1986 In the 1986 television series `` War and Remembrance ''
-A motorcycle speedway long-track meeting , one of the few held in the UK , was staged at Ammanford . held held one of the few UK
-A motorcycle speedway long-track meeting , one of the few held in the UK , was staged at Ammanford . held held A motorcycle speedway long-track meeting UK
-A motorcycle speedway long-track meeting , one of the few held in the UK , was staged at Ammanford . staged staged A motorcycle speedway long-track meeting Ammanford
-Dr. Pim played for Ireland against England in 1892 , 1893 , 1894 and 1896 . played played Dr. Pim for Ireland against England in 1892 , 1893 , 1894 and 1896
-The Triple-A Baseball National Championship Game was established in 2006 . established established The Triple-A Baseball National Championship Game In 2006
-The pillars in a line on its both sides are according to Doric or Greek style and their decorations are according to the Meenakshi Temple at Madurai in Tamil Nadu . according according to The pillars in a line on its both sides Doric or Greek style
-The pillars in a line on its both sides are according to Doric or Greek style and their decorations are according to the Meenakshi Temple at Madurai in Tamil Nadu . according according to their decorations the Meenakshi Temple at Madurai
-Their mission was always for a specific mandate and lasted for a limited period . lasted lasted Their mission for a limited period .
-An original limited artist edition of 250 was published in 1989 and was an oversized fine press slip-cased book with stainless steel faced boards and digital clock inset into the front cover . published published An original limited artist edition of 250 in 1989
-An original limited artist edition of 250 was published in 1989 and was an oversized fine press slip-cased book with stainless steel faced boards and digital clock inset into the front cover . faced faced stainless steel boards
-An original limited artist edition of 250 was published in 1989 and was an oversized fine press slip-cased book with stainless steel faced boards and digital clock inset into the front cover . inset inset into the front cover
-In 2007 , Sun announced `` Project Indiana '' with several goals , including providing an open source binary distribution of the OpenSolaris project , replacing SXDE . announced announced Sun Project Indiana In 2007
-In 2007 , Sun announced `` Project Indiana '' with several goals , including providing an open source binary distribution of the OpenSolaris project , replacing SXDE . including included providing an open source binary distribution of the OpenSolaris project in several goals
-In 2007 , Sun announced `` Project Indiana '' with several goals , including providing an open source binary distribution of the OpenSolaris project , replacing SXDE . providing providing Project Indiana an open source binary distribution of the OpenSolaris project replacing SXDE
-In 2007 , Sun announced `` Project Indiana '' with several goals , including providing an open source binary distribution of the OpenSolaris project , replacing SXDE . replacing replaced an open source binary distribution of the OpenSolaris project SXDE
-In 2007 , Sun announced `` Project Indiana '' with several goals , including providing an open source binary distribution of the OpenSolaris project , replacing SXDE . replacing replaced Project Indiana SXDE
-A cafeteria is also located on the sixth floor , a chapel on the 14th floor , and a study hall on the 15th floor . located located A cafeteria on the sixth floor
-A cafeteria is also located on the sixth floor , a chapel on the 14th floor , and a study hall on the 15th floor . located located A cafeteria on the 14th floor
-A cafeteria is also located on the sixth floor , a chapel on the 14th floor , and a study hall on the 15th floor . located located A cafeteria on the 15th floor
-A cafeteria is also located on the sixth floor , a chapel on the 14th floor , and a study hall on the 15th floor . located located a chapel on the sixth floor
-A cafeteria is also located on the sixth floor , a chapel on the 14th floor , and a study hall on the 15th floor . located located a chapel on the 14th floor
-A cafeteria is also located on the sixth floor , a chapel on the 14th floor , and a study hall on the 15th floor . located located a chapel on the 15th floor
-A cafeteria is also located on the sixth floor , a chapel on the 14th floor , and a study hall on the 15th floor . located located a study hall on the sixth floor
-A cafeteria is also located on the sixth floor , a chapel on the 14th floor , and a study hall on the 15th floor . located located a study hall on the 14th floor
-A cafeteria is also located on the sixth floor , a chapel on the 14th floor , and a study hall on the 15th floor . located located a study hall on the 15th floor
-Transferred to Key West , Florida , on 1 June 1941 , `` R-11 '' continued her training ship duties throughout the remainder of her career . transferred transferred `` R-11 '' on 1 June 1941 to Key West , Florida
-Transferred to Key West , Florida , on 1 June 1941 , `` R-11 '' continued her training ship duties throughout the remainder of her career . continued continued `` R-11 '' her training ship duties on 1 June 1941
-The permanent members are the provost , the Carl H. Pforzheimer University Professor and the deans or designees from the following Schools : the Faculty of Arts and Sciences , Harvard Business School , Harvard Law School and Harvard Medical School . following following Schools
-The Bureau of Alcohol , Tobacco , Firearms and Explosives , formed in 1886 , is a federal law enforcement organization within the United States Department of Justice . formed formed within The Bureau of Alcohol , Tobacco , Firearms and Explosives in 1886 the United States Department of Justice
-The Bureau of Alcohol , Tobacco , Firearms and Explosives , formed in 1886 , is a federal law enforcement organization within the United States Department of Justice . formed formed within a federal law enforcement organization in 1886 the United States Department of Justice
-The community is served by the United States Postal Service Hinsdale Post Office . served served Hinsdale Post Office The community
-The community is served by the United States Postal Service Hinsdale Post Office . served served the United States Postal Service The community
-The very large piers at the crossing signify that there was once a tower . signify signify The very large piers at the crossing there was once a tower
-The 2nd Battalion of the 13th Light Infantry was raised at Winchester in January 1858 . raised raised at The 2nd Battalion of the 13th Light Infantry in January 1858 Winchester
-The closest Watson ever got was when Republicans had 12 seats in the State House in 2003 . got got Watson The closest when Republicans had 12 seats in the State House in 2003
-The closest Watson ever got was when Republicans had 12 seats in the State House in 2003 . had had Republicans 12 seats in 2003 in the State House
-After this point many of the republicans were arrested in Free State `` round ups '' when they had come out of hiding and returned home . arrested arrested many of the republicans in Free State `` round ups '' when they had come out of hiding and returned home
-After this point many of the republicans were arrested in Free State `` round ups '' when they had come out of hiding and returned home . come had come out of many of the republicans hiding
-After this point many of the republicans were arrested in Free State `` round ups '' when they had come out of hiding and returned home . returned returned many of the republicans home
-The CRZ was organized by the Nepal and Indian members of the Naxalite movement , in a meeting at Siliguri in the Indian State of West Bengal during August 2001 . organized organized The CRZ by the Nepal and Indian members of the Naxalite movement , in a meeting at Siliguri in the Indian State of West Bengal during August 2001 in a meeting at Siliguri in the Indian State of West Bengal during August 2001
-The Steinbrenner family added a monument to Monument Park on September 20 , 2010 to honor Steinbrenner . added added The Steinbrenner family a monument on September 20 , 2010 to Monument Park to honor Steinbrenner
-The Steinbrenner family added a monument to Monument Park on September 20 , 2010 to honor Steinbrenner . honor honor Steinbrenner The Steinbrenner family September 20 , 2010 Monument Park
-From the start of the first semester of 2010 , the University banned smoking on any of its property , including inside and outside buildings in areas that were once designated as smoking areas . banned banned the University smoking From the start of the first semester of 2010 on any of its property , including inside and outside buildings in areas that were once designated as smoking areas
-From the start of the first semester of 2010 , the University banned smoking on any of its property , including inside and outside buildings in areas that were once designated as smoking areas . including including the University From the start of the first semester of 2010 inside and outside buildings in areas that were once designated as smoking areas
-From the start of the first semester of 2010 , the University banned smoking on any of its property , including inside and outside buildings in areas that were once designated as smoking areas . designated designated areas as smoking areas inside and outside buildings
-To keep the family together , Michael asks his self-centered twin sister Lindsay , her husband Tobias and their daughter Maeby to live together in the Bluth model home with him and George Michael . keep should keep the family Michael together
-To keep the family together , Michael asks his self-centered twin sister Lindsay , her husband Tobias and their daughter Maeby to live together in the Bluth model home with him and George Michael . asks asks his self-centered twin sister Lindsay , her husband Tobias and their daughter Maeby Michael live together in the Bluth model home with him and George Michael To keep the family together
-To keep the family together , Michael asks his self-centered twin sister Lindsay , her husband Tobias and their daughter Maeby to live together in the Bluth model home with him and George Michael . live should live his self-centered twin sister Lindsay , her husband Tobias and their daughter Maeby in the Bluth model home with him and George Michael . together with him and George Michael . To keep the family together
-The extension of the University Library can be found on the second floor , and parking for 120 cars on the third to sixth floors . found can be found The extension of the University Library on the second floor
-The extension of the University Library can be found on the second floor , and parking for 120 cars on the third to sixth floors . found can be found The extension of the University Library on the third to sixth floors
-The extension of the University Library can be found on the second floor , and parking for 120 cars on the third to sixth floors . found can be found parking for 120 cars on the second floor
-The extension of the University Library can be found on the second floor , and parking for 120 cars on the third to sixth floors . found can be found parking for 120 cars on the third to sixth floors
-As part of several efforts to have the Gypsy Horse recognized as a breed outside the Romanichal community , a more descriptive name was sought for it , starting in the 1990s . have may have As part of several efforts Gypsy Horse recognized as a breed outside the Romanichal community a more descriptive name was sought for it , starting in the 1990s .
-As part of several efforts to have the Gypsy Horse recognized as a breed outside the Romanichal community , a more descriptive name was sought for it , starting in the 1990s . recognized may be recognized as Gypsy Horse as a breed outside the Romanichal community As part of several efforts
-As part of several efforts to have the Gypsy Horse recognized as a breed outside the Romanichal community , a more descriptive name was sought for it , starting in the 1990s . recognized may be recognized as Gypsy Horse as a breed outside the Romanichal community a more descriptive name was sought for it , starting in the 1990s .
-As part of several efforts to have the Gypsy Horse recognized as a breed outside the Romanichal community , a more descriptive name was sought for it , starting in the 1990s . sought sought a more descriptive name starting in the 1990s . As part of several efforts to have the Gypsy Horse recognized as a breed outside the Romanichal community
-As part of several efforts to have the Gypsy Horse recognized as a breed outside the Romanichal community , a more descriptive name was sought for it , starting in the 1990s . starting starting a more descriptive name was sought for it 1990s As part of several efforts to have the Gypsy Horse recognized as a breed outside the Romanichal community
-These are visually very similar to part number 2189014-00-211 , with the same AT style plug and chassis , silver label on the reverse bearing the AnyKey moniker , screws holding the keyboard together , macro programming requiring the control key , and lacking the AnyKey inscription on their face . bearing bearing silver label on the reverse the AnyKey moniker
-These are visually very similar to part number 2189014-00-211 , with the same AT style plug and chassis , silver label on the reverse bearing the AnyKey moniker , screws holding the keyboard together , macro programming requiring the control key , and lacking the AnyKey inscription on their face . holding holding screws the keyboard together
-These are visually very similar to part number 2189014-00-211 , with the same AT style plug and chassis , silver label on the reverse bearing the AnyKey moniker , screws holding the keyboard together , macro programming requiring the control key , and lacking the AnyKey inscription on their face . requiring requiring macro programming the control key
-These are visually very similar to part number 2189014-00-211 , with the same AT style plug and chassis , silver label on the reverse bearing the AnyKey moniker , screws holding the keyboard together , macro programming requiring the control key , and lacking the AnyKey inscription on their face . lacking lacking These the AnyKey inscription on their face
-The Alarm are an alternative rock/new wave band that formed in Rhyl , North Wales , in 1981 . formed formed The Alarm in 1981 in Rhyl , North Wales , in 1981 .
-Despite the below-freezing temperatures , Beuerlein was red-hot , out-dueling Brett Favre and connecting on 29 of 42 attempts , with 3 TDs and no INTs , and passing for a then franchise-record 373 yards . connecting connecting on Beuerlein on 29 of 42 attempts
-Despite the below-freezing temperatures , Beuerlein was red-hot , out-dueling Brett Favre and connecting on 29 of 42 attempts , with 3 TDs and no INTs , and passing for a then franchise-record 373 yards . passing passing Beuerlein a then franchise-record 373 yards
-A cooling center is a temporary air-conditioned public space set up by local authorities to deal with the health effects of a heat wave . set set up by A cooling center local authorities to deal with the health effects of a heat wave . to deal with the health effects of a heat wave .
-A cooling center is a temporary air-conditioned public space set up by local authorities to deal with the health effects of a heat wave . deal would deal with A cooling center the health effects of a heat wave .
-Why the `` Epilogue '' is missing is unknown . missing missing the `` Epilogue ''
-When the explosion tore through the hut , Stauffenberg was convinced that no one in the room could have survived . tore tore the explosion through the hut
-When the explosion tore through the hut , Stauffenberg was convinced that no one in the room could have survived . convinced convinced Stauffenberg about that no one in the room could have survived the explosion tore through the hut
-When the explosion tore through the hut , Stauffenberg was convinced that no one in the room could have survived . survived might not have survived no one the explosion tore through the hut
-If the second excitation pulse is sent prematurely before the relaxation is complete , the average magnetization vector still points in a nonparallel direction , giving suboptimal absorption and emission of the pulse . sent might be sent the second excitation pulse before the relaxation is complete prematurely
-If the second excitation pulse is sent prematurely before the relaxation is complete , the average magnetization vector still points in a nonparallel direction , giving suboptimal absorption and emission of the pulse . points points the average magnetization vector in a nonparallel direction
-If the second excitation pulse is sent prematurely before the relaxation is complete , the average magnetization vector still points in a nonparallel direction , giving suboptimal absorption and emission of the pulse . giving given suboptimal absorption and emission of the pulse the average magnetization vector still points in a nonparallel direction
-Li Hongzhi began his public teachings of Falun Gong on 13 May 1992 in Changchun , and subsequently gave lectures and taught Falun Gong exercises across China . began began Li Hongzhi his public teachings of Falun Gong on 13 May 1992 in Changchun on 13 May 1992 in Changchun of Falun Gong on 13 May 1992 in Changchun
-Li Hongzhi began his public teachings of Falun Gong on 13 May 1992 in Changchun , and subsequently gave lectures and taught Falun Gong exercises across China . taught taught Li Hongzhi Falun Gong exercises across China .
-Li Hongzhi began his public teachings of Falun Gong on 13 May 1992 in Changchun , and subsequently gave lectures and taught Falun Gong exercises across China . exercises exercised Falun Gong across China
-The fundraiser was successful , and the trip occurred from June through September of 2014 . occurred occurred the trip June through September of 2014
-Gavin Hood is a South African filmmaker , screenwriter , producer and actor , best known for writing and directing the Academy Award-winning Foreign Language Film `` Tsotsi '' . known known for Gavin Hood writing and directing the Academy Award-winning Foreign Language Film `` Tsotsi ''
-Gavin Hood is a South African filmmaker , screenwriter , producer and actor , best known for writing and directing the Academy Award-winning Foreign Language Film `` Tsotsi '' . known known for a South African filmmaker writing and directing the Academy Award-winning Foreign Language Film `` Tsotsi ''
-Gavin Hood is a South African filmmaker , screenwriter , producer and actor , best known for writing and directing the Academy Award-winning Foreign Language Film `` Tsotsi '' . writing writing Gavin Hood Tsotsi
-Gavin Hood is a South African filmmaker , screenwriter , producer and actor , best known for writing and directing the Academy Award-winning Foreign Language Film `` Tsotsi '' . writing writing a South African filmmaker Tsotsi
-Gavin Hood is a South African filmmaker , screenwriter , producer and actor , best known for writing and directing the Academy Award-winning Foreign Language Film `` Tsotsi '' . directing directed Gavin Hood Tsotsi
-Gavin Hood is a South African filmmaker , screenwriter , producer and actor , best known for writing and directing the Academy Award-winning Foreign Language Film `` Tsotsi '' . directing directed a South African filmmaker Tsotsi
-In Van Howe 's study , all cases of meatal stenosis were among circumcised boys . circumcised circumcised boys
-The ensemble also has extensive recordings with Deutsche Grammophon , Dorian Recordings , Newport Classic , Navona Records , and under their own label . has has The ensemble extensive recordings with Deutsche Grammophon
-The ensemble also has extensive recordings with Deutsche Grammophon , Dorian Recordings , Newport Classic , Navona Records , and under their own label . has has The ensemble extensive recordings with Dorian Recordings
-The ensemble also has extensive recordings with Deutsche Grammophon , Dorian Recordings , Newport Classic , Navona Records , and under their own label . has has The ensemble extensive recordings with Newport Classic
-The ensemble also has extensive recordings with Deutsche Grammophon , Dorian Recordings , Newport Classic , Navona Records , and under their own label . has has The ensemble extensive recordings with Navona Records
-The ensemble also has extensive recordings with Deutsche Grammophon , Dorian Recordings , Newport Classic , Navona Records , and under their own label . has has The ensemble extensive recordings with their own label
-When civilian government was introduced in Romblon by the Americans in 16 March 1901 , Banton was one of 11 new municipalities reinstated or created . introduced introduced the Americans in 16 March 1901 , Banton was one of 11 new municipalities reinstated or created . civilian government in 16 March 1901 , Banton was one of 11 new municipalities reinstated or in Romblon by the Americans in 16 March 1901 , Banton was one of 11 new municipalities reinstated or created .
-When civilian government was introduced in Romblon by the Americans in 16 March 1901 , Banton was one of 11 new municipalities reinstated or created . reinstated reinstated Banton When civilian government was introduced in Romblon by the Americans in 16 March 1901 in Romblon by the Americans in 16 March 1901
-When civilian government was introduced in Romblon by the Americans in 16 March 1901 , Banton was one of 11 new municipalities reinstated or created . created created Banton When civilian government was introduced in Romblon by the Americans in 16 March 1901 in Romblon by the Americans in 16 March 1901
-Because of Muhammad 's role in its formation , the alliance plays a significant role in Islamic ethics . plays plays the alliance a significant role in Islamic ethics . in Islamic ethics Because of Muhammad 's role in its formation
-Each time Cluemaster escapes or starts some new plan , Stephanie dons her costume again . escapes escapes Cluemaster
-Each time Cluemaster escapes or starts some new plan , Stephanie dons her costume again . starts starts Cluemaster some new plan
-Each time Cluemaster escapes or starts some new plan , Stephanie dons her costume again . dons dons Stephanie her costume
-A partial list of turbomachinery that may use one or more centrifugal compressors within the machine are listed here . use may use A partial list of turbomachinery one or more centrifugal compressors within the machine
-A partial list of turbomachinery that may use one or more centrifugal compressors within the machine are listed here . listed listed A partial list of turbomachinery that may use one or more centrifugal compressors within the machine here
-This attire has also become popular with women of other communities . become become This attire with women of other communities
-Historically , Aiseau was a village dedicated to agriculture , logging , but also to the industry . dedicated dedicated to Aiseau agriculture Historically
-Historically , Aiseau was a village dedicated to agriculture , logging , but also to the industry . dedicated dedicated to Aiseau logging Historically
-Historically , Aiseau was a village dedicated to agriculture , logging , but also to the industry . dedicated dedicated to Aiseau the industry Historically
-Historically , Aiseau was a village dedicated to agriculture , logging , but also to the industry . dedicated dedicated to a village agriculture Historically
-Historically , Aiseau was a village dedicated to agriculture , logging , but also to the industry . dedicated dedicated to a village logging Historically
-Historically , Aiseau was a village dedicated to agriculture , logging , but also to the industry . dedicated dedicated to a village the industry Historically
-Historically , Aiseau was a village dedicated to agriculture , logging , but also to the industry . logging logging Aiseau
-Combined with appropriate match pellets these rifles produce a consistent 10 ring performance , so a non-maximal result during the initial phase can be attributed to the participant . combined combined with rifles appropriate match pellets these rifles produce a consistent 10 ring performance , so a non-maximal result during the initial phase can be attributed to the participant .
-Combined with appropriate match pellets these rifles produce a consistent 10 ring performance , so a non-maximal result during the initial phase can be attributed to the participant . produce produce these rifles a consistent 10 ring performance , so a non-maximal result during the initial phase can be attributed to the participant . Combined with appropriate match pellets
-Combined with appropriate match pellets these rifles produce a consistent 10 ring performance , so a non-maximal result during the initial phase can be attributed to the participant . attributed can be attributed to a non-maximal result during the initial phase the participant .
-Furthermore , knowledge and interest pertaining to the event , as well as the level of importance , contribute to the frequency of rehearsal . pertaining pertaining knowledge and interest to the event
-Furthermore , knowledge and interest pertaining to the event , as well as the level of importance , contribute to the frequency of rehearsal . contribute contribute knowledge and interest pertaining to the event to the frequency of rehearsal
-Furthermore , knowledge and interest pertaining to the event , as well as the level of importance , contribute to the frequency of rehearsal . contribute contribute the level of importance to the frequency of rehearsal
-The stock pot should be chilled and the solid lump of dripping which settles when chilled should be scraped clean and re-chilled for future use . chilled should be chilled The stock pot
-The stock pot should be chilled and the solid lump of dripping which settles when chilled should be scraped clean and re-chilled for future use . dripping dripping settles when chilled should be scraped clean and re-chilled for future use .
-The stock pot should be chilled and the solid lump of dripping which settles when chilled should be scraped clean and re-chilled for future use . settles settles the solid lump of dripping when chilled should be scraped clean and re-chilled for future use .
-The stock pot should be chilled and the solid lump of dripping which settles when chilled should be scraped clean and re-chilled for future use . chilled chilled the solid lump of dripping
-The stock pot should be chilled and the solid lump of dripping which settles when chilled should be scraped clean and re-chilled for future use . scraped should be scraped the solid lump of dripping when chilled clean and re-chilled for future use .
-Watson has served as Minority Leader since elected by his caucus in November 1998 . served served Watson as Minority Leader since elected by his caucus in November 1998
-Watson has served as Minority Leader since elected by his caucus in November 1998 . elected elected Watson by his caucus as Minority Leader in November 1998
-In French , `` droit '' can mean `` the whole body of the Law '' , as in the motto `` dieu et mon droit , '' which is to say `` God and my whole body of Law . '' mean can mean `` the whole body of the Law ''
-In French , `` droit '' can mean `` the whole body of the Law '' , as in the motto `` dieu et mon droit , '' which is to say `` God and my whole body of Law . '' say say `` dieu et mon droit , '' `` God and my whole body of Law . ''
-Team Racing is a NASCAR Craftsman Truck Series team . racing racing Team is a NASCAR Craftsman Truck Series team .
-According to Samaritan tradition , however , the Samaritan ethnonym is not derived from the region of Samaria , but from the fact that they were the `` Guardians '' of the true Israelite religion . according according to the Samaritan ethnonym is not derived from the region of Samaria , but from the fact that they were the `` Guardians '' of the true Israelite religion Samaritan tradition
-According to Samaritan tradition , however , the Samaritan ethnonym is not derived from the region of Samaria , but from the fact that they were the `` Guardians '' of the true Israelite religion . derived is n't derived from the Samaritan ethnonym the region of Samaria the fact that they were the `` Guardians '' of the true Israelite religion
-In 1954 , a KOMO news photographer discovered a way to develop color film in a new process that took just a few hours instead of days . discovered discovered a KOMO news photographer a way to develop color film in a new process that took just a few hours instead of days 1954
-In 1954 , a KOMO news photographer discovered a way to develop color film in a new process that took just a few hours instead of days . develop developed color film in a new process that took just a few hours instead of days
-In 1954 , a KOMO news photographer discovered a way to develop color film in a new process that took just a few hours instead of days . took took color film in a new process just a few hours instead of days
-In 2011 , major vendors launched several consumer-oriented motherboards using the Intel 6-series LGA 1155 chipset and AMD 9 Series AM3 + chipsets with UEFI . launched launched major vendors several consumer-oriented motherboards using the Intel 6-series LGA 1155 chipset and AMD 9 Series AM3 + chipsets with UEFI In 2011
-In 2011 , major vendors launched several consumer-oriented motherboards using the Intel 6-series LGA 1155 chipset and AMD 9 Series AM3 + chipsets with UEFI . using used consumer-oriented motherboards the Intel 6-series LGA 1155 chipset and AMD 9 Series AM3 + chipsets with UEFI several
-The Persian contingent that was supposed to guard the defile soon abandoned it , and Alexander passed through without any problems . supposed supposed to The Persian contingent guard the defile
-The Persian contingent that was supposed to guard the defile soon abandoned it , and Alexander passed through without any problems . guard should have guarded The Persian contingent the defile
-The Persian contingent that was supposed to guard the defile soon abandoned it , and Alexander passed through without any problems . abandoned abandoned The Persian contingent the defile
-The Persian contingent that was supposed to guard the defile soon abandoned it , and Alexander passed through without any problems . passed passed Alexander through the defile without any problems
-Like other BBC content of the mid-1990s , it often lampooned the low-budget quality of satellite television available in the UK at the time . lampooned lampoon the mid-1990s the low-budget quality of satellite television available in the UK at the time
-The race is in mixed eights , and usually held in late February / early March . held held The race in late February / early March
-They have included some of the most dangerous assassins in the world including Lady Shiva , David Cain , and Merlyn . including included some of the most dangerous assassins in the worl Lady Shiva , David Cain , and Merlyn
-The PAC bulletins were widely distributed at these meetings . distributed distributed The PAC bulletins at these meetings
-If given this data , the Germans would be able to adjust their aim and correct any shortfall . given might be given the Germans this data
-If given this data , the Germans would be able to adjust their aim and correct any shortfall . adjust would adjust the Germans their aim If given this data correct any shortfall
-If given this data , the Germans would be able to adjust their aim and correct any shortfall . correct would correct the Germans any shortfall If given this data
-Cis-regulatory elements are sequences that control the transcription of a nearby gene . control control Cis-regulatory elements the transcription of a nearby gene
-Cis-regulatory elements are sequences that control the transcription of a nearby gene . control control sequences the transcription of a nearby gene
-The staff provides a family-style , home-cooked dinner every night , which is attended not only by Dartmouth students , but by community members , Appalachian Trail thru-hikers , tourists , and even Dartmouth professors . provides provides The staff a family-style , home-cooked dinner every night
-The staff provides a family-style , home-cooked dinner every night , which is attended not only by Dartmouth students , but by community members , Appalachian Trail thru-hikers , tourists , and even Dartmouth professors . attended attended Dartmouth students a family-style , home-cooked dinner every night
-The staff provides a family-style , home-cooked dinner every night , which is attended not only by Dartmouth students , but by community members , Appalachian Trail thru-hikers , tourists , and even Dartmouth professors . attended attended community members a family-style , home-cooked dinner every night
-The staff provides a family-style , home-cooked dinner every night , which is attended not only by Dartmouth students , but by community members , Appalachian Trail thru-hikers , tourists , and even Dartmouth professors . attended attended Appalachian Trail thru-hikers a family-style , home-cooked dinner every night
-The staff provides a family-style , home-cooked dinner every night , which is attended not only by Dartmouth students , but by community members , Appalachian Trail thru-hikers , tourists , and even Dartmouth professors . attended attended tourists a family-style , home-cooked dinner every night
-After five years of searching , the Colonials found a primitive , lush and vibrant new world and named it Earth . searching been searching the Colonials for a primitive , lush and vibrant new world five years
-After five years of searching , the Colonials found a primitive , lush and vibrant new world and named it Earth . found found the Colonials a primitive , lush and vibrant new world After five years of searching
-After five years of searching , the Colonials found a primitive , lush and vibrant new world and named it Earth . named named the Colonials Earth
-The Main Street Tunnel , located in Welland , Ontario , Canada , is an underwater tunnel , carrying Niagara Road 27 and the unsigned designation of Highway 7146 under the Welland Canal . carrying carrying The Main Street Tunnel Niagara Road 27 and the unsigned designation of Highway 7146 under the Welland Canal .
-Parental investment is any expenditure of resources to benefit one offspring . benefit should benefit Parental investment one offspring
-These and other attempts supplied a bridge between the literature of the two languages . supplied supplied These and other attempts a bridge between the literature of the two languages
-It should be noted that these numbers are inclusive of any of the childminders own children . noted should be noted that these numbers are inclusive of any of the childminders own children
-However , comic relief sidekick `` Mike McGurk '' bears some resemblance to Tracy 's partner from the strip , Pat Patton ; Tracy 's secretary , Gwen Andrews , provides the same kind of feminine interest as Tess Trueheart ; and FBI Director Clive Anderson is the same kind of avuncular superior as Chief Brandon . bears bears comic relief sidekick `` Mike McGurk '' some resemblance to Tracy 's partner from the strip , Pat Patton
-However , comic relief sidekick `` Mike McGurk '' bears some resemblance to Tracy 's partner from the strip , Pat Patton ; Tracy 's secretary , Gwen Andrews , provides the same kind of feminine interest as Tess Trueheart ; and FBI Director Clive Anderson is the same kind of avuncular superior as Chief Brandon . provides provides Tracy 's secretary the same kind of feminine interest as Tess Trueheart
-However , comic relief sidekick `` Mike McGurk '' bears some resemblance to Tracy 's partner from the strip , Pat Patton ; Tracy 's secretary , Gwen Andrews , provides the same kind of feminine interest as Tess Trueheart ; and FBI Director Clive Anderson is the same kind of avuncular superior as Chief Brandon . provides provides Gwen Andrews the same kind of feminine interest as Tess Trueheart
-Spennymoor Town F.C. are the main local football team and won the FA Carlsberg Vase , after winning 2-1 in the final at Wembley Stadium against Tunbridge Wells in May 2013 . won won Spennymoor Town F.C. the FA Carlsberg Vase
-Spennymoor Town F.C. are the main local football team and won the FA Carlsberg Vase , after winning 2-1 in the final at Wembley Stadium against Tunbridge Wells in May 2013 . won won the main local football team the FA Carlsberg Vase
-Spennymoor Town F.C. are the main local football team and won the FA Carlsberg Vase , after winning 2-1 in the final at Wembley Stadium against Tunbridge Wells in May 2013 . winning winning Spennymoor Town F.C. in the final May 2013 against Tunbridge Wells 2-1
-Specifically , knowledge and interest in the event affects the level of personal importance for the individual , which also affects the individual 's level of emotional arousal . affects affects knowledge and interest in the event the level of personal importance for the individual Specifically
-Specifically , knowledge and interest in the event affects the level of personal importance for the individual , which also affects the individual 's level of emotional arousal . affects affects the level of personal importance for the individual the individual 's level of emotional arousal
-Language B then begins to supplant language A : the speakers of Language A abandon their own language in favor of the other language , generally because they believe that it will help them achieve certain goals within government , the workplace , and in social settings . begins begins Language B supplant language A
-Language B then begins to supplant language A : the speakers of Language A abandon their own language in favor of the other language , generally because they believe that it will help them achieve certain goals within government , the workplace , and in social settings . supplant supplant Language B language A
-Language B then begins to supplant language A : the speakers of Language A abandon their own language in favor of the other language , generally because they believe that it will help them achieve certain goals within government , the workplace , and in social settings . abandon abandon the speakers of Language A their own language because they believe that it will help them achieve certain goals
-Language B then begins to supplant language A : the speakers of Language A abandon their own language in favor of the other language , generally because they believe that it will help them achieve certain goals within government , the workplace , and in social settings . believe believe in the speakers of Language A that it will help them achieve certain goals
-Language B then begins to supplant language A : the speakers of Language A abandon their own language in favor of the other language , generally because they believe that it will help them achieve certain goals within government , the workplace , and in social settings . achieve will achieve within speakers of Language A certain goals government abandon their own language in favor of the other language
-Language B then begins to supplant language A : the speakers of Language A abandon their own language in favor of the other language , generally because they believe that it will help them achieve certain goals within government , the workplace , and in social settings . achieve will achieve within speakers of Language A certain goals the workplace abandon their own language in favor of the other language
-Language B then begins to supplant language A : the speakers of Language A abandon their own language in favor of the other language , generally because they believe that it will help them achieve certain goals within government , the workplace , and in social settings . achieve will achieve within speakers of Language A certain goals in social settings abandon their own language in favor of the other language
-Meanwhile , the Mason City Division continued to operate as usual . continued continued the Mason City Division operate as usual
-Meanwhile , the Mason City Division continued to operate as usual . operate operate the Mason City Division as usual
-32.7 % of all households were made up of individuals and 15.7 % had someone living alone who was 65 years of age or older . made made up of 32.7 % of all households individuals
-32.7 % of all households were made up of individuals and 15.7 % had someone living alone who was 65 years of age or older . had had 32.7 % of all households someone living alone who was 65 years of age or older
-One example could be `` Time '' , the fifth song from Pink Floyd 's 1973 album `` The Dark Side Of The Moon '' , which contains a reprise of `` Breathe '' , the first song of the same album . contains contains `` Time '' , the fifth song from Pink Floyd 's 1973 album `` The Dark Side Of The Moon '' a reprise of `` Breathe '' , the first song of the same album
-However , it became far less safe for the Nationals from 1983 onward , and strong population growth over the last three decades has seen it progressively lose its rural territory and reduced it to a more coastal-based and urbanised division . reduced been reduced its rural territory to a more coastal-based and urbanised division .
-The second was named after former US President George H. W. Bush stayed aboard in November 1995 . named named after The second former US President George H. W. Bush
-The second was named after former US President George H. W. Bush stayed aboard in November 1995 . stayed stayed former US President George H. W. Bush aboard in November 1995
-DC Comics held a memorial service in Manhattan 's Lower East Side , a neighborhood Eisner often visited in his work , at the Angel Orensanz Foundation on Norfolk Street . held held DC Comics a memorial service in Manhattan 's Lower East Side
-DC Comics held a memorial service in Manhattan 's Lower East Side , a neighborhood Eisner often visited in his work , at the Angel Orensanz Foundation on Norfolk Street . held held DC Comics a memorial service a neighborhood Eisner often visited in his work
-DC Comics held a memorial service in Manhattan 's Lower East Side , a neighborhood Eisner often visited in his work , at the Angel Orensanz Foundation on Norfolk Street . held held DC Comics a memorial service at the Angel Orensanz Foundation on Norfolk Street
-DC Comics held a memorial service in Manhattan 's Lower East Side , a neighborhood Eisner often visited in his work , at the Angel Orensanz Foundation on Norfolk Street . visited visited Eisner a neighborhood often in his work
-He lodged near the hospital at 28 St Thomas 's Street in Southwark , with other medical students , including Henry Stephens who became a famous inventor and ink magnate . including included Henry Stephens with other medical students
-He lodged near the hospital at 28 St Thomas 's Street in Southwark , with other medical students , including Henry Stephens who became a famous inventor and ink magnate . became became Henry Stephens a famous inventor and ink magnate
-Unruly passengers are often put off here to be taken into custody . put put off Unruly passengers here to be taken into custody . to be taken into custody .
-The restrictions against eating meat and drinking wine , besides reducing a person 's pleasure , recall the cessation of the `` Korban Tamid '' and the `` Nesach Hayayin '' on the Temple Altar with the destruction of the Temple . eating eaten meat
-The restrictions against eating meat and drinking wine , besides reducing a person 's pleasure , recall the cessation of the `` Korban Tamid '' and the `` Nesach Hayayin '' on the Temple Altar with the destruction of the Temple . reducing reducing The restrictions against eating meat and drinking wine a person 's pleasure
-The restrictions against eating meat and drinking wine , besides reducing a person 's pleasure , recall the cessation of the `` Korban Tamid '' and the `` Nesach Hayayin '' on the Temple Altar with the destruction of the Temple . recall recall The restrictions against eating meat and drinking wine the cessation of the `` Korban Tamid '' and the `` Nesach Hayayin '' on the Temple Altar with the destruction of the Temple
-Curley was the first classical organist to perform a solo organ recital at the White House , and also played before several European heads of state . perform perform Curley a solo organ recital at the White House , and also played before several European heads of state . at the White House
-Curley was the first classical organist to perform a solo organ recital at the White House , and also played before several European heads of state . perform perform classical organist a solo organ recital at the White House , and also played before several European heads of state . at the White House
-Curley was the first classical organist to perform a solo organ recital at the White House , and also played before several European heads of state . played played Curley before several European heads of state
-Curley was the first classical organist to perform a solo organ recital at the White House , and also played before several European heads of state . played played classical organist before several European heads of state
-The first comes from when Sweden 's Royal Couple lived there during the 1992 Barcelona Summer Olympics . comes comes The first from when Sweden 's Royal Couple lived there during the 1992 Barcelona Summer Olympics
-The first comes from when Sweden 's Royal Couple lived there during the 1992 Barcelona Summer Olympics . lived lived Sweden 's Royal Couple during the 1992 Barcelona Summer Olympics
-Carl uses the `` old magic '' to tame the Deep Crow , claiming it is not his `` first time to the rodeo . '' uses uses Carl the `` old magic '' to tame the Deep Crow
-Carl uses the `` old magic '' to tame the Deep Crow , claiming it is not his `` first time to the rodeo . '' claiming claiming Carl it is not his `` first time to the rodeo . ''
-Lemmy believes that if Will Reid Dick had not been there , they could have worked through the problems , but ended up exchanging a few words and Clarke left the studio . believes believes Lemmy that if Will Reid Dick had not been there , they could have worked through the problems , but ended up exchanging a few words and Clarke left the studio
-Lemmy believes that if Will Reid Dick had not been there , they could have worked through the problems , but ended up exchanging a few words and Clarke left the studio . ended ended Lemmy exchanging a few words and Clarke left the studio .
-Lemmy believes that if Will Reid Dick had not been there , they could have worked through the problems , but ended up exchanging a few words and Clarke left the studio . exchanging exchanging Lemmy a few words and Clarke left the studio .
-Lemmy believes that if Will Reid Dick had not been there , they could have worked through the problems , but ended up exchanging a few words and Clarke left the studio . left left Clarke the studio
-Of the rest of the population , there was 1 individual who belonged to the Christian Catholic faith . belonged belonged 1 individual to the Christian Catholic faith
-That same year saw an outbreak of plague in Venice , one that lasted two years and caused Franco to leave the city and to lose many of her possessions . saw saw That same year an outbreak of plague in Venice
-That same year saw an outbreak of plague in Venice , one that lasted two years and caused Franco to leave the city and to lose many of her possessions . lasted lasted an outbreak of plague in Venice two years
-That same year saw an outbreak of plague in Venice , one that lasted two years and caused Franco to leave the city and to lose many of her possessions . caused caused an outbreak of plague in Venice to leave the city and to lose many of her possessions Franco
-That same year saw an outbreak of plague in Venice , one that lasted two years and caused Franco to leave the city and to lose many of her possessions . leave leave Franco for an outbreak of plague in Venice the city
-That same year saw an outbreak of plague in Venice , one that lasted two years and caused Franco to leave the city and to lose many of her possessions . lose lose Franco many of her possessions for an outbreak of plague in Venice
-These orientations allow easy movement , i.e. degrees of freedom , and thus lowers entropy minimally . allow allow These orientations easy movement , i.e. degrees of freedom , and thus lowers entropy minimally .
-These orientations allow easy movement , i.e. degrees of freedom , and thus lowers entropy minimally . lowers lowers These orientations entropy minimally . minimally
-This is most common in Western countries in those with Barrett 's esophagus , and occurs in the cuboidal cells . occurs occurs This in the cuboidal cells
-During the Second World War , the number of Turkish run cafes increased from 20 in 1939 to 200 in 1945 which created a demand for more Turkish Cypriot workers . increased increased the number of Turkish run cafes During the Second World War from 20 in 1939 to 200 in 1945
-During the Second World War , the number of Turkish run cafes increased from 20 in 1939 to 200 in 1945 which created a demand for more Turkish Cypriot workers . created created the number of Turkish run cafes increased from 20 in 1939 to 200 in 1945 a demand for more Turkish Cypriot workers
-Reptiles identified during surveys include marbled geckos on both island groups while the following are limited to the main island in the Northern group - four-toed earless skink , bull skinks and western brown snakes . identified identified Reptiles during surveys
-Reptiles identified during surveys include marbled geckos on both island groups while the following are limited to the main island in the Northern group - four-toed earless skink , bull skinks and western brown snakes . include included in marbled geckos on both island groups Reptiles identified during surveys
-Reptiles identified during surveys include marbled geckos on both island groups while the following are limited to the main island in the Northern group - four-toed earless skink , bull skinks and western brown snakes . following following four-toed earless skink , bull skinks and western brown snakes limited to the main island in the Northern group
-Reptiles identified during surveys include marbled geckos on both island groups while the following are limited to the main island in the Northern group - four-toed earless skink , bull skinks and western brown snakes . limited limited to four-toed earless skink , bull skinks and western brown snakes the main island in the Northern group
-Prior to the Playmaker tool , the Player could only call one of four available `` hot routes . '' call could call one of four available `` hot routes . '' the Player Prior to the Playmaker tool
-Rosen argues that one of the most important provisions of the Constitution in Exile is limitations on the interstate commerce clause , which were undermined by the Supreme Court 's `` expansive interpretation of Congress 's power to regulate interstate commerce ... extended to include any activities that might affect commerce indirectly '' during the New Deal . argues argues Rosen that one of the most important provisions of the Constitution in Exile is limitations on the interstate commerce clause
-Rosen argues that one of the most important provisions of the Constitution in Exile is limitations on the interstate commerce clause , which were undermined by the Supreme Court 's `` expansive interpretation of Congress 's power to regulate interstate commerce ... extended to include any activities that might affect commerce indirectly '' during the New Deal . undermined undermined by limitations on the interstate commerce clause the Supreme Court 's `` expansive interpretation of Congress 's power to regulate interstate commerce
-Rosen argues that one of the most important provisions of the Constitution in Exile is limitations on the interstate commerce clause , which were undermined by the Supreme Court 's `` expansive interpretation of Congress 's power to regulate interstate commerce ... extended to include any activities that might affect commerce indirectly '' during the New Deal . regulate regulate Congress interstate commerce
-Rosen argues that one of the most important provisions of the Constitution in Exile is limitations on the interstate commerce clause , which were undermined by the Supreme Court 's `` expansive interpretation of Congress 's power to regulate interstate commerce ... extended to include any activities that might affect commerce indirectly '' during the New Deal . regulate regulate Congress any activities that might affect commerce indirectly
-Rosen argues that one of the most important provisions of the Constitution in Exile is limitations on the interstate commerce clause , which were undermined by the Supreme Court 's `` expansive interpretation of Congress 's power to regulate interstate commerce ... extended to include any activities that might affect commerce indirectly '' during the New Deal . extended extended Congress 's power to regulate interstate commerce to include any activities that might affect commerce indirectly
-Rosen argues that one of the most important provisions of the Constitution in Exile is limitations on the interstate commerce clause , which were undermined by the Supreme Court 's `` expansive interpretation of Congress 's power to regulate interstate commerce ... extended to include any activities that might affect commerce indirectly '' during the New Deal . include included in any activities that might affect commerce indirectly Congress 's power to regulate interstate commerce
-Rosen argues that one of the most important provisions of the Constitution in Exile is limitations on the interstate commerce clause , which were undermined by the Supreme Court 's `` expansive interpretation of Congress 's power to regulate interstate commerce ... extended to include any activities that might affect commerce indirectly '' during the New Deal . affect might affect any activities commerce during the New Deal
-Wide acceptance of zero-energy building technology may require more government incentives or building code regulations , the development of recognized standards , or significant increases in the cost of conventional energy . require may require Wide acceptance of zero-energy building technology more government incentives
-Wide acceptance of zero-energy building technology may require more government incentives or building code regulations , the development of recognized standards , or significant increases in the cost of conventional energy . require may require Wide acceptance of zero-energy building technology the development of recognized standards
-Wide acceptance of zero-energy building technology may require more government incentives or building code regulations , the development of recognized standards , or significant increases in the cost of conventional energy . require may require Wide acceptance of zero-energy building technology or significant increases in the cost of conventional energy
-Wide acceptance of zero-energy building technology may require more government incentives or building code regulations , the development of recognized standards , or significant increases in the cost of conventional energy . recognized would be recognized standards
-The `` Charleston Courier , '' founded in 1803 , and `` Charleston Daily News , '' founded in 1865 , merged to form the `` News and Courier '' in 1873 . founded founded The `` Charleston Courier , '' In 1803
-The `` Charleston Courier , '' founded in 1803 , and `` Charleston Daily News , '' founded in 1865 , merged to form the `` News and Courier '' in 1873 . founded founded `` Charleston Daily News , '' In 1865
-The `` Charleston Courier , '' founded in 1803 , and `` Charleston Daily News , '' founded in 1865 , merged to form the `` News and Courier '' in 1873 . merged merged The `` Charleston Courier , '' In 1873 to form the `` News and Courier ''
-The `` Charleston Courier , '' founded in 1803 , and `` Charleston Daily News , '' founded in 1865 , merged to form the `` News and Courier '' in 1873 . merged merged `` Charleston Daily News , '' In 1873 to form the `` News and Courier ''
-The `` Charleston Courier , '' founded in 1803 , and `` Charleston Daily News , '' founded in 1865 , merged to form the `` News and Courier '' in 1873 . form formed The `` Charleston Courier , '' the `` News and Courier '' in 1873
-The `` Charleston Courier , '' founded in 1803 , and `` Charleston Daily News , '' founded in 1865 , merged to form the `` News and Courier '' in 1873 . form formed `` Charleston Daily News , '' the `` News and Courier '' in 1873
-This engine was equipped with an electronically controlled carburetor . equipped equipped with This engine an electronically controlled carburetor
-This engine was equipped with an electronically controlled carburetor . controlled controlled carburetor electronically
-As early as the 15th century , the French kings sent commissioners to the provinces to inspect on royal and administrative affairs and to take necessary action . sent sent commissioners to the provinces to inspect on royal and administrative affairs and to take necessary action . to the provinces to inspect on royal and administrative affairs and to take necessary action As early as the 15th century the French kings
-As early as the 15th century , the French kings sent commissioners to the provinces to inspect on royal and administrative affairs and to take necessary action . inspect would inspect on commissioners royal and administrative affairs and to take necessary action . the provinces
-As early as the 15th century , the French kings sent commissioners to the provinces to inspect on royal and administrative affairs and to take necessary action . take would take commissioners necessary action
-The Bourbons built additional reception rooms and reconstructed the Sala d'Ercole , named for its frescos depicted the mythological hero , Hercules . built built The Bourbons rooms
-The Bourbons built additional reception rooms and reconstructed the Sala d'Ercole , named for its frescos depicted the mythological hero , Hercules . reconstructed reconstructed The Bourbons the Sala d'Ercole
-The Bourbons built additional reception rooms and reconstructed the Sala d'Ercole , named for its frescos depicted the mythological hero , Hercules . named named for the Sala d'Ercole its frescos
-The Bourbons built additional reception rooms and reconstructed the Sala d'Ercole , named for its frescos depicted the mythological hero , Hercules . depicted depicted its frescos Hercules
-In order to support planned TRAX expansion , UTA ordered 77 Siemens S70 light rail vehicles from Siemens AG . support support UTA planned TRAX expansion ordered 77 Siemens S70 light rail vehicles from Siemens AG
-In order to support planned TRAX expansion , UTA ordered 77 Siemens S70 light rail vehicles from Siemens AG . ordered ordered UTA 77 Siemens S70 light rail vehicles from Siemens AG . support planned TRAX expansion 77
-Males had a median income of $ 28,750 versus $ 16,250 for females . had had Males a median income of $ 28,750
-The River Stour Trust , formed in 1968 , has its headquarters in Sudbury , and a purpose built Visitor Centre located at Cornard Lock . formed formed The River Stour Trust in 1968
-The River Stour Trust , formed in 1968 , has its headquarters in Sudbury , and a purpose built Visitor Centre located at Cornard Lock . has has The River Stour Trust its headquarters in Sudbury
-The River Stour Trust , formed in 1968 , has its headquarters in Sudbury , and a purpose built Visitor Centre located at Cornard Lock . built built Visitor Centre at Cornard Lock
-San Francisco 's diversity of cultures along with its eccentricities are so great that they have greatly influenced the country and the world at large over the years . influenced influenced San Francisco 's diversity of cultures along with its eccentricities the country and the world at large over the years greatly
-Nothing is known for certain about his life before about 1580 , but contemporary or near-contemporary accounts suggest that he was brought up as a member of the Church of Scotland , spent some time in Argyll before leaving for the Continent , and was converted to Catholicism in Spain . known is n't known his life before about 1580 Nothing is known for certain Nothing
-Nothing is known for certain about his life before about 1580 , but contemporary or near-contemporary accounts suggest that he was brought up as a member of the Church of Scotland , spent some time in Argyll before leaving for the Continent , and was converted to Catholicism in Spain . suggest suggested contemporary or near-contemporary accounts he was brought up as a member of the Church of Scotland , spent some time in Argyll before leaving for the Continent , and was converted to Catholicism in Spain . Nothing is known for certain about his life before about 1580
-During the morning and evening rush hours some services run direct to/from Paddington and Reading . run run some services During the morning and evening rush hours direct to/from Paddington and Reading
-Models , taking into account the size and room number of the barrack blocks in the Gorgan Wall forts and likely occupation density , produce figures between 15,000 and 36,000 soldiers . taking taking into account the size and room number of the barrack blocks in the Gorgan Wall forts and likely occupation density
-Models , taking into account the size and room number of the barrack blocks in the Gorgan Wall forts and likely occupation density , produce figures between 15,000 and 36,000 soldiers . produce produce Models , taking into account the size and room number of the barrack blocks in the Gorgan Wall forts and likely occupation density figures between 15,000 and 36,000 soldiers
-The Hamburg Concathedral with chapterhouse and capitular residential courts formed a `` Cathedral Immunity District '' of the Prince-Archbishopric of Bremen too . formed formed The Hamburg Concathedral with chapterhouse and capitular residential courts a `` Cathedral Immunity District '' of the Prince-Archbishopric of Bremen
-US 258 intersects NC 222 in Fountain before entering Edgecombe County . entering enter US 258 intersects NC 222 in Fountain Edgecombe County
-In addition , as John Cecil Masterman , chairman of the Twenty Committee , commented , `` If , for example , St Paul 's Cathedral were hit , it was useless and harmful to report that the bomb had descended upon a cinema in Islington , since the truth would inevitably get through to Germany ... '' commented commented John Cecil Masterman `` If , for example , St Paul 's Cathedral were hit , it was useless and harmful to report that the bomb had descended upon a cinema in Islington , since the truth would inevitably get through to Germany ... ''
-In addition , as John Cecil Masterman , chairman of the Twenty Committee , commented , `` If , for example , St Paul 's Cathedral were hit , it was useless and harmful to report that the bomb had descended upon a cinema in Islington , since the truth would inevitably get through to Germany ... '' hit might be hit St Paul 's Cathedral
-In addition , as John Cecil Masterman , chairman of the Twenty Committee , commented , `` If , for example , St Paul 's Cathedral were hit , it was useless and harmful to report that the bomb had descended upon a cinema in Islington , since the truth would inevitably get through to Germany ... '' report should n't be reported that the bomb had descended upon a cinema in Islington If , for example , St Paul 's Cathedral were hit the truth would inevitably get through to Germany
-In addition , as John Cecil Masterman , chairman of the Twenty Committee , commented , `` If , for example , St Paul 's Cathedral were hit , it was useless and harmful to report that the bomb had descended upon a cinema in Islington , since the truth would inevitably get through to Germany ... '' descended might have descended the bomb upon a cinema in Islington
-In addition , as John Cecil Masterman , chairman of the Twenty Committee , commented , `` If , for example , St Paul 's Cathedral were hit , it was useless and harmful to report that the bomb had descended upon a cinema in Islington , since the truth would inevitably get through to Germany ... '' get would get the truth to Germany inevitably
-However , after pressure campaigns from various human rights groups , BAE Systems recently stated it no longer produces land mines or cluster bombs . stated stated BAE Systems it no longer produces land mines recently
-However , after pressure campaigns from various human rights groups , BAE Systems recently stated it no longer produces land mines or cluster bombs . stated stated BAE Systems it no longer produces land mines after pressure campaigns from various human rights groups
-However , after pressure campaigns from various human rights groups , BAE Systems recently stated it no longer produces land mines or cluster bombs . produces does n't produce BAE Systems land mines no longer
-However , after pressure campaigns from various human rights groups , BAE Systems recently stated it no longer produces land mines or cluster bombs . produces does n't produce BAE Systems cluster bombs no longer
-Her image held aloft signifies the Earth , which `` hangs in the air '' . held held Her image signifies the Earth aloft
-Her image held aloft signifies the Earth , which `` hangs in the air '' . signifies signifies Her image held aloft the Earth
-Her image held aloft signifies the Earth , which `` hangs in the air '' . hangs hangs the Earth in the air
-Muhammad ibn Abu Bakr was a pious Muslim who supported the Imam of his time , Ali ibn Abi Talib , even though his sister Aisha opposed ` Ali in the battle of Jamal , Ibn Abu Bakr was faithful to his stepfather . supported supported the Imam of his time Muhammad ibn Abu Bakr
-Muhammad ibn Abu Bakr was a pious Muslim who supported the Imam of his time , Ali ibn Abi Talib , even though his sister Aisha opposed ` Ali in the battle of Jamal , Ibn Abu Bakr was faithful to his stepfather . supported supported Ali ibn Abi Talib Muhammad ibn Abu Bakr
-Muhammad ibn Abu Bakr was a pious Muslim who supported the Imam of his time , Ali ibn Abi Talib , even though his sister Aisha opposed ` Ali in the battle of Jamal , Ibn Abu Bakr was faithful to his stepfather . opposed opposed his sister Aisha Ali in the battle of Jamal , Ibn Abu Bakr was faithful to his stepfather .
-By then , she was raising not only her own children but also her nephews , who had been orphaned by the plague . orphaned had been orphaned her nephews by the plague
-In 1964 Barrie appeared in two episodes of `` Alfred Hitchcock Presents '' . appeared appeared Barrie in two episodes of `` Alfred Hitchcock Presents '' In 1964
-In 1964 Barrie appeared in two episodes of `` Alfred Hitchcock Presents '' . presents presents Alfred Hitchcock
-In Jewish Hebrew , the Samaritans are called `` Shomronim '' , while in Samaritan Hebrew they call themselves `` Shamerim '' . called called the Samaritans Shomronim
-In Jewish Hebrew , the Samaritans are called `` Shomronim '' , while in Samaritan Hebrew they call themselves `` Shamerim '' . called called the Samaritans Shamerim
-In Jewish Hebrew , the Samaritans are called `` Shomronim '' , while in Samaritan Hebrew they call themselves `` Shamerim '' . call called the Samaritans Shomronim
-In Jewish Hebrew , the Samaritans are called `` Shomronim '' , while in Samaritan Hebrew they call themselves `` Shamerim '' . call called the Samaritans Shamerim
-Although Knievel broke his arms , he was more distraught over a permanent injury his accident caused to the cameraman . broke broke Knievel his arms
-Although Knievel broke his arms , he was more distraught over a permanent injury his accident caused to the cameraman . caused caused his accident a permanent injury
-When Naguib began showing signs of independence from Nasser by distancing himself from the RCC 's land reform decrees and drawing closer to Egypt 's established political forces , namely the Wafd and the Brotherhood , Nasser resolved to depose him . began began Naguib showing signs of independence from Nasser
-When Naguib began showing signs of independence from Nasser by distancing himself from the RCC 's land reform decrees and drawing closer to Egypt 's established political forces , namely the Wafd and the Brotherhood , Nasser resolved to depose him . showing showing Naguib signs of independence from Nasser by distancing himself from the RCC 's land reform decrees and drawing closer to Egypt 's established political forces
-When Naguib began showing signs of independence from Nasser by distancing himself from the RCC 's land reform decrees and drawing closer to Egypt 's established political forces , namely the Wafd and the Brotherhood , Nasser resolved to depose him . drawing drawing Naguib closer to Egypt 's established political forces
-When Naguib began showing signs of independence from Nasser by distancing himself from the RCC 's land reform decrees and drawing closer to Egypt 's established political forces , namely the Wafd and the Brotherhood , Nasser resolved to depose him . resolved resolved Nasser to depose him
-When Naguib began showing signs of independence from Nasser by distancing himself from the RCC 's land reform decrees and drawing closer to Egypt 's established political forces , namely the Wafd and the Brotherhood , Nasser resolved to depose him . depose would depose Nasser Naguib
-The fuselage had an oval cross-section and housed a water-cooled inverted-V V-12 engine . had had The fuselage an oval cross-section
-The fuselage had an oval cross-section and housed a water-cooled inverted-V V-12 engine . housed housed The fuselage a water-cooled inverted-V V-12 engine
-Robert Charles `` Jack '' Russell , MBE , is a retired English international cricketer , now known for his abilities as an artist , as a cricket wicketkeeping coach , and a football goalkeeping coach . known known for Robert Charles `` Jack '' Russell his abilities as an artist , as a cricket wicketkeeping coach , and a football goalkeeping coach
-It has long hind legs and a long , slender , scaly tail that it uses to communicate by making drumming noises . communicate communicate a long , slender , scaly tai by making drumming noises
-It has long hind legs and a long , slender , scaly tail that it uses to communicate by making drumming noises . communicate communicate long hind legs by making drumming noises
-It has long hind legs and a long , slender , scaly tail that it uses to communicate by making drumming noises . making making a long , slender , scaly tail drumming noises to communicate
-It has long hind legs and a long , slender , scaly tail that it uses to communicate by making drumming noises . making making long hind legs drumming noises to communicate
-It has long hind legs and a long , slender , scaly tail that it uses to communicate by making drumming noises . drumming drumming a long , slender , scaly tail
-In 1990 Kelsang Gyatso became also outspoken against the Geshe Studies Programme , and `` made the pursuit of his new programmes compulsory . '' became became Kelsang Gyatso outspoken against the Geshe Studies Programme , and `` made the pursuit of his new programmes compulsory . '' In 1990 against the Geshe Studies Programme , and `` made the pursuit of his new programmes compulsory . ''
-In 1990 Kelsang Gyatso became also outspoken against the Geshe Studies Programme , and `` made the pursuit of his new programmes compulsory . '' made made Kelsang Gyatso the pursuit of his new programmes compulsory In 1990
-On May 13 , 2010 , Yost was named manager of the Kansas City Royals , replacing Trey Hillman . named named Yost manager of the Kansas City Royals , replacing Trey Hillman . On May 13 , 2010
-On May 13 , 2010 , Yost was named manager of the Kansas City Royals , replacing Trey Hillman . replacing replaced Trey Hillman Yost On May 13 , 2010
-An animal that cares for its young but shows no other sociality traits is said to be `` subsocial '' . cares cares An animal for its young but shows no other sociality traits is said to be `` subsocial '' .
-An animal that cares for its young but shows no other sociality traits is said to be `` subsocial '' . shows shows An animal no other sociality traits is said to be `` subsocial '' .
-An animal that cares for its young but shows no other sociality traits is said to be `` subsocial '' . said said to An animal be `` subsocial ''
-Modernity has been blended without sacrificing on the traditional Buddhist ethos . sacrificing was n't sacrificed the traditional Buddhist ethos
-It was originally aimed at mature entrants to the teaching profession , who could not afford to give up work and undertake a traditional method of teacher training such as the PGCE . afford could n't afford to mature entrants give up work and undertake a traditional method of teacher training such as the PGCE .
-It was originally aimed at mature entrants to the teaching profession , who could not afford to give up work and undertake a traditional method of teacher training such as the PGCE . give could n't give up mature entrants work and undertake a traditional method of teacher training such as the PGCE .
-It was originally aimed at mature entrants to the teaching profession , who could not afford to give up work and undertake a traditional method of teacher training such as the PGCE . undertake could undertake mature entrants a traditional method of teacher training such as the PGCE .
-He left only a small contingent to guard the defile , and took his entire army to destroy the plain that lay ahead of Alexander 's army . guard guard only a small contingent the defile
-He left only a small contingent to guard the defile , and took his entire army to destroy the plain that lay ahead of Alexander 's army . destroy would destroy his entire army the plain that lay ahead of Alexander 's army
-He left only a small contingent to guard the defile , and took his entire army to destroy the plain that lay ahead of Alexander 's army . lay lay ahead the plain ahead of Alexander 's army
-These were often related to European conflict , as the Stuart Pretenders were aided and encouraged by Britain 's continental enemies for their own ends . aided aided by the Stuart Pretenders Britain 's continental enemies for their own ends
-These were often related to European conflict , as the Stuart Pretenders were aided and encouraged by Britain 's continental enemies for their own ends . encouraged encouraged by the Stuart Pretenders Britain 's continental enemies for their own ends
-Proliferative nodules are usually biopsied and are regularly but not systematically found to be benign . biopsied biopsied Proliferative nodules
-Proliferative nodules are usually biopsied and are regularly but not systematically found to be benign . found found to be benign
-Other signs of lens subluxation include mild conjunctival redness , vitreous humour degeneration , prolapse of the vitreous into the anterior chamber , and an increase or decrease of anterior chamber depth . include include Other signs of lens subluxation mild conjunctival redness , vitreous humour degeneration , prolapse of the vitreous into the anterior chamber , and an increase or decrease of anterior chamber depth
-According to the United States Census Bureau , the town has a total area of , all of it land . according accorded to the town has a total area of , all of it land the United States Census Bureau
-According to the United States Census Bureau , the town has a total area of , all of it land . has has the town a total area of , all of it land
-At no cost to the parents , these services are provided in compliance with state and federal law ; and are reasonably calculated to yield meaningful educational benefit and student progress . provided provided these services in compliance with state and federal law
-At no cost to the parents , these services are provided in compliance with state and federal law ; and are reasonably calculated to yield meaningful educational benefit and student progress . provided provided these services At no cost to the parents
-At no cost to the parents , these services are provided in compliance with state and federal law ; and are reasonably calculated to yield meaningful educational benefit and student progress . calculated calculated these services reasonably to yield meaningful educational benefit and student progress
-At no cost to the parents , these services are provided in compliance with state and federal law ; and are reasonably calculated to yield meaningful educational benefit and student progress . yield yield these services meaningful educational benefit and student progress
-The SAS killed a total of 14 Provisional Irish Republican Army and Irish National Liberation Army members at these locations . killed killed a total of 14 Provisional Irish Republican Army and Irish National Liberation Army members at these locations . at these locations . The SAS
-However , when the antigenicities of the seed strains and wild viruses do not match , vaccines fail to protect the vaccinees . match do n't match the antigenicities of the seed strains and wild viruses
-However , when the antigenicities of the seed strains and wild viruses do not match , vaccines fail to protect the vaccinees . fail fail vaccines protect the vaccinees when the antigenicities of the seed strains and wild viruses do not match
-However , when the antigenicities of the seed strains and wild viruses do not match , vaccines fail to protect the vaccinees . protect should protect vaccines the vaccinees when the antigenicities of the seed strains and wild viruses do not match
-Luke Robert Ravenstahl is an American politician who served as the 59th Mayor of Pittsburgh from 2006 until 2014 . served served Luke Robert Ravenstahl as the 59th Mayor of Pittsburgh from 2006 until 2014
-Luke Robert Ravenstahl is an American politician who served as the 59th Mayor of Pittsburgh from 2006 until 2014 . served served an American politician as the 59th Mayor of Pittsburgh from 2006 until 2014
-The series of three constitutional amendments in 1933 severely curtailed the role of the Governor-General of the Irish Free State . curtailed curtailed The series of three constitutional amendments in 1933 the role of the Governor-General of the Irish Free State . severely in 1933
-Initially his chances of surviving were thought to be no better than 50-50 . surviving surviving Initially
-Initially his chances of surviving were thought to be no better than 50-50 . thought thought to his chances of surviving be no better than 50-50 Initially
-Many overseas Chinese whose ancestors came from the Quanzhou area , especially those in Southeast Asia , often speak mainly Hokkien at home . came came ancestors the Quanzhou area , especially those in Southeast Asia , often speak mainly Hokkien at home
-Many overseas Chinese whose ancestors came from the Quanzhou area , especially those in Southeast Asia , often speak mainly Hokkien at home . speak speak Many overseas Chinese mainly Hokkien at home . at home
-Hoechst 33342 and 33258 are quenched by Bromodeoxyuridine , which is commonly used to detect dividing cells . quenched quenched by Hoechst 33342 and 33258 Bromodeoxyuridine , which is commonly used to detect dividing cells
-Hoechst 33342 and 33258 are quenched by Bromodeoxyuridine , which is commonly used to detect dividing cells . used used to Bromodeoxyuridine detect dividing cells
-Hoechst 33342 and 33258 are quenched by Bromodeoxyuridine , which is commonly used to detect dividing cells . detect detect Bromodeoxyuridine dividing cells
-Hoechst 33342 and 33258 are quenched by Bromodeoxyuridine , which is commonly used to detect dividing cells . dividing dividing cells
-The first library in Huntington Beach opened in 1909 and has since evolved to a five location library system : Central , Main Street , Oak View , Helen Murphy , and Banning . opened opened The first library in Huntington Beach in 1909 in Huntington Beach
-The first library in Huntington Beach opened in 1909 and has since evolved to a five location library system : Central , Main Street , Oak View , Helen Murphy , and Banning . evolved evolved The first library in Huntington Beach to a five location library system : Central , Main Street , Oak View , Helen Murphy , and Banning since
-Swinburne moves in his writing program from the philosophical to the theological , building his case rigorously . moves moves Swinburne from the philosophical to the theological
-Swinburne moves in his writing program from the philosophical to the theological , building his case rigorously . building building Swinburne his case rigorously
-To the Medieval school of Jewish Philosophy , that framed Judaism in light of Greek thought and human intellect , God the Infinite has no needs . framed framed that Judaism in light of Greek thought and human intellect to To the Medieval school of Jewish Philosophy
-To the Medieval school of Jewish Philosophy , that framed Judaism in light of Greek thought and human intellect , God the Infinite has no needs . has has God the Infinite no needs
-As is true for all sensors , absolute accuracy of a measurement requires a functionality for calibration . requires requires absolute accuracy of a measurement a functionality for calibration
-There were 6,524 households out of which 35.3 % had children under the age of 18 living with them , 31.7 % were married couples living together , 31.5 % had a female householder with no husband present , and 30.6 % were non-families . had had households children under the age of 18
-There were 6,524 households out of which 35.3 % had children under the age of 18 living with them , 31.7 % were married couples living together , 31.5 % had a female householder with no husband present , and 30.6 % were non-families . had had 35.3 % children under the age of 18
-There were 6,524 households out of which 35.3 % had children under the age of 18 living with them , 31.7 % were married couples living together , 31.5 % had a female householder with no husband present , and 30.6 % were non-families . married married couples 31.7 %
-There were 6,524 households out of which 35.3 % had children under the age of 18 living with them , 31.7 % were married couples living together , 31.5 % had a female householder with no husband present , and 30.6 % were non-families . living living married couples together 31.7 %
-There were 6,524 households out of which 35.3 % had children under the age of 18 living with them , 31.7 % were married couples living together , 31.5 % had a female householder with no husband present , and 30.6 % were non-families . had had households a female householder with no husband
-There were 6,524 households out of which 35.3 % had children under the age of 18 living with them , 31.7 % were married couples living together , 31.5 % had a female householder with no husband present , and 30.6 % were non-families . had had 31.5 % a female householder with no husband
-Next morning , the race left the city on the way to the Pyrenees and stopped in the suburb of Gradignan , in the university area of La House . left left the race Next morning the city
-Next morning , the race left the city on the way to the Pyrenees and stopped in the suburb of Gradignan , in the university area of La House . stopped stopped the race Next morning in the suburb of Gradignan
-Next morning , the race left the city on the way to the Pyrenees and stopped in the suburb of Gradignan , in the university area of La House . stopped stopped the race Next morning in the university area of La House
-The Charles City equipment was transferred to Mason City to replace equipment burned in the November 24 , 1967 shop fire . transferred transferred The Charles City equipment to Mason City to replace equipment burned in the November 24 , 1967 shop fire . to replace equipment burned in the November 24 , 1967 shop fire .
-The Charles City equipment was transferred to Mason City to replace equipment burned in the November 24 , 1967 shop fire . replace would replace The Charles City equipment equipment burned in the November 24 , 1967 shop fire . Mason City
-The Charles City equipment was transferred to Mason City to replace equipment burned in the November 24 , 1967 shop fire . burned burned equipment November 24 , 1967 in the November 24 , 1967 shop fire .
-During the off-season the ACT Rugby Union was renamed the ACT and Southern NSW Rugby Union , and the name of the team was changed to Brumbies Rugby . renamed renamed ACT Rugby Union to ACT and Southern NSW Rugby Union During the off-season
-During the off-season the ACT Rugby Union was renamed the ACT and Southern NSW Rugby Union , and the name of the team was changed to Brumbies Rugby . changed changed to the name of the team Brumbies Rugby During the off-season the ACT Rugby Union was renamed the ACT and Southern NSW Rugby Union
-The Summer Programs Office runs these programs , and many Wardlaw-Hartridge Students attend camp or classes over the summer . runs runs The Summer Programs Office these programs
-The Summer Programs Office runs these programs , and many Wardlaw-Hartridge Students attend camp or classes over the summer . attend attend many Wardlaw-Hartridge Students camp or classes over the summer . over the summer
-Langford kept Walcott at a distance with his longer reach and used his footwork to evade all of Walcott 's attacks . kept kept Langford Walcott at a distance with his longer reach
-Langford kept Walcott at a distance with his longer reach and used his footwork to evade all of Walcott 's attacks . used used Langford his footwork to evade all of Walcott 's attacks to Walcott
-Langford kept Walcott at a distance with his longer reach and used his footwork to evade all of Walcott 's attacks . evade evade Langford Walcott 's attacks used his footwork all
-The gauge sender is usually a magnetically coupled arrangement , with a float arm inside the tank rotating a magnet , which rotates an external gauge . coupled coupled The gauge sender magnetically
-The gauge sender is usually a magnetically coupled arrangement , with a float arm inside the tank rotating a magnet , which rotates an external gauge . coupled coupled arrangement magnetically
-The gauge sender is usually a magnetically coupled arrangement , with a float arm inside the tank rotating a magnet , which rotates an external gauge . rotating rotating a float arm a magnet inside the tank
-The gauge sender is usually a magnetically coupled arrangement , with a float arm inside the tank rotating a magnet , which rotates an external gauge . rotates rotates a float arm inside the tank rotating a magnet an external gauge
-In particular , Cyprinidae of southwestern North America have been severely affected ; a considerable number went entirely extinct after settlement by Europeans . affected been affected Cyprinidae southwestern North America severely
-In particular , Cyprinidae of southwestern North America have been severely affected ; a considerable number went entirely extinct after settlement by Europeans . affected been affected Cyprinidae southwestern North America a considerable number went entirely extinct
-In particular , Cyprinidae of southwestern North America have been severely affected ; a considerable number went entirely extinct after settlement by Europeans . went went Cyprinidae entirely extinct after settlement by Europeans southwestern North America
-In athletics , Boston College left the Big East Conference and joined the Atlantic Coast Conference on July 1 , 2005 . left left Boston College the Big East Conference for the Atlantic Coast Conference
-In athletics , Boston College left the Big East Conference and joined the Atlantic Coast Conference on July 1 , 2005 . joined joined Boston College the Atlantic Coast Conference on July 1 , 2005
-The Rev. William Alfred Quayle was honored by his alma mater , Baker University , with the degrees Litt.D . honored honored Rev. William Alfred Quayle his alma mater , Baker University with the degrees Litt.D
-Good 1H NMR spectra can be acquired with 16 repeats , which takes only minutes . acquired can be acquired Good 1H NMR spectra 16 repeats
-Good 1H NMR spectra can be acquired with 16 repeats , which takes only minutes . takes take only minutes
-This had considerable implications for the Welsh language as it was the main language of the nonconformist churches in Wales . had had This considerable implications for the Welsh language
-The site consists of three subterranean Grotto follies , constructed in the 18th century , split between two areas , one on the western side of the lake , at and one on the eastern side at . consists consists The site of three subterranean Grotto follies
-The site consists of three subterranean Grotto follies , constructed in the 18th century , split between two areas , one on the western side of the lake , at and one on the eastern side at . constructed constructed three subterranean Grotto follies in the 18th century
-The site consists of three subterranean Grotto follies , constructed in the 18th century , split between two areas , one on the western side of the lake , at and one on the eastern side at . split split three subterranean Grotto follies between two areas
-Hilf al-Fudul was a 7th-century alliance created by various Meccans , including the Islamic prophet Muhammad , to establish fair commercial dealing . created created Hilf al-Fudul by various Meccans , including the Islamic prophet Muhammad , to establish fair commercial dealing . to establish fair commercial dealing .
-Hilf al-Fudul was a 7th-century alliance created by various Meccans , including the Islamic prophet Muhammad , to establish fair commercial dealing . including including various Meccans the Islamic prophet Muhammad
-Hilf al-Fudul was a 7th-century alliance created by various Meccans , including the Islamic prophet Muhammad , to establish fair commercial dealing . establish would establish Hilf al-Fudul fair commercial dealing
-Because Yesler Way marks the boundary between two different plats , the street grid north of Yesler does not line up with the neighborhood 's other streets , so the northern `` border '' of the district zigzags along numerous streets . marks marks Yesler Way the boundary between two different plats
-Because Yesler Way marks the boundary between two different plats , the street grid north of Yesler does not line up with the neighborhood 's other streets , so the northern `` border '' of the district zigzags along numerous streets . line does n't line up the street grid north of Yesler the neighborhood 's other streets
-Because Yesler Way marks the boundary between two different plats , the street grid north of Yesler does not line up with the neighborhood 's other streets , so the northern `` border '' of the district zigzags along numerous streets . zigzags zigzags the northern `` border '' of the district along numerous streets
-Assisting in the recording process were Fernando Cabello and two friends of the group , Eva Dalda and Lydia Iovanne . assisting assisting Fernando Cabello in the recording process
-Assisting in the recording process were Fernando Cabello and two friends of the group , Eva Dalda and Lydia Iovanne . assisting assisting two friends of the group in the recording process
-Assisting in the recording process were Fernando Cabello and two friends of the group , Eva Dalda and Lydia Iovanne . assisting assisting Eva Dalda in the recording process
-Additionally , the French Community of Belgium has controversially begun referring to itself exclusively as the ` Wallonia-Brussels Federation ' to emphasize the links between the French Community , Wallonia and Brussels . begun begun the French Community of Belgium referring to itself exclusively as the ` Wallonia-Brussels Federation ' to emphasize the links between the French Community , Wallonia and Brussels
-Additionally , the French Community of Belgium has controversially begun referring to itself exclusively as the ` Wallonia-Brussels Federation ' to emphasize the links between the French Community , Wallonia and Brussels . emphasize emphasizing the French Community of Belgium the links between the French Community , Wallonia and Brussels .
-Shea was born on September 5 , 1900 in San Francisco , California . born born Shea in San Francisco , California on September 5 , 1900
-However , during his rehearsal , Knievel lost control of the motorcycle and crashed into a cameraman . lost lost Knievel control of the motorcycle during his rehearsal
-However , during his rehearsal , Knievel lost control of the motorcycle and crashed into a cameraman . crashed crashed into a cameraman Knievel during his rehearsal Knievel lost control of the motorcycle
-To assist the pope in the many calls for his help and charity , Pascalina organized and led the `` Magazzino '' , a private papal charity office which employed up to 40 helpers and continued until 1959 . assist assist Pascalina with the many calls for his help and charity the pope organized and led the `` Magazzino ''
-To assist the pope in the many calls for his help and charity , Pascalina organized and led the `` Magazzino '' , a private papal charity office which employed up to 40 helpers and continued until 1959 . organized organized Pascalina the `` Magazzino ''
-To assist the pope in the many calls for his help and charity , Pascalina organized and led the `` Magazzino '' , a private papal charity office which employed up to 40 helpers and continued until 1959 . organized organized Pascalina a private papal charity office
-To assist the pope in the many calls for his help and charity , Pascalina organized and led the `` Magazzino '' , a private papal charity office which employed up to 40 helpers and continued until 1959 . led led Pascalina the `` Magazzino ''
-To assist the pope in the many calls for his help and charity , Pascalina organized and led the `` Magazzino '' , a private papal charity office which employed up to 40 helpers and continued until 1959 . led led Pascalina a private papal charity office
-To assist the pope in the many calls for his help and charity , Pascalina organized and led the `` Magazzino '' , a private papal charity office which employed up to 40 helpers and continued until 1959 . employed employed the `` Magazzino '' up to 40 helpers
-To assist the pope in the many calls for his help and charity , Pascalina organized and led the `` Magazzino '' , a private papal charity office which employed up to 40 helpers and continued until 1959 . employed employed a private papal charity office up to 40 helpers
-To assist the pope in the many calls for his help and charity , Pascalina organized and led the `` Magazzino '' , a private papal charity office which employed up to 40 helpers and continued until 1959 . continued continued the `` Magazzino '' until 1959
-To assist the pope in the many calls for his help and charity , Pascalina organized and led the `` Magazzino '' , a private papal charity office which employed up to 40 helpers and continued until 1959 . continued continued a private papal charity office until 1959
-he was one of only a few concert organists worldwide who supported themselves exclusively by giving recitals , concerts and master classes , without any supplement from teaching or church position . supported supported concert organists exclusively by giving recitals , concerts and master classes , without any supplement from teaching or church position . by giving recitals , concerts and master classes , without any supplement from teaching or church position .
-JAL introduced jet service on the Fukuoka-Tokyo route in 1961 . introduced introduced JAL jet service In 1961 on the Fukuoka-Tokyo route
-A manifold is `` prime '' if it can not be presented as a connected sum of more than one manifold , none of which is the sphere of the same dimension . presented may not be presented A manifold prime as a connected sum of more than one manifold , none of which is the sphere of the same dimension .
-In more recent years , this policy has apparently relaxed somewhat . relaxed relaxed this policy In more recent years
-Two seats were won by the Labor-Progressive Party on its own with the re-election of A.A. MacLeod and J.B. Salsberg . won won the Labor-Progressive Party Two seats with the re-election of A.A. MacLeod and J.B. Salsberg
-Many are surgically removed for aesthetics and relief of psychosocial burden , but larger ones are also excised for prevention of cancer , although the benefit is impossible to assess for any individual patient . removed removed Many for aesthetics and relief of psychosocial burden , but larger ones are also excised for prevention of cancer , although the benefit is impossible to assess for any individual patient . surgically
-Many are surgically removed for aesthetics and relief of psychosocial burden , but larger ones are also excised for prevention of cancer , although the benefit is impossible to assess for any individual patient . excised excised larger ones for prevention of cancer , although the benefit is impossible to assess for any individual patient .
-Many are surgically removed for aesthetics and relief of psychosocial burden , but larger ones are also excised for prevention of cancer , although the benefit is impossible to assess for any individual patient . assess ca n't be assessed the benefit for any individual patient
-According to the indictment , Gonzalez is accused of defrauding the West Bronx Neighborhood Association Inc. , a not-for-profit corporation , by using funds donated to the organization in order to pay for over $ 37,000 in personal expenses . according according to Gonzalez is accused of defrauding the West Bronx Neighborhood Association Inc. , a not-for-profit corporation , by using funds donated to the organization in order to pay for over $ 37,000 in personal expenses the indictment
-According to the indictment , Gonzalez is accused of defrauding the West Bronx Neighborhood Association Inc. , a not-for-profit corporation , by using funds donated to the organization in order to pay for over $ 37,000 in personal expenses . accused accused of Gonzalez defrauding the West Bronx Neighborhood Association Inc. , a not-for-profit corporation , by using funds donated to the organization in order to pay for over $ 37,000 in personal expenses
-According to the indictment , Gonzalez is accused of defrauding the West Bronx Neighborhood Association Inc. , a not-for-profit corporation , by using funds donated to the organization in order to pay for over $ 37,000 in personal expenses . defrauding might have defrauded Gonzalez the West Bronx Neighborhood Association Inc. in order to pay for over $ 37,000 in personal expenses by using funds donated to the organization
-According to the indictment , Gonzalez is accused of defrauding the West Bronx Neighborhood Association Inc. , a not-for-profit corporation , by using funds donated to the organization in order to pay for over $ 37,000 in personal expenses . defrauding might have defrauded Gonzalez a not-for-profit corporation in order to pay for over $ 37,000 in personal expenses by using funds donated to the organization
-According to the indictment , Gonzalez is accused of defrauding the West Bronx Neighborhood Association Inc. , a not-for-profit corporation , by using funds donated to the organization in order to pay for over $ 37,000 in personal expenses . using might have used Gonzalez funds donated to the organization in order to pay for over $ 37,000 in personal expenses
-According to the indictment , Gonzalez is accused of defrauding the West Bronx Neighborhood Association Inc. , a not-for-profit corporation , by using funds donated to the organization in order to pay for over $ 37,000 in personal expenses . donated donated funds to the organization
-According to the indictment , Gonzalez is accused of defrauding the West Bronx Neighborhood Association Inc. , a not-for-profit corporation , by using funds donated to the organization in order to pay for over $ 37,000 in personal expenses . donated donated funds to the West Bronx Neighborhood Association Inc.
-According to the indictment , Gonzalez is accused of defrauding the West Bronx Neighborhood Association Inc. , a not-for-profit corporation , by using funds donated to the organization in order to pay for over $ 37,000 in personal expenses . donated donated funds to a not-for-profit corporation
-According to the indictment , Gonzalez is accused of defrauding the West Bronx Neighborhood Association Inc. , a not-for-profit corporation , by using funds donated to the organization in order to pay for over $ 37,000 in personal expenses . pay might have paid Gonzalez for personal expenses with funds donated to the organization over $ 37,000
-Its cultivation even declined in favour of the Asian species , which was introduced to East Africa early in the common era and spread westward . declined declined Its cultivation in favour of the Asian species
-Its cultivation even declined in favour of the Asian species , which was introduced to East Africa early in the common era and spread westward . introduced introduced the Asian species early in the common era to East Africa
-The dialects they speak are similar but have different intonations . have have The dialects different intonations
-Not everyone completely trusted Vakama 's vision - Matau was particularly frustrated at following what he considered the delusions of a `` fire-spitter '' - but with nothing else to go on they decided to track the Matoran down . trusted does n't trusted Not everyone Vakama 's vision
-Not everyone completely trusted Vakama 's vision - Matau was particularly frustrated at following what he considered the delusions of a `` fire-spitter '' - but with nothing else to go on they decided to track the Matoran down . frustrated frustrated at Matau ollowing what he considered the delusions of a `` fire-spitter ''
-Not everyone completely trusted Vakama 's vision - Matau was particularly frustrated at following what he considered the delusions of a `` fire-spitter '' - but with nothing else to go on they decided to track the Matoran down . following following the delusions of a `` fire-spitter ''
-Not everyone completely trusted Vakama 's vision - Matau was particularly frustrated at following what he considered the delusions of a `` fire-spitter '' - but with nothing else to go on they decided to track the Matoran down . considered considered Matau the delusions of a `` fire-spitter ''
-Not everyone completely trusted Vakama 's vision - Matau was particularly frustrated at following what he considered the delusions of a `` fire-spitter '' - but with nothing else to go on they decided to track the Matoran down . considered considered Matau Vakama 's vision
-Not everyone completely trusted Vakama 's vision - Matau was particularly frustrated at following what he considered the delusions of a `` fire-spitter '' - but with nothing else to go on they decided to track the Matoran down . go goes on nothing else
-In `` The Andromeda Strain '' , Michael Crichton 's first novel published under his real name , only two people exposed to a pathogenic extraterrestrial microbe survive . published published Michael Crichton 's first novel under his real name , only two people exposed to a pathogenic extraterrestrial microbe survive .
-In `` The Andromeda Strain '' , Michael Crichton 's first novel published under his real name , only two people exposed to a pathogenic extraterrestrial microbe survive . published published The Andromeda Strain under his real name , only two people exposed to a pathogenic extraterrestrial microbe survive .
-In `` The Andromeda Strain '' , Michael Crichton 's first novel published under his real name , only two people exposed to a pathogenic extraterrestrial microbe survive . exposed exposed to only two people a pathogenic extraterrestrial microbe survive In `` The Andromeda Strain '' , Michael Crichton 's first novel published under his real name
-In `` The Andromeda Strain '' , Michael Crichton 's first novel published under his real name , only two people exposed to a pathogenic extraterrestrial microbe survive . survive survive only two people exposed to a pathogenic extraterrestrial microbe In `` The Andromeda Strain '' , Michael Crichton 's first novel published under his real name
-With versions in 1/48 , 1/72 , 1/96 , and 1/144 scale , Big Gun Model Warship combat clubs have rules that make provisions for cannon caliber and armor thickness to be scaled according to that which existed on the prototype vessel . have have Big Gun Model Warship combat clubs rules
-With versions in 1/48 , 1/72 , 1/96 , and 1/144 scale , Big Gun Model Warship combat clubs have rules that make provisions for cannon caliber and armor thickness to be scaled according to that which existed on the prototype vessel . make make rules provisions
-With versions in 1/48 , 1/72 , 1/96 , and 1/144 scale , Big Gun Model Warship combat clubs have rules that make provisions for cannon caliber and armor thickness to be scaled according to that which existed on the prototype vessel . scaled must be scaled to cannon caliber that which existed on the prototype vessel
-With versions in 1/48 , 1/72 , 1/96 , and 1/144 scale , Big Gun Model Warship combat clubs have rules that make provisions for cannon caliber and armor thickness to be scaled according to that which existed on the prototype vessel . scaled must be scaled to armor thickness that which existed on the prototype vessel
-With versions in 1/48 , 1/72 , 1/96 , and 1/144 scale , Big Gun Model Warship combat clubs have rules that make provisions for cannon caliber and armor thickness to be scaled according to that which existed on the prototype vessel . according accorded to that which existed on the prototype vessel
-With versions in 1/48 , 1/72 , 1/96 , and 1/144 scale , Big Gun Model Warship combat clubs have rules that make provisions for cannon caliber and armor thickness to be scaled according to that which existed on the prototype vessel . existed existed that on the prototype vessel
-With versions in 1/48 , 1/72 , 1/96 , and 1/144 scale , Big Gun Model Warship combat clubs have rules that make provisions for cannon caliber and armor thickness to be scaled according to that which existed on the prototype vessel . existed existed cannon caliber on the prototype vessel
-With versions in 1/48 , 1/72 , 1/96 , and 1/144 scale , Big Gun Model Warship combat clubs have rules that make provisions for cannon caliber and armor thickness to be scaled according to that which existed on the prototype vessel . existed existed armor thickness on the prototype vessel
-Originally , Hank McCoy retains the basic features of a normal human alongside a generally simian physiology equivalent to that of a Great Ape . retains retains Hank McCoy the basic features of a normal human alongside a generally simian physiology equivalent to that of a Great Ape
-Apartment buildings , shops , medical clinics , cinemas etc. were built in close proximity to the MAZ plant , providing plant workers with local necessities . built built Apartment buildings , shops , medical clinics , cinemas etc. in close proximity to the MAZ plant
-Apartment buildings , shops , medical clinics , cinemas etc. were built in close proximity to the MAZ plant , providing plant workers with local necessities . providing providing Apartment buildings , shops , medical clinics , cinemas etc. local necessities plant workers
-As a group , the team was enshrined into the Basketball Hall of Fame in 1959 . enshrined enshrined the team into the Basketball Hall of Fame in 1959 As a group
-In the winter of 1976 , Knievel was scheduled for a major jump in Chicago , Illinois . scheduled scheduled for Knievel a major jump in Chicago , Illinois In the winter of 1976
-In the 1901 election , after which the Oppositionists under George Leake were able to form a minority government , Frank Wilson , formerly the member for Canning , won the seat . form could form the Oppositionists a minority government after
-In the 1901 election , after which the Oppositionists under George Leake were able to form a minority government , Frank Wilson , formerly the member for Canning , won the seat . won won Frank Wilson the seat 1901
-Under the Comanche program , each company built different parts of the aircraft . built built each company different parts of the aircraft Under the Comanche program
-In 2004 the Brumbies finished at the top of the Super 12 table , six points clear of the next best team . finished finished Brumbies at the top of the Super 12 table In 2004 six points clear of the next best team six points
-The founder had pledged himself to honour the Blessed Virgin in a special manner . pledged had pledged The founder honour the Blessed Virgin in a special manner . himself to honour the Blessed Virgin in a special manner .
-The founder had pledged himself to honour the Blessed Virgin in a special manner . honour would honour the Blessed Virgin in a special manner . The founder in a special manner .
-Plants have been planted marking parts of the foundations of the castle , so the positions of some of the buildings can still be inferred . planted have been planted plants
-Plants have been planted marking parts of the foundations of the castle , so the positions of some of the buildings can still be inferred . marking marking Plants parts of the foundations of the castle , so the positions of some of the buildings can still be inferred .
-Plants have been planted marking parts of the foundations of the castle , so the positions of some of the buildings can still be inferred . inferred can be inferred the positions of some of the buildings Plants have been planted marking parts of the foundations of the castle
-The rapids at the head of the South Fork were removed in 1908 . removed removed The rapids in 1908 at the head of the South Fork
-In a news post , Holkins stated that he reserved the right to bring Carl back any time Krahulik goes to France . stated stated Holkins that he reserved the right to bring Carl back any time Krahulik goes to France In a news post
-In a news post , Holkins stated that he reserved the right to bring Carl back any time Krahulik goes to France . reserved reserved Holkins the right to bring Carl back any time Krahulik goes to France
-In a news post , Holkins stated that he reserved the right to bring Carl back any time Krahulik goes to France . bring can bring Holkins Carl any time Krahulik goes to France back
-In a news post , Holkins stated that he reserved the right to bring Carl back any time Krahulik goes to France . goes might go Krahulik to France
-This can be further generalized by defining a Q-valued Euler characteristic for certain finite categories , a notion compatible with the Euler characteristics of graphs , orbifolds and posets mentioned above . generalized can be generalized This further
-This can be further generalized by defining a Q-valued Euler characteristic for certain finite categories , a notion compatible with the Euler characteristics of graphs , orbifolds and posets mentioned above . generalized can be generalized This by defining a Q-valued Euler characteristic for certain finite categories
-This can be further generalized by defining a Q-valued Euler characteristic for certain finite categories , a notion compatible with the Euler characteristics of graphs , orbifolds and posets mentioned above . defining can be defined a Q-valued Euler characteristic for certain finite categories
-This can be further generalized by defining a Q-valued Euler characteristic for certain finite categories , a notion compatible with the Euler characteristics of graphs , orbifolds and posets mentioned above . mentioned mentioned the Euler characteristics of graphs , orbifolds and posets above
-Unlike Uncle Sam later , he is not a figure of authority but rather a yeoman who prefers his small beer and domestic peace , possessed of neither patriarchal power nor heroic defiance . prefers prefers a yeoman his small beer
-Unlike Uncle Sam later , he is not a figure of authority but rather a yeoman who prefers his small beer and domestic peace , possessed of neither patriarchal power nor heroic defiance . prefers prefers a yeoman domestic peace
-Unlike Uncle Sam later , he is not a figure of authority but rather a yeoman who prefers his small beer and domestic peace , possessed of neither patriarchal power nor heroic defiance . possessed is n't possessed of a yeoman patriarchal power
-Unlike Uncle Sam later , he is not a figure of authority but rather a yeoman who prefers his small beer and domestic peace , possessed of neither patriarchal power nor heroic defiance . possessed is n't possessed of a yeoman heroic defiance
-Results like these indicate acoustic mimicry complexes , both Batesian and Mullerian , may be widespread in the auditory world . indicate indicate Results like these acoustic mimicry complexes , both Batesian and Mullerian , may be widespread in the auditory world
-Moore briefly dropped Marciano in the second round , but Marciano recovered and knocked Moore down five times , knocking him out in the ninth to retain the belt . dropped dropped Moore Marciano in the second round briefly
-Moore briefly dropped Marciano in the second round , but Marciano recovered and knocked Moore down five times , knocking him out in the ninth to retain the belt . recovered recovered Marciano
-Moore briefly dropped Marciano in the second round , but Marciano recovered and knocked Moore down five times , knocking him out in the ninth to retain the belt . knocked knocked down Moore Marciano five times
-Moore briefly dropped Marciano in the second round , but Marciano recovered and knocked Moore down five times , knocking him out in the ninth to retain the belt . knocking knocked out Moore Marciano in the ninth
-Moore briefly dropped Marciano in the second round , but Marciano recovered and knocked Moore down five times , knocking him out in the ninth to retain the belt . retain retained Marciano the belt
-Certain fractional quantum Hall phases appear to have the right properties for building a topological quantum computer . appear appear Certain fractional quantum Hall phases the right properties for building a topological quantum computer .
-Certain fractional quantum Hall phases appear to have the right properties for building a topological quantum computer . have have Certain fractional quantum Hall phases the right properties for building a topological quantum computer .
-Certain fractional quantum Hall phases appear to have the right properties for building a topological quantum computer . building can building Certain fractional quantum Hall phases topological quantum computer . have the right properties
-Total ` Fresh Food Story ' constructed at the end of the North Mall . constructed constructed Total ` Fresh Food Story ' at the end of the North Mall .
-The third known version is part number 2189014-00-212 , with at least one model being produced in February 1993 . known known version is part number 2189014-00-212
-The third known version is part number 2189014-00-212 , with at least one model being produced in February 1993 . produced being produced at least one model in February 1993
-The field at the Lake Elsinore Diamond is named the Pete Lehr Field . named named The field at the Lake Elsinore Diamond the Pete Lehr Field .
-Applications can use this service to record activity for a production system while implementations of other OSIDs can use the service to record detailed data during development , debugging , or analyzing performance . use can use Applications this service to record activity for a production system while implementations of other OSIDs can use the service to record detailed data during development , debugging , or analyzing performance . record activity for a production system while implementations of other OSIDs can use the service to record detailed data during development , debugging , or analyzing performance .
-Applications can use this service to record activity for a production system while implementations of other OSIDs can use the service to record detailed data during development , debugging , or analyzing performance . use can use implementations of other OSIDs the service to record detailed data during development , debugging , or analyzing performance .
-Applications can use this service to record activity for a production system while implementations of other OSIDs can use the service to record detailed data during development , debugging , or analyzing performance . record can record the service detailed data during development , debugging , or analyzing performance .
-Applications can use this service to record activity for a production system while implementations of other OSIDs can use the service to record detailed data during development , debugging , or analyzing performance . analyzing analyzed performance
-Scarpetta returns to Virginia in `` Trace '' , convincing herself that she was fired from her position , at the request of her replacement , Dr. Joel Marcus . returns returns Scarpetta to Virginia in `` Trace '' , convincing herself that she was fired from her position , at the request of her replacement , Dr. Joel Marcus .
-Scarpetta returns to Virginia in `` Trace '' , convincing herself that she was fired from her position , at the request of her replacement , Dr. Joel Marcus . convincing convincing herself that she was fired from her position , at the request of her replacement , Dr. Joel Marcus
-Scarpetta returns to Virginia in `` Trace '' , convincing herself that she was fired from her position , at the request of her replacement , Dr. Joel Marcus . convincing convincing Scarpetta that she was fired from her position , at the request of her replacement , Dr. Joel Marcus
-Scarpetta returns to Virginia in `` Trace '' , convincing herself that she was fired from her position , at the request of her replacement , Dr. Joel Marcus . fired fired Scarpetta from her position , at the request of her replacement , Dr. Joel Marcus
-Lens subluxation is also seen in dogs and is characterized by a partial displacement of the lens . seen seen dogs Lens subluxation
-Lens subluxation is also seen in dogs and is characterized by a partial displacement of the lens . characterized characterized Lens subluxation by a partial displacement of the lens
-James Arthur Hogue is a US impostor who most famously entered Princeton University by posing as a self-taught orphan . entered entered James Arthur Hogue Princeton University by posing as a self-taught orphan
-James Arthur Hogue is a US impostor who most famously entered Princeton University by posing as a self-taught orphan . entered entered a US impostor Princeton University by posing as a self-taught orphan
-James Arthur Hogue is a US impostor who most famously entered Princeton University by posing as a self-taught orphan . posing posing as James Arthur Hogue a self-taught orphan
-James Arthur Hogue is a US impostor who most famously entered Princeton University by posing as a self-taught orphan . posing posing as a US impostor a self-taught orphan
-In October 2009 it was confirmed that the Byrom Street cutting was a hitching and unhitching point for trains being cable hauled to Edge Hill via the Victoria Tunnel . confirmed confirmed that the Byrom Street cutting was a hitching and unhitching point for trains being cable hauled to Edge Hill via the Victoria Tunnel In October 2009
-In October 2009 it was confirmed that the Byrom Street cutting was a hitching and unhitching point for trains being cable hauled to Edge Hill via the Victoria Tunnel . cutting cutting Byrom Street a hitching and unhitching point for trains being cable hauled to Edge Hill via the Victoria Tunnel .
-In October 2009 it was confirmed that the Byrom Street cutting was a hitching and unhitching point for trains being cable hauled to Edge Hill via the Victoria Tunnel . hitching being hitched trains being cable hauled to Edge Hill via the Victoria Tunnel . Byrom Street cutting
-In October 2009 it was confirmed that the Byrom Street cutting was a hitching and unhitching point for trains being cable hauled to Edge Hill via the Victoria Tunnel . unhitching being unhitched trains being cable hauled to Edge Hill via the Victoria Tunnel . Byrom Street cutting
-In October 2009 it was confirmed that the Byrom Street cutting was a hitching and unhitching point for trains being cable hauled to Edge Hill via the Victoria Tunnel . hauled being hauled trains via Victoria Tunnel . to Edge Hill
-In the early 19th century the Welsh Methodists broke away from the Anglican church and established their own denomination , now the Presbyterian Church of Wales . broke broke the Welsh Methodists from the Anglican church In the early 19th century
-In the early 19th century the Welsh Methodists broke away from the Anglican church and established their own denomination , now the Presbyterian Church of Wales . established established the Welsh Methodists their own denomination In the early 19th century
-In the early 19th century the Welsh Methodists broke away from the Anglican church and established their own denomination , now the Presbyterian Church of Wales . established established the Welsh Methodists the Presbyterian Church of Wales In the early 19th century
-In both cases this specialized function replaces the basic rifleman position in the fireteam . replaces replaces this specialized function the basic rifleman position In both cases
-One candidate is a wreck at the western end of Manitoulin Island in Lake Huron , with another wreck near Escanaba , Michigan , also proposed . proposed proposed another wreck near Escanaba , Michigan
-He also possesses enhanced senses and can track people for great distances over open terrain and his feet are sensitive enough to detect electronic signals through solid walls and floors . detect detect his feet electronic signals through solid walls and floors .
-Because of his talents and training , Beast can outperform any Olympic-level athlete , contorting his body and performing aerial feats gracefully . outperform can outperform any Olympic-level athlete Beast Because of his talents and training
-Because of his talents and training , Beast can outperform any Olympic-level athlete , contorting his body and performing aerial feats gracefully . contorting contorting Beast his body and performing aerial feats gracefully
-Because of his talents and training , Beast can outperform any Olympic-level athlete , contorting his body and performing aerial feats gracefully . performing can performing Beast aerial feats gracefully
-The first five laps would be added to the second part of the race and the overall result would be decided on aggregate . added would be added to The first five laps the second part of the race and the overall result would be decided on aggregate .
-The first five laps would be added to the second part of the race and the overall result would be decided on aggregate . decided would be decided on the overall result aggregate
-Returning home , Ballard delivers her report , which her superiors refuse to believe . returning returned to Ballard home delivers her report
-Returning home , Ballard delivers her report , which her superiors refuse to believe . delivers delivers Ballard her report Returning home home
-Returning home , Ballard delivers her report , which her superiors refuse to believe . refuse refused her superiors to believe
-Returning home , Ballard delivers her report , which her superiors refuse to believe . refuse refused her superiors her report
-Returning home , Ballard delivers her report , which her superiors refuse to believe . believe was n't believe her superiors her report
-Trumbull was often incorrectly credited in print as being the sole special-effects creator for 2001 . credited credited Trumbull as being the sole special-effects creator for 2001 . in print incorrectly
-There were 47,604 households out of which 35.00 % had children under the age of 18 living with them , 56.30 % were married couples living together , 7.50 % had a female householder with no husband present , and 32.50 % were non-families . had had 35.00 % children under the age of 18 living with them
-There were 47,604 households out of which 35.00 % had children under the age of 18 living with them , 56.30 % were married couples living together , 7.50 % had a female householder with no husband present , and 32.50 % were non-families . married married couples 56.30 %
-There were 47,604 households out of which 35.00 % had children under the age of 18 living with them , 56.30 % were married couples living together , 7.50 % had a female householder with no husband present , and 32.50 % were non-families . living living married couples 56.30 %
-There were 47,604 households out of which 35.00 % had children under the age of 18 living with them , 56.30 % were married couples living together , 7.50 % had a female householder with no husband present , and 32.50 % were non-families . had had a female householder with no husband present 7.50 %
-This mutation gives him superhuman strength , speed , reflexes , agility , flexibility , dexterity , coordination , balance , and endurance . gives gives This mutation superhuman strength , speed , reflexes , agility , flexibility , dexterity , coordination , balance , and endurance
-Gameplay is very basic ; the player must shoot constantly at a continual stream of enemies in order to reach the end of each level . shoot must shoot the player a continual stream of enemies Gameplay constantly to reach the end of each level
-Gameplay is very basic ; the player must shoot constantly at a continual stream of enemies in order to reach the end of each level . reach must reach the player the end of each level Gameplay shoot constantly at a continual stream of enemies
-Johns also appeared as an Imperial Officer in the 1980 `` Star Wars sequel '' , `` The Empire Strikes Back '' . appeared appeared Johns in the 1980 `` Star Wars sequel '' , `` The Empire Strikes Back '' 1980 as an Imperial Officer
-Johns also appeared as an Imperial Officer in the 1980 `` Star Wars sequel '' , `` The Empire Strikes Back '' . strikes striking The Empire
-He represented the riding of Nickel Belt in the Sudbury , Ontario area . riding ride in the Sudbury , Ontario area Nickel Belt
-Third TV drama series was broadcast in 2008 - , featuring Mao Inoue as Anmitsu . broadcast broadcast Third TV drama series in 2008
-Third TV drama series was broadcast in 2008 - , featuring Mao Inoue as Anmitsu . featuring featuring as Third TV drama series Mao Inoue in 2008 Anmitsu
-Names like John Berks , Gary Edwards , Frank Sanders , Robin Alexander , Darryl Jooste , George Wayne and David Gresham all started out at LM Radio before moving to other stations such as Swazi Music Radio , Radio 702 , Springbok Radio and other SABC stations , 2JJ and Capital 604 . started started John Berks at LM Radio before moving to other stations
-Names like John Berks , Gary Edwards , Frank Sanders , Robin Alexander , Darryl Jooste , George Wayne and David Gresham all started out at LM Radio before moving to other stations such as Swazi Music Radio , Radio 702 , Springbok Radio and other SABC stations , 2JJ and Capital 604 . started started Gary Edwards at LM Radio before moving to other stations
-Names like John Berks , Gary Edwards , Frank Sanders , Robin Alexander , Darryl Jooste , George Wayne and David Gresham all started out at LM Radio before moving to other stations such as Swazi Music Radio , Radio 702 , Springbok Radio and other SABC stations , 2JJ and Capital 604 . started started Frank Sanders at LM Radio before moving to other stations
-Names like John Berks , Gary Edwards , Frank Sanders , Robin Alexander , Darryl Jooste , George Wayne and David Gresham all started out at LM Radio before moving to other stations such as Swazi Music Radio , Radio 702 , Springbok Radio and other SABC stations , 2JJ and Capital 604 . started started Robin Alexander at LM Radio before moving to other stations
-Names like John Berks , Gary Edwards , Frank Sanders , Robin Alexander , Darryl Jooste , George Wayne and David Gresham all started out at LM Radio before moving to other stations such as Swazi Music Radio , Radio 702 , Springbok Radio and other SABC stations , 2JJ and Capital 604 . moving moving John Berks to other stations
-Names like John Berks , Gary Edwards , Frank Sanders , Robin Alexander , Darryl Jooste , George Wayne and David Gresham all started out at LM Radio before moving to other stations such as Swazi Music Radio , Radio 702 , Springbok Radio and other SABC stations , 2JJ and Capital 604 . moving moving John Berks Swazi Music Radio
-Names like John Berks , Gary Edwards , Frank Sanders , Robin Alexander , Darryl Jooste , George Wayne and David Gresham all started out at LM Radio before moving to other stations such as Swazi Music Radio , Radio 702 , Springbok Radio and other SABC stations , 2JJ and Capital 604 . moving moving John Berks Radio 702
-Names like John Berks , Gary Edwards , Frank Sanders , Robin Alexander , Darryl Jooste , George Wayne and David Gresham all started out at LM Radio before moving to other stations such as Swazi Music Radio , Radio 702 , Springbok Radio and other SABC stations , 2JJ and Capital 604 . moving moving John Berks Springbok Radio
-Names like John Berks , Gary Edwards , Frank Sanders , Robin Alexander , Darryl Jooste , George Wayne and David Gresham all started out at LM Radio before moving to other stations such as Swazi Music Radio , Radio 702 , Springbok Radio and other SABC stations , 2JJ and Capital 604 . moving moving Gary Edwards to other stations
-Names like John Berks , Gary Edwards , Frank Sanders , Robin Alexander , Darryl Jooste , George Wayne and David Gresham all started out at LM Radio before moving to other stations such as Swazi Music Radio , Radio 702 , Springbok Radio and other SABC stations , 2JJ and Capital 604 . moving moving Gary Edwards Swazi Music Radio
-Names like John Berks , Gary Edwards , Frank Sanders , Robin Alexander , Darryl Jooste , George Wayne and David Gresham all started out at LM Radio before moving to other stations such as Swazi Music Radio , Radio 702 , Springbok Radio and other SABC stations , 2JJ and Capital 604 . moving moving Gary Edwards Radio 702
-Names like John Berks , Gary Edwards , Frank Sanders , Robin Alexander , Darryl Jooste , George Wayne and David Gresham all started out at LM Radio before moving to other stations such as Swazi Music Radio , Radio 702 , Springbok Radio and other SABC stations , 2JJ and Capital 604 . moving moving Gary Edwards Springbok Radio
-Names like John Berks , Gary Edwards , Frank Sanders , Robin Alexander , Darryl Jooste , George Wayne and David Gresham all started out at LM Radio before moving to other stations such as Swazi Music Radio , Radio 702 , Springbok Radio and other SABC stations , 2JJ and Capital 604 . moving moving Frank Sanders to other stations
-Names like John Berks , Gary Edwards , Frank Sanders , Robin Alexander , Darryl Jooste , George Wayne and David Gresham all started out at LM Radio before moving to other stations such as Swazi Music Radio , Radio 702 , Springbok Radio and other SABC stations , 2JJ and Capital 604 . moving moving Frank Sanders Swazi Music Radio
-Names like John Berks , Gary Edwards , Frank Sanders , Robin Alexander , Darryl Jooste , George Wayne and David Gresham all started out at LM Radio before moving to other stations such as Swazi Music Radio , Radio 702 , Springbok Radio and other SABC stations , 2JJ and Capital 604 . moving moving Frank Sanders Radio 702
-Names like John Berks , Gary Edwards , Frank Sanders , Robin Alexander , Darryl Jooste , George Wayne and David Gresham all started out at LM Radio before moving to other stations such as Swazi Music Radio , Radio 702 , Springbok Radio and other SABC stations , 2JJ and Capital 604 . moving moving Frank Sanders Springbok Radio
-Names like John Berks , Gary Edwards , Frank Sanders , Robin Alexander , Darryl Jooste , George Wayne and David Gresham all started out at LM Radio before moving to other stations such as Swazi Music Radio , Radio 702 , Springbok Radio and other SABC stations , 2JJ and Capital 604 . moving moving Robin Alexander to other stations
-Names like John Berks , Gary Edwards , Frank Sanders , Robin Alexander , Darryl Jooste , George Wayne and David Gresham all started out at LM Radio before moving to other stations such as Swazi Music Radio , Radio 702 , Springbok Radio and other SABC stations , 2JJ and Capital 604 . moving moving Robin Alexander Swazi Music Radio
-Names like John Berks , Gary Edwards , Frank Sanders , Robin Alexander , Darryl Jooste , George Wayne and David Gresham all started out at LM Radio before moving to other stations such as Swazi Music Radio , Radio 702 , Springbok Radio and other SABC stations , 2JJ and Capital 604 . moving moving Robin Alexander Radio 702
-Names like John Berks , Gary Edwards , Frank Sanders , Robin Alexander , Darryl Jooste , George Wayne and David Gresham all started out at LM Radio before moving to other stations such as Swazi Music Radio , Radio 702 , Springbok Radio and other SABC stations , 2JJ and Capital 604 . moving moving Robin Alexander Springbok Radio
diff --git a/3-NLP_services/src/Multi2OIE/evaluate/Re-OIE2016-Binary.json b/3-NLP_services/src/Multi2OIE/evaluate/Re-OIE2016-Binary.json
deleted file mode 100644
index be22d08..0000000
--- a/3-NLP_services/src/Multi2OIE/evaluate/Re-OIE2016-Binary.json
+++ /dev/null
@@ -1 +0,0 @@
-{"Few people in the advertising business have raised as many hackles as Alvin A. Achenbaum .": [{"arg0": "Few people in the advertising business", "arg0_index": [0, 5], "pred": "have raised", "pred_index": [6, 7], "arg1": "as many hackles", "arg1_index": [8, 10], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Mr. Stoll suspected the intruder was one of those precocious students who has fun breaking into computers .": [{"arg0": "the intruder", "arg0_index": [3, 4], "pred": "was", "pred_index": [5, 5], "arg1": "one of those precocious students who has fun breaking into computers", "arg1_index": [6, 16], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Mr. Stoll", "arg0_index": [0, 1], "pred": "suspected", "pred_index": [2, 2], "arg1": "the intruder was one of those precocious students who has fun breaking into computers", "arg1_index": [3, 16], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "precocious students", "arg0_index": [9, 10], "pred": "has fun breaking into", "pred_index": [12, 15], "arg1": "computers", "arg1_index": [16, 16], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "There were 143 households out of which 30.1 % had children under the age of 18 living with them , 49.7 % were married couples living together , 11.9 % had a female householder with no husband present , and 36.4 % were non-families .": [{"arg0": "30.1 %", "arg0_index": [7, 8], "pred": "had", "pred_index": [9, 9], "arg1": "children under the age of 18 living with them", "arg1_index": [10, 18], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "49.7 %", "arg0_index": [20, 21], "pred": "were", "pred_index": [22, 22], "arg1": "married couples living together", "arg1_index": [23, 26], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "11.9 %", "arg0_index": [28, 29], "pred": "had", "pred_index": [30, 30], "arg1": "a female householder with no husband present", "arg1_index": [31, 37], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "36.4 %", "arg0_index": [40, 41], "pred": "were", "pred_index": [42, 42], "arg1": "non-families", "arg1_index": [43, 43], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "The Steinbrenner family added a monument to Monument Park on September 20 , 2010 to honor Steinbrenner .": [{"arg0": "The Steinbrenner family", "arg0_index": [0, 2], "pred": "added", "pred_index": [3, 3], "arg1": "a monument", "arg1_index": [4, 5], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "The Steinbrenner family", "arg0_index": [0, 2], "pred": "honor", "pred_index": [15, 15], "arg1": "Steinbrenner", "arg1_index": [16, 16], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "A spectrum from a single FID has a low signal-to-noise ratio , but fortunately it improves readily with averaging of repeated acquisitions .": [{"arg0": "A spectrum from a single FID", "arg0_index": [0, 5], "pred": "has", "pred_index": [6, 6], "arg1": "a low signal-to-noise ratio", "arg1_index": [7, 10], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "A spectrum from a single FID", "arg0_index": [0, 5], "pred": "improves readily", "pred_index": [15, 16], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "The New Orleans oil and gas exploration and diving operations company added that it does n't expect any further adverse financial impact from the restructuring .": [{"arg0": "The New Orleans oil and gas exploration and diving operations company", "arg0_index": [0, 10], "pred": "added", "pred_index": [11, 11], "arg1": "that it does n't expect any further adverse financial impact from the restructuring", "arg1_index": [12, 24], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "it", "arg0_index": [13, 13], "pred": "does n't expect", "pred_index": [14, 16], "arg1": "any further adverse financial impact from the restructuring", "arg1_index": [17, 24], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "`` To allow this massive level of unfettered federal borrowing without prior congressional approval would be irresponsible , '' said Rep. Fortney Stark ( D. , Calif. ) , who has introduced a bill to limit the RTC 's authority to issue debt .": [{"arg0": "To allow this massive level of unfettered federal borrowing without prior congressional approval", "arg0_index": [1, 13], "pred": "would be", "pred_index": [14, 15], "arg1": "irresponsible", "arg1_index": [16, 16], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Rep. Fortney Stark ( D. , Calif. )", "arg0_index": [20, 27], "pred": "said", "pred_index": [19, 19], "arg1": "To allow this massive level of unfettered federal borrowing without prior congressional approval would be irresponsible", "arg1_index": [1, 16], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Rep. Fortney Stark ( D. , Calif. )", "arg0_index": [20, 27], "pred": "has introduced", "pred_index": [30, 31], "arg1": "a bill", "arg1_index": [32, 33], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "a bill", "arg0_index": [32, 33], "pred": "limit", "pred_index": [35, 35], "arg1": "the RTC 's authority to issue debt", "arg1_index": [36, 42], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "", "arg0_index": [], "pred": "issue", "pred_index": [41, 41], "arg1": "debt", "arg1_index": [42, 42], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "A Democrat , he became the youngest mayor in Pittsburgh 's history in September 2006 at the age of 26 .": [{"arg0": "he", "arg0_index": [3, 3], "pred": "became", "pred_index": [4, 4], "arg1": "the youngest mayor in Pittsburgh 's history", "arg1_index": [5, 11], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "The stock pot should be chilled and the solid lump of dripping which settles when chilled should be scraped clean and re-chilled for future use .": [{"arg0": "The stock pot", "arg0_index": [0, 2], "pred": "should be chilled", "pred_index": [3, 5], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "the solid lump of dripping", "arg0_index": [7, 11], "pred": "should be scraped clean and re-chilled", "pred_index": [16, 21], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "the solid lump of dripping", "arg0_index": [7, 11], "pred": " chilled", "pred_index": [-2, 15, 15], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "the solid lump of dripping", "arg0_index": [7, 11], "pred": "settles", "pred_index": [13, 13], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "In athletics , Boston College left the Big East Conference and joined the Atlantic Coast Conference on July 1 , 2005 .": [{"arg0": "Boston College", "arg0_index": [3, 4], "pred": "left", "pred_index": [5, 5], "arg1": "the Big East Conference", "arg1_index": [6, 9], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Boston College", "arg0_index": [3, 4], "pred": "joined", "pred_index": [11, 11], "arg1": "the Atlantic Coast Conference", "arg1_index": [12, 15], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "As of Sept. 30 , American Brands had 95.2 million shares outstanding .": [{"arg0": "American Brands", "arg0_index": [5, 6], "pred": "had", "pred_index": [7, 7], "arg1": "95.2 million shares outstanding", "arg1_index": [8, 11], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "No announcement from UTV was made about the decision to close the station earlier than planned .": [{"arg0": "No announcement from UTV", "arg0_index": [0, 3], "pred": "was made", "pred_index": [4, 5], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "the decision", "arg0_index": [7, 8], "pred": "close", "pred_index": [10, 10], "arg1": "the station", "arg1_index": [11, 12], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "However , StatesWest is n't abandoning its pursuit of the much - larger Mesa .": [{"arg0": "StatesWest", "arg0_index": [2, 2], "pred": "is n't abandoning", "pred_index": [3, 5], "arg1": "its pursuit of the much - larger Mesa", "arg1_index": [6, 13], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "The rest of the group reach a small shop , where Brady attempts to phone the Sheriff , but the crocodile breaks through a wall and devours Annabelle .": [{"arg0": "The rest of the group", "arg0_index": [0, 4], "pred": "reach", "pred_index": [5, 5], "arg1": "a small shop", "arg1_index": [6, 8], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Brady", "arg0_index": [11, 11], "pred": "attempts to phone", "pred_index": [12, 14], "arg1": "the Sheriff", "arg1_index": [15, 16], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "the crocodile", "arg0_index": [19, 20], "pred": "breaks through", "pred_index": [21, 22], "arg1": "a wall", "arg1_index": [23, 24], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "the crocodile", "arg0_index": [19, 20], "pred": "devours", "pred_index": [26, 26], "arg1": "Annabelle", "arg1_index": [27, 27], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "He lodged near the hospital at 28 St Thomas 's Street in Southwark , with other medical students , including Henry Stephens who became a famous inventor and ink magnate .": [{"arg0": "He", "arg0_index": [0, 0], "pred": "lodged", "pred_index": [1, 1], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Henry Stephens", "arg0_index": [20, 21], "pred": "became", "pred_index": [23, 23], "arg1": "a famous inventor and ink magnate", "arg1_index": [24, 29], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "To keep the family together , Michael asks his self-centered twin sister Lindsay , her husband Tobias and their daughter Maeby to live together in the Bluth model home with him and George Michael .": [{"arg0": "Michael", "arg0_index": [6, 6], "pred": "asks", "pred_index": [7, 7], "arg1": "his self-centered twin sister Lindsay , her husband Tobias and their daughter Maeby", "arg1_index": [8, 20], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "The Wilbur Cross Highway formerly ended in Sturbridge ; locals sometimes call Haynes Street and portions of Mashapaug Road `` Old Route 15 '' .": [{"arg0": "The Wilbur Cross Highway", "arg0_index": [0, 3], "pred": "formerly ended in", "pred_index": [4, 6], "arg1": "Sturbridge", "arg1_index": [7, 7], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "locals", "arg0_index": [9, 9], "pred": "sometimes call", "pred_index": [10, 11], "arg1": "Haynes Street and portions of Mashapaug Road", "arg1_index": [12, 18], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "It has long hind legs and a long , slender , scaly tail that it uses to communicate by making drumming noises .": [{"arg0": "It", "arg0_index": [0, 0], "pred": "has", "pred_index": [1, 1], "arg1": "long hind legs and a long , slender , scaly tail", "arg1_index": [2, 12], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "it", "arg0_index": [14, 14], "pred": "uses", "pred_index": [15, 15], "arg1": "a long , slender , scaly tail", "arg1_index": [6, 12], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Ryukichi Imai , Japan 's ambassador to Mexico , agrees that Mexico may be too eager .": [{"arg0": "Ryukichi", "arg0_index": [0, 0], "pred": "", "pred_index": [-1, -1], "arg1": "Japan 's ambassador to Mexico", "arg1_index": [3, 7], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Ryukichi Imai", "arg0_index": [0, 1], "pred": "agrees", "pred_index": [9, 9], "arg1": "that Mexico may be too eager", "arg1_index": [10, 15], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Mexico", "arg0_index": [11, 11], "pred": "may be", "pred_index": [12, 13], "arg1": "too eager", "arg1_index": [14, 15], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "The issue is backed by a 12 % letter of credit from Credit Suisse .": [{"arg0": "The issue", "arg0_index": [0, 1], "pred": "is backed by", "pred_index": [2, 4], "arg1": "a 12 % letter of credit from Credit Suisse", "arg1_index": [5, 13], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Within two hours , viewers pledged over $ 400,000 , according to a Red Cross executive .": [{"arg0": "viewers", "arg0_index": [4, 4], "pred": "pledged over", "pred_index": [5, 6], "arg1": "$ 400,000", "arg1_index": [7, 8], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Johns also appeared as an Imperial Officer in the 1980 `` Star Wars sequel '' , `` The Empire Strikes Back '' .": [{"arg0": "Johns", "arg0_index": [0, 0], "pred": "appeared as", "pred_index": [2, 3], "arg1": "an Imperial Officer", "arg1_index": [4, 6], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "However , a Canadian Embassy official in Tel Aviv said that Canada was unlikely to sell the Candu heavy - water reactor to Israel since Israel has n't signed the Nuclear Non - Proliferation Treaty .": [{"arg0": "a Canadian Embassy official in Tel Aviv", "arg0_index": [2, 8], "pred": "said", "pred_index": [9, 9], "arg1": "that Canada was unlikely to sell the Candu heavy - water reactor to Israel since Israel has n't signed the Nuclear Non - Proliferation Treaty", "arg1_index": [10, 34], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Canada", "arg0_index": [11, 11], "pred": "was unlikely to sell", "pred_index": [12, 15], "arg1": "the Candu heavy - water reactor", "arg1_index": [16, 21], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Israel", "arg0_index": [25, 25], "pred": "has n't signed", "pred_index": [26, 28], "arg1": "the Nuclear Non - Proliferation Treaty", "arg1_index": [29, 34], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Her recent report classifies the stock as a `` hold . ''": [{"arg0": "Her recent report", "arg0_index": [0, 2], "pred": "classifies", "pred_index": [3, 3], "arg1": "the stock", "arg1_index": [4, 5], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Hawker Pacific Aerospace is a MRO-Service company which offers landing gear and hydraulic MRO services for all major aircraft types .": [{"arg0": "Hawker Pacific Aerospace", "arg0_index": [0, 2], "pred": "is", "pred_index": [3, 3], "arg1": "a MRO-Service company", "arg1_index": [4, 6], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Hawker Pacific Aerospace", "arg0_index": [0, 2], "pred": "offers", "pred_index": [8, 8], "arg1": "landing gear and hydraulic MRO services", "arg1_index": [9, 14], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "The first comes from when Sweden 's Royal Couple lived there during the 1992 Barcelona Summer Olympics .": [{"arg0": "The first", "arg0_index": [0, 1], "pred": "comes from", "pred_index": [2, 3], "arg1": "when Sweden 's Royal Couple lived there during the 1992 Barcelona Summer Olympics", "arg1_index": [4, 16], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Sweden 's Royal Couple", "arg0_index": [5, 8], "pred": "lived", "pred_index": [9, 9], "arg1": "there", "arg1_index": [10, 10], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Modernity has been blended without sacrificing on the traditional Buddhist ethos .": [{"arg0": "Modernity", "arg0_index": [0, 0], "pred": "has been blended", "pred_index": [1, 3], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "", "arg0_index": [], "pred": "sacrificing on", "pred_index": [5, 6], "arg1": "the traditional Buddhist ethos", "arg1_index": [7, 10], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "The third known version is part number 2189014-00-212 , with at least one model being produced in February 1993 .": [{"arg0": "The third known version", "arg0_index": [0, 3], "pred": "is", "pred_index": [4, 4], "arg1": "part number 2189014-00-212", "arg1_index": [5, 7], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "at least one model", "arg0_index": [10, 13], "pred": "being produced", "pred_index": [14, 15], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Although Heathrow authorities have been watching a group of allegedly crooked baggage handlers for some time , the Gauguin may be `` lost . ''": [{"arg0": "Heathrow authorities", "arg0_index": [1, 2], "pred": "have been watching", "pred_index": [3, 5], "arg1": "a group of allegedly crooked baggage handlers", "arg1_index": [6, 12], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "the Gauguin", "arg0_index": [17, 18], "pred": "may be", "pred_index": [19, 20], "arg1": "`` lost . ''", "arg1_index": [21, 24], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Mr. Ridley 's decision fires the starting pistol for perhaps a costly contest between the world 's auto giants for Britain 's leading luxury - car maker .": [{"arg0": "Mr. Ridley 's decision", "arg0_index": [0, 3], "pred": "fires", "pred_index": [4, 4], "arg1": "the starting pistol", "arg1_index": [5, 7], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "When the explosion tore through the hut , Stauffenberg was convinced that no one in the room could have survived .": [{"arg0": "the explosion", "arg0_index": [1, 2], "pred": "tore through", "pred_index": [3, 4], "arg1": "the hut", "arg1_index": [5, 6], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Stauffenberg", "arg0_index": [8, 8], "pred": "was convinced", "pred_index": [9, 10], "arg1": "that no one in the room could have survived", "arg1_index": [11, 19], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "no one in the room", "arg0_index": [12, 16], "pred": "could have survived", "pred_index": [17, 19], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "After five years of searching , the Colonials found a primitive , lush and vibrant new world and named it Earth .": [{"arg0": "the Colonials", "arg0_index": [6, 7], "pred": "found", "pred_index": [8, 8], "arg1": "a primitive , lush and vibrant new world", "arg1_index": [9, 16], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "the Colonials", "arg0_index": [6, 7], "pred": "named", "pred_index": [18, 18], "arg1": "it", "arg1_index": [19, 19], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "This mutation gives him superhuman strength , speed , reflexes , agility , flexibility , dexterity , coordination , balance , and endurance .": [{"arg0": "This mutation", "arg0_index": [0, 1], "pred": "gives", "pred_index": [2, 2], "arg1": "him", "arg1_index": [3, 3], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "But amid the two dozen bureaucrats and secretaries sits only one real - life PC .": [{"arg0": "only one real - life PC", "arg0_index": [9, 14], "pred": "sits", "pred_index": [8, 8], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Strong sales so far this year are certain to turn the tide , but even the 25 % market share that Nissan expects in 1989 will leave it far below its position at the beginning of the decade .": [{"arg0": "Strong sales", "arg0_index": [0, 1], "pred": "are certain to turn", "pred_index": [6, 9], "arg1": "the tide", "arg1_index": [10, 11], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "even the 25 % market share that Nissan expects in 1989", "arg0_index": [14, 24], "pred": "will leave", "pred_index": [25, 26], "arg1": "it", "arg1_index": [27, 27], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Nissan", "arg0_index": [21, 21], "pred": "expects", "pred_index": [22, 22], "arg1": "market share", "arg1_index": [18, 19], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "But it appears to be the sort of hold one makes while heading for the door .": [{"arg0": "it", "arg0_index": [1, 1], "pred": "appears to be", "pred_index": [2, 4], "arg1": "the sort of hold one makes while heading for the door", "arg1_index": [5, 15], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "one", "arg0_index": [9, 9], "pred": "makes", "pred_index": [10, 10], "arg1": "the sort of hold", "arg1_index": [5, 8], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "one", "arg0_index": [9, 9], "pred": "heading for", "pred_index": [12, 13], "arg1": "the door", "arg1_index": [14, 15], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "He talked to McGee about using his name and received permission , which is confirmed by correspondence between McGee and his family .": [{"arg0": "He", "arg0_index": [0, 0], "pred": "talked to", "pred_index": [1, 2], "arg1": "McGee", "arg1_index": [3, 3], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "using his name and received permission", "arg0_index": [5, 10], "pred": "is confirmed by", "pred_index": [13, 15], "arg1": "correspondence between McGee and his family", "arg1_index": [16, 21], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "But wire transfers from a standing account -- including those bigger than $ 10,000 -- are n't reported .": [{"arg0": "wire transfers from a standing account", "arg0_index": [1, 6], "pred": "are n't reported", "pred_index": [15, 17], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "One example could be `` Time '' , the fifth song from Pink Floyd 's 1973 album `` The Dark Side Of The Moon '' , which contains a reprise of `` Breathe '' , the first song of the same album .": [{"arg0": "`` Time ''", "arg0_index": [4, 6], "pred": "", "pred_index": [-1, -1], "arg1": "the fifth song from Pink Floyd 's 1973 album `` The Dark Side Of The Moon ''", "arg1_index": [8, 24], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "One example", "arg0_index": [0, 1], "pred": "could be", "pred_index": [2, 3], "arg1": "`` Time ''", "arg1_index": [4, 6], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "`` The Dark Side Of The Moon ''", "arg0_index": [17, 24], "pred": "contains", "pred_index": [27, 27], "arg1": "a reprise of `` Breathe ''", "arg1_index": [28, 33], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "`` Breathe ''", "arg0_index": [31, 33], "pred": "", "pred_index": [-1, -1], "arg1": "the first song of the same album", "arg1_index": [35, 41], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "`` The Dark Side Of The Moon ''", "arg0_index": [17, 24], "pred": "", "pred_index": [-1, -1], "arg1": "Pink Floyd 's 1973 album", "arg1_index": [12, 16], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "The three existing plants and their land will be sold .": [{"arg0": "The three existing plants and their land", "arg0_index": [0, 6], "pred": "will be sold", "pred_index": [7, 9], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Although no specific agreements are expected , Mr. Shevardnadze said `` that does n't mean they will be without an agenda . ''": [{"arg0": "no specific agreements", "arg0_index": [1, 3], "pred": "are expected", "pred_index": [4, 5], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Mr. Shevardnadze", "arg0_index": [7, 8], "pred": "said", "pred_index": [9, 9], "arg1": "`` that does n't mean they will be without an agenda . ''", "arg1_index": [10, 22], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "that", "arg0_index": [11, 11], "pred": "does n't mean", "pred_index": [12, 14], "arg1": "they will be without an agenda", "arg1_index": [15, 20], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "they", "arg0_index": [15, 15], "pred": "will be without", "pred_index": [16, 18], "arg1": "an agenda", "arg1_index": [19, 20], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "According to Samaritan tradition , however , the Samaritan ethnonym is not derived from the region of Samaria , but from the fact that they were the `` Guardians '' of the true Israelite religion .": [{"arg0": "the Samaritan ethnonym", "arg0_index": [7, 9], "pred": "is not derived from", "pred_index": [10, 13], "arg1": "the region of Samaria", "arg1_index": [14, 17], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "they", "arg0_index": [24, 24], "pred": "were", "pred_index": [25, 25], "arg1": "the `` Guardians '' of the true Israelite religion", "arg1_index": [26, 34], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "In 1990 Kelsang Gyatso became also outspoken against the Geshe Studies Programme , and `` made the pursuit of his new programmes compulsory . ''": [{"arg0": "Kelsang Gyatso", "arg0_index": [2, 3], "pred": "became", "pred_index": [4, 4], "arg1": "outspoken against the Geshe Studies Programme", "arg1_index": [6, 11], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Kelsang Gyatso", "arg0_index": [2, 3], "pred": "made", "pred_index": [15, 15], "arg1": "the pursuit of", "arg1_index": [16, 18], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "The lodge is open from mid-May to mid-October , with two weeks starting in the end of August reserved for the Dartmouth First-Year Trips .": [{"arg0": "The lodge", "arg0_index": [0, 1], "pred": "is open", "pred_index": [2, 3], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "two weeks", "arg0_index": [10, 11], "pred": "starting", "pred_index": [12, 12], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "two weeks", "arg0_index": [10, 11], "pred": "reserved for", "pred_index": [18, 19], "arg1": "the Dartmouth First-Year Trips", "arg1_index": [20, 23], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "First Boston incurred millions of dollars of losses on Campeau securities it owned as well as on special securities it could n't sell .": [{"arg0": "First Boston", "arg0_index": [0, 1], "pred": "incurred", "pred_index": [2, 2], "arg1": "millions of dollars of losses on Campeau securities it owned as well as on special securities it could n't sell", "arg1_index": [3, 22], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "it", "arg0_index": [11, 11], "pred": "owned", "pred_index": [12, 12], "arg1": "Campeau securities", "arg1_index": [9, 10], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "it", "arg0_index": [19, 19], "pred": "could n't sell", "pred_index": [20, 22], "arg1": "special securities", "arg1_index": [17, 18], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "In Canada , there are two organizations that regulate university and collegiate athletics .": [{"arg0": "two organizations", "arg0_index": [5, 6], "pred": "regulate", "pred_index": [8, 8], "arg1": "university and collegiate athletics", "arg1_index": [9, 12], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "The dialects they speak are similar but have different intonations .": [{"arg0": "The dialects they speak", "arg0_index": [0, 3], "pred": "are", "pred_index": [4, 4], "arg1": "similar", "arg1_index": [5, 5], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "The dialects they speak", "arg0_index": [0, 3], "pred": "have", "pred_index": [7, 7], "arg1": "different intonations", "arg1_index": [8, 9], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "they", "arg0_index": [2, 2], "pred": "speak", "pred_index": [3, 3], "arg1": "The dialects", "arg1_index": [0, 1], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Sukhum functioned as the capital of the `` Union treaty '' Abkhaz Soviet Socialist Republic associated with the Georgian SSR from 1921 until 1931 , when it became the capital of the Abkhazian Autonomous Soviet Socialist Republic within the Georgian SSR .": [{"arg0": "Sukhum", "arg0_index": [0, 0], "pred": "functioned as", "pred_index": [1, 2], "arg1": "the capital of the `` Union treaty '' Abkhaz Soviet Socialist Republic associated with the Georgian SSR", "arg1_index": [3, 19], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "`` Union treaty '' Abkhaz Soviet Socialist Republic", "arg0_index": [7, 14], "pred": "associated with", "pred_index": [15, 16], "arg1": "the Georgian SSR", "arg1_index": [17, 19], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "it", "arg0_index": [26, 26], "pred": "became", "pred_index": [27, 27], "arg1": "the capital of the Abkhazian Autonomous Soviet Socialist Republic within the Georgian", "arg1_index": [28, 39], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Her image held aloft signifies the Earth , which `` hangs in the air '' .": [{"arg0": "Her image held aloft", "arg0_index": [0, 3], "pred": "signifies", "pred_index": [4, 4], "arg1": "the Earth", "arg1_index": [5, 6], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "the Earth", "arg0_index": [5, 6], "pred": "hangs in", "pred_index": [10, 11], "arg1": "the air", "arg1_index": [12, 13], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "He sold them well below market value to raise cash `` to pay off mounting credit - card debts , '' incurred to buy presents for his girlfriend , his attorney , Philip Russell , told IFAR .": [{"arg0": "He", "arg0_index": [0, 0], "pred": "sold", "pred_index": [1, 1], "arg1": "them", "arg1_index": [2, 2], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "He", "arg0_index": [0, 0], "pred": "incurred to buy", "pred_index": [21, 23], "arg1": "presents", "arg1_index": [24, 24], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Philip Russell", "arg0_index": [32, 33], "pred": "", "pred_index": [-1, -1], "arg1": "his attorney", "arg1_index": [29, 30], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "`` For a list of all medalists , please see the List of Great American Beer Festival medalists ''": [{"arg0": "", "arg0_index": [], "pred": "see", "pred_index": [9, 9], "arg1": "the List of Great American Beer Festival medalists", "arg1_index": [10, 17], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Since the real estate unit also includes debt , the imputed value of the real estate itself is close to $ 3 billion .": [{"arg0": "the real estate", "arg0_index": [1, 3], "pred": "also includes", "pred_index": [5, 6], "arg1": "debt", "arg1_index": [7, 7], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "the imputed value of the real estate itself", "arg0_index": [9, 16], "pred": "is close to", "pred_index": [17, 19], "arg1": "$ 3 billion", "arg1_index": [20, 22], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "About $ 70 billion is estimated to be tied up in the short - term money market , which acts both as a hedge against inflation for consumers and an accelerator of inflation and deficits for the government .": [{"arg0": "About $ 70 billion", "arg0_index": [0, 3], "pred": "is estimated", "pred_index": [4, 5], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "About $ 70 billion", "arg0_index": [0, 3], "pred": "acts", "pred_index": [19, 19], "arg1": "both as a hedge against inflation for consumers and an accelerator of inflation and deficits for the government", "arg1_index": [20, 37], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Burnham died of heart failure at the age of 86 , on September 1 , 1947 at his home in Santa , Barbara , California .": [{"arg0": "Burnham", "arg0_index": [0, 0], "pred": "died of", "pred_index": [1, 2], "arg1": "heart failure", "arg1_index": [3, 4], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "In Van Howe 's study , all cases of meatal stenosis were among circumcised boys .": [{"arg0": "all cases of meatal stenosis", "arg0_index": [6, 10], "pred": "were", "pred_index": [11, 11], "arg1": "among circumcised boys", "arg1_index": [12, 14], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "On May 13 , 2010 , Yost was named manager of the Kansas City Royals , replacing Trey Hillman .": [{"arg0": "Yost", "arg0_index": [6, 6], "pred": "was named", "pred_index": [7, 8], "arg1": "manager of the Kansas City Royals", "arg1_index": [9, 14], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Yost", "arg0_index": [6, 6], "pred": "replacing", "pred_index": [16, 16], "arg1": "Trey Hillman", "arg1_index": [17, 18], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Jaguar 's own defenses against a hostile bid are weakened , analysts add , because fewer than 3 % of its shares are owned by employees and management .": [{"arg0": "Jaguar 's own defenses against a hostile bid", "arg0_index": [0, 7], "pred": "are weakened", "pred_index": [8, 9], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "analysts", "arg0_index": [11, 11], "pred": "add", "pred_index": [12, 12], "arg1": "Jaguar 's own defenses against a hostile bid are weakened", "arg1_index": [0, 9], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "fewer than 3 % of its shares", "arg0_index": [15, 21], "pred": "are owned by", "pred_index": [22, 24], "arg1": "employees and management", "arg1_index": [25, 27], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "The residue can be reprocessed for more dripping and strained through a cheesecloth lined sieve as an ingredient for a fine beef stock .": [{"arg0": "The residue", "arg0_index": [0, 1], "pred": "can be reprocessed", "pred_index": [2, 4], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "The residue", "arg0_index": [0, 1], "pred": " strained through", "pred_index": [-2, 9, 10], "arg1": "a cheesecloth lined sieve", "arg1_index": [11, 14], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Chevalier fulfilled his promise the following year by erecting a shrine dedicated to the honour of Mary under the title of `` Our Lady of the Sacred Heart '' .": [{"arg0": "Chevalier", "arg0_index": [0, 0], "pred": "fulfilled", "pred_index": [1, 1], "arg1": "his promise", "arg1_index": [2, 3], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "a shrine", "arg0_index": [9, 10], "pred": " dedicated to", "pred_index": [-2, 11, 12], "arg1": "the honour of Mary", "arg1_index": [13, 16], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Ever since , the remaining members have been desperate for the United States to rejoin this dreadful group .": [{"arg0": "the remaining members", "arg0_index": [3, 5], "pred": "have been", "pred_index": [6, 7], "arg1": "desperate", "arg1_index": [8, 8], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "the United States", "arg0_index": [10, 12], "pred": "rejoin", "pred_index": [14, 14], "arg1": "this dreadful group", "arg1_index": [15, 17], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "In the U.S. , more than half the PC software sold is either for spreadsheets or for database analysis , according to Lotus .": [{"arg0": "more than half the PC software sold", "arg0_index": [4, 10], "pred": "is", "pred_index": [11, 11], "arg1": "either for spreadsheets or for database analysis", "arg1_index": [12, 18], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "According to the United States Census Bureau , the town has a total area of , all of it land .": [{"arg0": "the town", "arg0_index": [8, 9], "pred": "has", "pred_index": [10, 10], "arg1": "a total area of , all of it land", "arg1_index": [11, 19], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "In 1987 , Rodan became president of the American Society for Bone and Mineral Research .": [{"arg0": "Rodan", "arg0_index": [3, 3], "pred": "became", "pred_index": [4, 4], "arg1": "president of the American Society for Bone and Mineral Research", "arg1_index": [5, 14], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Procter & Gamble Co. recently introduced refillable versions of four products , including Tide and Mr. Clean , in Canada , but does n't plan to bring them to the U.S. .": [{"arg0": "Procter & Gamble Co.", "arg0_index": [0, 3], "pred": "introduced", "pred_index": [5, 5], "arg1": "refillable versions of four products , including Tide and Mr. Clean", "arg1_index": [6, 16], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "refillable versions of four products", "arg0_index": [6, 10], "pred": "including", "pred_index": [12, 12], "arg1": "Tide and Mr. Clean", "arg1_index": [13, 16], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Procter & Gamble Co.", "arg0_index": [0, 3], "pred": "does n't plan to bring", "pred_index": [22, 26], "arg1": "them", "arg1_index": [27, 27], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Parental investment is any expenditure of resources to benefit one offspring .": [{"arg0": "Parental investment", "arg0_index": [0, 1], "pred": "is", "pred_index": [2, 2], "arg1": "any expenditure of resources to benefit one offspring", "arg1_index": [3, 10], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "any expenditure of resources", "arg0_index": [3, 6], "pred": "benefit", "pred_index": [8, 8], "arg1": "one offspring", "arg1_index": [9, 10], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Earlier this year , Blackstone Group , a New York investment bank , had no trouble selling out a special $ 570 million mortgage - securities trust it created for Japanese investors .": [{"arg0": "Blackstone Group", "arg0_index": [4, 5], "pred": "had no trouble selling out", "pred_index": [13, 17], "arg1": "a special $ 570 million mortgage - securities trust it created for Japanese investors", "arg1_index": [18, 31], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "it", "arg0_index": [27, 27], "pred": "created", "pred_index": [28, 28], "arg1": "a special $ 570 million mortgage - securities trust", "arg1_index": [18, 26], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "The community is served by the United States Postal Service Hinsdale Post Office .": [{"arg0": "The community", "arg0_index": [0, 1], "pred": "is served by", "pred_index": [2, 4], "arg1": "the United States Postal Service Hinsdale Post Office", "arg1_index": [5, 12], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Total ` Fresh Food Story ' constructed at the end of the North Mall .": [{"arg0": "Total ` Fresh Food Story '", "arg0_index": [0, 5], "pred": "constructed", "pred_index": [6, 6], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "The second was titled `` Consider Her Ways '' and also starred Barrie as the lead named Jane Waterleigh .": [{"arg0": "The second", "arg0_index": [0, 1], "pred": "was titled", "pred_index": [2, 3], "arg1": "`` Consider Her Ways ''", "arg1_index": [4, 8], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "The second", "arg0_index": [0, 1], "pred": "starred", "pred_index": [11, 11], "arg1": "Barrie", "arg1_index": [12, 12], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "the lead", "arg0_index": [14, 15], "pred": " named", "pred_index": [-2, 16, 16], "arg1": "Jane Waterleigh", "arg1_index": [17, 18], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "This provision met early and strong resistance from investment bankers worried about disruptions in their clients ' portfolios .": [{"arg0": "This provision", "arg0_index": [0, 1], "pred": "met early", "pred_index": [2, 3], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "strong resistance from investment bankers", "arg0_index": [5, 9], "pred": "worried about", "pred_index": [10, 11], "arg1": "disruptions", "arg1_index": [12, 12], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "This had considerable implications for the Welsh language as it was the main language of the nonconformist churches in Wales .": [{"arg0": "This", "arg0_index": [0, 0], "pred": "had", "pred_index": [1, 1], "arg1": "considerable implications", "arg1_index": [2, 3], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "it", "arg0_index": [9, 9], "pred": "was", "pred_index": [10, 10], "arg1": "the main language of the nonconformist churches in Wales", "arg1_index": [11, 19], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "According to one person familiar with the airline , the buy - out group -- led by United 's pilots union and UAL Chairman Stephen Wolf -- has begun billing UAL for fees and expenses it owes to investment bankers , law firms and banks .": [{"arg0": "the buy - out group --", "arg0_index": [9, 14], "pred": " led by", "pred_index": [-2, 15, 16], "arg1": "United 's pilots union and UAL Chairman Stephen Wolf", "arg1_index": [17, 25], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "the buy - out group -- led by United 's pilots union and UAL Chairman Stephen Wolf --", "arg0_index": [9, 26], "pred": "has begun billing", "pred_index": [27, 29], "arg1": "UAL", "arg1_index": [30, 30], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "it", "arg0_index": [35, 35], "pred": "owes", "pred_index": [36, 36], "arg1": "fees and expenses", "arg1_index": [32, 34], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Shea was born on September 5 , 1900 in San Francisco , California .": [{"arg0": "Shea", "arg0_index": [0, 0], "pred": "was born", "pred_index": [1, 2], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Because patients require less attention from nurses and other staff , room charges are lower -- about $ 100 less per day than a regular room at the Vermont hospital .": [{"arg0": "patients", "arg0_index": [1, 1], "pred": "require", "pred_index": [2, 2], "arg1": "less attention from nurses and other staff", "arg1_index": [3, 9], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "room charges", "arg0_index": [11, 12], "pred": "are", "pred_index": [13, 13], "arg1": "lower", "arg1_index": [14, 14], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Medical cooperatives , among the most successful in the U.S.S.R. , are banned from providing general - practitioner services ( their main source of income ) , carrying out surgery , and treating cancer patients , drug addicts and pregnant women .": [{"arg0": "Medical cooperatives", "arg0_index": [0, 1], "pred": "", "pred_index": [-1, -1], "arg1": "among the most successful in the U.S.S.R.", "arg1_index": [3, 9], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Medical cooperatives", "arg0_index": [0, 1], "pred": "providing", "pred_index": [14, 14], "arg1": "general - practitioner services", "arg1_index": [15, 18], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Medical cooperatives", "arg0_index": [0, 1], "pred": "carrying out", "pred_index": [27, 28], "arg1": "surgery", "arg1_index": [29, 29], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Medical cooperatives", "arg0_index": [0, 1], "pred": "treating", "pred_index": [32, 32], "arg1": "cancer patients , drug addicts and pregnant women", "arg1_index": [33, 40], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Medical cooperatives", "arg0_index": [0, 1], "pred": "are banned from", "pred_index": [11, 13], "arg1": "providing general - practitioner services ( their main source of income ) , carrying out surgery , and treating cancer patients , drug addicts and pregnant women", "arg1_index": [14, 40], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "general - practitioner services", "arg0_index": [15, 18], "pred": "", "pred_index": [-1, -1], "arg1": "their main source of income", "arg1_index": [20, 24], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Finally , Mitsubishi Estate has no plans to interfere with Rockefeller 's management beyond taking a place on the board .": [{"arg0": "Mitsubishi Estate", "arg0_index": [2, 3], "pred": "has no plans to interfere with", "pred_index": [4, 9], "arg1": "Rockefeller 's management", "arg1_index": [10, 12], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Early in the morning Mr. Sider , an estate lawyer , pores over last wills and testaments .": [{"arg0": "Mr. Sider", "arg0_index": [4, 5], "pred": "pores over", "pred_index": [11, 12], "arg1": "last wills and testaments", "arg1_index": [13, 16], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Mr. Sider", "arg0_index": [4, 5], "pred": "", "pred_index": [-1, -1], "arg1": "an estate lawyer", "arg1_index": [7, 9], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "This engine was equipped with an electronically controlled carburetor .": [{"arg0": "This engine", "arg0_index": [0, 1], "pred": "was equipped with", "pred_index": [2, 4], "arg1": "an electronically controlled carburetor", "arg1_index": [5, 8], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Kostabi 's other releases include : `` Songs For Sumera '' , `` New Alliance '' and `` The Spectre Of Modernism '' .": [{"arg0": "Kostabi 's other releases", "arg0_index": [0, 3], "pred": "include", "pred_index": [4, 4], "arg1": "`` Songs For Sumera '' , `` New Alliance '' and `` The Spectre Of Modernism ''", "arg1_index": [6, 22], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "USG Corp. agreed to sell its headquarters building here to Manufacturers Life Insurance Co. of Toronto , and will lease the 19 - story facility until it moves to a new quarters in 1992 .": [{"arg0": "USG Corp.", "arg0_index": [0, 1], "pred": "agreed to sell", "pred_index": [2, 4], "arg1": "its headquarters building here", "arg1_index": [5, 8], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "USG Corp.", "arg0_index": [0, 1], "pred": "will lease", "pred_index": [18, 19], "arg1": "the 19 - story facility", "arg1_index": [20, 24], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "it", "arg0_index": [26, 26], "pred": "moves to", "pred_index": [27, 28], "arg1": "a new quarters", "arg1_index": [29, 31], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "However , after pressure campaigns from various human rights groups , BAE Systems recently stated it no longer produces land mines or cluster bombs .": [{"arg0": "BAE Systems", "arg0_index": [11, 12], "pred": "stated", "pred_index": [14, 14], "arg1": "it no longer produces land mines or cluster bombs", "arg1_index": [15, 23], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "it", "arg0_index": [15, 15], "pred": "no longer produces", "pred_index": [16, 18], "arg1": "land mines or cluster bombs", "arg1_index": [19, 23], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "A month ago , when Beatrice first filed to sell debt , the company had planned to offer $ 200 million of its senior subordinated reset notes at a yield of 12 3\\/4 % .": [{"arg0": "the company", "arg0_index": [12, 13], "pred": "had planned to offer", "pred_index": [14, 17], "arg1": "$ 200 million of its senior subordinated reset notes", "arg1_index": [18, 26], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "In the corporate market , an expected debt offering today by International Business Machines Corp. generated considerable attention .": [{"arg0": "an expected debt offering today by International Business Machines Corp.", "arg0_index": [5, 14], "pred": "generated", "pred_index": [15, 15], "arg1": "considerable attention", "arg1_index": [16, 17], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Indeed , the insurance adjusters had already bolted out of the courtroom .": [{"arg0": "the insurance adjusters", "arg0_index": [2, 4], "pred": "had already bolted out of", "pred_index": [5, 9], "arg1": "the courtroom", "arg1_index": [10, 11], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "It said CS First Boston `` has consistently been one of the most aggressive firms in merchant banking '' and that `` a very significant portion '' of the firm 's profit in recent years has come from merchant banking - related business .": [{"arg0": "It", "arg0_index": [0, 0], "pred": "said", "pred_index": [1, 1], "arg1": "CS First Boston `` has consistently been one of the most aggressive firms in merchant banking ''", "arg1_index": [2, 18], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "It", "arg0_index": [0, 0], "pred": "said", "pred_index": [1, 1], "arg1": "that `` a very significant portion '' of the firm 's profit in recent years has come from merchant banking - related business", "arg1_index": [20, 42], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "CS First Boston", "arg0_index": [2, 4], "pred": "has consistently been", "pred_index": [6, 8], "arg1": "one of the most aggressive firms in merchant banking", "arg1_index": [9, 17], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "`` a very significant portion '' of the firm 's profit in recent years", "arg0_index": [21, 34], "pred": "has come from", "pred_index": [35, 37], "arg1": "merchant banking - related business", "arg1_index": [38, 42], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "The Hamburg Concathedral with chapterhouse and capitular residential courts formed a `` Cathedral Immunity District '' of the Prince-Archbishopric of Bremen too .": [{"arg0": "The Hamburg Concathedral with chapterhouse and capitular residential courts", "arg0_index": [0, 8], "pred": "formed", "pred_index": [9, 9], "arg1": "a `` Cathedral Immunity District '' of the Prince-Archbishopric of Bremen", "arg1_index": [10, 20], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "To my knowledge , no government entities , including the EPA , are pursuing UV - B measurements .": [{"arg0": "no government entities , including the EPA", "arg0_index": [4, 10], "pred": "are pursuing", "pred_index": [12, 13], "arg1": "UV - B measurements", "arg1_index": [14, 17], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "government entities", "arg0_index": [5, 6], "pred": "including", "pred_index": [8, 8], "arg1": "the EPA", "arg1_index": [9, 10], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Each of the Matoran brought their Toa stone and met each other at the Great Temple .": [{"arg0": "Each of the Matoran", "arg0_index": [0, 3], "pred": "brought", "pred_index": [4, 4], "arg1": "their Toa stone", "arg1_index": [5, 7], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Each of the Matoran", "arg0_index": [0, 3], "pred": "met", "pred_index": [9, 9], "arg1": "each other", "arg1_index": [10, 11], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "RedHat engineers identified problems with ProPolice though , and in 2005 re-implemented stack-smashing protection for inclusion in GCC 4.1 .": [{"arg0": "RedHat engineers", "arg0_index": [0, 1], "pred": "identified", "pred_index": [2, 2], "arg1": "problems", "arg1_index": [3, 3], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "RedHat engineers", "arg0_index": [0, 1], "pred": "re-implemented", "pred_index": [11, 11], "arg1": "stack-smashing protection for inclusion in GCC 4.1", "arg1_index": [12, 18], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Apartment buildings , shops , medical clinics , cinemas etc. were built in close proximity to the MAZ plant , providing plant workers with local necessities .": [{"arg0": "Apartment buildings , shops , medical clinics , cinemas etc.", "arg0_index": [0, 9], "pred": "were built", "pred_index": [10, 11], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Apartment buildings , shops , medical clinics , cinemas etc.", "arg0_index": [0, 9], "pred": "providing", "pred_index": [20, 20], "arg1": "plant workers", "arg1_index": [21, 22], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "The effect is that lawsuits that might have been barred because they were filed too late could proceed because of the one - year extension .": [{"arg0": "The effect", "arg0_index": [0, 1], "pred": "is", "pred_index": [2, 2], "arg1": "that lawsuits that might have been barred because they were filed too late could proceed because of the one - year extension", "arg1_index": [3, 24], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "lawsuits", "arg0_index": [4, 4], "pred": "have been barred", "pred_index": [7, 9], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "lawsuits", "arg0_index": [4, 4], "pred": "were filed", "pred_index": [12, 13], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "lawsuits", "arg0_index": [4, 4], "pred": "could proceed", "pred_index": [16, 17], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "The town was previously served by a station on the Somerset and Dorset Railway but this closed in 1966 , and by a second station on the Bristol and North Somerset Railway at Welton in the valley .": [{"arg0": "The town", "arg0_index": [0, 1], "pred": "was previously served by", "pred_index": [2, 5], "arg1": "a station on the Somerset and Dorset Railway", "arg1_index": [6, 13], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "this", "arg0_index": [15, 15], "pred": "closed in", "pred_index": [16, 17], "arg1": "1996", "arg1_index": [18, 18], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "The canal was dammed off from the river for most of the construction period .": [{"arg0": "The canal", "arg0_index": [0, 1], "pred": "was dammed off", "pred_index": [2, 4], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Years ago , he collaborated with the new music gurus Peter Serkin and Fred Sherry in the very countercultural chamber group Tashi , which won audiences over to dreaded contemporary scores like Messiaen 's `` Quartet for the End of Time . ''": [{"arg0": "he", "arg0_index": [3, 3], "pred": "collaborated with", "pred_index": [4, 5], "arg1": "the new music gurus Peter Serkin and Fred Sherry", "arg1_index": [6, 14], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "he collaborated with the new music gurus Peter Serkin and Fred Sherry in the very countercultural chamber group Tashi", "arg0_index": [3, 21], "pred": "won", "pred_index": [24, 24], "arg1": "audiences", "arg1_index": [25, 25], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Shaw Industries , which agreed to acquire Armstrong World Industries ' carpet operations for an undisclosed price , rose 2 1\\/4 to 26 1\\/8 .": [{"arg0": "Shaw Industries", "arg0_index": [0, 1], "pred": "agreed to acquire", "pred_index": [4, 6], "arg1": "Armstrong World Industries ' carpet operations", "arg1_index": [7, 12], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Shaw Industries", "arg0_index": [0, 1], "pred": "rose", "pred_index": [18, 18], "arg1": "2 1\\/4", "arg1_index": [19, 20], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Six years ago , Judge O'Kicki was voted president of the Pennsylvania Conference of State Trial Judges by the state 's 400 judges .": [{"arg0": "Judge O'Kicki", "arg0_index": [4, 5], "pred": "was voted", "pred_index": [6, 7], "arg1": "president of the Pennsylvania Conference of State Trial Judges", "arg1_index": [8, 16], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "There 's light at the end of the tunnel for municipals , '' he said , adding that he expects prices to `` inch up '' in the near term .": [{"arg0": "he", "arg0_index": [13, 13], "pred": "said", "pred_index": [14, 14], "arg1": "There 's light at the end of the tunnel for municipals , ''", "arg1_index": [0, 12], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "he", "arg0_index": [13, 13], "pred": "adding", "pred_index": [16, 16], "arg1": "that he expects prices to `` inch up '' in the near term", "arg1_index": [17, 29], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "There", "arg0_index": [0, 0], "pred": "'s", "pred_index": [1, 1], "arg1": "light", "arg1_index": [2, 2], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "he", "arg0_index": [18, 18], "pred": "expects", "pred_index": [19, 19], "arg1": "prices", "arg1_index": [20, 20], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Industrial Bank of Japan , which claims to be the biggest Japanese buyer of U.S. mortgage securities , says it will more than double its purchases this year , to an amount one official puts at several billion dollars .": [{"arg0": "Industrial Bank of Japan", "arg0_index": [0, 3], "pred": "claims to be", "pred_index": [6, 8], "arg1": "the biggest Japanese buyer of U.S. mortgage securities", "arg1_index": [9, 16], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Industrial Bank of Japan", "arg0_index": [0, 3], "pred": "says", "pred_index": [18, 18], "arg1": "it will more than double its purchases this year , to an amount one official puts at several billion dollars", "arg1_index": [19, 38], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "it", "arg0_index": [19, 19], "pred": "will more than double", "pred_index": [20, 23], "arg1": "its purchases", "arg1_index": [24, 25], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "one official", "arg0_index": [32, 33], "pred": "puts", "pred_index": [34, 34], "arg1": "an amount", "arg1_index": [30, 31], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Prime Minister Lee Kuan Yew , Singapore 's leader and one of Asia 's leading statesmen for 30 years , recently announced his intention to retire next year -- though not necessarily to end his influence .": [{"arg0": "Lee Kuan Yew", "arg0_index": [2, 4], "pred": "", "pred_index": [-1, -1], "arg1": "Singapore 's leader", "arg1_index": [6, 8], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Lee Kuan Yew", "arg0_index": [2, 4], "pred": "", "pred_index": [-1, -1], "arg1": "one of Asia 's leading statesmen", "arg1_index": [10, 15], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Lee Kuan Yew", "arg0_index": [2, 4], "pred": "", "pred_index": [-1, -1], "arg1": "Prime Minister", "arg1_index": [0, 1], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Lee Kuan", "arg0_index": [2, 3], "pred": "announced", "pred_index": [21, 21], "arg1": "his intention to retire next year", "arg1_index": [22, 27], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "his intention to retire next year", "arg0_index": [22, 27], "pred": "not necessarily to end", "pred_index": [30, 33], "arg1": "his influence", "arg1_index": [34, 35], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "He also contended that the plaintiffs failed to cite any legal authority that would justify such an injunction .": [{"arg0": "He", "arg0_index": [0, 0], "pred": "contended", "pred_index": [2, 2], "arg1": "that the plaintiffs failed to cite any legal authority that would justify such an injunction", "arg1_index": [3, 17], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "the plaintiffs", "arg0_index": [4, 5], "pred": "failed to cite", "pred_index": [6, 8], "arg1": "any legal authority that would justify such an injunction", "arg1_index": [9, 17], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "any legal authority", "arg0_index": [9, 11], "pred": "would justify", "pred_index": [13, 14], "arg1": "such an injunction", "arg1_index": [15, 17], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Noatak has a gravel public airstrip and is primarily reached by air .": [{"arg0": "Noatak", "arg0_index": [0, 0], "pred": "has", "pred_index": [1, 1], "arg1": "a gravel public airstrip", "arg1_index": [2, 5], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Noatak", "arg0_index": [0, 0], "pred": "is primarily reached by", "pred_index": [7, 10], "arg1": "air", "arg1_index": [11, 11], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "According to the 2010 census , the population of the town is 2,310 .": [{"arg0": "the population of the town", "arg0_index": [6, 10], "pred": "is", "pred_index": [11, 11], "arg1": "2,310", "arg1_index": [12, 12], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "The company said the fastener business `` has been under severe cost pressures for some time . ''": [{"arg0": "The company", "arg0_index": [0, 1], "pred": "said", "pred_index": [2, 2], "arg1": "the fastener business `` has been under severe cost pressures for some time . ''", "arg1_index": [3, 17], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "the fastener business", "arg0_index": [3, 5], "pred": "has been", "pred_index": [7, 8], "arg1": "under severe cost pressures", "arg1_index": [9, 12], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "This change was soon picked up by Huguenot writers , who began to expand on Calvin and promote the idea of the sovereignty of the people , ideas to which Catholic writers and preachers responded fiercely .": [{"arg0": "This change", "arg0_index": [0, 1], "pred": "was soon picked up by", "pred_index": [2, 6], "arg1": "Huguenot writers", "arg1_index": [7, 8], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Huguenot writers", "arg0_index": [7, 8], "pred": "began to expand on", "pred_index": [11, 14], "arg1": "Calvin", "arg1_index": [15, 15], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Huguenot writers", "arg0_index": [7, 8], "pred": "promote", "pred_index": [17, 17], "arg1": "the idea of the sovereignty of the people", "arg1_index": [18, 25], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Catholic writers and preachers", "arg0_index": [30, 33], "pred": "responded fiercely", "pred_index": [34, 35], "arg1": "ideas", "arg1_index": [27, 27], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Specifically , knowledge and interest in the event affects the level of personal importance for the individual , which also affects the individual 's level of emotional arousal .": [{"arg0": "knowledge and interest in the event", "arg0_index": [2, 7], "pred": "affects", "pred_index": [8, 8], "arg1": "the level of personal importance for the individual", "arg1_index": [9, 16], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "knowledge and interest in the event", "arg0_index": [2, 7], "pred": "affects", "pred_index": [20, 20], "arg1": "the individual 's level of emotional arousal", "arg1_index": [21, 27], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Lemmy believes that if Will Reid Dick had not been there , they could have worked through the problems , but ended up exchanging a few words and Clarke left the studio .": [{"arg0": "Lemmy", "arg0_index": [0, 0], "pred": "believes", "pred_index": [1, 1], "arg1": "that if Will Reid Dick had not been there , they could have worked through the problems", "arg1_index": [2, 18], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Will Reid Dick", "arg0_index": [4, 6], "pred": "had not been", "pred_index": [7, 9], "arg1": "there", "arg1_index": [10, 10], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "they", "arg0_index": [12, 12], "pred": "could have worked through", "pred_index": [13, 16], "arg1": "the problems", "arg1_index": [17, 18], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "they", "arg0_index": [12, 12], "pred": "ended up exchanging", "pred_index": [21, 23], "arg1": "a few words", "arg1_index": [24, 26], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Clarke", "arg0_index": [28, 28], "pred": "left", "pred_index": [29, 29], "arg1": "the studio", "arg1_index": [30, 31], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Originally , Hank McCoy retains the basic features of a normal human alongside a generally simian physiology equivalent to that of a Great Ape .": [{"arg0": "Hank McCoy", "arg0_index": [2, 3], "pred": "retains", "pred_index": [4, 4], "arg1": "the basic features of a normal human", "arg1_index": [5, 11], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "In both cases this specialized function replaces the basic rifleman position in the fireteam .": [{"arg0": "this specialized function", "arg0_index": [3, 5], "pred": "replaces", "pred_index": [6, 6], "arg1": "the basic rifleman position in the fireteam", "arg1_index": [7, 13], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "`` Most of the LBO guys do n't know how to run a business anyway . ''": [{"arg0": "Most of the LBO guys", "arg0_index": [1, 5], "pred": "do n't know", "pred_index": [6, 8], "arg1": "how to run a business", "arg1_index": [9, 13], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "", "arg0_index": [], "pred": "run", "pred_index": [11, 11], "arg1": "a business", "arg1_index": [12, 13], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "In Jewish Hebrew , the Samaritans are called `` Shomronim '' , while in Samaritan Hebrew they call themselves `` Shamerim '' .": [{"arg0": "the Samaritans", "arg0_index": [4, 5], "pred": "are called", "pred_index": [6, 7], "arg1": "`` Shomronim ''", "arg1_index": [8, 10], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "they", "arg0_index": [16, 16], "pred": "call", "pred_index": [17, 17], "arg1": "themselves", "arg1_index": [18, 18], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "He represented the riding of Nickel Belt in the Sudbury , Ontario area .": [{"arg0": "He", "arg0_index": [0, 0], "pred": "represented", "pred_index": [1, 1], "arg1": "the riding of Nickel Belt", "arg1_index": [2, 6], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Because of Muhammad 's role in its formation , the alliance plays a significant role in Islamic ethics .": [{"arg0": "the alliance", "arg0_index": [9, 10], "pred": "plays a", "pred_index": [11, 12], "arg1": "significant role in Islamic ethics", "arg1_index": [13, 17], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "`` It 's really bizarre , '' says Albert Lerman , creative director at the Wells Rich Greene ad agency .": [{"arg0": "Albert Lerman", "arg0_index": [8, 9], "pred": "says", "pred_index": [7, 7], "arg1": "`` It 's really bizarre , ''", "arg1_index": [0, 6], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "It", "arg0_index": [1, 1], "pred": "'s", "pred_index": [2, 2], "arg1": "really bizarre", "arg1_index": [3, 4], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Albert Lerman", "arg0_index": [8, 9], "pred": "", "pred_index": [-1, -1], "arg1": "creative director at the Wells Rich Greene ad agency", "arg1_index": [11, 19], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Japanese office workers use PCs at half the rate of their European counterparts and one - third that of the Americans .": [{"arg0": "Japanese office workers", "arg0_index": [0, 2], "pred": "use", "pred_index": [3, 3], "arg1": "PCs", "arg1_index": [4, 4], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "She published more than 15 research publications , including International Journals , International Conferences , National Conferences , workshops and seminars .": [{"arg0": "She", "arg0_index": [0, 0], "pred": "published", "pred_index": [1, 1], "arg1": "more than 15 research publications", "arg1_index": [2, 6], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "more than 15 research publications", "arg0_index": [2, 6], "pred": "including", "pred_index": [8, 8], "arg1": "International Journals , International Conferences , National Conferences , workshops and seminars", "arg1_index": [9, 20], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Names like John Berks , Gary Edwards , Frank Sanders , Robin Alexander , Darryl Jooste , George Wayne and David Gresham all started out at LM Radio before moving to other stations such as Swazi Music Radio , Radio 702 , Springbok Radio and other SABC stations , 2JJ and Capital 604 .": [{"arg0": "Names like John Berks , Gary Edwards , Frank Sanders , Robin Alexander , Darryl Jooste , George Wayne and David Gresham", "arg0_index": [0, 21], "pred": "all started out at", "pred_index": [22, 25], "arg1": "LM Radio", "arg1_index": [26, 27], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Names like John Berks , Gary Edwards , Frank Sanders , Robin Alexander , Darryl Jooste , George Wayne and David Gresham", "arg0_index": [0, 21], "pred": "moving to", "pred_index": [29, 30], "arg1": "other stations", "arg1_index": [31, 32], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "In the 1960s and 70s most of Kabul 's economy depended on tourism .": [{"arg0": "most of Kabul 's economy", "arg0_index": [5, 9], "pred": "depended on", "pred_index": [10, 11], "arg1": "tourism", "arg1_index": [12, 12], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "One had best not dance on top of a coffin until the lid is sealed tightly shut . ''": [{"arg0": "One", "arg0_index": [0, 0], "pred": "had best not", "pred_index": [1, 3], "arg1": "dance on top of a coffin", "arg1_index": [4, 9], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "the lid", "arg0_index": [11, 12], "pred": "is sealed tightly shut", "pred_index": [13, 16], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Males had a median income of $ 28,750 versus $ 16,250 for females .": [{"arg0": "Males", "arg0_index": [0, 0], "pred": "had", "pred_index": [1, 1], "arg1": "a median income of $ 28,750", "arg1_index": [2, 7], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "`` It 's a wait - and - see attitude , '' said Dave Vellante , vice president of storage research for International Data Corp .": [{"arg0": "Dave Vellante", "arg0_index": [13, 14], "pred": "", "pred_index": [-1, -1], "arg1": "vice president of storage research for International Data Corp", "arg1_index": [16, 24], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Dave Vellante", "arg0_index": [13, 14], "pred": "said", "pred_index": [12, 12], "arg1": "`` It 's a wait - and - see attitude , ''", "arg1_index": [0, 11], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "It", "arg0_index": [1, 1], "pred": "'s", "pred_index": [2, 2], "arg1": "a wait - and - see attitude", "arg1_index": [3, 9], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Tom Panelli had a perfectly good reason for not using the $ 300 rowing machine he bought three years ago .": [{"arg0": "Tom Panelli", "arg0_index": [0, 1], "pred": "had", "pred_index": [2, 2], "arg1": "a perfectly good reason", "arg1_index": [3, 6], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Tom Panelli", "arg0_index": [0, 1], "pred": "not using", "pred_index": [8, 9], "arg1": "the $ 300 rowing machine he bought three years ago", "arg1_index": [10, 19], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Tom Panelli", "arg0_index": [0, 1], "pred": "bought", "pred_index": [16, 16], "arg1": "the $ 300 rowing machine", "arg1_index": [10, 14], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Failure to perform the duty could lead to prosecution at law and re-enslavement .": [{"arg0": "Failure to perform the duty", "arg0_index": [0, 4], "pred": "could lead to", "pred_index": [5, 7], "arg1": "prosecution at law and re-enslavement", "arg1_index": [8, 12], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "", "arg0_index": [], "pred": "perform", "pred_index": [2, 2], "arg1": "the duty", "arg1_index": [3, 4], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Since joining the competition in 1908 , Richmond has won ten premierships , the most recent victory being in 1980 .": [{"arg0": "Richmond", "arg0_index": [7, 7], "pred": "joining", "pred_index": [1, 1], "arg1": "the competition", "arg1_index": [2, 3], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Richmond", "arg0_index": [7, 7], "pred": "has won", "pred_index": [8, 9], "arg1": "ten premierships", "arg1_index": [10, 11], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "the most recent victory", "arg0_index": [13, 16], "pred": "being", "pred_index": [17, 17], "arg1": "in 1980", "arg1_index": [18, 19], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "`` I do n't foresee any shortages over the next few months , '' says Ken Allen , an official of Operating Engineers Local 3 in San Francisco .": [{"arg0": "Ken Allen", "arg0_index": [15, 16], "pred": "", "pred_index": [-1, -1], "arg1": "an official of Operating Engineers Local 3 in San Francisco", "arg1_index": [18, 27], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Ken Allen", "arg0_index": [15, 16], "pred": "says", "pred_index": [14, 14], "arg1": "`` I do n't foresee any shortages over the next few months , ''", "arg1_index": [0, 13], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "I", "arg0_index": [1, 1], "pred": "do n't foresee", "pred_index": [2, 4], "arg1": "any shortages", "arg1_index": [5, 6], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "In 1977 she appeared in two television films , as the mother of Lesley Ann Warren 's character in `` 79 Park Avenue '' and as Emily McPhail in `` Tell Me My Name '' .": [{"arg0": "she", "arg0_index": [2, 2], "pred": "appeared in", "pred_index": [3, 4], "arg1": "two television films", "arg1_index": [5, 7], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "The suit alleged that they conspired to fix prices for e-books , and weaken Amazon.com 's position in the market , in violation of antitrust law .": [{"arg0": "The suit", "arg0_index": [0, 1], "pred": "alleged", "pred_index": [2, 2], "arg1": "that they conspired to fix prices for e-books , and weaken Amazon.com 's position in the market , in violation of antitrust law", "arg1_index": [3, 25], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "they", "arg0_index": [4, 4], "pred": "conspired to fix", "pred_index": [5, 7], "arg1": "prices for e-books", "arg1_index": [8, 10], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "they", "arg0_index": [4, 4], "pred": "weaken", "pred_index": [13, 13], "arg1": "Amazon.com 's position in the market", "arg1_index": [14, 19], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "A similar technique is almost impossible to apply to other crops , such as cotton , soybeans and rice .": [{"arg0": "A similar technique", "arg0_index": [0, 2], "pred": "is almost impossible to apply to", "pred_index": [3, 8], "arg1": "other crops", "arg1_index": [9, 10], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "The diocese was originally erected as the Prefecture Apostolic of Hpyeng-yang on 17 March 1927 , and renamed as the Prefecture Apostolic of Peng-yang on 17 March 1929 .": [{"arg0": "The diocese", "arg0_index": [0, 1], "pred": "was originally erected as", "pred_index": [2, 5], "arg1": "the Prefecture Apostolic of Hpyeng-yang", "arg1_index": [6, 10], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "The diocese", "arg0_index": [0, 1], "pred": " renamed as", "pred_index": [-2, 17, 18], "arg1": "the Prefecture Apostolic of Peng-yang", "arg1_index": [19, 23], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "An animal that cares for its young but shows no other sociality traits is said to be `` subsocial '' .": [{"arg0": "An animal that cares for its young but shows no other sociality traits", "arg0_index": [0, 12], "pred": "is said to be", "pred_index": [13, 16], "arg1": "`` subsocial ''", "arg1_index": [17, 19], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "An animal", "arg0_index": [0, 1], "pred": "cares for", "pred_index": [3, 4], "arg1": "its young", "arg1_index": [5, 6], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "An animal", "arg0_index": [0, 1], "pred": "shows", "pred_index": [8, 8], "arg1": "no other sociality traits", "arg1_index": [9, 12], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "That compares with 3.5 % butterfat for whole milk .": [{"arg0": "That", "arg0_index": [0, 0], "pred": "compares with", "pred_index": [1, 2], "arg1": "3.5 % butterfat for whole milk", "arg1_index": [3, 8], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "The city was founded by the Western Town Lot Company in 1880 , and originally named Nordland , with the platted streets given Norwegian names .": [{"arg0": "The city", "arg0_index": [0, 1], "pred": "was founded by", "pred_index": [2, 4], "arg1": "the Western Town Lot Company", "arg1_index": [5, 9], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "The city", "arg0_index": [0, 1], "pred": " originally named", "pred_index": [-2, 14, 15], "arg1": "Nordland", "arg1_index": [16, 16], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Reptiles identified during surveys include marbled geckos on both island groups while the following are limited to the main island in the Northern group - four-toed earless skink , bull skinks and western brown snakes .": [{"arg0": "Reptiles identified during surveys", "arg0_index": [0, 3], "pred": "include", "pred_index": [4, 4], "arg1": "marbled geckos on both island groups", "arg1_index": [5, 10], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "the following", "arg0_index": [12, 13], "pred": "are limited to", "pred_index": [14, 16], "arg1": "the main island", "arg1_index": [17, 19], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "But although the golden share has been waived , a hostile bidder for Jaguar would still have to alter the British concern 's articles of association which ban shareholdings of more than 15 % .": [{"arg0": "the golden share", "arg0_index": [2, 4], "pred": "has been waived", "pred_index": [5, 7], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "a hostile bidder for Jaguar", "arg0_index": [9, 13], "pred": "would still have to alter", "pred_index": [14, 18], "arg1": "the British concern 's articles of association", "arg1_index": [19, 25], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "the British concern 's articles of association", "arg0_index": [19, 25], "pred": "ban", "pred_index": [27, 27], "arg1": "shareholdings of more than 15 %", "arg1_index": [28, 33], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Only when one is ascending -- or in our case descending a tad trop rapidement -- does one feel , well , airborne in a picnic basket .": [{"arg0": "one", "arg0_index": [17, 17], "pred": "feel", "pred_index": [18, 18], "arg1": "airborne", "arg1_index": [22, 22], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "one", "arg0_index": [2, 2], "pred": "is ascending", "pred_index": [3, 4], "arg1": "a tad", "arg1_index": [11, 12], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "one", "arg0_index": [2, 2], "pred": "descending", "pred_index": [10, 10], "arg1": "a tad", "arg1_index": [11, 12], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "The prices of most corn , soybean and wheat futures contracts dropped slightly as farmers in the Midwest continued to rebuild stockpiles that were depleted by the 1988 drought .": [{"arg0": "The prices of most corn , soybean and wheat futures contracts", "arg0_index": [0, 10], "pred": "dropped slightly", "pred_index": [11, 12], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "farmers in the Midwest", "arg0_index": [14, 17], "pred": "continued to rebuild", "pred_index": [18, 20], "arg1": "stockpiles that were depleted by the 1988 drought", "arg1_index": [21, 28], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "stockpiles", "arg0_index": [21, 21], "pred": "were depleted by", "pred_index": [23, 25], "arg1": "the 1988 drought", "arg1_index": [26, 28], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "As a result , he said he will examine the Marcos documents sought by the prosecutors to determine whether turning over the filings is self - incrimination .": [{"arg0": "he", "arg0_index": [4, 4], "pred": "said", "pred_index": [5, 5], "arg1": "he will examine the Marcos documents sought by the prosecutors to determine whether turning over the filings is self - incrimination", "arg1_index": [6, 26], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "he", "arg0_index": [6, 6], "pred": "will examine", "pred_index": [7, 8], "arg1": "the Marcos documents sought by the prosecutors", "arg1_index": [9, 15], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Marcos documents", "arg0_index": [10, 11], "pred": " sought by", "pred_index": [-2, 12, 13], "arg1": "the prosecutors", "arg1_index": [14, 15], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "he will examine the Marcos documents sought by the prosecutors", "arg0_index": [6, 15], "pred": "determine", "pred_index": [17, 17], "arg1": "whether turning over the filings is self - incrimination", "arg1_index": [18, 26], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "turning over the filings", "arg0_index": [19, 22], "pred": "is", "pred_index": [23, 23], "arg1": "self - incrimination", "arg1_index": [24, 26], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "", "arg0_index": [], "pred": "turning over", "pred_index": [19, 20], "arg1": "the filings", "arg1_index": [21, 22], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "The two leaders are expected to discuss changes sweeping the East bloc as well as human - rights issues , regional disputes and economic cooperation .": [{"arg0": "The two leaders", "arg0_index": [0, 2], "pred": "are expected to discuss", "pred_index": [3, 6], "arg1": "changes sweeping the East bloc", "arg1_index": [7, 11], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "The second was named after former US President George H. W. Bush stayed aboard in November 1995 .": [{"arg0": "The second", "arg0_index": [0, 1], "pred": "was named after", "pred_index": [2, 4], "arg1": "former US President George H. W. Bush stayed aboard in November 1995", "arg1_index": [5, 16], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "George H. W. Bush", "arg0_index": [8, 11], "pred": "", "pred_index": [-1, -1], "arg1": "former US President", "arg1_index": [5, 7], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "George H. W. Bush", "arg0_index": [8, 11], "pred": "stayed aboard", "pred_index": [12, 13], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Much of the station remains in the disused subway but there is no public access .": [{"arg0": "Much of the station", "arg0_index": [0, 3], "pred": "remains in", "pred_index": [4, 5], "arg1": "the disused subway", "arg1_index": [6, 8], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "there", "arg0_index": [10, 10], "pred": "is", "pred_index": [11, 11], "arg1": "no public access", "arg1_index": [12, 14], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "The last time IBM tapped the corporate debt market was in April 1988 , when it offered $ 500 million of debt securities .": [{"arg0": "The last time IBM tapped the corporate debt market", "arg0_index": [0, 8], "pred": "was in", "pred_index": [9, 10], "arg1": "April 1988", "arg1_index": [11, 12], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "IBM", "arg0_index": [3, 3], "pred": "tapped", "pred_index": [4, 4], "arg1": "the corporate debt market", "arg1_index": [5, 8], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "it", "arg0_index": [15, 15], "pred": "offered", "pred_index": [16, 16], "arg1": "$ 500 million of debt securities", "arg1_index": [17, 22], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Second , the dollar is showing persistent strength despite a slowdown in the U.S. economy shown by economic indicators .": [{"arg0": "the dollar", "arg0_index": [2, 3], "pred": "is showing", "pred_index": [4, 5], "arg1": "persistent strength", "arg1_index": [6, 7], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "a slowdown in the U.S. economy", "arg0_index": [9, 14], "pred": " shown by", "pred_index": [-2, 15, 16], "arg1": "economic indicators", "arg1_index": [17, 18], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Combined with appropriate match pellets these rifles produce a consistent 10 ring performance , so a non-maximal result during the initial phase can be attributed to the participant .": [{"arg0": "these rifles", "arg0_index": [5, 6], "pred": " Combined with", "pred_index": [-2, 0, 1], "arg1": "appropriate match pellets", "arg1_index": [2, 4], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "these rifles", "arg0_index": [5, 6], "pred": "produce", "pred_index": [7, 7], "arg1": "a consistent 10 ring performance", "arg1_index": [8, 12], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "a non-maximal result", "arg0_index": [15, 17], "pred": "can be attributed to", "pred_index": [22, 25], "arg1": "the participant", "arg1_index": [26, 27], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Due to the transmitter location being based in Tyrone and a smaller signal wattage , it was barely hearable in the northern portions of Atlanta beyond the downtown area or even the northern reaches of Fulton or DeKalb Counties , as it was a rimshot to the southwest of the city .": [{"arg0": "the transmitter location", "arg0_index": [2, 4], "pred": "being based in", "pred_index": [5, 7], "arg1": "Tyrone", "arg1_index": [8, 8], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "it", "arg0_index": [15, 15], "pred": "was", "pred_index": [16, 16], "arg1": "barely hearable", "arg1_index": [17, 18], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "it", "arg0_index": [41, 41], "pred": "was", "pred_index": [42, 42], "arg1": "a rimshot to the southwest of the city", "arg1_index": [43, 50], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "As part of several efforts to have the Gypsy Horse recognized as a breed outside the Romanichal community , a more descriptive name was sought for it , starting in the 1990s .": [{"arg0": "a more descriptive name", "arg0_index": [19, 22], "pred": "was sought for", "pred_index": [23, 25], "arg1": "it", "arg1_index": [26, 26], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "a more descriptive name was sought for it", "arg0_index": [19, 26], "pred": "starting in", "pred_index": [28, 29], "arg1": "the 1990s", "arg1_index": [30, 31], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Gypsy Horse", "arg0_index": [8, 9], "pred": " recognized as", "pred_index": [-2, 10, 11], "arg1": "a breed", "arg1_index": [12, 13], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "A cooling center is a temporary air-conditioned public space set up by local authorities to deal with the health effects of a heat wave .": [{"arg0": "A cooling center", "arg0_index": [0, 2], "pred": "is", "pred_index": [3, 3], "arg1": "a temporary air-conditioned public space", "arg1_index": [4, 8], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "a temporary air-conditioned public space", "arg0_index": [4, 8], "pred": " set up by", "pred_index": [-2, 9, 11], "arg1": "local authorities", "arg1_index": [12, 13], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "a temporary air-conditioned public space", "arg0_index": [4, 8], "pred": "deal with", "pred_index": [15, 16], "arg1": "the health effects of a heat wave", "arg1_index": [17, 23], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "The race is in mixed eights , and usually held in late February / early March .": [{"arg0": "The race", "arg0_index": [0, 1], "pred": "is in", "pred_index": [2, 3], "arg1": "mixed eights", "arg1_index": [4, 5], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "The race", "arg0_index": [0, 1], "pred": "usually held in", "pred_index": [8, 10], "arg1": "late February / early March", "arg1_index": [11, 15], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "The Main Street Tunnel , located in Welland , Ontario , Canada , is an underwater tunnel , carrying Niagara Road 27 and the unsigned designation of Highway 7146 under the Welland Canal .": [{"arg0": "The Main Street Tunnel", "arg0_index": [0, 3], "pred": " located in", "pred_index": [-2, 5, 6], "arg1": "Welland , Ontario , Canada", "arg1_index": [7, 11], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "The Main Street Tunnel", "arg0_index": [0, 3], "pred": "is", "pred_index": [13, 13], "arg1": "an underwater tunnel", "arg1_index": [14, 16], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "The Main Street Tunnel", "arg0_index": [0, 3], "pred": "carrying", "pred_index": [18, 18], "arg1": "Niagara Road 27 and the unsigned designation of Highway 7146 under the Welland Canal", "arg1_index": [19, 32], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "According to Hofmann , while still a teenage coin collector , he forged a rare mint mark on a dime and was told by an organization of coin collectors that it was genuine .": [{"arg0": "he", "arg0_index": [11, 11], "pred": "forged", "pred_index": [12, 12], "arg1": "a rare mint mark", "arg1_index": [13, 16], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "he", "arg0_index": [11, 11], "pred": "was told by", "pred_index": [21, 23], "arg1": "an organization of coin collectors", "arg1_index": [24, 28], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "it", "arg0_index": [30, 30], "pred": "was", "pred_index": [31, 31], "arg1": "genuine", "arg1_index": [32, 32], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "The price was n't disclosed but one analyst estimated that it was $ 150 million .": [{"arg0": "The price", "arg0_index": [0, 1], "pred": "was n't disclosed", "pred_index": [2, 4], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "one analyst", "arg0_index": [6, 7], "pred": "estimated", "pred_index": [8, 8], "arg1": "that it was $ 150 million", "arg1_index": [9, 14], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "it", "arg0_index": [10, 10], "pred": "was", "pred_index": [11, 11], "arg1": "$ 150 million", "arg1_index": [12, 14], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Both reflect the dismissal of lower - level and shorter - tenure executives .": [{"arg0": "Both", "arg0_index": [0, 0], "pred": "reflect", "pred_index": [1, 1], "arg1": "the dismissal of lower - level and shorter - tenure executives", "arg1_index": [2, 12], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "U.S. makers have under 10 % share , compared with half the market in Europe and 80 % at home .": [{"arg0": "U.S. makers", "arg0_index": [0, 1], "pred": "have", "pred_index": [2, 2], "arg1": "under 10 % share", "arg1_index": [3, 6], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "U.S. makers have under 10 % share", "arg0_index": [0, 6], "pred": "compared with", "pred_index": [8, 9], "arg1": "half the market in Europe and 80 % at home", "arg1_index": [10, 19], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "The establishment of a museum had first been planned in 1821 by the Philosophical Society of Australasia , and although specimens were collected , the Society folded in 1822 .": [{"arg0": "The establishment of a museum", "arg0_index": [0, 4], "pred": "had first been planned", "pred_index": [5, 8], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "specimens", "arg0_index": [20, 20], "pred": "were", "pred_index": [21, 21], "arg1": "collected", "arg1_index": [22, 22], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "the Society", "arg0_index": [24, 25], "pred": "folded in", "pred_index": [26, 27], "arg1": "1822", "arg1_index": [28, 28], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "In Japan , those functions account for only about a third of the software market .": [{"arg0": "those functions", "arg0_index": [3, 4], "pred": "account for", "pred_index": [5, 6], "arg1": "only about a third of the software market", "arg1_index": [7, 14], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "( Separately , the Senate last week passed a bill permitting execution of terrorists who kill Americans abroad . )": [{"arg0": "the Senate", "arg0_index": [3, 4], "pred": "passed", "pred_index": [7, 7], "arg1": "a bill", "arg1_index": [8, 9], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "a bill", "arg0_index": [8, 9], "pred": "permitting", "pred_index": [10, 10], "arg1": "execution of terrorists who kill Americans abroad", "arg1_index": [11, 17], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "terrorists", "arg0_index": [13, 13], "pred": "kill", "pred_index": [15, 15], "arg1": "Americans abroad", "arg1_index": [16, 17], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "The video was the first ever to feature the use of dialogue .": [{"arg0": "The video", "arg0_index": [0, 1], "pred": "was", "pred_index": [2, 2], "arg1": "the first ever", "arg1_index": [3, 5], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "The video", "arg0_index": [0, 1], "pred": "feature", "pred_index": [7, 7], "arg1": "the use of dialogue", "arg1_index": [8, 11], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Each time Cluemaster escapes or starts some new plan , Stephanie dons her costume again .": [{"arg0": "Stephanie", "arg0_index": [10, 10], "pred": "dons", "pred_index": [11, 11], "arg1": "her costume", "arg1_index": [12, 13], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Cluemaster", "arg0_index": [2, 2], "pred": "escapes", "pred_index": [3, 3], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Cluemaster", "arg0_index": [2, 2], "pred": "starts", "pred_index": [5, 5], "arg1": "some new plan", "arg1_index": [6, 8], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "The Second Section index , which fell 36.87 points Friday , was down 21.44 points , or 0.59 % , to close at 3636.06 .": [{"arg0": "The Second Section index", "arg0_index": [0, 3], "pred": "fell", "pred_index": [6, 6], "arg1": "36.87 points", "arg1_index": [7, 8], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "The Second Section index", "arg0_index": [0, 3], "pred": "was down", "pred_index": [11, 12], "arg1": "21.44 points , or 0.59 %", "arg1_index": [13, 18], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "The Second Section index", "arg0_index": [0, 3], "pred": "close at", "pred_index": [21, 22], "arg1": "3636.06", "arg1_index": [23, 23], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "The forest - products concern currently has about 38 million shares outstanding .": [{"arg0": "The forest - products concern", "arg0_index": [0, 4], "pred": "has", "pred_index": [6, 6], "arg1": "about 38 million shares outstanding", "arg1_index": [7, 11], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "At one point , Ballard is nearly possessed , but resists when she is given a drug and discovers that the spirits are attacking them as they believe that the humans are invaders and plan to exterminate the humans on Mars .": [{"arg0": "Ballard", "arg0_index": [4, 4], "pred": "is", "pred_index": [5, 5], "arg1": "nearly possessed", "arg1_index": [6, 7], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Ballard", "arg0_index": [4, 4], "pred": "resists", "pred_index": [10, 10], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "she", "arg0_index": [12, 12], "pred": "is given", "pred_index": [13, 14], "arg1": "a drug", "arg1_index": [15, 16], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "she", "arg0_index": [12, 12], "pred": "discovers", "pred_index": [18, 18], "arg1": "that the spirits are attacking them as they believe that the humans are invaders and plan to exterminate the humans on Mars", "arg1_index": [19, 40], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "the spirits", "arg0_index": [20, 21], "pred": "are attacking", "pred_index": [22, 23], "arg1": "them", "arg1_index": [24, 24], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "they", "arg0_index": [26, 26], "pred": "believe", "pred_index": [27, 27], "arg1": "that the humans are invaders", "arg1_index": [28, 32], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "the humans", "arg0_index": [29, 30], "pred": "are", "pred_index": [31, 31], "arg1": "invaders", "arg1_index": [32, 32], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "they", "arg0_index": [26, 26], "pred": "plan to exterminate", "pred_index": [34, 36], "arg1": "the humans on Mars", "arg1_index": [37, 40], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "It is not really passable , and must be done on foot if attempted .": [{"arg0": "It", "arg0_index": [0, 0], "pred": "is not", "pred_index": [1, 2], "arg1": "really passable", "arg1_index": [3, 4], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "It", "arg0_index": [0, 0], "pred": "must be done", "pred_index": [7, 9], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Coca - Cola Co. , aiming to boost soft - drink volume in Singapore , said it is discussing a joint venture with Fraser & Neave Ltd. , its bottling franchisee in that country .": [{"arg0": "Coca - Cola Co.", "arg0_index": [0, 3], "pred": "aiming to boost", "pred_index": [5, 7], "arg1": "soft - drink volume", "arg1_index": [8, 11], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Coca - Cola Co.", "arg0_index": [0, 3], "pred": "said", "pred_index": [15, 15], "arg1": "it is discussing a joint venture with Fraser & Neave Ltd. , its bottling franchisee in that country", "arg1_index": [16, 33], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "it", "arg0_index": [16, 16], "pred": "is discussing", "pred_index": [17, 18], "arg1": "a joint venture", "arg1_index": [19, 21], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Fraser & Neave Ltd.", "arg0_index": [23, 26], "pred": "", "pred_index": [-1, -1], "arg1": "its bottling franchisee in that country", "arg1_index": [28, 33], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Hoechst 33342 and 33258 are quenched by Bromodeoxyuridine , which is commonly used to detect dividing cells .": [{"arg0": "Hoechst 33342 and 33258", "arg0_index": [0, 3], "pred": "are quenched by", "pred_index": [4, 6], "arg1": "Bromodeoxyuridine", "arg1_index": [7, 7], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Bromodeoxyuridine", "arg0_index": [7, 7], "pred": "is commonly used to detect", "pred_index": [10, 14], "arg1": "dividing cells", "arg1_index": [15, 16], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "JAL introduced jet service on the Fukuoka-Tokyo route in 1961 .": [{"arg0": "JAL", "arg0_index": [0, 0], "pred": "introduced", "pred_index": [1, 1], "arg1": "jet service", "arg1_index": [2, 3], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Warner Communications Inc. , which is being acquired by Time Warner , has filed a $ 1 billion breach - of - contract suit against Sony and the two producers .": [{"arg0": "Warner Communications Inc.", "arg0_index": [0, 2], "pred": "is being acquired by", "pred_index": [5, 8], "arg1": "Time Warner", "arg1_index": [9, 10], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Warner Communications Inc.", "arg0_index": [0, 2], "pred": "has filed", "pred_index": [12, 13], "arg1": "a $ 1 billion breach - of - contract suit", "arg1_index": [14, 23], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "From the start of the first semester of 2010 , the University banned smoking on any of its property , including inside and outside buildings in areas that were once designated as smoking areas .": [{"arg0": "the University", "arg0_index": [10, 11], "pred": "banned", "pred_index": [12, 12], "arg1": "smoking", "arg1_index": [13, 13], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "its property", "arg0_index": [17, 18], "pred": "including", "pred_index": [20, 20], "arg1": "inside and outside buildings in areas that were once designated as smoking areas", "arg1_index": [21, 33], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "areas", "arg0_index": [26, 26], "pred": "were once designated as", "pred_index": [28, 31], "arg1": "smoking areas", "arg1_index": [32, 33], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "The restrictions against eating meat and drinking wine , besides reducing a person 's pleasure , recall the cessation of the `` Korban Tamid '' and the `` Nesach Hayayin '' on the Temple Altar with the destruction of the Temple .": [{"arg0": "The restrictions against eating meat and drinking wine", "arg0_index": [0, 7], "pred": "reducing", "pred_index": [10, 10], "arg1": "a person 's pleasure", "arg1_index": [11, 14], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "The restrictions against eating meat and drinking wine", "arg0_index": [0, 7], "pred": "recall", "pred_index": [16, 16], "arg1": "the cessation of the `` Korban Tamid '' and the `` Nesach Hayayin ''", "arg1_index": [17, 30], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "A common name , logo , and programming schedule followed in 1982 , with the establishment of the `` TV8 '' network between the three stations , changed to the `` Southern Cross Network '' seven years later .": [{"arg0": "A common name , logo , and programming schedule followed in 1982", "arg0_index": [0, 11], "pred": "changed to", "pred_index": [27, 28], "arg1": "the `` Southern Cross Network ''", "arg1_index": [29, 34], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "A common name , logo , and programming schedule", "arg0_index": [0, 8], "pred": "followed in", "pred_index": [9, 10], "arg1": "1982", "arg1_index": [11, 11], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "With no assigned task , the Cosmos expressed concern for what Battra might do .": [{"arg0": "the Cosmos", "arg0_index": [5, 6], "pred": "expressed", "pred_index": [7, 7], "arg1": "concern", "arg1_index": [8, 8], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Battra", "arg0_index": [11, 11], "pred": "might do", "pred_index": [12, 13], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "A San Francisco lawyer , Mr. Panelli rowed religiously when he first got the machine , but , he complains , it left grease marks on his carpet , `` and it was boring .": [{"arg0": "Mr. Panelli", "arg0_index": [5, 6], "pred": "", "pred_index": [-1, -1], "arg1": "A San Francisco lawyer", "arg1_index": [0, 3], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Mr. Panelli", "arg0_index": [5, 6], "pred": "rowed religiously", "pred_index": [7, 8], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "he", "arg0_index": [10, 10], "pred": "got", "pred_index": [12, 12], "arg1": "the machine", "arg1_index": [13, 14], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "he", "arg0_index": [18, 18], "pred": "complains", "pred_index": [19, 19], "arg1": "it left grease marks on his carpet , `` and it was boring", "arg1_index": [21, 33], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "it", "arg0_index": [21, 21], "pred": "left", "pred_index": [22, 22], "arg1": "grease marks", "arg1_index": [23, 24], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "it", "arg0_index": [31, 31], "pred": "was", "pred_index": [32, 32], "arg1": "boring", "arg1_index": [33, 33], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "To assist the pope in the many calls for his help and charity , Pascalina organized and led the `` Magazzino '' , a private papal charity office which employed up to 40 helpers and continued until 1959 .": [{"arg0": "Pascalina", "arg0_index": [14, 14], "pred": "organized", "pred_index": [15, 15], "arg1": "the `` Magazzino ''", "arg1_index": [18, 21], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Pascalina", "arg0_index": [14, 14], "pred": "led", "pred_index": [17, 17], "arg1": "the `` Magazzino ''", "arg1_index": [18, 21], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "`` Magazzino ''", "arg0_index": [19, 21], "pred": "assist", "pred_index": [1, 1], "arg1": "the pope in the many calls for his help and charity", "arg1_index": [2, 12], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "the `` Magazzino ''", "arg0_index": [18, 21], "pred": "", "pred_index": [-1, -1], "arg1": "a private papal charity office which employed up to 40 helpers and continued until 1959", "arg1_index": [23, 37], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "a private papal charity office", "arg0_index": [23, 27], "pred": "employed", "pred_index": [29, 29], "arg1": "up to 40 helpers", "arg1_index": [30, 33], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "a private papal charity office", "arg0_index": [23, 27], "pred": "continued", "pred_index": [35, 35], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Senate Appropriations Committee Chairman Robert Byrd ( D. , W.Va . ) strongly resisted deeper cuts sought by the House .": [{"arg0": "Robert Byrd ( D. , W.Va . )", "arg0_index": [4, 11], "pred": "", "pred_index": [-1, -1], "arg1": "Senate Appropriations Committee Chairman", "arg1_index": [0, 3], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Robert Byrd ( D. , W.Va . )", "arg0_index": [4, 11], "pred": "strongly resisted", "pred_index": [12, 13], "arg1": "deeper cuts sought by the House", "arg1_index": [14, 19], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "deeper cuts", "arg0_index": [14, 15], "pred": " sought by", "pred_index": [-2, 16, 17], "arg1": "the House", "arg1_index": [18, 19], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "`` I ca n't believe they ( GM ) will let Ford have a free run , '' said Stephen Reitman , a European auto industry analyst at UBS - Phillips & Drew .": [{"arg0": "Stephen Reitman", "arg0_index": [19, 20], "pred": "", "pred_index": [-1, -1], "arg1": "a European auto industry analyst at UBS - Phillips & Drew", "arg1_index": [22, 32], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Stephen Reitman", "arg0_index": [19, 20], "pred": "said", "pred_index": [18, 18], "arg1": "`` I ca n't believe they ( GM ) will let Ford have a free run , ''", "arg1_index": [0, 17], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Stephen Reitman", "arg0_index": [19, 20], "pred": "ca n't believe", "pred_index": [2, 4], "arg1": "they ( GM ) will let Ford have a free run", "arg1_index": [5, 15], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "they ( GM )", "arg0_index": [5, 8], "pred": "will let", "pred_index": [9, 10], "arg1": "Ford", "arg1_index": [11, 11], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Ford", "arg0_index": [11, 11], "pred": "have", "pred_index": [12, 12], "arg1": "a free run", "arg1_index": [13, 15], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "The SAS killed a total of 14 Provisional Irish Republican Army and Irish National Liberation Army members at these locations .": [{"arg0": "The SAS", "arg0_index": [0, 1], "pred": "killed", "pred_index": [2, 2], "arg1": "a total of 14 Provisional Irish Republican Army and Irish National Liberation Army members", "arg1_index": [3, 16], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "The rapids at the head of the South Fork were removed in 1908 .": [{"arg0": "The rapids at the head of the South Fork", "arg0_index": [0, 8], "pred": "were removed in", "pred_index": [9, 11], "arg1": "1908", "arg1_index": [12, 12], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "The fitness craze itself has gone soft , the survey found .": [{"arg0": "the survey", "arg0_index": [8, 9], "pred": "found", "pred_index": [10, 10], "arg1": "The fitness craze itself has gone soft", "arg1_index": [0, 6], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "The fitness craze itself", "arg0_index": [0, 3], "pred": "has gone", "pred_index": [4, 5], "arg1": "soft", "arg1_index": [6, 6], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Hilf al-Fudul was a 7th-century alliance created by various Meccans , including the Islamic prophet Muhammad , to establish fair commercial dealing .": [{"arg0": "Hilf al-Fudul", "arg0_index": [0, 1], "pred": "was", "pred_index": [2, 2], "arg1": "a 7th-century alliance created by various Meccans , including the Islamic prophet Muhammad", "arg1_index": [3, 15], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Hilf al-Fudul", "arg0_index": [0, 1], "pred": " created by", "pred_index": [-2, 6, 7], "arg1": "various Meccans , including the Islamic prophet Muhammad", "arg1_index": [8, 15], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "various Meccans", "arg0_index": [8, 9], "pred": "including", "pred_index": [11, 11], "arg1": "the Islamic prophet Muhammad", "arg1_index": [12, 15], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Hilf al-Fudul", "arg0_index": [0, 1], "pred": "establish", "pred_index": [18, 18], "arg1": "fair commercial dealing", "arg1_index": [19, 21], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "A year earlier UniFirst earned $ 2.4 million , or 24 cents a share adjusted for the split .": [{"arg0": "UniFirst", "arg0_index": [3, 3], "pred": "earned", "pred_index": [4, 4], "arg1": "$ 2.4 million , or 24 cents a share adjusted for the split", "arg1_index": [5, 17], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Osamu Nagayama , deputy president of Chugai , which spends about 15 % of its sales on research and development , was unable to pinpoint how much money Chugai would pump into Gen - Probe .": [{"arg0": "Osamu Nagayama", "arg0_index": [0, 1], "pred": "", "pred_index": [-1, -1], "arg1": "deputy president of Chugai", "arg1_index": [3, 6], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Osamu Nagayama", "arg0_index": [0, 1], "pred": "was unable to pinpoint", "pred_index": [21, 24], "arg1": "how much money Chugai would pump into Gen - Probe", "arg1_index": [25, 34], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Chugai", "arg0_index": [6, 6], "pred": "spends", "pred_index": [9, 9], "arg1": "about 15 % of its sales", "arg1_index": [10, 15], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Chugai", "arg0_index": [28, 28], "pred": "would pump", "pred_index": [29, 30], "arg1": "how much money", "arg1_index": [25, 27], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "US 258 intersects NC 222 in Fountain before entering Edgecombe County .": [{"arg0": "US 258", "arg0_index": [0, 1], "pred": "intersects", "pred_index": [2, 2], "arg1": "NC 222", "arg1_index": [3, 4], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "US 258", "arg0_index": [0, 1], "pred": "entering", "pred_index": [8, 8], "arg1": "Edgecombe County", "arg1_index": [9, 10], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "He also unfortunately illustrated this intricate , jazzy tapestry with Mr. Pearson 's images , this time of geometric or repeating objects , in a kitschy mirroring of the musical structure that was thoroughly distracting from Mr. Reich 's piece and Mr. Stoltzman 's elegant execution of it .": [{"arg0": "He", "arg0_index": [0, 0], "pred": "unfortunately illustrated", "pred_index": [2, 3], "arg1": "this intricate , jazzy tapestry with Mr. Pearson 's images", "arg1_index": [4, 13], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "musical structure", "arg0_index": [29, 30], "pred": "was thoroughly distracting from", "pred_index": [32, 35], "arg1": "Mr. Reich 's piece and Mr. Stoltzman 's elegant execution of it", "arg1_index": [36, 47], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "When Naguib began showing signs of independence from Nasser by distancing himself from the RCC 's land reform decrees and drawing closer to Egypt 's established political forces , namely the Wafd and the Brotherhood , Nasser resolved to depose him .": [{"arg0": "Nasser", "arg0_index": [36, 36], "pred": "resolved to depose", "pred_index": [37, 39], "arg1": "him", "arg1_index": [40, 40], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Naguib", "arg0_index": [1, 1], "pred": "began showing", "pred_index": [2, 3], "arg1": "signs of independence from Nasser", "arg1_index": [4, 8], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Naguib", "arg0_index": [1, 1], "pred": "distancing", "pred_index": [10, 10], "arg1": "himself", "arg1_index": [11, 11], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Naguib", "arg0_index": [1, 1], "pred": "drawing closer to", "pred_index": [20, 22], "arg1": "Egypt 's established political forces", "arg1_index": [23, 27], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Egypt 's established political forces", "arg0_index": [23, 27], "pred": "", "pred_index": [-1, -1], "arg1": "the Wafd and the Brotherhood", "arg1_index": [30, 34], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "In June , Nasser took control of the interior ministry post from Naguib loyalist Sulayman Hafez , and pressured Naguib to conclude the abolition of the monarchy .": [{"arg0": "Nasser", "arg0_index": [3, 3], "pred": "took control of", "pred_index": [4, 6], "arg1": "the interior ministry post", "arg1_index": [7, 10], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Nasser", "arg0_index": [3, 3], "pred": "pressured", "pred_index": [18, 18], "arg1": "Naguib", "arg1_index": [19, 19], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Naguib", "arg0_index": [19, 19], "pred": "conclude", "pred_index": [21, 21], "arg1": "the abolition of the monarchy", "arg1_index": [22, 26], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "`` Greenfish '' was launched by the Electric Boat Co. , Groton , Conn. , 21 December 1945 ; sponsored by Mrs. Thomas J. Doyle ; and commissioned 7 June 1946 , Comdr. R. M. Metcalf commanding .": [{"arg0": "`` Greenfish ''", "arg0_index": [0, 2], "pred": "was launched by", "pred_index": [3, 5], "arg1": "the Electric Boat Co. , Groton , Conn.", "arg1_index": [6, 13], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "`` Greenfish ''", "arg0_index": [0, 2], "pred": " sponsored by", "pred_index": [-2, 19, 20], "arg1": "Mrs. Thomas J. Doyle", "arg1_index": [21, 24], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "`` Greenfish ''", "arg0_index": [0, 2], "pred": "commissioned", "pred_index": [27, 27], "arg1": "Comdr. R. M. Metcalf", "arg1_index": [32, 35], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Comdr. R. M. Metcalf", "arg0_index": [32, 35], "pred": "commanding", "pred_index": [36, 36], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Panhandle Eastern Corp. said it applied , on behalf of two of its subsidiaries , to the Federal Energy Regulatory Commission for permission to build a 352 - mile , $ 273 million pipeline system from Pittsburg County , Okla. , to Independence , Miss .": [{"arg0": "Panhandle Eastern Corp.", "arg0_index": [0, 2], "pred": "said", "pred_index": [3, 3], "arg1": "it applied , on behalf of two of its subsidiaries , to the Federal Energy Regulatory Commission for permission to build a 352 - mile , $ 273 million pipeline system from Pittsburg County , Okla. , to Independence , Miss", "arg1_index": [4, 44], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "it", "arg0_index": [4, 4], "pred": "applied", "pred_index": [5, 5], "arg1": "to the Federal Energy Regulatory Commission", "arg1_index": [15, 20], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Panhandle Eastern Corp.", "arg0_index": [0, 2], "pred": "build", "pred_index": [24, 24], "arg1": "a 352 - mile , $ 273 million pipeline system", "arg1_index": [25, 34], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Gavin Hood is a South African filmmaker , screenwriter , producer and actor , best known for writing and directing the Academy Award-winning Foreign Language Film `` Tsotsi '' .": [{"arg0": "Gavin Hood", "arg0_index": [0, 1], "pred": "is", "pred_index": [2, 2], "arg1": "a South African filmmaker , screenwriter , producer and actor", "arg1_index": [3, 12], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Gavin Hood", "arg0_index": [0, 1], "pred": " best known for", "pred_index": [-2, 14, 16], "arg1": "writing and directing the Academy Award-winning Foreign Language Film `` Tsotsi ''", "arg1_index": [17, 28], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Gavin Hood", "arg0_index": [0, 1], "pred": "writing", "pred_index": [17, 17], "arg1": "`` Tsotsi ''", "arg1_index": [26, 28], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Gavin Hood", "arg0_index": [0, 1], "pred": "directing", "pred_index": [19, 19], "arg1": "`` Tsotsi ''", "arg1_index": [26, 28], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "`` Tsotsi ''", "arg0_index": [26, 28], "pred": "", "pred_index": [-1, -1], "arg1": "the Academy Award-winning Foreign Language Film", "arg1_index": [20, 25], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Swinburne moves in his writing program from the philosophical to the theological , building his case rigorously .": [{"arg0": "Swinburne", "arg0_index": [0, 0], "pred": "moves in", "pred_index": [1, 2], "arg1": "his writing program", "arg1_index": [3, 5], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Swinburne", "arg0_index": [0, 0], "pred": "building", "pred_index": [13, 13], "arg1": "his case", "arg1_index": [14, 15], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "This can be further generalized by defining a Q-valued Euler characteristic for certain finite categories , a notion compatible with the Euler characteristics of graphs , orbifolds and posets mentioned above .": [{"arg0": "This", "arg0_index": [0, 0], "pred": "can be further generalized", "pred_index": [1, 4], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "", "arg0_index": [], "pred": "defining", "pred_index": [6, 6], "arg1": "a Q-valued Euler characteristic", "arg1_index": [7, 10], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "a Q-valued Euler characteristic for certain finite categories", "arg0_index": [7, 14], "pred": "", "pred_index": [-1, -1], "arg1": "a notion compatible with the Euler characteristics of graphs , orbifolds and posets mentioned above", "arg1_index": [16, 30], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "The site consists of three subterranean Grotto follies , constructed in the 18th century , split between two areas , one on the western side of the lake , at and one on the eastern side at .": [{"arg0": "The site", "arg0_index": [0, 1], "pred": "consists of", "pred_index": [2, 3], "arg1": "three subterranean Grotto follies", "arg1_index": [4, 7], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "The site", "arg0_index": [0, 1], "pred": " constructed in", "pred_index": [-2, 9, 10], "arg1": "the 18th century", "arg1_index": [11, 13], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "The site", "arg0_index": [0, 1], "pred": "split between", "pred_index": [15, 16], "arg1": "two areas", "arg1_index": [17, 18], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Because Yesler Way marks the boundary between two different plats , the street grid north of Yesler does not line up with the neighborhood 's other streets , so the northern `` border '' of the district zigzags along numerous streets .": [{"arg0": "Yesler Way", "arg0_index": [1, 2], "pred": "marks", "pred_index": [3, 3], "arg1": "the boundary between two different plats", "arg1_index": [4, 9], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "the street grid north of Yesler", "arg0_index": [11, 16], "pred": "does not line up with", "pred_index": [17, 21], "arg1": "the neighborhood 's other streets", "arg1_index": [22, 26], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "the northern `` border '' of the district", "arg0_index": [29, 36], "pred": "zigzags along", "pred_index": [37, 38], "arg1": "numerous streets", "arg1_index": [39, 40], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Historically , Aiseau was a village dedicated to agriculture , logging , but also to the industry .": [{"arg0": "Aiseau", "arg0_index": [2, 2], "pred": "was", "pred_index": [3, 3], "arg1": "a village dedicated to agriculture , logging , but also to the industry", "arg1_index": [4, 16], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Aiseau", "arg0_index": [2, 2], "pred": " dedicated to", "pred_index": [-2, 6, 7], "arg1": "agriculture , logging , but also to the industry", "arg1_index": [8, 16], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "These are visually very similar to part number 2189014-00-211 , with the same AT style plug and chassis , silver label on the reverse bearing the AnyKey moniker , screws holding the keyboard together , macro programming requiring the control key , and lacking the AnyKey inscription on their face .": [{"arg0": "These", "arg0_index": [0, 0], "pred": "are visually very similar to", "pred_index": [1, 5], "arg1": "part number 2189014-00-211", "arg1_index": [6, 8], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "screws", "arg0_index": [29, 29], "pred": "holding", "pred_index": [30, 30], "arg1": "the keyboard", "arg1_index": [31, 32], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "macro programming", "arg0_index": [35, 36], "pred": "requiring", "pred_index": [37, 37], "arg1": "the control key", "arg1_index": [38, 40], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "silver label on the reverse", "arg0_index": [19, 23], "pred": "bearing", "pred_index": [24, 24], "arg1": "the AnyKey moniker", "arg1_index": [25, 27], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "macro programming", "arg0_index": [35, 36], "pred": "lacking", "pred_index": [43, 43], "arg1": "the AnyKey inscription on their face", "arg1_index": [44, 49], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "The surprise announcement came after the IRS broke off negotiations with Mr. Hunt on a settlement of the one - time tycoon 's personal bankruptcy case .": [{"arg0": "The surprise announcement", "arg0_index": [0, 2], "pred": "came", "pred_index": [3, 3], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "the IRS", "arg0_index": [5, 6], "pred": "broke off", "pred_index": [7, 8], "arg1": "negotiations", "arg1_index": [9, 9], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Under the Comanche program , each company built different parts of the aircraft .": [{"arg0": "each company", "arg0_index": [5, 6], "pred": "built", "pred_index": [7, 7], "arg1": "different parts of the aircraft", "arg1_index": [8, 12], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "If the second excitation pulse is sent prematurely before the relaxation is complete , the average magnetization vector still points in a nonparallel direction , giving suboptimal absorption and emission of the pulse .": [{"arg0": "the second excitation pulse", "arg0_index": [1, 4], "pred": "is sent prematurely", "pred_index": [5, 7], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "the relaxation", "arg0_index": [9, 10], "pred": "is complete", "pred_index": [11, 12], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "the average magnetization vector", "arg0_index": [14, 17], "pred": "still points in", "pred_index": [18, 20], "arg1": "a nonparallel direction", "arg1_index": [21, 23], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "the average magnetization vector", "arg0_index": [14, 17], "pred": "giving", "pred_index": [25, 25], "arg1": "suboptimal absorption and emission of the pulse", "arg1_index": [26, 32], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "After 1895 cable hauling ceased and locomotives pulled trains the whole length of the Victoria and Waterloo tunnels .": [{"arg0": "cable hauling", "arg0_index": [2, 3], "pred": "ceased", "pred_index": [4, 4], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "locomotives", "arg0_index": [6, 6], "pred": "pulled", "pred_index": [7, 7], "arg1": "trains", "arg1_index": [8, 8], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "The Soviets complicated the issue by offering to include light tanks , which are as light as 10 tons .": [{"arg0": "The Soviets", "arg0_index": [0, 1], "pred": "complicated", "pred_index": [2, 2], "arg1": "the issue", "arg1_index": [3, 4], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "The Soviets", "arg0_index": [0, 1], "pred": "offering to include", "pred_index": [6, 8], "arg1": "light tanks", "arg1_index": [9, 10], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "light tanks", "arg0_index": [9, 10], "pred": "are as light as", "pred_index": [13, 16], "arg1": "10 tons", "arg1_index": [17, 18], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "The riders climbed off and began walking , shouting protests in general and in particular abuse at the race doctor , Pierre Dumas , whom some demanded should also take a test to see if he 'd been drinking wine or taking aspirin to make his own job easier .": [{"arg0": "The riders", "arg0_index": [0, 1], "pred": "climbed off", "pred_index": [2, 3], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "The riders", "arg0_index": [0, 1], "pred": "began walking", "pred_index": [5, 6], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "The riders", "arg0_index": [0, 1], "pred": "shouting", "pred_index": [8, 8], "arg1": "protests", "arg1_index": [9, 9], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Pierre Dumas", "arg0_index": [21, 22], "pred": "", "pred_index": [-1, -1], "arg1": "the race doctor", "arg1_index": [17, 19], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "some", "arg0_index": [25, 25], "pred": "demanded", "pred_index": [26, 26], "arg1": "Pierre Dumas", "arg1_index": [21, 22], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Pierre Dumas", "arg0_index": [21, 22], "pred": "should also take", "pred_index": [27, 29], "arg1": "a test", "arg1_index": [30, 31], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "some", "arg0_index": [25, 25], "pred": "see", "pred_index": [33, 33], "arg1": "if he 'd been drinking wine or taking aspirin to make his own job easier", "arg1_index": [34, 48], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "he", "arg0_index": [35, 35], "pred": "'d been drinking", "pred_index": [36, 38], "arg1": "wine", "arg1_index": [39, 39], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "he", "arg0_index": [35, 35], "pred": "taking", "pred_index": [41, 41], "arg1": "aspirin", "arg1_index": [42, 42], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "drinking wine or taking aspirin", "arg0_index": [38, 42], "pred": "make", "pred_index": [44, 44], "arg1": "his own job", "arg1_index": [45, 47], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Soviets remain in charge of education programs , a former head of an African military tribunal for executions is in charge of culture , and a hard - line Polish communist in exile directs the human - rights and peace division .": [{"arg0": "Soviets", "arg0_index": [0, 0], "pred": "remain in charge of", "pred_index": [1, 4], "arg1": "education programs", "arg1_index": [5, 6], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "a former head of an African military tribunal for executions", "arg0_index": [8, 17], "pred": "is in charge of", "pred_index": [18, 21], "arg1": "culture", "arg1_index": [22, 22], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "a hard - line Polish communist in exile", "arg0_index": [25, 32], "pred": "directs", "pred_index": [33, 33], "arg1": "the human - rights and peace division", "arg1_index": [34, 40], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "There have been two crashes involving fatalities at the airfield since it was established .": [{"arg0": "There", "arg0_index": [0, 0], "pred": "have been", "pred_index": [1, 2], "arg1": "two crashes involving fatalities", "arg1_index": [3, 6], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "airfield", "arg0_index": [9, 9], "pred": "was established", "pred_index": [12, 13], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "John Stewart and Guy Gardner brought down New Warworld and the Yellow Central Power Battery , which were detonated next to the Anti-Monitor , and contained by a shield created by hundreds of Green Lanterns to contain the explosion ; even this was not enough to kill him .": [{"arg0": "John Stewart and Guy Gardner", "arg0_index": [0, 4], "pred": "brought down", "pred_index": [5, 6], "arg1": "New Warworld and the Yellow Central Power Battery", "arg1_index": [7, 14], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "New Warworld and the Yellow Central Power Battery", "arg0_index": [7, 14], "pred": "were detonated", "pred_index": [17, 18], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "New Warworld and the Yellow Central Power Battery", "arg0_index": [7, 14], "pred": " contained by", "pred_index": [-2, 25, 26], "arg1": "a shield", "arg1_index": [27, 28], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "a shield", "arg0_index": [27, 28], "pred": " created by", "pred_index": [-2, 29, 30], "arg1": "hundreds of Green Lanterns", "arg1_index": [31, 34], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "a shield", "arg0_index": [27, 28], "pred": "contain", "pred_index": [36, 36], "arg1": "the explosion", "arg1_index": [37, 38], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "this", "arg0_index": [41, 41], "pred": "was not enough to kill", "pred_index": [42, 46], "arg1": "him", "arg1_index": [47, 47], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Though Mr. Packer has since sold his stake , Courtaulds is moving to keep its institutional shareholders happy .": [{"arg0": "Mr. Packer", "arg0_index": [1, 2], "pred": "has since sold", "pred_index": [3, 5], "arg1": "his stake", "arg1_index": [6, 7], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Courtaulds", "arg0_index": [9, 9], "pred": "is moving to keep", "pred_index": [10, 13], "arg1": "its institutional shareholders", "arg1_index": [14, 16], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Repeat customers also can purchase luxury items at reduced prices .": [{"arg0": "Repeat customers", "arg0_index": [0, 1], "pred": "can purchase", "pred_index": [3, 4], "arg1": "luxury items", "arg1_index": [5, 6], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "In the first nine months , profit rose 10 % to $ 313.2 million , or $ 3.89 a share , from $ 283.9 million , or $ 3.53 a share .": [{"arg0": "profit", "arg0_index": [6, 6], "pred": "rose", "pred_index": [7, 7], "arg1": "10 %", "arg1_index": [8, 9], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Applying this technique facilitates the connection of the center of the foot with the lower abdomen .": [{"arg0": "Applying this technique", "arg0_index": [0, 2], "pred": "facilitates", "pred_index": [3, 3], "arg1": "the connection of the center of the foot", "arg1_index": [4, 11], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "", "arg0_index": [], "pred": "Applying", "pred_index": [0, 0], "arg1": "this technique", "arg1_index": [1, 2], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "For the record , Jeffrey Kaufman , an attorney for Fireman 's Fund , said he was `` rattled -- both literally and figuratively . ''": [{"arg0": "Jeffrey Kaufman", "arg0_index": [4, 5], "pred": "", "pred_index": [-1, -1], "arg1": "an attorney for Fireman 's Fund", "arg1_index": [7, 12], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Jeffrey Kaufman", "arg0_index": [4, 5], "pred": "said", "pred_index": [14, 14], "arg1": "he was `` rattled -- both literally and figuratively . ''", "arg1_index": [15, 25], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "he", "arg0_index": [15, 15], "pred": "was", "pred_index": [16, 16], "arg1": "`` rattled -- both literally and figuratively . ''", "arg1_index": [17, 25], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "On November 2 , 2005 , Brown ended his contract early and left the federal government .": [{"arg0": "Brown", "arg0_index": [6, 6], "pred": "ended", "pred_index": [7, 7], "arg1": "his contract", "arg1_index": [8, 9], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Brown", "arg0_index": [6, 6], "pred": "left", "pred_index": [12, 12], "arg1": "the federal government", "arg1_index": [13, 15], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "The CRZ was organized by the Nepal and Indian members of the Naxalite movement , in a meeting at Siliguri in the Indian State of West Bengal during August 2001 .": [{"arg0": "The CRZ", "arg0_index": [0, 1], "pred": "was organized by", "pred_index": [2, 4], "arg1": "the Nepal and Indian members of the Naxalite movement", "arg1_index": [5, 13], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "The band also confirmed that the album would be self-released .": [{"arg0": "The band", "arg0_index": [0, 1], "pred": "confirmed", "pred_index": [3, 3], "arg1": "that the album would be self-released", "arg1_index": [4, 9], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "the album", "arg0_index": [5, 6], "pred": "would be", "pred_index": [7, 8], "arg1": "self-released", "arg1_index": [9, 9], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "The dollar drew strength from the stock market 's climb .": [{"arg0": "The dollar", "arg0_index": [0, 1], "pred": "drew strength from", "pred_index": [2, 4], "arg1": "the stock market 's climb", "arg1_index": [5, 9], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "In the 1986 television series `` War and Remembrance '' , Johns took the role of the senior Nazi SS officer Adolf Eichmann .": [{"arg0": "Johns", "arg0_index": [11, 11], "pred": "took the role of", "pred_index": [12, 15], "arg1": "the senior Nazi SS officer Adolf Eichmann", "arg1_index": [16, 22], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Adolf Eichmann", "arg0_index": [21, 22], "pred": "", "pred_index": [-1, -1], "arg1": "the senior Nazi SS officer", "arg1_index": [16, 20], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "It should be noted that these numbers are inclusive of any of the childminders own children .": [{"arg0": "It", "arg0_index": [0, 0], "pred": "should be noted", "pred_index": [1, 3], "arg1": "that these numbers are inclusive of any of the childminders own children", "arg1_index": [4, 15], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "these numbers", "arg0_index": [5, 6], "pred": "are inclusive of", "pred_index": [7, 9], "arg1": "any of the childminders own children", "arg1_index": [10, 15], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Merrill said it continues to believe that `` the causes of excess market volatility are far more complex than any particular computer trading strategy .": [{"arg0": "Merrill", "arg0_index": [0, 0], "pred": "said", "pred_index": [1, 1], "arg1": "it continues to believe that `` the causes of excess market volatility are far more complex than any particular computer trading strategy", "arg1_index": [2, 23], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "it", "arg0_index": [2, 2], "pred": "continues to believe", "pred_index": [3, 5], "arg1": "that `` the causes of excess market volatility are far more complex than any particular computer trading strategy", "arg1_index": [6, 23], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "the causes of excess market volatility", "arg0_index": [8, 13], "pred": "are", "pred_index": [14, 14], "arg1": "far more complex", "arg1_index": [15, 17], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Unruly passengers are often put off here to be taken into custody .": [{"arg0": "Unruly passengers", "arg0_index": [0, 1], "pred": "are often put off", "pred_index": [2, 5], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Unruly passengers", "arg0_index": [0, 1], "pred": "be taken into", "pred_index": [8, 10], "arg1": "custody", "arg1_index": [11, 11], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "The Triple-A Baseball National Championship Game was established in 2006 .": [{"arg0": "The Triple-A Baseball National Championship Game", "arg0_index": [0, 5], "pred": "was established in", "pred_index": [6, 8], "arg1": "2006", "arg1_index": [9, 9], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Sometimes , if you have a headache , you can go out and walk it right off . ''": [{"arg0": "you", "arg0_index": [3, 3], "pred": "have", "pred_index": [4, 4], "arg1": "a headache", "arg1_index": [5, 6], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "you", "arg0_index": [8, 8], "pred": "can go out", "pred_index": [9, 11], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "you", "arg0_index": [8, 8], "pred": "walk", "pred_index": [13, 13], "arg1": "headache", "arg1_index": [6, 6], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "In its first six months , RCPO concluded 858 cases convictions in 88 % of cases .": [{"arg0": "RCPO", "arg0_index": [6, 6], "pred": "concluded", "pred_index": [7, 7], "arg1": "858 cases convictions", "arg1_index": [8, 10], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Most yields on short - term jumbo CDs , those with denominations over $ 90,000 , also moved in the opposite direction of Treasury bill yields .": [{"arg0": "Most yields on short - term jumbo CDs", "arg0_index": [0, 7], "pred": "moved in the opposite direction of", "pred_index": [17, 22], "arg1": "Treasury bill yields", "arg1_index": [23, 25], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "short - term jumbo CDs", "arg0_index": [3, 7], "pred": "", "pred_index": [-1, -1], "arg1": "those with denominations over $ 90,000", "arg1_index": [9, 14], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Sidley will maintain its association with the Hashidate Law Office in Tokyo .": [{"arg0": "Sidley", "arg0_index": [0, 0], "pred": "will maintain", "pred_index": [1, 2], "arg1": "its association", "arg1_index": [3, 4], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Muhammad ibn Abu Bakr was a pious Muslim who supported the Imam of his time , Ali ibn Abi Talib , even though his sister Aisha opposed ` Ali in the battle of Jamal , Ibn Abu Bakr was faithful to his stepfather .": [{"arg0": "Muhammad ibn Abu Bakr", "arg0_index": [0, 3], "pred": "was", "pred_index": [4, 4], "arg1": "a pious Muslim", "arg1_index": [5, 7], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "a pious Muslim", "arg0_index": [5, 7], "pred": "supported", "pred_index": [9, 9], "arg1": "Ali ibn Abi Talib", "arg1_index": [16, 19], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Ali ibn Abi Talib", "arg0_index": [16, 19], "pred": "", "pred_index": [-1, -1], "arg1": "the Imam of his time", "arg1_index": [10, 14], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "his sister", "arg0_index": [23, 24], "pred": "opposed", "pred_index": [26, 26], "arg1": "Ali", "arg1_index": [28, 28], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Ibn Abu Bakr", "arg0_index": [35, 37], "pred": "was faithful to", "pred_index": [38, 40], "arg1": "his stepfather", "arg1_index": [41, 42], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Employers could also pay a subminimum `` training wage '' for 90 days to new workers who are up to 19 years old , and then for another 90 days if the company institutes a specific training program for the newcomers .": [{"arg0": "Employers", "arg0_index": [0, 0], "pred": "could also pay", "pred_index": [1, 3], "arg1": "a subminimum `` training wage ''", "arg1_index": [4, 9], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "new workers", "arg0_index": [14, 15], "pred": "are up to", "pred_index": [17, 19], "arg1": "19 years old", "arg1_index": [20, 22], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Employers", "arg0_index": [0, 0], "pred": "could also pay", "pred_index": [1, 3], "arg1": "a subminimum `` training wage ''", "arg1_index": [4, 9], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "company", "arg0_index": [32, 32], "pred": "institutes", "pred_index": [33, 33], "arg1": "a specific training program", "arg1_index": [34, 37], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "A mid-March 2002 court order to stop printing for three months , was evaded by printing under other titles , such as `` Not That Respublika '' .": [{"arg0": "A mid-March 2002 court order to stop printing for three months", "arg0_index": [0, 10], "pred": "was evaded by", "pred_index": [12, 14], "arg1": "printing under other titles", "arg1_index": [15, 18], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "As early as the 15th century , the French kings sent commissioners to the provinces to inspect on royal and administrative affairs and to take necessary action .": [{"arg0": "the French kings", "arg0_index": [7, 9], "pred": "sent", "pred_index": [10, 10], "arg1": "commissioners", "arg1_index": [11, 11], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "commissioners", "arg0_index": [11, 11], "pred": "inspect on", "pred_index": [16, 17], "arg1": "royal and administrative affairs", "arg1_index": [18, 21], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "commissioners", "arg0_index": [11, 11], "pred": "take", "pred_index": [24, 24], "arg1": "necessary action", "arg1_index": [25, 26], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Additionally , the French Community of Belgium has controversially begun referring to itself exclusively as the ` Wallonia-Brussels Federation ' to emphasize the links between the French Community , Wallonia and Brussels .": [{"arg0": "the French Community of Belgium", "arg0_index": [2, 6], "pred": "has controversially begun referring to", "pred_index": [7, 11], "arg1": "itself", "arg1_index": [12, 12], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "the French Community of Belgium", "arg0_index": [2, 6], "pred": "emphasize", "pred_index": [21, 21], "arg1": "the links between the French Community , Wallonia and Brussels", "arg1_index": [22, 31], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "The River Stour Trust , formed in 1968 , has its headquarters in Sudbury , and a purpose built Visitor Centre located at Cornard Lock .": [{"arg0": "The River Stour Trust", "arg0_index": [0, 3], "pred": "formed in", "pred_index": [5, 6], "arg1": "1968", "arg1_index": [7, 7], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "The River Stour Trust", "arg0_index": [0, 3], "pred": "has", "pred_index": [9, 9], "arg1": "its headquarters", "arg1_index": [10, 11], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "The River Stour Trust", "arg0_index": [0, 3], "pred": "has", "pred_index": [9, 9], "arg1": "a purpose built Visitor Centre located at Cornard Lock", "arg1_index": [16, 24], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Visitor Centre", "arg0_index": [19, 20], "pred": " located at", "pred_index": [-2, 21, 22], "arg1": "Cornard Lock", "arg1_index": [23, 24], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Humana contends that $ 8,000 represents an extreme case and that its regular charge for lithotripsy is $ 4,900 .": [{"arg0": "Humana", "arg0_index": [0, 0], "pred": "contends", "pred_index": [1, 1], "arg1": "that $ 8,000 represents an extreme case and that its regular charge for lithotripsy is $ 4,900", "arg1_index": [2, 18], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "$ 8,000", "arg0_index": [3, 4], "pred": "represents", "pred_index": [5, 5], "arg1": "an extreme case", "arg1_index": [6, 8], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "its regular charge for lithotripsy", "arg0_index": [11, 15], "pred": "is", "pred_index": [16, 16], "arg1": "$ 4,900", "arg1_index": [17, 18], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "After leaving `` Hex '' , Cole went on to appear as Blanche Ingram in the critically acclaimed `` Jane Eyre '' TV serial for the BBC and guest starred as Lilith in the `` Doctor Who '' episode `` The Shakespeare Code '' .": [{"arg0": "Cole", "arg0_index": [6, 6], "pred": "went on to appear as", "pred_index": [7, 11], "arg1": "Blanche Ingram", "arg1_index": [12, 13], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Cole", "arg0_index": [6, 6], "pred": "guest starred as", "pred_index": [28, 30], "arg1": "Lilith", "arg1_index": [31, 31], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "In addition , as John Cecil Masterman , chairman of the Twenty Committee , commented , `` If , for example , St Paul 's Cathedral were hit , it was useless and harmful to report that the bomb had descended upon a cinema in Islington , since the truth would inevitably get through to Germany ... ''": [{"arg0": "John Cecil Masterman", "arg0_index": [4, 6], "pred": "", "pred_index": [-1, -1], "arg1": "chairman of the Twenty Committee", "arg1_index": [8, 12], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "John Cecil Masterman", "arg0_index": [4, 6], "pred": "commented", "pred_index": [14, 14], "arg1": "If , for example , St Paul 's Cathedral were hit , it was useless and harmful to report that the bomb had descended upon a cinema in Islington , since the truth would inevitably get through to Germany ... ''", "arg1_index": [17, 57], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "it", "arg0_index": [29, 29], "pred": "was", "pred_index": [30, 30], "arg1": "useless and harmful", "arg1_index": [31, 33], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "St Paul 's Cathedral", "arg0_index": [22, 25], "pred": "were hit", "pred_index": [26, 27], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "", "arg0_index": [], "pred": "report", "pred_index": [35, 35], "arg1": "that the bomb had descended upon a cinema in Islington", "arg1_index": [36, 45], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "the bomb", "arg0_index": [37, 38], "pred": "had descended upon", "pred_index": [39, 41], "arg1": "a cinema", "arg1_index": [42, 43], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "the truth", "arg0_index": [48, 49], "pred": "would inevitably get through to", "pred_index": [50, 54], "arg1": "Germany", "arg1_index": [55, 55], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "The permanent members are the provost , the Carl H. Pforzheimer University Professor and the deans or designees from the following Schools : the Faculty of Arts and Sciences , Harvard Business School , Harvard Law School and Harvard Medical School .": [{"arg0": "The permanent members", "arg0_index": [0, 2], "pred": "are", "pred_index": [3, 3], "arg1": "the provost , the Carl H. Pforzheimer University Professor and the deans or designees from the following Schools : the Faculty of Arts and Sciences , Harvard Business School , Harvard Law School and Harvard Medical School", "arg1_index": [4, 40], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "In October 2009 it was confirmed that the Byrom Street cutting was a hitching and unhitching point for trains being cable hauled to Edge Hill via the Victoria Tunnel .": [{"arg0": "it", "arg0_index": [3, 3], "pred": "was confirmed", "pred_index": [4, 5], "arg1": "that the Byrom Street cutting was a hitching and unhitching point for trains being cable hauled to Edge Hill via the Victoria Tunnel", "arg1_index": [6, 28], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "the Byrom Street cutting", "arg0_index": [7, 10], "pred": "was", "pred_index": [11, 11], "arg1": "a hitching and unhitching point", "arg1_index": [12, 16], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "With this act , Russia was officially transformed from an absolute monarchy into a constitutional one , though the exact extent of just `` how '' constitutional quickly became the subject of debate , based upon the emperor 's subsequent actions .": [{"arg0": "Russia", "arg0_index": [4, 4], "pred": "was officially transformed from", "pred_index": [5, 8], "arg1": "an absolute monarchy", "arg1_index": [9, 11], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "the exact extent of just `` how '' constitutional quickly became the subject of debate", "arg0_index": [18, 32], "pred": " based upon", "pred_index": [-2, 34, 35], "arg1": "the emperor 's subsequent actions", "arg1_index": [36, 40], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "constitutional", "arg0_index": [26, 26], "pred": "quickly became", "pred_index": [27, 28], "arg1": "the subject of debate", "arg1_index": [29, 32], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "In the early 19th century the Welsh Methodists broke away from the Anglican church and established their own denomination , now the Presbyterian Church of Wales .": [{"arg0": "the Welsh Methodists", "arg0_index": [5, 7], "pred": "broke away from", "pred_index": [8, 10], "arg1": "the Anglican church", "arg1_index": [11, 13], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "the Welsh Methodists", "arg0_index": [5, 7], "pred": "established", "pred_index": [15, 15], "arg1": "their own denomination", "arg1_index": [16, 18], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "their own denomination", "arg0_index": [16, 18], "pred": "", "pred_index": [-1, -1], "arg1": "the Presbyterian Church of Wales", "arg1_index": [21, 25], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Fraser & Neave , which also has interests in packaging , beer and dairy products , holds the Coke licenses for Malaysia and Brunei , where per - capita consumption is n't as high as in Singapore .": [{"arg0": "Fraser & Neave", "arg0_index": [0, 2], "pred": "holds", "pred_index": [16, 16], "arg1": "the Coke licenses for Malaysia and Brunei", "arg1_index": [17, 23], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Fraser & Neave", "arg0_index": [0, 2], "pred": "has interests in", "pred_index": [6, 8], "arg1": "packaging , beer and dairy products", "arg1_index": [9, 14], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "per - capita consumption", "arg0_index": [26, 29], "pred": "is n't as high as", "pred_index": [30, 34], "arg1": "in Singapore", "arg1_index": [35, 36], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Newhan split the season between Triple-A Round Rock , where he hit .308 .": [{"arg0": "Newhan", "arg0_index": [0, 0], "pred": "split", "pred_index": [1, 1], "arg1": "the season between Triple-A Round Rock", "arg1_index": [2, 7], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "he", "arg0_index": [10, 10], "pred": "hit", "pred_index": [11, 11], "arg1": ".308", "arg1_index": [12, 12], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "This is the U.N. group that managed to traduce its own charter of promoting education , science and culture .": [{"arg0": "This", "arg0_index": [0, 0], "pred": "is", "pred_index": [1, 1], "arg1": "the U.N. group that managed to traduce its own charter of promoting education , science and culture", "arg1_index": [2, 18], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "U.N. group", "arg0_index": [3, 4], "pred": "managed to traduce", "pred_index": [6, 8], "arg1": "its own charter of promoting education , science and culture", "arg1_index": [9, 18], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "To make them directly comparable , each index is based on the close of 1969 equaling 100 .": [{"arg0": "each index is based on the close of 1969 equaling 100", "arg0_index": [6, 16], "pred": "make", "pred_index": [1, 1], "arg1": "them", "arg1_index": [2, 2], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "each index", "arg0_index": [6, 7], "pred": "is based on", "pred_index": [8, 10], "arg1": "the close of 1969 equaling 100", "arg1_index": [11, 16], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "The founder had pledged himself to honour the Blessed Virgin in a special manner .": [{"arg0": "The founder", "arg0_index": [0, 1], "pred": "had pledged", "pred_index": [2, 3], "arg1": "himself", "arg1_index": [4, 4], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "The founder", "arg0_index": [0, 1], "pred": "honour", "pred_index": [6, 6], "arg1": "the Blessed Virgin", "arg1_index": [7, 9], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "The station has a concourse and ticket office area which was internally redesigned and reopened in mid-2012 .": [{"arg0": "The station", "arg0_index": [0, 1], "pred": "has", "pred_index": [2, 2], "arg1": "a concourse and ticket office area", "arg1_index": [3, 8], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "ticket office area", "arg0_index": [6, 8], "pred": "was internally redesigned", "pred_index": [10, 12], "arg1": "ticket office area which was internally redesigned and reopened in mid-2012", "arg1_index": [6, 16], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "ticket office area", "arg0_index": [6, 8], "pred": "reopened in", "pred_index": [14, 15], "arg1": "mid-2012", "arg1_index": [16, 16], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "From 1909 to 1912 , the Miami Canal was dug , bypassing the rapids at the head of the North Fork .": [{"arg0": "the Miami Canal", "arg0_index": [5, 7], "pred": "was dug", "pred_index": [8, 9], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "the Miami Canal", "arg0_index": [5, 7], "pred": "bypassing", "pred_index": [11, 11], "arg1": "the rapids", "arg1_index": [12, 13], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Only Ballard and Williams are left after Sergeant Jericho and the other officers , along with the two train operators , are killed when they try to finish the fight .": [{"arg0": "Ballard and Williams", "arg0_index": [1, 3], "pred": "are left", "pred_index": [4, 5], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Sergeant Jericho and the other officers , along with the two train operators", "arg0_index": [7, 19], "pred": "are killed", "pred_index": [21, 22], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Sergeant Jericho and the other officers , along with the two train operators", "arg0_index": [7, 19], "pred": "try to finish", "pred_index": [25, 27], "arg1": "the fight", "arg1_index": [28, 29], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "In a news post , Holkins stated that he reserved the right to bring Carl back any time Krahulik goes to France .": [{"arg0": "Holkins", "arg0_index": [5, 5], "pred": "stated", "pred_index": [6, 6], "arg1": "that he reserved the right to bring Carl back any time Krahulik goes to France", "arg1_index": [7, 21], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "he", "arg0_index": [8, 8], "pred": "reserved", "pred_index": [9, 9], "arg1": "the right to bring Carl back any time Krahulik goes to France", "arg1_index": [10, 21], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Holkins", "arg0_index": [5, 5], "pred": "bring", "pred_index": [13, 13], "arg1": "Carl", "arg1_index": [14, 14], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Krahulik", "arg0_index": [18, 18], "pred": "goes to", "pred_index": [19, 20], "arg1": "France", "arg1_index": [21, 21], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Warner has a five - year exclusive contract with Mr. Guber and Mr. Peters that requires them to make movies exclusively at the Warner Bros. studio .": [{"arg0": "Warner", "arg0_index": [0, 0], "pred": "has", "pred_index": [1, 1], "arg1": "a five - year exclusive contract with Mr. Guber and Mr. Peters", "arg1_index": [2, 13], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "a five - year exclusive contract with Mr. Guber and Mr. Peters", "arg0_index": [2, 13], "pred": "requires", "pred_index": [15, 15], "arg1": "them", "arg1_index": [16, 16], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Mr. Guber and Mr. Peters", "arg0_index": [9, 13], "pred": "make", "pred_index": [18, 18], "arg1": "movies", "arg1_index": [19, 19], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "The centerpiece of that complex , the Landmark Tower , will be Japan 's tallest building when it is completed in 1993 .": [{"arg0": "the Landmark Tower", "arg0_index": [6, 8], "pred": "will be", "pred_index": [10, 11], "arg1": "Japan 's tallest building", "arg1_index": [12, 15], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "The centerpiece of that complex", "arg0_index": [0, 4], "pred": "", "pred_index": [-1, -1], "arg1": "the Landmark Tower", "arg1_index": [6, 8], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "the Landmark Tower", "arg0_index": [6, 8], "pred": "is completed in", "pred_index": [18, 20], "arg1": "1993", "arg1_index": [21, 21], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Similar studies are expected to reveal how stroke patients ' brains regroup -- a first step toward finding ways to bolster that process and speed rehabilitation .": [{"arg0": "Similar studies", "arg0_index": [0, 1], "pred": "are expected to reveal", "pred_index": [2, 5], "arg1": "how stroke patients ' brains regroup", "arg1_index": [6, 11], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "to reveal how stroke patients ' brains regroup", "arg0_index": [4, 11], "pred": "", "pred_index": [-1, -1], "arg1": "a first step toward finding ways to bolster that process and speed rehabilitation", "arg1_index": [13, 25], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "", "arg0_index": [], "pred": "finding", "pred_index": [17, 17], "arg1": "ways", "arg1_index": [18, 18], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "ways", "arg0_index": [18, 18], "pred": "bolster", "pred_index": [20, 20], "arg1": "that process", "arg1_index": [21, 22], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "ways", "arg0_index": [18, 18], "pred": "speed", "pred_index": [24, 24], "arg1": "rehabilitation", "arg1_index": [25, 25], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "In 2012 , Bloomberg Businessweek voted San Francisco as America 's Best City .": [{"arg0": "Bloomberg Businessweek", "arg0_index": [3, 4], "pred": "voted", "pred_index": [5, 5], "arg1": "San Francisco", "arg1_index": [6, 7], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Obviously the epilogue was not an afterthought supplied too late for the English edition , for it is referred to in `` The Castaway '' : `` in the sequel of the narrative , it will then be seen what like abandonment befell myself . ''": [{"arg0": "the epilogue", "arg0_index": [1, 2], "pred": "was not", "pred_index": [3, 4], "arg1": "an afterthought supplied too late for the English edition", "arg1_index": [5, 13], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "it", "arg0_index": [16, 16], "pred": "is referred to", "pred_index": [17, 19], "arg1": "in `` The Castaway '' : `` in the sequel of the narrative , it will then be seen what like abandonment befell myself . ''", "arg1_index": [20, 45], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "an afterthought", "arg0_index": [5, 6], "pred": " supplied", "pred_index": [-2, 7, 7], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Hapoel Lod played in the top division during the 1960s and 1980s , and won the State Cup in 1984 .": [{"arg0": "Hapoel Lod", "arg0_index": [0, 1], "pred": "played in", "pred_index": [2, 3], "arg1": "the top division", "arg1_index": [4, 6], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Hapoel Lod", "arg0_index": [0, 1], "pred": "won", "pred_index": [14, 14], "arg1": "the State Cup", "arg1_index": [15, 17], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Ford Motor Co. said it is recalling about 3,600 of its 1990 - model Escorts because the windshield adhesive was improperly applied to some cars .": [{"arg0": "Ford Motor Co.", "arg0_index": [0, 2], "pred": "said", "pred_index": [3, 3], "arg1": "it is recalling about 3,600 of its 1990 - model Escorts because the windshield adhesive was improperly applied to some cars", "arg1_index": [4, 24], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "it", "arg0_index": [4, 4], "pred": "is recalling", "pred_index": [5, 6], "arg1": "about 3,600 of its 1990 - model Escorts", "arg1_index": [7, 14], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "the windshield adhesive", "arg0_index": [16, 18], "pred": "was improperly applied to", "pred_index": [19, 22], "arg1": "some cars", "arg1_index": [23, 24], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Initially his chances of surviving were thought to be no better than 50-50 .": [{"arg0": "his chances of surviving", "arg0_index": [1, 4], "pred": "were thought to be", "pred_index": [5, 8], "arg1": "no better than 50-50", "arg1_index": [9, 12], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "At one point , almost all of the shares in the 20 - stock Major Market Index , which mimics the industrial average , were sharply higher .": [{"arg0": "almost all of the shares in the 20 - stock Major Market Index", "arg0_index": [4, 16], "pred": "were", "pred_index": [24, 24], "arg1": "sharply higher", "arg1_index": [25, 26], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "20 - stock Major Market Index", "arg0_index": [11, 16], "pred": "mimics", "pred_index": [19, 19], "arg1": "the industrial average", "arg1_index": [20, 22], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Hungary 's Parliament voted to hold a national referendum on an election to fill the new post of president .": [{"arg0": "Hungary 's Parliament", "arg0_index": [0, 2], "pred": "voted to hold", "pred_index": [3, 5], "arg1": "a national referendum on an election", "arg1_index": [6, 11], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "an election", "arg0_index": [10, 11], "pred": "fill", "pred_index": [13, 13], "arg1": "the new post of president", "arg1_index": [14, 18], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "But yesterday , Mr. Carpenter said big institutional investors , which he would n't identify , `` told us they would n't do business with firms '' that continued to do index arbitrage for their own accounts .": [{"arg0": "Mr. Carpenter", "arg0_index": [3, 4], "pred": "said", "pred_index": [5, 5], "arg1": "big institutional investors", "arg1_index": [6, 8], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "he", "arg0_index": [11, 11], "pred": "would n't identify", "pred_index": [12, 14], "arg1": "big institutional investors", "arg1_index": [6, 8], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "big institutional investors", "arg0_index": [6, 8], "pred": "told", "pred_index": [17, 17], "arg1": "us", "arg1_index": [18, 18], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "big institutional investors", "arg0_index": [6, 8], "pred": "would n't do", "pred_index": [20, 22], "arg1": "business", "arg1_index": [23, 23], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "firms", "arg0_index": [25, 25], "pred": "continued to do", "pred_index": [28, 30], "arg1": "index arbitrage", "arg1_index": [31, 32], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Scarpetta returns to Virginia in `` Trace '' , convincing herself that she was fired from her position , at the request of her replacement , Dr. Joel Marcus .": [{"arg0": "Scarpetta", "arg0_index": [0, 0], "pred": "returns to", "pred_index": [1, 2], "arg1": "Virginia", "arg1_index": [3, 3], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Scarpetta", "arg0_index": [0, 0], "pred": "convincing", "pred_index": [9, 9], "arg1": "herself", "arg1_index": [10, 10], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "she", "arg0_index": [12, 12], "pred": "was fired from", "pred_index": [13, 15], "arg1": "her position", "arg1_index": [16, 17], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Dr. Joel Marcus", "arg0_index": [26, 28], "pred": "", "pred_index": [-1, -1], "arg1": "her replacement", "arg1_index": [23, 24], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "The Summer Programs Office runs these programs , and many Wardlaw-Hartridge Students attend camp or classes over the summer .": [{"arg0": "The Summer Programs Office", "arg0_index": [0, 3], "pred": "runs", "pred_index": [4, 4], "arg1": "these programs", "arg1_index": [5, 6], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "many Wardlaw-Hartridge Students", "arg0_index": [9, 11], "pred": "attend", "pred_index": [12, 12], "arg1": "camp or classes", "arg1_index": [13, 15], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "In order to support planned TRAX expansion , UTA ordered 77 Siemens S70 light rail vehicles from Siemens AG .": [{"arg0": "UTA", "arg0_index": [8, 8], "pred": "ordered", "pred_index": [9, 9], "arg1": "77 Siemens S70 light rail vehicles", "arg1_index": [10, 15], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "UTA", "arg0_index": [8, 8], "pred": "support", "pred_index": [3, 3], "arg1": "planned TRAX expansion", "arg1_index": [4, 6], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "During the morning and evening rush hours some services run direct to/from Paddington and Reading .": [{"arg0": "some services", "arg0_index": [7, 8], "pred": "run direct to/from", "pred_index": [9, 11], "arg1": "Paddington and Reading", "arg1_index": [12, 14], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "These and other attempts supplied a bridge between the literature of the two languages .": [{"arg0": "These and other attempts", "arg0_index": [0, 3], "pred": "supplied", "pred_index": [4, 4], "arg1": "a bridge between the literature of the two languages", "arg1_index": [5, 13], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "In more recent years , this policy has apparently relaxed somewhat .": [{"arg0": "this policy", "arg0_index": [5, 6], "pred": "has apparently relaxed", "pred_index": [7, 9], "arg1": "somewhat", "arg1_index": [10, 10], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Carl uses the `` old magic '' to tame the Deep Crow , claiming it is not his `` first time to the rodeo . ''": [{"arg0": "Carl", "arg0_index": [0, 0], "pred": "uses", "pred_index": [1, 1], "arg1": "the `` old magic ''", "arg1_index": [2, 6], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "`` old magic ''", "arg0_index": [3, 6], "pred": "tame", "pred_index": [8, 8], "arg1": "the Deep Crow", "arg1_index": [9, 11], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Carl", "arg0_index": [0, 0], "pred": "claiming", "pred_index": [13, 13], "arg1": "it is not his `` first time to the rodeo . ''", "arg1_index": [14, 25], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "it", "arg0_index": [14, 14], "pred": "is not", "pred_index": [15, 16], "arg1": "his `` first time to the rodeo . ''", "arg1_index": [17, 25], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "`` Business across the country is spending more time addressing this issue , '' says Sen. Edward Kennedy ( D. , Mass . ) .": [{"arg0": "Sen. Edward Kennedy ( D. , Mass . )", "arg0_index": [15, 23], "pred": "says", "pred_index": [14, 14], "arg1": "`` Business across the country is spending more time addressing this issue , ''", "arg1_index": [0, 13], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Business across the country", "arg0_index": [1, 4], "pred": "is spending", "pred_index": [5, 6], "arg1": "more time", "arg1_index": [7, 8], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Business across the country", "arg0_index": [1, 4], "pred": "addressing", "pred_index": [9, 9], "arg1": "this issue", "arg1_index": [10, 11], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Among other things , they said , Mr. Azoff would develop musical acts for a new record label .": [{"arg0": "they", "arg0_index": [4, 4], "pred": "said", "pred_index": [5, 5], "arg1": "Mr. Azoff would develop musical acts for a new record label", "arg1_index": [7, 17], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Mr. Azoff", "arg0_index": [7, 8], "pred": "would develop", "pred_index": [9, 10], "arg1": "musical acts", "arg1_index": [11, 12], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "The offering was priced with an 8.95 % coupon rate at 99.1875 % to yield 9.19 % .": [{"arg0": "The offering", "arg0_index": [0, 1], "pred": "was priced with", "pred_index": [2, 4], "arg1": "an 8.95 % coupon rate at 99.1875 %", "arg1_index": [5, 12], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "The offering", "arg0_index": [0, 1], "pred": "yield", "pred_index": [14, 14], "arg1": "9.19 %", "arg1_index": [15, 16], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Mr. Guber and Mr. Peters also almost certainly would n't be able to participate in future sequels to `` Batman , '' the blockbuster hit they produced for Warner .": [{"arg0": "Mr. Guber and Mr. Peters", "arg0_index": [0, 4], "pred": "almost certainly would n't be able to participate in", "pred_index": [6, 14], "arg1": "future sequels to `` Batman , ''", "arg1_index": [15, 21], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "they", "arg0_index": [25, 25], "pred": "produced", "pred_index": [26, 26], "arg1": "the blockbuster hit", "arg1_index": [22, 24], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "The National Transportation Safety Board ruled that pilots failed to set the plane 's wing flaps and slats properly for takeoff and failed to make mandatory preflight checks that would have detected the error .": [{"arg0": "The National Transportation Safety Board", "arg0_index": [0, 4], "pred": "ruled", "pred_index": [5, 5], "arg1": "that pilots failed to set the plane 's wing flaps and slats properly for takeoff and failed to make mandatory preflight checks that would have detected the error", "arg1_index": [6, 33], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "pilots", "arg0_index": [7, 7], "pred": "failed to set", "pred_index": [8, 10], "arg1": "the plane 's wing flaps and slats properly", "arg1_index": [11, 18], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "pilots", "arg0_index": [7, 7], "pred": "failed to make", "pred_index": [22, 24], "arg1": "mandatory preflight checks that would have detected the error", "arg1_index": [25, 33], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "mandatory preflight checks", "arg0_index": [25, 27], "pred": "would have detected", "pred_index": [29, 31], "arg1": "the error", "arg1_index": [32, 33], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "The office may also be able to advise foreign and multinational clients on international law and general matters .": [{"arg0": "The office", "arg0_index": [0, 1], "pred": "may also be able to advise", "pred_index": [2, 7], "arg1": "foreign and multinational clients", "arg1_index": [8, 11], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Mr. Wathen , who says Pinkerton 's had a loss of nearly $ 8 million in 1987 under American Brands , boasts that he 's made Pinkerton 's profitable again .": [{"arg0": "Mr. Wathen", "arg0_index": [0, 1], "pred": "says", "pred_index": [4, 4], "arg1": "Pinkerton 's had a loss of nearly $ 8 million in 1987 under American Brands", "arg1_index": [5, 19], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Mr. Wathen", "arg0_index": [0, 1], "pred": "boasts", "pred_index": [21, 21], "arg1": "that he 's made Pinkerton 's profitable again", "arg1_index": [22, 29], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Pinkerton 's", "arg0_index": [5, 6], "pred": "had", "pred_index": [7, 7], "arg1": "a loss of nearly $ 8 million", "arg1_index": [8, 14], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "he", "arg0_index": [23, 23], "pred": "'s made", "pred_index": [24, 25], "arg1": "Pinkerton 's", "arg1_index": [26, 27], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Many are surgically removed for aesthetics and relief of psychosocial burden , but larger ones are also excised for prevention of cancer , although the benefit is impossible to assess for any individual patient .": [{"arg0": "Many", "arg0_index": [0, 0], "pred": "are surgically removed for", "pred_index": [1, 4], "arg1": "aesthetics and relief of psychosocial burden", "arg1_index": [5, 10], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "larger ones", "arg0_index": [13, 14], "pred": "are also excised for", "pred_index": [15, 18], "arg1": "prevention of cancer", "arg1_index": [19, 21], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "the benefit", "arg0_index": [24, 25], "pred": "is", "pred_index": [26, 26], "arg1": "impossible", "arg1_index": [27, 27], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "The market 's tempo was helped by the dollar 's resiliency , he said .": [{"arg0": "The market 's tempo", "arg0_index": [0, 3], "pred": "was helped by", "pred_index": [4, 6], "arg1": "the dollar 's resiliency", "arg1_index": [7, 10], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "he", "arg0_index": [12, 12], "pred": "said", "pred_index": [13, 13], "arg1": "The market 's tempo was helped by the dollar 's resiliency", "arg1_index": [0, 10], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Hani Zayadi was appointed president and chief executive officer of this financially troubled department store chain , effective Nov. 15 , succeeding Frank Robertson , who is retiring early .": [{"arg0": "Hani Zayadi", "arg0_index": [0, 1], "pred": "was appointed", "pred_index": [2, 3], "arg1": "president and chief executive officer of this financially troubled department store chain", "arg1_index": [4, 15], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Hani Zayadi", "arg0_index": [0, 1], "pred": "succeeding", "pred_index": [21, 21], "arg1": "Frank Robertson", "arg1_index": [22, 23], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Frank Robertson", "arg0_index": [22, 23], "pred": "is retiring", "pred_index": [26, 27], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "In fact , Condon , after seeing Hauptmann in a lineup at New York Police Department Greenwich Street Station told FBI Special Agent Turrou that Hauptmann was not `` John , '' the man to whom Condon claimed he passed the ransom money to in St. Raymond 's Cemetery .": [{"arg0": "Condon", "arg0_index": [3, 3], "pred": "told", "pred_index": [19, 19], "arg1": "FBI Special Agent Turrou", "arg1_index": [20, 23], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Turrou", "arg0_index": [23, 23], "pred": "", "pred_index": [-1, -1], "arg1": "FBI Special Agent", "arg1_index": [20, 22], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Hauptmann", "arg0_index": [25, 25], "pred": "was not", "pred_index": [26, 27], "arg1": "`` John , ''", "arg1_index": [28, 31], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Condon", "arg0_index": [3, 3], "pred": "seeing", "pred_index": [6, 6], "arg1": "Hauptmann", "arg1_index": [7, 7], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "`` John , ''", "arg0_index": [28, 31], "pred": "", "pred_index": [-1, -1], "arg1": "'' the man to whom Condon claimed he passed the ransom money to in St. Raymond 's Cemetery", "arg1_index": [31, 48], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Condon", "arg0_index": [36, 36], "pred": "claimed", "pred_index": [37, 37], "arg1": "he passed the ransom money to in St. Raymond 's Cemetery", "arg1_index": [38, 48], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "he", "arg0_index": [38, 38], "pred": "passed", "pred_index": [39, 39], "arg1": "the ransom money", "arg1_index": [40, 42], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Spennymoor Town F.C. are the main local football team and won the FA Carlsberg Vase , after winning 2-1 in the final at Wembley Stadium against Tunbridge Wells in May 2013 .": [{"arg0": "Spennymoor Town F.C.", "arg0_index": [0, 2], "pred": "are", "pred_index": [3, 3], "arg1": "the main local football team", "arg1_index": [4, 8], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Spennymoor Town F.C.", "arg0_index": [0, 2], "pred": "won", "pred_index": [10, 10], "arg1": "the FA Carlsberg Vase", "arg1_index": [11, 14], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Spennymoor Town F.C.", "arg0_index": [0, 2], "pred": "winning", "pred_index": [17, 17], "arg1": "2-1", "arg1_index": [18, 18], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Falun Gong 's teachings are compiled from Li 's lectures , and Li holds definitional power in that belief system .": [{"arg0": "Falun Gong 's teachings", "arg0_index": [0, 3], "pred": "are compiled from", "pred_index": [4, 6], "arg1": "Li 's lectures", "arg1_index": [7, 9], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Li", "arg0_index": [12, 12], "pred": "holds", "pred_index": [13, 13], "arg1": "definitional power", "arg1_index": [14, 15], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Applications can use this service to record activity for a production system while implementations of other OSIDs can use the service to record detailed data during development , debugging , or analyzing performance .": [{"arg0": "Applications", "arg0_index": [0, 0], "pred": "can use", "pred_index": [1, 2], "arg1": "this service", "arg1_index": [3, 4], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "this service", "arg0_index": [3, 4], "pred": "record", "pred_index": [6, 6], "arg1": "activity", "arg1_index": [7, 7], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "implementations of other OSIDs", "arg0_index": [13, 16], "pred": "can use", "pred_index": [17, 18], "arg1": "the service", "arg1_index": [19, 20], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "the service", "arg0_index": [19, 20], "pred": "record", "pred_index": [22, 22], "arg1": "detailed data", "arg1_index": [23, 24], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "With companies such as Honda Motor Co. , Toyota Motor Corp. and Nissan Motor Co. running so - called transplant auto operations , Japanese auto production in the U.S. will reach one million vehicles this year .": [{"arg0": "Japanese auto production in the U.S.", "arg0_index": [23, 28], "pred": "will reach", "pred_index": [29, 30], "arg1": "million vehicles", "arg1_index": [32, 33], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "companies such as Honda Motor Co. , Toyota Motor Corp. and Nissan Motor Co.", "arg0_index": [1, 14], "pred": "running", "pred_index": [15, 15], "arg1": "so - called transplant auto operations", "arg1_index": [16, 21], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "This is most common in Western countries in those with Barrett 's esophagus , and occurs in the cuboidal cells .": [{"arg0": "This", "arg0_index": [0, 0], "pred": "is", "pred_index": [1, 1], "arg1": "most common", "arg1_index": [2, 3], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "This", "arg0_index": [0, 0], "pred": "occurs in", "pred_index": [15, 16], "arg1": "the cuboidal cells", "arg1_index": [17, 19], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "A state judge postponed a decision on a move by holders of Telerate Inc. to block the tender offer of Dow Jones & Co. for the 33 % of Telerate it does n't already own .": [{"arg0": "A state judge", "arg0_index": [0, 2], "pred": "postponed", "pred_index": [3, 3], "arg1": "a decision on a move by holders of Telerate Inc.", "arg1_index": [4, 13], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "a move by holders of Telerate Inc.", "arg0_index": [7, 13], "pred": "block", "pred_index": [15, 15], "arg1": "the tender offer of Dow Jones & Co.", "arg1_index": [16, 23], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "it", "arg0_index": [30, 30], "pred": "does n't already own", "pred_index": [31, 34], "arg1": "the 33 % of Telerate", "arg1_index": [25, 29], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "And he got rid of low - margin businesses that just were n't making money for the company .": [{"arg0": "he", "arg0_index": [1, 1], "pred": "got rid of", "pred_index": [2, 4], "arg1": "low - margin businesses", "arg1_index": [5, 8], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "low - margin businesses", "arg0_index": [5, 8], "pred": "were n't making", "pred_index": [11, 13], "arg1": "money", "arg1_index": [14, 14], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Combined PC and work - station use in Japan will jump as much as 25 % annually over the next five years , according to some analysts , compared with about 10 % in the U.S. .": [{"arg0": "Combined PC and work - station use in Japan", "arg0_index": [0, 8], "pred": "will jump", "pred_index": [9, 10], "arg1": "as much as 25 % annually", "arg1_index": [11, 16], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "25 %", "arg0_index": [14, 15], "pred": " compared with", "pred_index": [-2, 28, 29], "arg1": "about 10 % in the U.S.", "arg1_index": [30, 35], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "In this explanation the purpose of Creation is that `` God desired a dwelling place in the lower realms '' - it is man who transforms the mundane , lowest World into an abode for God 's essence .": [{"arg0": "the purpose of Creation", "arg0_index": [3, 6], "pred": "is", "pred_index": [7, 7], "arg1": "that `` God desired a dwelling place in the lower realms ''", "arg1_index": [8, 19], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "God", "arg0_index": [10, 10], "pred": "desired", "pred_index": [11, 11], "arg1": "a dwelling place", "arg1_index": [12, 14], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "it", "arg0_index": [21, 21], "pred": "is", "pred_index": [22, 22], "arg1": "man who transforms the mundane , lowest World into an abode for God 's essence", "arg1_index": [23, 37], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "man", "arg0_index": [23, 23], "pred": "transforms", "pred_index": [25, 25], "arg1": "the mundane , lowest World", "arg1_index": [26, 30], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "To the north , along and across the same border , live speakers of Lakha .": [{"arg0": "speakers of Lakha", "arg0_index": [12, 14], "pred": "live", "pred_index": [11, 11], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "According to the South Koreans , many Koreans became victims of Japanese brutalities during the colonial period .": [{"arg0": "many Koreans", "arg0_index": [6, 7], "pred": "became", "pred_index": [8, 8], "arg1": "victims of Japanese brutalities", "arg1_index": [9, 12], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "He defines Wild Cards as ` Low Probability , High Impact events that , were they to occur , would severely impact the human condition ' .": [{"arg0": "He", "arg0_index": [0, 0], "pred": "defines", "pred_index": [1, 1], "arg1": "Wild Cards", "arg1_index": [2, 3], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "they", "arg0_index": [15, 15], "pred": "occur", "pred_index": [17, 17], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "they", "arg0_index": [15, 15], "pred": "would severely impact", "pred_index": [19, 21], "arg1": "the human condition", "arg1_index": [22, 24], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Overall , net sales of all mutual funds , excluding money market funds , fell to $ 1.9 billion in September from $ 4.2 billion in August , the trade group said .": [{"arg0": "net sales of all mutual funds , excluding money market funds", "arg0_index": [2, 12], "pred": "fell to", "pred_index": [14, 15], "arg1": "$ 1.9 billion in September", "arg1_index": [16, 20], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "The Acrolepiidae family of moths are also known as False Diamondback moths .": [{"arg0": "The Acrolepiidae family of moths", "arg0_index": [0, 4], "pred": "are also known as", "pred_index": [5, 8], "arg1": "False Diamondback moths", "arg1_index": [9, 11], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "To avoid a runoff , one candidate would have to win 50 % of the vote -- a feat that most analysts consider impossible with so many candidates running .": [{"arg0": "one candidate", "arg0_index": [5, 6], "pred": "would have to win", "pred_index": [7, 10], "arg1": "50 % of the vote", "arg1_index": [11, 15], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "one candidate would have to win 50 % of the vote", "arg0_index": [5, 15], "pred": "avoid", "pred_index": [1, 1], "arg1": "a runoff", "arg1_index": [2, 3], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "most analysts", "arg0_index": [20, 21], "pred": "consider", "pred_index": [22, 22], "arg1": "a feat", "arg1_index": [17, 18], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "The engine had twin turbochargers , and produced an advertised at 5700 rpm and of torque on 8 lbs of boost .": [{"arg0": "The engine", "arg0_index": [0, 1], "pred": "had", "pred_index": [2, 2], "arg1": "twin turbochargers", "arg1_index": [3, 4], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "The engine", "arg0_index": [0, 1], "pred": "produced", "pred_index": [7, 7], "arg1": "an advertised at 5700 rpm and of torque on 8 lbs of boost", "arg1_index": [8, 20], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "This attire has also become popular with women of other communities .": [{"arg0": "This attire", "arg0_index": [0, 1], "pred": "has also become popular with", "pred_index": [2, 6], "arg1": "women of other communities", "arg1_index": [7, 10], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "The pillars in a line on its both sides are according to Doric or Greek style and their decorations are according to the Meenakshi Temple at Madurai in Tamil Nadu .": [{"arg0": "The pillars in a line on its both sides", "arg0_index": [0, 8], "pred": "are according to", "pred_index": [9, 11], "arg1": "Doric or Greek style", "arg1_index": [12, 15], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "their decorations", "arg0_index": [17, 18], "pred": "are according to", "pred_index": [19, 21], "arg1": "the Meenakshi Temple at Madurai in Tamil Nadu", "arg1_index": [22, 29], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Meanwhile , at home , Mitsubishi has control of some major projects .": [{"arg0": "Mitsubishi", "arg0_index": [5, 5], "pred": "has control of", "pred_index": [6, 8], "arg1": "some major projects", "arg1_index": [9, 11], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "He also possesses enhanced senses and can track people for great distances over open terrain and his feet are sensitive enough to detect electronic signals through solid walls and floors .": [{"arg0": "He", "arg0_index": [0, 0], "pred": "possesses", "pred_index": [2, 2], "arg1": "enhanced senses", "arg1_index": [3, 4], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "He", "arg0_index": [0, 0], "pred": "can track", "pred_index": [6, 7], "arg1": "people", "arg1_index": [8, 8], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "his feet", "arg0_index": [16, 17], "pred": "are", "pred_index": [18, 18], "arg1": "sensitive enough", "arg1_index": [19, 20], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "his feet", "arg0_index": [16, 17], "pred": "detect", "pred_index": [22, 22], "arg1": "electronic signals", "arg1_index": [23, 24], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Many overseas Chinese whose ancestors came from the Quanzhou area , especially those in Southeast Asia , often speak mainly Hokkien at home .": [{"arg0": "Many overseas Chinese whose ancestors came from the Quanzhou area , especially those in Southeast Asia", "arg0_index": [0, 15], "pred": "often speak mainly", "pred_index": [17, 19], "arg1": "Hokkien", "arg1_index": [20, 20], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "ancestors", "arg0_index": [4, 4], "pred": "came from", "pred_index": [5, 6], "arg1": "the Quanzhou area", "arg1_index": [7, 9], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "If there 's something ' weird and it do n't look good .": [{"arg0": "there", "arg0_index": [1, 1], "pred": "'s", "pred_index": [2, 2], "arg1": "something ' weird", "arg1_index": [3, 5], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "it", "arg0_index": [7, 7], "pred": "do n't look", "pred_index": [8, 10], "arg1": "good", "arg1_index": [11, 11], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Sen. Mitchell is confident he has sufficient votes to block such a measure with procedural actions .": [{"arg0": "Sen. Mitchell", "arg0_index": [0, 1], "pred": "is confident", "pred_index": [2, 3], "arg1": "he has sufficient votes to block such a measure with procedural actions", "arg1_index": [4, 15], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "he", "arg0_index": [4, 4], "pred": "has", "pred_index": [5, 5], "arg1": "sufficient votes", "arg1_index": [6, 7], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "he", "arg0_index": [4, 4], "pred": "block", "pred_index": [9, 9], "arg1": "such a measure", "arg1_index": [10, 12], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "The latest 10 - year notes ended at about 100 16\\/32 to yield 7.90 % , compared with 100 11\\/32 to yield 7.93 % on Friday .": [{"arg0": "The latest 10 - year notes", "arg0_index": [0, 5], "pred": "ended at", "pred_index": [6, 7], "arg1": "about 100 16\\/32", "arg1_index": [8, 10], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "about 100 16\\/32 to yield 7.90 %", "arg0_index": [8, 14], "pred": " compared with", "pred_index": [-2, 16, 17], "arg1": "100 11\\/32 to yield 7.93 % on Friday", "arg1_index": [18, 25], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "As a result , the lower river had to be dredged three times in two years .": [{"arg0": "the lower river", "arg0_index": [4, 6], "pred": "had to be dredged", "pred_index": [7, 10], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "However , the problem is that once most poison pills are adopted , they survive forever .": [{"arg0": "the problem", "arg0_index": [2, 3], "pred": "is", "pred_index": [4, 4], "arg1": "that once most poison pills are adopted , they survive forever", "arg1_index": [5, 15], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "most poison pills", "arg0_index": [7, 9], "pred": "are adopted", "pred_index": [10, 11], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "they", "arg0_index": [13, 13], "pred": "survive", "pred_index": [14, 14], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "The senior subordinated debentures maturing in 2004 are targeted to be offered at a yield of between 12 5\\/8 % to 12 3\\/4 % .": [{"arg0": "The senior subordinated debentures maturing in 2004", "arg0_index": [0, 6], "pred": "are targeted to be offered at", "pred_index": [7, 12], "arg1": "a yield of between 12 5\\/8 % to 12 3\\/4 %", "arg1_index": [13, 23], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "The senior subordinated debentures", "arg0_index": [0, 3], "pred": "maturing", "pred_index": [4, 4], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Now Mr. Broberg , a lawyer , claims he 'd play for free .": [{"arg0": "Mr. Broberg", "arg0_index": [1, 2], "pred": "", "pred_index": [-1, -1], "arg1": "a lawyer", "arg1_index": [4, 5], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Mr. Broberg", "arg0_index": [1, 2], "pred": "claims", "pred_index": [7, 7], "arg1": "he 'd play for free", "arg1_index": [8, 12], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "he", "arg0_index": [8, 8], "pred": "'d play", "pred_index": [9, 10], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Unemployment has reached 27.6 % in Azerbaijan , 25.7 % in Tadzhikistan , 22.8 % in Uzbekistan , 18.8 % in Turkmenia , 18 % in Armenia and 16.3 % in Kirgizia , the Communist Party newspaper said .": [{"arg0": "Unemployment", "arg0_index": [0, 0], "pred": "has reached", "pred_index": [1, 2], "arg1": "27.6 %", "arg1_index": [3, 4], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Unemployment", "arg0_index": [0, 0], "pred": "has reached", "pred_index": [1, 2], "arg1": "25.7 %", "arg1_index": [8, 9], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Unemployment", "arg0_index": [0, 0], "pred": "has reached", "pred_index": [1, 2], "arg1": "22.8 %", "arg1_index": [13, 14], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Unemployment", "arg0_index": [0, 0], "pred": "has reached", "pred_index": [1, 2], "arg1": "18.8 %", "arg1_index": [18, 19], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Unemployment", "arg0_index": [0, 0], "pred": "has reached", "pred_index": [1, 2], "arg1": "18 %", "arg1_index": [23, 24], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Unemployment", "arg0_index": [0, 0], "pred": "has reached", "pred_index": [1, 2], "arg1": "16.3 %", "arg1_index": [28, 29], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "`` The only people who are flying are those who have to , '' said Frank Moore , chairman of the Australian Tourist Industry Association .": [{"arg0": "Frank Moore", "arg0_index": [15, 16], "pred": "", "pred_index": [-1, -1], "arg1": "chairman of the Australian Tourist Industry Association", "arg1_index": [18, 24], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Frank Moore", "arg0_index": [15, 16], "pred": "said", "pred_index": [14, 14], "arg1": "`` The only people who are flying are those who have to , ''", "arg1_index": [0, 13], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "The only people who are flying", "arg0_index": [1, 6], "pred": "are", "pred_index": [7, 7], "arg1": "those who have to", "arg1_index": [8, 11], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "The only people", "arg0_index": [1, 3], "pred": "are flying", "pred_index": [5, 6], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "The 2nd Battalion of the 13th Light Infantry was raised at Winchester in January 1858 .": [{"arg0": "The 2nd Battalion of the 13th Light Infantry", "arg0_index": [0, 7], "pred": "was raised at", "pred_index": [8, 10], "arg1": "Winchester", "arg1_index": [11, 11], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "The redesigned 2006 Ram SRT-10 came in Mineral Gray Metallic , Inferno Red , and Brilliant Black Crystal Clear Coat .": [{"arg0": "The redesigned 2006 Ram SRT-10", "arg0_index": [0, 4], "pred": "came in", "pred_index": [5, 6], "arg1": "Mineral Gray Metallic , Inferno Red , and Brilliant Black Crystal Clear Coat", "arg1_index": [7, 19], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Tyabb also has Tyabb Airport , a private airfield which has been operating for more than thirty years .": [{"arg0": "Tyabb", "arg0_index": [0, 0], "pred": "has", "pred_index": [2, 2], "arg1": "Tyabb Airport", "arg1_index": [3, 4], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Tyabb Airport", "arg0_index": [3, 4], "pred": "", "pred_index": [-1, -1], "arg1": "a private airfield which has been operating for more than thirty years", "arg1_index": [6, 17], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Tyabb Airport", "arg0_index": [3, 4], "pred": "has been operating", "pred_index": [10, 12], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Norris McLaughlin is a general - practice firm that has expanded recently into such specialties as banking , labor and environmental work .": [{"arg0": "Norris McLaughlin", "arg0_index": [0, 1], "pred": "is", "pred_index": [2, 2], "arg1": "a general - practice firm", "arg1_index": [3, 7], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "a general - practice firm", "arg0_index": [3, 7], "pred": "has expanded recently into", "pred_index": [9, 12], "arg1": "such specialties as banking , labor and environmental work", "arg1_index": [13, 21], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Milk sold to the nation 's dairy plants and dealers averaged $ 14.50 for each hundred pounds , up 50 cents from September and up $ 1.50 from October 1988 , the department said .": [{"arg0": "the department", "arg0_index": [31, 32], "pred": "said", "pred_index": [33, 33], "arg1": "Milk sold to the nation 's dairy plants and dealers averaged $ 14.50 for each hundred pounds , up 50 cents from September and up $ 1.50 from October 1988", "arg1_index": [0, 29], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Milk", "arg0_index": [0, 0], "pred": " sold to", "pred_index": [-2, 1, 2], "arg1": "the nation 's dairy plants and dealers", "arg1_index": [3, 9], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Milk sold to the nation 's dairy plants and dealers", "arg0_index": [0, 9], "pred": "averaged", "pred_index": [10, 10], "arg1": "$ 14.50", "arg1_index": [11, 12], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "In 2004 the Brumbies finished at the top of the Super 12 table , six points clear of the next best team .": [{"arg0": "the Brumbies", "arg0_index": [2, 3], "pred": "finished at", "pred_index": [4, 5], "arg1": "the top of the Super 12 table", "arg1_index": [6, 12], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "`` If working capital financing is not provided , '' he said , `` the RTC may have to slow { S&L sales } or dump acquired assets through fire sales .": [{"arg0": "working capital financing", "arg0_index": [2, 4], "pred": "is not provided", "pred_index": [5, 7], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "the RTC", "arg0_index": [14, 15], "pred": "may have to slow", "pred_index": [16, 19], "arg1": "{ S&L sales } or dump acquired assets", "arg1_index": [20, 27], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Workers at two Chilean mines , Los Bronces and El Soldado , which belong to the Exxon - owned Minera Disputado group , will vote Thursday on whether to strike after a two - year labor pact ends today .": [{"arg0": "Workers at two Chilean mines , Los Bronces and El Soldado", "arg0_index": [0, 10], "pred": "belong to", "pred_index": [13, 14], "arg1": "the Exxon - owned Minera Disputado group", "arg1_index": [15, 21], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Workers at two Chilean mines , Los Bronces and El Soldado", "arg0_index": [0, 10], "pred": "will vote", "pred_index": [23, 24], "arg1": "on whether to strike after a two - year labor pact ends today", "arg1_index": [26, 38], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "a two - year labor pact", "arg0_index": [31, 36], "pred": "ends", "pred_index": [37, 37], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Workers at two Chilean mines , Los Bronces and El Soldado", "arg0_index": [0, 10], "pred": "strike", "pred_index": [29, 29], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Next morning , the race left the city on the way to the Pyrenees and stopped in the suburb of Gradignan , in the university area of La House .": [{"arg0": "the race", "arg0_index": [3, 4], "pred": "left", "pred_index": [5, 5], "arg1": "the city", "arg1_index": [6, 7], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "the race", "arg0_index": [3, 4], "pred": "stopped", "pred_index": [15, 15], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Although Mr. Azoff wo n't produce films at first , it is possible that he could do so later , the sources said .": [{"arg0": "the sources", "arg0_index": [20, 21], "pred": "said", "pred_index": [22, 22], "arg1": "Although Mr. Azoff wo n't produce films at first , it is possible that he could do so later", "arg1_index": [0, 18], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Mr. Azoff", "arg0_index": [1, 2], "pred": "wo n't produce", "pred_index": [3, 5], "arg1": "films", "arg1_index": [6, 6], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Mr. Azoff", "arg0_index": [1, 2], "pred": "could do", "pred_index": [15, 16], "arg1": "so", "arg1_index": [17, 17], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "it", "arg0_index": [10, 10], "pred": "is", "pred_index": [11, 11], "arg1": "possible", "arg1_index": [12, 12], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "The car used in `` Stealth '' was a band member 's car , and recorded just outside the studio in the parking lot .": [{"arg0": "The car used in `` Stealth ''", "arg0_index": [0, 6], "pred": "was", "pred_index": [7, 7], "arg1": "a band member 's car", "arg1_index": [8, 12], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "The car used in `` Stealth ''", "arg0_index": [0, 6], "pred": "recorded", "pred_index": [15, 15], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "The car", "arg0_index": [0, 1], "pred": " used in", "pred_index": [-2, 2, 3], "arg1": "`` Stealth ''", "arg1_index": [4, 6], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "The 41 - year - old Mr. Azoff , a former rock 'n' roll manager , is credited with turning around MCA 's once - moribund music division in his six years at the company .": [{"arg0": "Mr. Azoff", "arg0_index": [6, 7], "pred": "", "pred_index": [-1, -1], "arg1": "a former rock 'n' roll manager", "arg1_index": [9, 14], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Mr. Azoff", "arg0_index": [6, 7], "pred": "is credited with", "pred_index": [16, 18], "arg1": "turning around MCA 's once - moribund music division", "arg1_index": [19, 27], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Mr. Azoff", "arg0_index": [6, 7], "pred": "turning around", "pred_index": [19, 20], "arg1": "MCA 's once - moribund music division", "arg1_index": [21, 27], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "In the 1901 election , after which the Oppositionists under George Leake were able to form a minority government , Frank Wilson , formerly the member for Canning , won the seat .": [{"arg0": "Frank Wilson", "arg0_index": [20, 21], "pred": "", "pred_index": [-1, -1], "arg1": "formerly the member for Canning", "arg1_index": [23, 27], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Frank Wilson", "arg0_index": [20, 21], "pred": "won", "pred_index": [29, 29], "arg1": "the seat", "arg1_index": [30, 31], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "the Oppositionists under George Leake", "arg0_index": [7, 11], "pred": "were able to form", "pred_index": [12, 15], "arg1": "a minority government", "arg1_index": [16, 18], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Why the `` Epilogue '' is missing is unknown .": [{"arg0": "Why the `` Epilogue '' is missing", "arg0_index": [0, 6], "pred": "is", "pred_index": [7, 7], "arg1": "unknown", "arg1_index": [8, 8], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "the `` Epilogue ''", "arg0_index": [1, 4], "pred": "is missing", "pred_index": [5, 6], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "`` Most people -- whether in Toledo , Tucson or Topeka -- have n't got a clue who we are , '' says Guy L. Smith , Philip Morris 's vice president of corporate affairs .": [{"arg0": "Guy L. Smith", "arg0_index": [23, 25], "pred": "", "pred_index": [-1, -1], "arg1": "Philip Morris 's vice president of corporate affairs", "arg1_index": [27, 34], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Guy L. Smith", "arg0_index": [23, 25], "pred": "says", "pred_index": [22, 22], "arg1": "`` Most people -- whether in Toledo , Tucson or Topeka -- have n't got a clue who we are , ''", "arg1_index": [0, 21], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Most people -- whether in Toledo , Tucson or Topeka --", "arg0_index": [1, 11], "pred": "have n't got", "pred_index": [12, 14], "arg1": "a clue who we are", "arg1_index": [15, 19], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "The opening credits sequence for the collection was directed by Hanada Daizaburo .": [{"arg0": "The opening credits sequence for the collection", "arg0_index": [0, 6], "pred": "was directed by", "pred_index": [7, 9], "arg1": "Hanada Daizaburo", "arg1_index": [10, 11], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "During the off-season the ACT Rugby Union was renamed the ACT and Southern NSW Rugby Union , and the name of the team was changed to Brumbies Rugby .": [{"arg0": "the ACT Rugby Union", "arg0_index": [3, 6], "pred": "was renamed", "pred_index": [7, 8], "arg1": "the ACT and Southern NSW Rugby Union", "arg1_index": [9, 15], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "the name of the team", "arg0_index": [18, 22], "pred": "was changed to", "pred_index": [23, 25], "arg1": "Brumbies Rugby", "arg1_index": [26, 27], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "THE CHIEF NURSING officer can be responsible for more than 1,000 employees and at least one - third of a hospital 's budget ; a head nurse typically oversees up to 80 employees and $ 8 million .": [{"arg0": "THE CHIEF NURSING officer", "arg0_index": [0, 3], "pred": "can be responsible for", "pred_index": [4, 7], "arg1": "more than 1,000 employees and at least one - third of a hospital 's budget", "arg1_index": [8, 22], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "a head nurse", "arg0_index": [24, 26], "pred": "typically oversees", "pred_index": [27, 28], "arg1": "up to 80 employees and $ 8 million", "arg1_index": [29, 36], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "The external gauge is usually readable directly , and most also incorporate an electronic sender to operate a fuel gauge on the dashboard .": [{"arg0": "The external gauge", "arg0_index": [0, 2], "pred": "is", "pred_index": [3, 3], "arg1": "usually readable directly", "arg1_index": [4, 6], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "most", "arg0_index": [9, 9], "pred": "incorporate", "pred_index": [11, 11], "arg1": "an electronic sender", "arg1_index": [12, 14], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "most", "arg0_index": [9, 9], "pred": "operate", "pred_index": [16, 16], "arg1": "a fuel gauge", "arg1_index": [17, 19], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "The economy of Ostrov is based on food , electronic , and textile industries .": [{"arg0": "The economy of Ostrov", "arg0_index": [0, 3], "pred": "is based on", "pred_index": [4, 6], "arg1": "food , electronic , and textile industries", "arg1_index": [7, 13], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Mrs. Marcos has n't admitted that she filed any documents such as those sought by the government .": [{"arg0": "Mrs. Marcos", "arg0_index": [0, 1], "pred": "has n't admitted", "pred_index": [2, 4], "arg1": "that she filed any documents such as those sought by the government", "arg1_index": [5, 16], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Mrs. Marcos", "arg0_index": [0, 1], "pred": "filed", "pred_index": [7, 7], "arg1": "any documents such as those sought by the government", "arg1_index": [8, 16], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "those", "arg0_index": [12, 12], "pred": " sought by", "pred_index": [-2, 13, 14], "arg1": "the government", "arg1_index": [15, 16], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Godzilla and Battra battled on the ocean floor , until they caused a rift to open between tectonic plates .": [{"arg0": "Godzilla and Battra", "arg0_index": [0, 2], "pred": "battled", "pred_index": [3, 3], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Godzilla and Battra", "arg0_index": [0, 2], "pred": "caused", "pred_index": [11, 11], "arg1": "a rift", "arg1_index": [12, 13], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "rift", "arg0_index": [13, 13], "pred": "open", "pred_index": [15, 15], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Rolls - Royce Motor Cars Inc. said it expects its U.S. sales to remain steady at about 1,200 cars in 1990 .": [{"arg0": "Rolls - Royce Motor Cars Inc.", "arg0_index": [0, 5], "pred": "said", "pred_index": [6, 6], "arg1": "it expects its U.S. sales to remain steady at about 1,200 cars in 1990", "arg1_index": [7, 20], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "it", "arg0_index": [7, 7], "pred": "expects", "pred_index": [8, 8], "arg1": "its U.S. sales", "arg1_index": [9, 11], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "its U.S. sales", "arg0_index": [9, 11], "pred": "remain steady at", "pred_index": [13, 15], "arg1": "about 1,200 cars", "arg1_index": [16, 18], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Andrea Bianco 's atlas of 1436 comprises ten leaves of vellum , measuring , in an 18th-century binding .": [{"arg0": "Andrea Bianco 's atlas of 1436", "arg0_index": [0, 5], "pred": "comprises", "pred_index": [6, 6], "arg1": "ten leaves of vellum", "arg1_index": [7, 10], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Andrea Bianco 's atlas of 1436", "arg0_index": [0, 5], "pred": "measuring", "pred_index": [12, 12], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Vernon E. Jordan was elected to the board of this transportation services concern .": [{"arg0": "Vernon E. Jordan", "arg0_index": [0, 2], "pred": "was elected to", "pred_index": [3, 5], "arg1": "the board of this transportation services concern", "arg1_index": [6, 12], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "In 1954 , a KOMO news photographer discovered a way to develop color film in a new process that took just a few hours instead of days .": [{"arg0": "a KOMO news photographer", "arg0_index": [3, 6], "pred": "discovered", "pred_index": [7, 7], "arg1": "a way", "arg1_index": [8, 9], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "", "arg0_index": [], "pred": "develop", "pred_index": [11, 11], "arg1": "color film", "arg1_index": [12, 13], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "a new process", "arg0_index": [15, 17], "pred": "took", "pred_index": [19, 19], "arg1": "just a few hours", "arg1_index": [20, 23], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "The discount rate on three - month Treasury bills rose slightly from the average rate at Monday 's auction to 7.79 % for a bond - equivalent yield of 8.04 % .": [{"arg0": "The discount rate on three - month Treasury bills", "arg0_index": [0, 8], "pred": "rose slightly", "pred_index": [9, 10], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "As a result , it becomes clear that the microbe can not survive outside a narrow pH range .": [{"arg0": "it", "arg0_index": [4, 4], "pred": "becomes", "pred_index": [5, 5], "arg1": "clear", "arg1_index": [6, 6], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "the microbe", "arg0_index": [8, 9], "pred": "can not survive", "pred_index": [10, 12], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "But then Judge O'Kicki often behaved like a man who would be king -- and , some say , an arrogant and abusive one .": [{"arg0": "Judge O'Kicki", "arg0_index": [2, 3], "pred": "often behaved like", "pred_index": [4, 6], "arg1": "a man who would be king", "arg1_index": [7, 12], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "By increasing the number of PCs it uses from 66 to 1,000 , Omron Tateishi Electronics Co. , of Kyoto , hopes not only to make certain tasks easier but also to transform the way the company is run .": [{"arg0": "Omron Tateishi Electronics Co. , of Kyoto", "arg0_index": [13, 19], "pred": "hopes", "pred_index": [21, 21], "arg1": "not only to make certain tasks easier but also to transform the way the company is run", "arg1_index": [22, 38], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Omron Tateishi Electronics Co. , of Kyoto", "arg0_index": [13, 19], "pred": "increasing", "pred_index": [1, 1], "arg1": "the number of PCs it uses", "arg1_index": [2, 7], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "it", "arg0_index": [6, 6], "pred": "uses", "pred_index": [7, 7], "arg1": "PCs", "arg1_index": [5, 5], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "increasing the number of PCs it uses from 66 to 1,000", "arg0_index": [1, 11], "pred": "make", "pred_index": [25, 25], "arg1": "certain tasks", "arg1_index": [26, 27], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "increasing the number of PCs it uses from 66 to 1,000", "arg0_index": [1, 11], "pred": "transform", "pred_index": [32, 32], "arg1": "the way the company is run", "arg1_index": [33, 38], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "the company", "arg0_index": [35, 36], "pred": "is run", "pred_index": [37, 38], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "In the winter of 1976 , Knievel was scheduled for a major jump in Chicago , Illinois .": [{"arg0": "Knievel", "arg0_index": [6, 6], "pred": "was scheduled for", "pred_index": [7, 9], "arg1": "a major jump", "arg1_index": [10, 12], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "A half - dozen Soviet space officials , in Tokyo in July for an exhibit , stopped by to see their counterparts at the National Space Development Agency of Japan .": [{"arg0": "A half - dozen Soviet space officials", "arg0_index": [0, 6], "pred": "stopped by", "pred_index": [16, 17], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "A half - dozen Soviet space officials", "arg0_index": [0, 6], "pred": "see", "pred_index": [19, 19], "arg1": "their counterparts", "arg1_index": [20, 21], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "RISC technology speeds up a computer by simplifying the internal software .": [{"arg0": "RISC technology", "arg0_index": [0, 1], "pred": "speeds up", "pred_index": [2, 3], "arg1": "a computer", "arg1_index": [4, 5], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "RISC technology", "arg0_index": [0, 1], "pred": "simplifying", "pred_index": [7, 7], "arg1": "the internal software", "arg1_index": [8, 10], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "As of `` A Wind in the Door '' , Sandy aspires to become a banker , on the grounds that it is practical and lucrative .": [{"arg0": "Sandy", "arg0_index": [10, 10], "pred": "aspires to become", "pred_index": [11, 13], "arg1": "a banker", "arg1_index": [14, 15], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "it", "arg0_index": [21, 21], "pred": "is", "pred_index": [22, 22], "arg1": "practical and lucrative", "arg1_index": [23, 25], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "These beams stem from a cosmic energy source called the `` Omega Effect '' .": [{"arg0": "These beams stem from a cosmic energy source", "arg0_index": [0, 7], "pred": "called", "pred_index": [8, 8], "arg1": "the `` Omega Effect ''", "arg1_index": [9, 13], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Language B then begins to supplant language A : the speakers of Language A abandon their own language in favor of the other language , generally because they believe that it will help them achieve certain goals within government , the workplace , and in social settings .": [{"arg0": "Language B", "arg0_index": [0, 1], "pred": "begins to supplant", "pred_index": [3, 5], "arg1": "language A", "arg1_index": [6, 7], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "the speakers of Language A", "arg0_index": [9, 13], "pred": "abandon", "pred_index": [14, 14], "arg1": "their own language", "arg1_index": [15, 17], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "they", "arg0_index": [27, 27], "pred": "believe", "pred_index": [28, 28], "arg1": "that it will help them achieve certain goals within government , the workplace , and in social settings", "arg1_index": [29, 46], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "it", "arg0_index": [30, 30], "pred": "will help", "pred_index": [31, 32], "arg1": "them", "arg1_index": [33, 33], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "them", "arg0_index": [33, 33], "pred": "achieve", "pred_index": [34, 34], "arg1": "certain goals within government , the workplace , and in social settings", "arg1_index": [35, 46], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "The executives had profited handsomely by building American National Can Co. , Triangle 's chief asset .": [{"arg0": "The executives", "arg0_index": [0, 1], "pred": "had profited handsomely", "pred_index": [2, 4], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "The executives", "arg0_index": [0, 1], "pred": "building", "pred_index": [6, 6], "arg1": "American National Can Co. , Triangle 's chief asset", "arg1_index": [7, 15], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Mr. Phelan is an adroit diplomat who normally appears to be solidly in control of the Big Board 's factions .": [{"arg0": "Mr. Phelan", "arg0_index": [0, 1], "pred": "is", "pred_index": [2, 2], "arg1": "an adroit diplomat", "arg1_index": [3, 5], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Mr. Phelan", "arg0_index": [0, 1], "pred": "normally appears to be", "pred_index": [7, 10], "arg1": "solidly in control of the Big Board 's factions", "arg1_index": [11, 19], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "There used to be a Youth Hostel but it closed in October 2008 and the building has since reopened as Keld Lodge , a hotel with bar and restaurant .": [{"arg0": "There", "arg0_index": [0, 0], "pred": "used to be", "pred_index": [1, 3], "arg1": "a Youth Hostel", "arg1_index": [4, 6], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "it", "arg0_index": [8, 8], "pred": "closed", "pred_index": [9, 9], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "the building", "arg0_index": [14, 15], "pred": "has since reopened as", "pred_index": [16, 19], "arg1": "Keld Lodge", "arg1_index": [20, 21], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Keld Lodge", "arg0_index": [20, 21], "pred": "", "pred_index": [-1, -1], "arg1": "a hotel with bar and restaurant", "arg1_index": [23, 28], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Now that the New York decision has been left intact , other states may follow suit .": [{"arg0": "the New York decision", "arg0_index": [2, 5], "pred": "has been left", "pred_index": [6, 8], "arg1": "intact", "arg1_index": [9, 9], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "other states", "arg0_index": [11, 12], "pred": "may follow", "pred_index": [13, 14], "arg1": "suit", "arg1_index": [15, 15], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Assisting in the recording process were Fernando Cabello and two friends of the group , Eva Dalda and Lydia Iovanne .": [{"arg0": "Assisting in the recording process", "arg0_index": [0, 4], "pred": "were", "pred_index": [5, 5], "arg1": "Fernando Cabello and two friends of the group , Eva Dalda and Lydia Iovanne", "arg1_index": [6, 19], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Fernando Cabello and two friends of the group , Eva Dalda and Lydia Iovanne", "arg0_index": [6, 19], "pred": "Assisting in", "pred_index": [0, 1], "arg1": "the recording process", "arg1_index": [2, 4], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Rather ominously , rabbit studies reveal that RU-486 can cause birth defects , Lancet , the British medical journal , reported in 1987 .": [{"arg0": "rabbit studies", "arg0_index": [3, 4], "pred": "reveal", "pred_index": [5, 5], "arg1": "that RU-486 can cause birth defects", "arg1_index": [6, 11], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Lancet", "arg0_index": [13, 13], "pred": "", "pred_index": [-1, -1], "arg1": "the British medical journal", "arg1_index": [15, 18], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Lancet", "arg0_index": [13, 13], "pred": "reported", "pred_index": [20, 20], "arg1": "rabbit studies reveal that RU-486 can cause birth defects", "arg1_index": [3, 11], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "RU-486", "arg0_index": [7, 7], "pred": "can cause", "pred_index": [8, 9], "arg1": "birth defects", "arg1_index": [10, 11], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "With versions in 1/48, 1/72, 1/96, and 1/144 scale, Big Gun Model Warship combat clubs have provisions for cannon caliber and armor thickness to be scaling according to what existed on the prototype vessel. ": [{"arg0": "Big Gun Model Warship combat clubs", "arg0_index": [9, 14], "pred": "have provisions for", "pred_index": [15, 17], "arg1": "cannon caliber and armor thickness", "arg1_index": [18, 22], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "cannon caliber and armor thickness", "arg0_index": [18, 22], "pred": "be scaling", "pred_index": [24, 25], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Also , the premiums paid by the U.S. government on a purchase of copper for the U.S. Mint were lower than expected , and acted as a price depressant , analysts said .": [{"arg0": "analysts", "arg0_index": [30, 30], "pred": "said", "pred_index": [31, 31], "arg1": "the premiums paid by the U.S. government on a purchase of copper for the U.S. Mint were lower than expected , and acted as a price depressant", "arg1_index": [2, 28], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "the premiums paid by the U.S. government on a purchase of copper for the U.S. Mint", "arg0_index": [2, 17], "pred": "were", "pred_index": [18, 18], "arg1": "lower", "arg1_index": [19, 19], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "the premiums paid by the U.S. government on a purchase of copper for the U.S. Mint", "arg0_index": [2, 17], "pred": "acted as", "pred_index": [24, 25], "arg1": "a price depressant", "arg1_index": [26, 28], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "the premiums", "arg0_index": [2, 3], "pred": " paid by", "pred_index": [-2, 4, 5], "arg1": "the U.S. government", "arg1_index": [6, 8], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "In the Crimean War , the 5th Dragoon Guards formed part of the Heavy Cavalry Brigade and was sent to the Black Sea in 1854 .": [{"arg0": "the 5th Dragoon Guards", "arg0_index": [5, 8], "pred": "formed part of", "pred_index": [9, 11], "arg1": "the Heavy Cavalry Brigade", "arg1_index": [12, 15], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "the 5th Dragoon Guards", "arg0_index": [5, 8], "pred": "was sent to", "pred_index": [17, 19], "arg1": "the Black Sea", "arg1_index": [20, 22], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Piffaro generally performs a concert series of four to five concerts a year in Philadelphia , in addition to touring throughout the United States , Canada , Europe and elsewhere .": [{"arg0": "Piffaro", "arg0_index": [0, 0], "pred": "generally performs", "pred_index": [1, 2], "arg1": "a concert series of four to five concerts", "arg1_index": [3, 10], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Piffaro", "arg0_index": [0, 0], "pred": "touring throughout", "pred_index": [19, 20], "arg1": "the United States , Canada , Europe and elsewhere", "arg1_index": [21, 29], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "`` Nothing can be better than this , '' says Don Sider , owner of the West Palm Beach Tropics .": [{"arg0": "Don Sider", "arg0_index": [10, 11], "pred": "", "pred_index": [-1, -1], "arg1": "owner of the West Palm Beach Tropics", "arg1_index": [13, 19], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Don Sider", "arg0_index": [10, 11], "pred": "says", "pred_index": [9, 9], "arg1": "`` Nothing can be better than this , ''", "arg1_index": [0, 8], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Nothing", "arg0_index": [1, 1], "pred": "can be", "pred_index": [2, 3], "arg1": "better", "arg1_index": [4, 4], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Each company 's share of liability would be based on their share of the national DES market .": [{"arg0": "Each company 's share of liability", "arg0_index": [0, 5], "pred": "would be based on", "pred_index": [6, 9], "arg1": "their share of the national DES market", "arg1_index": [10, 16], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Watson was the founder and editor of `` newcritics.com , '' an online journal of media and arts criticism launched in January , 2007 and shuttered in June , 2009 .": [{"arg0": "Watson", "arg0_index": [0, 0], "pred": "was", "pred_index": [1, 1], "arg1": "the founder and editor of `` newcritics.com , ''", "arg1_index": [2, 10], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "`` newcritics.com , ''", "arg0_index": [7, 10], "pred": "", "pred_index": [-1, -1], "arg1": "an online journal of media and arts criticism launched in January , 2007 and shuttered in June , 2009", "arg1_index": [11, 29], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "`` newcritics.com , ''", "arg0_index": [7, 10], "pred": "launched in", "pred_index": [19, 20], "arg1": "January , 2007", "arg1_index": [21, 23], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "`` newcritics.com , ''", "arg0_index": [7, 10], "pred": "shuttered in", "pred_index": [25, 26], "arg1": "June , 2009", "arg1_index": [27, 29], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "In the north and east inhabitants speak Bumthangkha , and in the extreme southeast Khengkha is spoken .": [{"arg0": "inhabitants", "arg0_index": [5, 5], "pred": "speak", "pred_index": [6, 6], "arg1": "Bumthangkha", "arg1_index": [7, 7], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Khengkha", "arg0_index": [14, 14], "pred": "is spoken", "pred_index": [15, 16], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Transferred to Key West , Florida , on 1 June 1941 , `` R-11 '' continued her training ship duties throughout the remainder of her career .": [{"arg0": "`` R-11 ''", "arg0_index": [12, 14], "pred": "continued", "pred_index": [15, 15], "arg1": "her training ship duties", "arg1_index": [16, 19], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "`` R-11 ''", "arg0_index": [12, 14], "pred": " Transferred to", "pred_index": [-2, 0, 1], "arg1": "Key West , Florida", "arg1_index": [2, 5], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "One candidate is a wreck at the western end of Manitoulin Island in Lake Huron , with another wreck near Escanaba , Michigan , also proposed .": [{"arg0": "One candidate", "arg0_index": [0, 1], "pred": "is", "pred_index": [2, 2], "arg1": "a wreck", "arg1_index": [3, 4], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "another wreck", "arg0_index": [17, 18], "pred": " proposed", "pred_index": [-2, 25, 25], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "The share price was languishing at about 400 pence before Ford 's Sept. 19 announcement of its interest in a minority stake .": [{"arg0": "The share price", "arg0_index": [0, 2], "pred": "was", "pred_index": [3, 3], "arg1": "languishing", "arg1_index": [4, 4], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Modern educational methods were more widely spread throughout the Empire , and the country embarked on a development scheme and plans for modernization , tempered by Ethiopian traditions , and within the framework of the ancient monarchical structure of the state .": [{"arg0": "Modern educational methods", "arg0_index": [0, 2], "pred": "were more widely spread throughout", "pred_index": [3, 7], "arg1": "the Empire", "arg1_index": [8, 9], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "the country", "arg0_index": [12, 13], "pred": "embarked on", "pred_index": [14, 15], "arg1": "a development scheme and plans for modernization", "arg1_index": [16, 22], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "a development scheme and plans", "arg0_index": [16, 20], "pred": " tempered by", "pred_index": [-2, 24, 25], "arg1": "Ethiopian traditions", "arg1_index": [26, 27], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "It rose 4.8 % for the 12 months ended in June and 4.7 % in the 12 months ended in September 1988 .": [{"arg0": "It", "arg0_index": [0, 0], "pred": "rose", "pred_index": [1, 1], "arg1": "4.8 %", "arg1_index": [2, 3], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "It", "arg0_index": [0, 0], "pred": "ended in", "pred_index": [8, 9], "arg1": "June", "arg1_index": [10, 10], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "It", "arg0_index": [0, 0], "pred": "rose", "pred_index": [1, 1], "arg1": "4.7 %", "arg1_index": [12, 13], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "It", "arg0_index": [0, 0], "pred": "ended in", "pred_index": [18, 19], "arg1": "September 1988", "arg1_index": [20, 21], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Keibler then asked for time off to appear on `` Dancing with the Stars '' .": [{"arg0": "Keibler", "arg0_index": [0, 0], "pred": "asked for", "pred_index": [2, 3], "arg1": "time off", "arg1_index": [4, 5], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Keibler", "arg0_index": [0, 0], "pred": "appear on", "pred_index": [7, 8], "arg1": "`` Dancing with the Stars ''", "arg1_index": [9, 14], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Returning home , Ballard delivers her report , which her superiors refuse to believe .": [{"arg0": "Ballard", "arg0_index": [3, 3], "pred": "Returning", "pred_index": [0, 0], "arg1": "home", "arg1_index": [1, 1], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Ballard", "arg0_index": [3, 3], "pred": "delivers", "pred_index": [4, 4], "arg1": "her report", "arg1_index": [5, 6], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "her superiors", "arg0_index": [9, 10], "pred": "refuse to believe", "pred_index": [11, 13], "arg1": "her report", "arg1_index": [5, 6], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Considered as a whole , Mr. Lane said , the filings required under the proposed rules `` will be at least as effective , if not more so , for investors following transactions . ''": [{"arg0": "Mr. Lane", "arg0_index": [5, 6], "pred": "said", "pred_index": [7, 7], "arg1": "the filings required under the proposed rules `` will be at least as effective , if not more so , for investors following transactions . ''", "arg1_index": [9, 34], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "the filings required under the proposed rules", "arg0_index": [9, 15], "pred": "will be", "pred_index": [17, 18], "arg1": "at least as effective", "arg1_index": [19, 22], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "investors", "arg0_index": [30, 30], "pred": "following", "pred_index": [31, 31], "arg1": "transactions", "arg1_index": [32, 32], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "The Lone Star Steel lawsuit also asks the court to rule that Lone Star Technologies is jointly responsible for a $ 4.5 million Lone Star Steel pension payment that was due , but was n't paid , in September and that the parent company ca n't recover the amount from its subsidiary if the parent company makes the payment .": [{"arg0": "The Lone Star Steel lawsuit", "arg0_index": [0, 4], "pred": "asks", "pred_index": [6, 6], "arg1": "the court", "arg1_index": [7, 8], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "the court", "arg0_index": [7, 8], "pred": "rule", "pred_index": [10, 10], "arg1": "that Lone Star Technologies is jointly responsible for a $ 4.5 million Lone Star Steel pension payment that was due , but was n't paid , in September and that the parent company ca n't recover the amount from its subsidiary if the parent company makes the payment", "arg1_index": [11, 58], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Lone Star Technologies", "arg0_index": [12, 14], "pred": "is jointly responsible for", "pred_index": [15, 18], "arg1": "a $ 4.5 million Lone Star Steel pension payment", "arg1_index": [19, 27], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "a $ 4.5 million Lone Star Steel pension payment", "arg0_index": [19, 27], "pred": "was", "pred_index": [29, 29], "arg1": "due", "arg1_index": [30, 30], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "a $ 4.5 million Lone Star Steel pension payment", "arg0_index": [19, 27], "pred": "was n't paid", "pred_index": [33, 35], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "the parent company", "arg0_index": [41, 43], "pred": "ca n't recover", "pred_index": [44, 46], "arg1": "the amount", "arg1_index": [47, 48], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "the parent company", "arg0_index": [53, 55], "pred": "makes", "pred_index": [56, 56], "arg1": "the payment", "arg1_index": [57, 58], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Company officials said the current robust domestic demand that has been fueling sustained economic expansion helped push up sales of products like ships , steel structures , power systems and machinery and resulted in sharply higher profit .": [{"arg0": "Company officials", "arg0_index": [0, 1], "pred": "said", "pred_index": [2, 2], "arg1": "the current robust domestic demand that has been fueling sustained economic expansion helped push up sales of products like ships , steel structures , power systems and machinery and resulted in sharply higher profit", "arg1_index": [3, 36], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "the current robust domestic demand", "arg0_index": [3, 7], "pred": "has been fueling", "pred_index": [9, 11], "arg1": "sustained economic expansion", "arg1_index": [12, 14], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "current robust domestic demand", "arg0_index": [4, 7], "pred": "helped push up", "pred_index": [15, 17], "arg1": "sales of products like ships , steel structures , power systems and machinery", "arg1_index": [18, 30], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "current robust domestic demand", "arg0_index": [4, 7], "pred": "resulted in", "pred_index": [32, 33], "arg1": "sharply higher profit", "arg1_index": [34, 36], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "In 1972 , researchers found metallic conductivity in the charge-transfer complex TTF-TCNQ .": [{"arg0": "researchers", "arg0_index": [3, 3], "pred": "found", "pred_index": [4, 4], "arg1": "metallic conductivity", "arg1_index": [5, 6], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "But when they arrived at the door , all were afraid to go in , fearing that they would be out of place .": [{"arg0": "they", "arg0_index": [2, 2], "pred": "arrived at", "pred_index": [3, 4], "arg1": "the door", "arg1_index": [5, 6], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "all", "arg0_index": [8, 8], "pred": "were afraid to", "pred_index": [9, 11], "arg1": "go in", "arg1_index": [12, 13], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "all", "arg0_index": [8, 8], "pred": "fearing", "pred_index": [15, 15], "arg1": "that they would be out of place", "arg1_index": [16, 22], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "they", "arg0_index": [17, 17], "pred": "would be", "pred_index": [18, 19], "arg1": "out of place", "arg1_index": [20, 22], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "The PAC bulletins were widely distributed at these meetings .": [{"arg0": "The PAC bulletins", "arg0_index": [0, 2], "pred": "were widely distributed at", "pred_index": [3, 6], "arg1": "these meetings", "arg1_index": [7, 8], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "A manifold is `` prime '' if it can not be presented as a connected sum of more than one manifold , none of which is the sphere of the same dimension .": [{"arg0": "A manifold", "arg0_index": [0, 1], "pred": "is", "pred_index": [2, 2], "arg1": "`` prime ''", "arg1_index": [3, 5], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "it", "arg0_index": [7, 7], "pred": "can not be presented as", "pred_index": [8, 12], "arg1": "a connected sum of more than one manifold", "arg1_index": [13, 20], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "none of which", "arg0_index": [22, 24], "pred": "is", "pred_index": [25, 25], "arg1": "the sphere of the same dimension", "arg1_index": [26, 31], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Furthermore , knowledge and interest pertaining to the event , as well as the level of importance , contribute to the frequency of rehearsal .": [{"arg0": "knowledge and interest pertaining to the event , as well as the level of importance", "arg0_index": [2, 16], "pred": "contribute to", "pred_index": [18, 19], "arg1": "the frequency of rehearsal", "arg1_index": [20, 23], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "The album , produced by Roy Thomas Baker , was promoted with American and European tours .": [{"arg0": "The album", "arg0_index": [0, 1], "pred": " produced by", "pred_index": [-2, 3, 4], "arg1": "Roy Thomas Baker", "arg1_index": [5, 7], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "The album", "arg0_index": [0, 1], "pred": "was promoted with", "pred_index": [9, 11], "arg1": "American and European tours", "arg1_index": [12, 15], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "And he was in Ali 's army in the Battle of Jamal and later it was Muhammad ibn Abu Bakr who escorted Aisha back to Madina .": [{"arg0": "he", "arg0_index": [1, 1], "pred": "was", "pred_index": [2, 2], "arg1": "in Ali 's army", "arg1_index": [3, 6], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "it", "arg0_index": [14, 14], "pred": "was", "pred_index": [15, 15], "arg1": "Muhammad ibn Abu Bakr", "arg1_index": [16, 19], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Muhammad ibn Abu Bakr", "arg0_index": [16, 19], "pred": "escorted", "pred_index": [21, 21], "arg1": "Aisha", "arg1_index": [22, 22], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Proliferative nodules are usually biopsied and are regularly but not systematically found to be benign .": [{"arg0": "Proliferative nodules", "arg0_index": [0, 1], "pred": "are usually biopsied", "pred_index": [2, 4], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Proliferative nodules", "arg0_index": [0, 1], "pred": "are regularly but not systematically found to be", "pred_index": [6, 13], "arg1": "benign", "arg1_index": [14, 14], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Yesterday , Mr. Matthews , now a consultant with the Stamford , Conn. , firm Matthews & Johnston , quipped , `` I think he 'll be very good at that { new job } .": [{"arg0": "Mr. Matthews", "arg0_index": [2, 3], "pred": "quipped", "pred_index": [19, 19], "arg1": "`` I think he 'll be very good at that { new job }", "arg1_index": [21, 34], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Mr. Matthews", "arg0_index": [2, 3], "pred": "", "pred_index": [-1, -1], "arg1": "a consultant with the Stamford , Conn. , firm Matthews & Johnston", "arg1_index": [6, 17], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "I", "arg0_index": [22, 22], "pred": "think", "pred_index": [23, 23], "arg1": "he 'll be very good at that { new job }", "arg1_index": [24, 34], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "he", "arg0_index": [24, 24], "pred": "'ll be very good at", "pred_index": [25, 29], "arg1": "that { new job }", "arg1_index": [30, 34], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "The fuselage had an oval cross-section and housed a water-cooled inverted-V V-12 engine .": [{"arg0": "The fuselage", "arg0_index": [0, 1], "pred": "had", "pred_index": [2, 2], "arg1": "an oval cross-section", "arg1_index": [3, 5], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "The fuselage", "arg0_index": [0, 1], "pred": "housed", "pred_index": [7, 7], "arg1": "a water-cooled inverted-V V-12 engine", "arg1_index": [8, 12], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "The Alarm are an alternative rock/new wave band that formed in Rhyl , North Wales , in 1981 .": [{"arg0": "The Alarm", "arg0_index": [0, 1], "pred": "are", "pred_index": [2, 2], "arg1": "an alternative rock/new wave band", "arg1_index": [3, 7], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "an alternative rock/new wave band", "arg0_index": [3, 7], "pred": "formed in", "pred_index": [9, 10], "arg1": "Rhyl , North Wales", "arg1_index": [11, 14], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Barbara , however , unable to leave behind her vigilante life , fought a mugger and ultimately miscarried her child .": [{"arg0": "Barbara", "arg0_index": [0, 0], "pred": "unable to leave behind", "pred_index": [4, 7], "arg1": "her vigilante life", "arg1_index": [8, 10], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Barbara", "arg0_index": [0, 0], "pred": "fought", "pred_index": [12, 12], "arg1": "a mugger", "arg1_index": [13, 14], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Barbara", "arg0_index": [0, 0], "pred": "ultimately miscarried", "pred_index": [16, 17], "arg1": "her child", "arg1_index": [18, 19], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "The Venezuelan government required that all private television stations dedicate at least 25 % of their airtime to programs created by community groups , non-profits , and other independent producers .": [{"arg0": "The Venezuelan government", "arg0_index": [0, 2], "pred": "required", "pred_index": [3, 3], "arg1": "that all private television stations dedicate at least 25 % of their airtime to programs created by community groups , non-profits , and other independent producers", "arg1_index": [4, 29], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "all private television stations", "arg0_index": [5, 8], "pred": "dedicate", "pred_index": [9, 9], "arg1": "at least 25 % of their airtime", "arg1_index": [10, 16], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "programs", "arg0_index": [18, 18], "pred": " created by", "pred_index": [-2, 19, 20], "arg1": "community groups , non-profits , and other independent producers", "arg1_index": [21, 29], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "An original limited artist edition of 250 was published in 1989 and was an oversized fine press slip-cased book with stainless steel faced boards and digital clock inset into the front cover .": [{"arg0": "An original limited artist edition of 250", "arg0_index": [0, 6], "pred": "was published in", "pred_index": [7, 9], "arg1": "1989", "arg1_index": [10, 10], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "An original limited artist edition of 250", "arg0_index": [0, 6], "pred": "was", "pred_index": [12, 12], "arg1": "an oversized fine press slip-cased book", "arg1_index": [13, 18], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "digital clock", "arg0_index": [25, 26], "pred": "inset into", "pred_index": [27, 28], "arg1": "the front cover", "arg1_index": [29, 31], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "On 16 June 1944 , British double agent `` Garbo '' was requested by his German controllers to give information on the sites and times of V-1 impacts , with similar requests made to the other German agents in Britain , `` Brutus '' and `` Tate '' .": [{"arg0": "`` Garbo ''", "arg0_index": [8, 10], "pred": "was requested by", "pred_index": [11, 13], "arg1": "his German controllers", "arg1_index": [14, 16], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "`` Garbo ''", "arg0_index": [8, 10], "pred": "", "pred_index": [-1, -1], "arg1": "British double agent", "arg1_index": [5, 7], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "`` Garbo ''", "arg0_index": [8, 10], "pred": "give", "pred_index": [18, 18], "arg1": "information on the sites and times of V-1 impacts", "arg1_index": [19, 27], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "his German controllers", "arg0_index": [14, 16], "pred": "made", "pred_index": [32, 32], "arg1": "similar requests", "arg1_index": [30, 31], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "The Rev. William Alfred Quayle was honored by his alma mater , Baker University , with the degrees Litt.D .": [{"arg0": "The Rev. William Alfred Quayle", "arg0_index": [0, 4], "pred": "was honored by", "pred_index": [5, 7], "arg1": "Baker University", "arg1_index": [12, 13], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Baker University", "arg0_index": [12, 13], "pred": "", "pred_index": [-1, -1], "arg1": "his alma mater", "arg1_index": [8, 10], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "In Jewish belief , its fulfilment will be revealed in the cumulation of Creation , in the era of resurrection , in the physical World .": [{"arg0": "its fulfilment", "arg0_index": [4, 5], "pred": "will be revealed in", "pred_index": [6, 9], "arg1": "the cumulation of Creation , in the era of resurrection , in the physical World", "arg1_index": [10, 24], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "The basket product , while it has got off to a slow start , is being supported by some big brokerage firms -- another member of Mr. Phelan 's splintered constituency .": [{"arg0": "it", "arg0_index": [5, 5], "pred": "has got off to", "pred_index": [6, 9], "arg1": "a slow start", "arg1_index": [10, 12], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "The basket product", "arg0_index": [0, 2], "pred": "is being supported by", "pred_index": [14, 17], "arg1": "some big brokerage firms", "arg1_index": [18, 21], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "The Nadvorna dynasty is notable inasmuch as many of its descendants become rebbes .": [{"arg0": "The Nadvorna dynasty", "arg0_index": [0, 2], "pred": "is", "pred_index": [3, 3], "arg1": "notable", "arg1_index": [4, 4], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "many of its descendants", "arg0_index": [7, 10], "pred": "become", "pred_index": [11, 11], "arg1": "rebbes", "arg1_index": [12, 12], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "In `` The Andromeda Strain '' , Michael Crichton 's first novel published under his real name , only two people exposed to a pathogenic extraterrestrial microbe survive .": [{"arg0": "`` The Andromeda Strain ''", "arg0_index": [1, 5], "pred": "", "pred_index": [-1, -1], "arg1": "Michael Crichton 's first novel published under his real name", "arg1_index": [7, 16], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Michael Crichton 's first novel", "arg0_index": [7, 11], "pred": " published", "pred_index": [-2, 12, 12], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "only two people exposed to a pathogenic extraterrestrial microbe", "arg0_index": [18, 26], "pred": "survive", "pred_index": [27, 27], "arg1": "In `` The Andromeda Strain ''", "arg1_index": [0, 5], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "two people", "arg0_index": [19, 20], "pred": " exposed to", "pred_index": [-2, 21, 22], "arg1": "a pathogenic extraterrestrial microbe", "arg1_index": [23, 26], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Hofmann was a below-average high school student , but he had many hobbies including magic , electronics , chemistry , and stamp and coin collecting .": [{"arg0": "Hofmann", "arg0_index": [0, 0], "pred": "was", "pred_index": [1, 1], "arg1": "a below-average high school student", "arg1_index": [2, 6], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "he", "arg0_index": [9, 9], "pred": "had", "pred_index": [10, 10], "arg1": "many hobbies", "arg1_index": [11, 12], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "many hobbies", "arg0_index": [11, 12], "pred": "including", "pred_index": [13, 13], "arg1": "magic , electronics , chemistry , and stamp and coin collecting", "arg1_index": [14, 24], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "The fundraiser was successful , and the trip occurred from June through September of 2014 .": [{"arg0": "The fundraiser", "arg0_index": [0, 1], "pred": "was", "pred_index": [2, 2], "arg1": "successful", "arg1_index": [3, 3], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "the trip", "arg0_index": [6, 7], "pred": "occurred", "pred_index": [8, 8], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "The field took off in 1985 after scientists at Britain 's Sheffield University developed a handy , compact magnet for brain stimulation .": [{"arg0": "The field", "arg0_index": [0, 1], "pred": "took off", "pred_index": [2, 3], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "scientists at Britain 's Sheffield University", "arg0_index": [7, 12], "pred": "developed", "pred_index": [13, 13], "arg1": "a handy , compact magnet", "arg1_index": [14, 18], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Like other BBC content of the mid-1990s , it often lampooned the low-budget quality of satellite television available in the UK at the time .": [{"arg0": "it", "arg0_index": [8, 8], "pred": "often lampooned", "pred_index": [9, 10], "arg1": "the low-budget quality of satellite television available", "arg1_index": [11, 17], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Certain fractional quantum Hall phases appear to have the right properties for building a topological quantum computer .": [{"arg0": "Certain fractional quantum Hall phases", "arg0_index": [0, 4], "pred": "appear to have", "pred_index": [5, 7], "arg1": "the right properties", "arg1_index": [8, 10], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Certain fractional quantum Hall phases", "arg0_index": [0, 4], "pred": "building", "pred_index": [12, 12], "arg1": "a topological quantum computer", "arg1_index": [13, 16], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "And ABS has formed a partnership with Habitat for Humanity to give a free Bible to each of its new homeowners in the United States .": [{"arg0": "ABS", "arg0_index": [1, 1], "pred": "has formed", "pred_index": [2, 3], "arg1": "a partnership", "arg1_index": [4, 5], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "ABS", "arg0_index": [1, 1], "pred": "give", "pred_index": [11, 11], "arg1": "a free Bible", "arg1_index": [12, 14], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "However , when the antigenicities of the seed strains and wild viruses do not match , vaccines fail to protect the vaccinees .": [{"arg0": "vaccines", "arg0_index": [16, 16], "pred": "fail to protect", "pred_index": [17, 19], "arg1": "the vaccinees", "arg1_index": [20, 21], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "the antigenicities of the seed strains and wild viruses", "arg0_index": [3, 11], "pred": "do not match", "pred_index": [12, 14], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Kim graduated from Ballard High School in Louisville , Kentucky , in 1989 and from Oberlin College in Ohio in 1993 where he double-majored in Government and English and played for the varsity lacrosse team .": [{"arg0": "Kim", "arg0_index": [0, 0], "pred": "graduated from", "pred_index": [1, 2], "arg1": "Ballard High School", "arg1_index": [3, 5], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Kim", "arg0_index": [0, 0], "pred": "graduated", "pred_index": [1, 1], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "he", "arg0_index": [22, 22], "pred": "double-majored in", "pred_index": [23, 24], "arg1": "Government and English", "arg1_index": [25, 27], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "he", "arg0_index": [22, 22], "pred": "played for", "pred_index": [29, 30], "arg1": "the varsity lacrosse team", "arg1_index": [31, 34], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "In 54 BC , Marcus Perperna is mentioned as one of the consulars who bore testimony on behalf of Marcus Aemilius Scaurus at his trial .": [{"arg0": "Marcus Perperna", "arg0_index": [4, 5], "pred": "is mentioned as", "pred_index": [6, 8], "arg1": "one of the consulars who bore testimony on behalf of Marcus Aemilius Scaurus at his trial", "arg1_index": [9, 24], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "the consulars", "arg0_index": [11, 12], "pred": "bore", "pred_index": [14, 14], "arg1": "testimony", "arg1_index": [15, 15], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "When civilian government was introduced in Romblon by the Americans in 16 March 1901 , Banton was one of 11 new municipalities reinstated or created .": [{"arg0": "Banton", "arg0_index": [15, 15], "pred": "was", "pred_index": [16, 16], "arg1": "one of 11 new municipalities reinstated or created", "arg1_index": [17, 24], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "civilian government", "arg0_index": [1, 2], "pred": "was introduced", "pred_index": [3, 4], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "On a broader scale , the ruling could encourage other states ' courts to adopt the logic of the New York court , not only in DES cases but in other product - related lawsuits , as well .": [{"arg0": "the ruling", "arg0_index": [5, 6], "pred": "could encourage", "pred_index": [7, 8], "arg1": "other states ' courts", "arg1_index": [9, 12], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "other states", "arg0_index": [9, 10], "pred": "adopt", "pred_index": [14, 14], "arg1": "the logic of the New York court", "arg1_index": [15, 21], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Dodo was originally intended to have a `` common '' accent , and is portrayed this way at the end of `` The Massacre '' .": [{"arg0": "Dodo", "arg0_index": [0, 0], "pred": "was originally intended to have", "pred_index": [1, 5], "arg1": "a `` common '' accent", "arg1_index": [6, 10], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Dodo", "arg0_index": [0, 0], "pred": "is portrayed", "pred_index": [13, 14], "arg1": "this way", "arg1_index": [15, 16], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Twice divorced and currently married , Ladd is the mother of actress Laura Dern , by her ex-husband , actor Bruce Dern .": [{"arg0": "Ladd", "arg0_index": [6, 6], "pred": "is", "pred_index": [7, 7], "arg1": "the mother of actress Laura Dern", "arg1_index": [8, 13], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Bruce Dern", "arg0_index": [20, 21], "pred": "", "pred_index": [-1, -1], "arg1": "actor", "arg1_index": [19, 19], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Bruce Dern", "arg0_index": [20, 21], "pred": "", "pred_index": [-1, -1], "arg1": "her ex-husband", "arg1_index": [16, 17], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Ladd", "arg0_index": [6, 6], "pred": " Twice divorced", "pred_index": [-2, 0, 1], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Ladd", "arg0_index": [6, 6], "pred": " currently married", "pred_index": [-2, 3, 4], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "In 1988 , a year and a half after Mrs. Marcos and her late husband , Ferdinand Marcos , the ousted president of the Philippines , fled the Philippines for Hawaii , they were charged with racketeering , conspiracy , obstruction of justice and mail fraud in a scheme in which they allegedly embezzled more than $ 100 million from their homeland .": [{"arg0": "Mrs. Marcos and her late husband , Ferdinand Marcos , the ousted president of the Philippines", "arg0_index": [9, 24], "pred": "were charged with", "pred_index": [33, 35], "arg1": "racketeering , conspiracy , obstruction of justice and mail fraud", "arg1_index": [36, 45], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Mrs. Marcos and her late husband , Ferdinand Marcos , the ousted president of the Philippines", "arg0_index": [9, 24], "pred": "fled", "pred_index": [26, 26], "arg1": "the Philippines", "arg1_index": [27, 28], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Ferdinand Marcos", "arg0_index": [16, 17], "pred": "", "pred_index": [-1, -1], "arg1": "her late husband", "arg1_index": [12, 14], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Ferdinand Marcos", "arg0_index": [16, 17], "pred": "", "pred_index": [-1, -1], "arg1": "the ousted president of the Philippines", "arg1_index": [19, 24], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Mrs. Marcos and her late husband , Ferdinand Marcos , the ousted president of the Philippines", "arg0_index": [9, 24], "pred": "allegedly embezzled", "pred_index": [52, 53], "arg1": "more than $ 100 million", "arg1_index": [54, 58], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "It was named for Gen. Eleazer Wheelock Ripley , an officer in the War of 1812 , who was mainly remembered for the Battle of Lundy 's Lane and the Siege of Fort Erie , in 1814 .": [{"arg0": "It", "arg0_index": [0, 0], "pred": "was named for", "pred_index": [1, 3], "arg1": "Gen. Eleazer Wheelock Ripley", "arg1_index": [4, 7], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Gen. Eleazer Wheelock Ripley", "arg0_index": [4, 7], "pred": "", "pred_index": [-1, -1], "arg1": "an officer in the War of 1812", "arg1_index": [9, 15], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Gen. Eleazer Wheelock Ripley", "arg0_index": [4, 7], "pred": "was mainly remembered for", "pred_index": [18, 21], "arg1": "the Battle of Lundy 's Lane and the Siege of Fort Erie", "arg1_index": [22, 33], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Plants have been planted marking parts of the foundations of the castle , so the positions of some of the buildings can still be inferred .": [{"arg0": "Plants", "arg0_index": [0, 0], "pred": "have been planted", "pred_index": [1, 3], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Plants", "arg0_index": [0, 0], "pred": "marking", "pred_index": [4, 4], "arg1": "parts of the foundations of the castle", "arg1_index": [5, 11], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "the positions of some of the buildings", "arg0_index": [14, 20], "pred": "can still be inferred", "pred_index": [21, 24], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Mr. Zayadi was previously president and chief operating officer of Zellers Inc. , a retail chain that is owned by Toronto - based Hudson 's Bay Co. , Canada 's largest department store operator .": [{"arg0": "Mr. Zayadi", "arg0_index": [0, 1], "pred": "was previously", "pred_index": [2, 3], "arg1": "president and chief operating officer of Zellers Inc.", "arg1_index": [4, 11], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Zellers Inc.", "arg0_index": [10, 11], "pred": "", "pred_index": [-1, -1], "arg1": "a retail chain that is owned by Toronto - based Hudson 's Bay Co.", "arg1_index": [13, 26], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Toronto - based Hudson 's Bay Co.", "arg0_index": [20, 26], "pred": "", "pred_index": [-1, -1], "arg1": "Canada 's largest department store operator", "arg1_index": [28, 33], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Zellers Inc.", "arg0_index": [10, 11], "pred": " owned by", "pred_index": [-2, 18, 19], "arg1": "Toronto - based Hudson 's Bay Co.", "arg1_index": [20, 26], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "In recent testimony on Capitol Hill , Treasury officials said they were considering the new reporting requirements , and the expected publication of the proposal in the Federal Register today is the first official step toward creating final regulations .": [{"arg0": "Treasury officials", "arg0_index": [7, 8], "pred": "said", "pred_index": [9, 9], "arg1": "they were considering the new reporting requirements , and the expected publication of the proposal in the Federal Register today is the first official step toward creating final regulations", "arg1_index": [10, 38], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Treasury officials", "arg0_index": [7, 8], "pred": "were considering", "pred_index": [11, 12], "arg1": "the new reporting requirements", "arg1_index": [13, 16], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "the expected publication of the proposal in the Federal Register", "arg0_index": [19, 28], "pred": "is", "pred_index": [30, 30], "arg1": "the first official step", "arg1_index": [31, 34], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Gameplay is very basic ; the player must shoot constantly at a continual stream of enemies in order to reach the end of each level .": [{"arg0": "", "arg0_index": [], "pred": "", "pred_index": [], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Gameplay", "arg0_index": [0, 0], "pred": "is", "pred_index": [1, 1], "arg1": "very basic", "arg1_index": [2, 3], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "the player", "arg0_index": [5, 6], "pred": "must shoot constantly at", "pred_index": [7, 10], "arg1": "a continual stream of enemies", "arg1_index": [11, 15], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "the player", "arg0_index": [5, 6], "pred": "reach", "pred_index": [19, 19], "arg1": "the end of each level", "arg1_index": [20, 24], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "In 2011 , major vendors launched several consumer-oriented motherboards using the Intel 6-series LGA 1155 chipset and AMD 9 Series AM3 + chipsets with UEFI .": [{"arg0": "major vendors", "arg0_index": [3, 4], "pred": "launched", "pred_index": [5, 5], "arg1": "several consumer-oriented motherboards", "arg1_index": [6, 8], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "several consumer-oriented motherboards", "arg0_index": [6, 8], "pred": "using", "pred_index": [9, 9], "arg1": "the Intel 6-series LGA 1155 chipset and AMD 9 Series AM3 + chipsets with UEFI", "arg1_index": [10, 24], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Metromedia , headed by John W. Kluge , has interests in telecommunications , robotic painting , computer software , restaurants and entertainment .": [{"arg0": "Metromedia", "arg0_index": [0, 0], "pred": " headed by", "pred_index": [-2, 2, 3], "arg1": "John W. Kluge", "arg1_index": [4, 6], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Metromedia", "arg0_index": [0, 0], "pred": "has interests in", "pred_index": [8, 10], "arg1": "telecommunications , robotic painting , computer software , restaurants and entertainment", "arg1_index": [11, 21], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Roger M. Marino , president , was named to the new post of vice chairman .": [{"arg0": "Roger M. Marino", "arg0_index": [0, 2], "pred": "", "pred_index": [-1, -1], "arg1": "president", "arg1_index": [4, 4], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Roger M. Marino", "arg0_index": [0, 2], "pred": "was named to", "pred_index": [6, 8], "arg1": "the new post of vice chairman", "arg1_index": [9, 14], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "If given this data , the Germans would be able to adjust their aim and correct any shortfall .": [{"arg0": "the Germans", "arg0_index": [5, 6], "pred": "would be able to", "pred_index": [7, 10], "arg1": "adjust their aim and correct any shortfall", "arg1_index": [11, 17], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "the Germans", "arg0_index": [5, 6], "pred": "adjust", "pred_index": [11, 11], "arg1": "their aim", "arg1_index": [12, 13], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "the Germans", "arg0_index": [5, 6], "pred": "correct", "pred_index": [15, 15], "arg1": "any shortfall", "arg1_index": [16, 17], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Although the Treasury will announce details of the November refunding tomorrow , it could be delayed if Congress and President Bush fail to increase the Treasury 's borrowing capacity .": [{"arg0": "the Treasury", "arg0_index": [1, 2], "pred": "will announce", "pred_index": [3, 4], "arg1": "details of the November refunding", "arg1_index": [5, 9], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "it", "arg0_index": [12, 12], "pred": "could be delayed", "pred_index": [13, 15], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Congress and President Bush", "arg0_index": [17, 20], "pred": "fail to increase", "pred_index": [21, 23], "arg1": "the Treasury 's borrowing capacity", "arg1_index": [24, 28], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Wakeboarding is practiced by both men and women at the competitive level , but they compete in separate categories .": [{"arg0": "Wakeboarding", "arg0_index": [0, 0], "pred": "is practiced by", "pred_index": [1, 3], "arg1": "both men and women", "arg1_index": [4, 7], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "they", "arg0_index": [14, 14], "pred": "compete in", "pred_index": [15, 16], "arg1": "separate categories", "arg1_index": [17, 18], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Curley was the first classical organist to perform a solo organ recital at the White House , and also played before several European heads of state .": [{"arg0": "Curley", "arg0_index": [0, 0], "pred": "was", "pred_index": [1, 1], "arg1": "the first classical organist", "arg1_index": [2, 5], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Curley", "arg0_index": [0, 0], "pred": "played before", "pred_index": [19, 20], "arg1": "several European heads of state", "arg1_index": [21, 25], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "However , during his rehearsal , Knievel lost control of the motorcycle and crashed into a cameraman .": [{"arg0": "Knievel", "arg0_index": [6, 6], "pred": "lost control of", "pred_index": [7, 9], "arg1": "the motorcycle", "arg1_index": [10, 11], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Knievel", "arg0_index": [6, 6], "pred": "crashed into", "pred_index": [13, 14], "arg1": "a cameraman", "arg1_index": [15, 16], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Prior to the 2012 season , the Royals signed Yost to a contract extension through the 2013 season .": [{"arg0": "the Royals", "arg0_index": [6, 7], "pred": "signed", "pred_index": [8, 8], "arg1": "Yost", "arg1_index": [9, 9], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "As a group , the team was enshrined into the Basketball Hall of Fame in 1959 .": [{"arg0": "the team", "arg0_index": [4, 5], "pred": "was enshrined into", "pred_index": [6, 8], "arg1": "the Basketball Hall of Fame", "arg1_index": [9, 13], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Then the fillets are put in a mix of olive oil , vinegar , sugar , garlic , chill peppers , and lots of parsley or celery .": [{"arg0": "the fillets", "arg0_index": [1, 2], "pred": "are put in", "pred_index": [3, 5], "arg1": "a mix of olive oil , vinegar , sugar , garlic , chill peppers , and lots of parsley or celery", "arg1_index": [6, 26], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "These were often related to European conflict , as the Stuart Pretenders were aided and encouraged by Britain 's continental enemies for their own ends .": [{"arg0": "These", "arg0_index": [0, 0], "pred": "were often related to", "pred_index": [1, 4], "arg1": "European conflict", "arg1_index": [5, 6], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "the Stuart Pretenders", "arg0_index": [9, 11], "pred": "were aided", "pred_index": [12, 13], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "the Stuart Pretenders", "arg0_index": [9, 11], "pred": " encouraged", "pred_index": [-2, 15, 15], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "For example , a passenger can fly from Chardon , Neb. , to Denver for as little as $ 89 to $ 109 , according to prices quoted by the company .": [{"arg0": "a passenger", "arg0_index": [3, 4], "pred": "can fly from", "pred_index": [5, 7], "arg1": "Chardon , Neb.", "arg1_index": [8, 10], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Fans reacted to the news of the suspension by canceling their XM Radio subscriptions , with some fans even going as far as smashing their XM units .": [{"arg0": "Fans", "arg0_index": [0, 0], "pred": "reacted to", "pred_index": [1, 2], "arg1": "the news of the suspension", "arg1_index": [3, 7], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Fans", "arg0_index": [0, 0], "pred": "canceling", "pred_index": [9, 9], "arg1": "their XM Radio subscriptions", "arg1_index": [10, 13], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "some fans", "arg0_index": [16, 17], "pred": "even going as far as smashing", "pred_index": [18, 23], "arg1": "their XM units", "arg1_index": [24, 26], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "In 1975 Barrie was directed by Lee Grant in the television movie `` For The Use Of The Hall '' as `` Charlotte '' .": [{"arg0": "Barrie", "arg0_index": [2, 2], "pred": "was directed by", "pred_index": [3, 5], "arg1": "Lee Grant", "arg1_index": [6, 7], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "`` The Cure '' topped the online music sales charts .": [{"arg0": "`` The Cure ''", "arg0_index": [0, 3], "pred": "topped", "pred_index": [4, 4], "arg1": "the online music sales charts", "arg1_index": [5, 9], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "This involves trade - offs and { it } cuts against the grain of existing consumer and even provider conceptions of what is ` necessary . ' ''": [{"arg0": "This", "arg0_index": [0, 0], "pred": "involves", "pred_index": [1, 1], "arg1": "trade - offs", "arg1_index": [2, 4], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "{ it }", "arg0_index": [6, 8], "pred": "cuts against", "pred_index": [9, 10], "arg1": "the grain of existing consumer and even provider conceptions of what is ` necessary . '", "arg1_index": [11, 26], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "While the campaign was Mr. Gibbons 's idea , however , he wo n't be paying for it : The donations will come out of the chain 's national advertising fund , which is financed by the franchisees .": [{"arg0": "the campaign", "arg0_index": [1, 2], "pred": "was", "pred_index": [3, 3], "arg1": "Mr. Gibbons 's idea", "arg1_index": [4, 7], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "he", "arg0_index": [11, 11], "pred": "wo n't be paying for", "pred_index": [12, 16], "arg1": "idea", "arg1_index": [7, 7], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "The donations", "arg0_index": [19, 20], "pred": "will come out of", "pred_index": [21, 24], "arg1": "the chain 's national advertising fund", "arg1_index": [25, 30], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "the chain 's national advertising fund", "arg0_index": [25, 30], "pred": "is financed by", "pred_index": [33, 35], "arg1": "the franchisees", "arg1_index": [36, 37], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "32.7 % of all households were made up of individuals and 15.7 % had someone living alone who was 65 years of age or older .": [{"arg0": "32.7 % of all households", "arg0_index": [0, 4], "pred": "were made up of", "pred_index": [5, 8], "arg1": "individuals", "arg1_index": [9, 9], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "15.7 %", "arg0_index": [11, 12], "pred": "had", "pred_index": [13, 13], "arg1": "someone living alone who was 65 years of age or older", "arg1_index": [14, 24], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "someone living alone", "arg0_index": [14, 16], "pred": "was", "pred_index": [18, 18], "arg1": "65 years of age or older", "arg1_index": [19, 24], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "someone", "arg0_index": [14, 14], "pred": "living alone", "pred_index": [15, 16], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Results like these indicate acoustic mimicry complexes , both Batesian and Mullerian , may be widespread in the auditory world .": [{"arg0": "Results like these", "arg0_index": [0, 2], "pred": "indicate", "pred_index": [3, 3], "arg1": "acoustic mimicry complexes , both Batesian and Mullerian , may be widespread in the auditory world", "arg1_index": [4, 19], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "acoustic mimicry complexes , both Batesian and Mullerian", "arg0_index": [4, 11], "pred": "may be widespread in", "pred_index": [13, 16], "arg1": "the auditory world", "arg1_index": [17, 19], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Their mission was always for a specific mandate and lasted for a limited period .": [{"arg0": "Their mission", "arg0_index": [0, 1], "pred": "was always for", "pred_index": [2, 4], "arg1": "a specific mandate", "arg1_index": [5, 7], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Their mission", "arg0_index": [0, 1], "pred": "lasted for", "pred_index": [9, 10], "arg1": "a limited period", "arg1_index": [11, 13], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "This line was extended east by the Prahran & Malvern Tramways Trust from Hawthorn Road to Darling Road , Malvern East on 13 November 1913 .": [{"arg0": "This line", "arg0_index": [0, 1], "pred": "was extended", "pred_index": [2, 3], "arg1": "east", "arg1_index": [4, 4], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "The stations were both called `` Midsomer Norton and Welton '' ; under British Railways , the S&D station was renamed as Midsomer Norton South after a short period as Midsomer Norton Upper ; and is currently being restored with occasional open weekends with engines in steam .": [{"arg0": "The stations", "arg0_index": [0, 1], "pred": "were both called", "pred_index": [2, 4], "arg1": "`` Midsomer Norton and Welton ''", "arg1_index": [5, 10], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "the S&D station", "arg0_index": [16, 18], "pred": "was renamed as", "pred_index": [19, 21], "arg1": "Midsomer Norton South", "arg1_index": [22, 24], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "the S&D station", "arg0_index": [16, 18], "pred": "is currently being restored with", "pred_index": [35, 39], "arg1": "occasional open weekends", "arg1_index": [40, 42], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Labor costs are climbing at a far more rapid pace in the health care industry than in other industries .": [{"arg0": "Labor costs", "arg0_index": [0, 1], "pred": "are climbing at", "pred_index": [2, 4], "arg1": "a far more rapid pace", "arg1_index": [5, 9], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "A short distance to the east , NC 111 diverges on Greenwood Boulevard .": [{"arg0": "NC 111", "arg0_index": [7, 8], "pred": "diverges on", "pred_index": [9, 10], "arg1": "Greenwood Boulevard", "arg1_index": [11, 12], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "That same year saw an outbreak of plague in Venice , one that lasted two years and caused Franco to leave the city and to lose many of her possessions .": [{"arg0": "That same year", "arg0_index": [0, 2], "pred": "saw", "pred_index": [3, 3], "arg1": "an outbreak of plague", "arg1_index": [4, 7], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "one", "arg0_index": [11, 11], "pred": "lasted", "pred_index": [13, 13], "arg1": "two years", "arg1_index": [14, 15], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "one", "arg0_index": [11, 11], "pred": "caused", "pred_index": [17, 17], "arg1": "Franco", "arg1_index": [18, 18], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Franco", "arg0_index": [18, 18], "pred": "leave", "pred_index": [20, 20], "arg1": "the city", "arg1_index": [21, 22], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Franco", "arg0_index": [18, 18], "pred": "lose", "pred_index": [25, 25], "arg1": "many of her possessions", "arg1_index": [26, 29], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "The two sides are also discussing certain business ventures involving cable rights to Columbia 's movies .": [{"arg0": "The two sides", "arg0_index": [0, 2], "pred": "are also discussing", "pred_index": [3, 5], "arg1": "certain business ventures", "arg1_index": [6, 8], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "business ventures", "arg0_index": [7, 8], "pred": "involving", "pred_index": [9, 9], "arg1": "cable rights to Columbia 's movies", "arg1_index": [10, 15], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "In 2010 , scam websites co-opted a photograph of her to promote health treatments , the ubiquitous `` 1 weird old tip '' belly fat diets , and penny auctions , unauthorized usage of which Theuriau was initially unaware .": [{"arg0": "scam websites", "arg0_index": [3, 4], "pred": "co-opted", "pred_index": [5, 5], "arg1": "a photograph of her", "arg1_index": [6, 9], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "scam websites", "arg0_index": [3, 4], "pred": "promote", "pred_index": [11, 11], "arg1": "health treatments , the ubiquitous `` 1 weird old tip '' belly fat diets , and penny auctions", "arg1_index": [12, 29], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Theuriau", "arg0_index": [35, 35], "pred": "was initially unaware", "pred_index": [36, 38], "arg1": "unauthorized usage", "arg1_index": [31, 32], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "In 2007 , Sun announced `` Project Indiana '' with several goals , including providing an open source binary distribution of the OpenSolaris project , replacing SXDE .": [{"arg0": "Sun", "arg0_index": [3, 3], "pred": "announced", "pred_index": [4, 4], "arg1": "`` Project Indiana ''", "arg1_index": [5, 8], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "several goals", "arg0_index": [10, 11], "pred": "including", "pred_index": [13, 13], "arg1": "providing an open source binary distribution of the OpenSolaris project , replacing SXDE", "arg1_index": [14, 26], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Sun", "arg0_index": [3, 3], "pred": "providing", "pred_index": [14, 14], "arg1": "an open source binary distribution of the OpenSolaris project", "arg1_index": [15, 23], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "an open source binary distribution of the OpenSolaris project", "arg0_index": [15, 23], "pred": "replacing", "pred_index": [25, 25], "arg1": "SXDE", "arg1_index": [26, 26], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "By this point , Simpson had returned to his mansion in Brentwood and had surrendered to police .": [{"arg0": "Simpson", "arg0_index": [4, 4], "pred": "had returned to", "pred_index": [5, 7], "arg1": "his mansion in Brentwood", "arg1_index": [8, 11], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Simpson", "arg0_index": [4, 4], "pred": "had surrendered to", "pred_index": [13, 15], "arg1": "police", "arg1_index": [16, 16], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Sometimes extra payments were specified by which a freed slave could liberate himself from these residual duties .": [{"arg0": "extra payments", "arg0_index": [1, 2], "pred": "were specified by", "pred_index": [3, 5], "arg1": "which a freed slave could liberate himself from these residual duties", "arg1_index": [6, 16], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "a freed slave", "arg0_index": [7, 9], "pred": "could liberate", "pred_index": [10, 11], "arg1": "himself", "arg1_index": [12, 12], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "While pursuing his MFA at Columbia in New York , Scieszka painted apartments .": [{"arg0": "Scieszka", "arg0_index": [10, 10], "pred": "painted", "pred_index": [11, 11], "arg1": "apartments", "arg1_index": [12, 12], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Scieszka", "arg0_index": [10, 10], "pred": "pursuing", "pred_index": [1, 1], "arg1": "his MFA", "arg1_index": [2, 3], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "After years of talking about selling in Japan , more and more U.S. companies are seriously pouring in .": [{"arg0": "more and more U.S. companies", "arg0_index": [9, 13], "pred": "are seriously pouring in", "pred_index": [14, 17], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "", "arg0_index": [], "pred": "talking about", "pred_index": [3, 4], "arg1": "selling in Japan", "arg1_index": [5, 7], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Their numbers continued to increase each year as rumours about immigration restrictions appeared in much of the Cypriot media .": [{"arg0": "Their numbers", "arg0_index": [0, 1], "pred": "continued to increase", "pred_index": [2, 4], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "rumours about immigration restrictions", "arg0_index": [8, 11], "pred": "appeared in", "pred_index": [12, 13], "arg1": "much of the Cypriot media", "arg1_index": [14, 18], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "It surged 2 3\\/4 to 6 on volume of more than 1.7 million shares after the company agreed to be acquired by Japan 's Chugai Pharmaceutical for about $ 110 million -- almost double the market price of Gen - Probe 's stock .": [{"arg0": "It", "arg0_index": [0, 0], "pred": "surged", "pred_index": [1, 1], "arg1": "2 3\\/4", "arg1_index": [2, 3], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "the company", "arg0_index": [15, 16], "pred": "agreed to be acquired by", "pred_index": [17, 21], "arg1": "Japan 's Chugai Pharmaceutical", "arg1_index": [22, 25], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "$ 110 million", "arg0_index": [28, 30], "pred": "", "pred_index": [-1, -1], "arg1": "almost double the market price of Gen - Probe 's stock", "arg1_index": [32, 42], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "The U.S. market , too , is dominated by a giant , International Business Machines Corp .": [{"arg0": "The U.S. market", "arg0_index": [0, 2], "pred": "is dominated by", "pred_index": [6, 8], "arg1": "a giant , International Business Machines Corp", "arg1_index": [9, 15], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "By then , she was raising not only her own children but also her nephews , who had been orphaned by the plague .": [{"arg0": "she", "arg0_index": [3, 3], "pred": "was raising", "pred_index": [4, 5], "arg1": "not only her own children but also her nephews", "arg1_index": [6, 14], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "her nephews", "arg0_index": [13, 14], "pred": "had been orphaned by", "pred_index": [17, 20], "arg1": "the plague", "arg1_index": [21, 22], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Only his factories in Japan and Korea , employing his followers at subsistence wages and producing everything from rifles to ginseng to expensive marble vases , kept the money flowing westward .": [{"arg0": "Only his factories in Japan and Korea", "arg0_index": [0, 6], "pred": "kept", "pred_index": [26, 26], "arg1": "the money", "arg1_index": [27, 28], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "his factories in Japan and Korea", "arg0_index": [1, 6], "pred": "employing", "pred_index": [8, 8], "arg1": "his followers", "arg1_index": [9, 10], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "his factories in Japan and Korea", "arg0_index": [1, 6], "pred": "producing", "pred_index": [15, 15], "arg1": "everything from rifles to ginseng to expensive marble vases", "arg1_index": [16, 24], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "the money", "arg0_index": [27, 28], "pred": "flowing", "pred_index": [29, 29], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Richard Newsom , a California state official who last year examined Lincoln 's parent , American Continental Corp. , said he also saw evidence that crimes had been committed .": [{"arg0": "Richard Newsom", "arg0_index": [0, 1], "pred": "", "pred_index": [-1, -1], "arg1": "a California state official", "arg1_index": [3, 6], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Lincoln 's parent", "arg0_index": [11, 13], "pred": "", "pred_index": [-1, -1], "arg1": "American Continental Corp.", "arg1_index": [15, 17], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Richard Newsom", "arg0_index": [0, 1], "pred": "examined", "pred_index": [10, 10], "arg1": "Lincoln 's parent , American Continental Corp.", "arg1_index": [11, 17], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Richard Newsom", "arg0_index": [0, 1], "pred": "said", "pred_index": [19, 19], "arg1": "he also saw evidence that crimes had been committed", "arg1_index": [20, 28], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "he", "arg0_index": [20, 20], "pred": "saw", "pred_index": [22, 22], "arg1": "evidence that crimes had been committed", "arg1_index": [23, 28], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "crimes", "arg0_index": [25, 25], "pred": "had been committed", "pred_index": [26, 28], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "As the London trading session drew to a close , the market was still listening to the parliamentary debate on the economy , with new Chancellor of the Exchequer John Major expected to clarify his approach to the British economy and currency issues .": [{"arg0": "the market", "arg0_index": [10, 11], "pred": "was still listening to", "pred_index": [12, 15], "arg1": "the parliamentary debate on the economy", "arg1_index": [16, 21], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "John Major", "arg0_index": [29, 30], "pred": "", "pred_index": [-1, -1], "arg1": "new Chancellor of the Exchequer", "arg1_index": [24, 28], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "London trading session", "arg0_index": [2, 4], "pred": "drew to", "pred_index": [5, 6], "arg1": "a close", "arg1_index": [7, 8], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "John Major", "arg0_index": [29, 30], "pred": "expected to clarify", "pred_index": [31, 33], "arg1": "his approach", "arg1_index": [34, 35], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Citizens for Responsibility and Ethics in Washington filed an Ethics Committee complaint against Bond over his role in the ouster of Graves .": [{"arg0": "Citizens for Responsibility and Ethics in Washington", "arg0_index": [0, 6], "pred": "filed", "pred_index": [7, 7], "arg1": "an Ethics Committee complaint", "arg1_index": [8, 11], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "In particular , Cyprinidae of southwestern North America have been severely affected ; a considerable number went entirely extinct after settlement by Europeans .": [{"arg0": "Cyprinidae of southwestern North America", "arg0_index": [3, 7], "pred": "have been severely affected", "pred_index": [8, 11], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "a considerable number", "arg0_index": [13, 15], "pred": "went", "pred_index": [16, 16], "arg1": "entirely extinct", "arg1_index": [17, 18], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "He was a member of the European Convention , which drafted the text of the European Constitution that never entered into force .": [{"arg0": "He", "arg0_index": [0, 0], "pred": "was", "pred_index": [1, 1], "arg1": "a member of the European Convention", "arg1_index": [2, 7], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "European Convention", "arg0_index": [6, 7], "pred": "drafted", "pred_index": [10, 10], "arg1": "the text of the European Constitution", "arg1_index": [11, 16], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "the text of the European Constitution", "arg0_index": [11, 16], "pred": "never entered into", "pred_index": [18, 20], "arg1": "force", "arg1_index": [21, 21], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "He appeared in that game alongside his Arsenal midfield colleague Brian Marwood , who had joined them from Sheffield Wednesday eight months earlier .": [{"arg0": "He", "arg0_index": [0, 0], "pred": "appeared in", "pred_index": [1, 2], "arg1": "that game", "arg1_index": [3, 4], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Brian Marwood", "arg0_index": [10, 11], "pred": "", "pred_index": [-1, -1], "arg1": "his Arsenal midfield colleague", "arg1_index": [6, 9], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Brian Marwood", "arg0_index": [10, 11], "pred": "had joined", "pred_index": [14, 15], "arg1": "them", "arg1_index": [16, 16], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Of the rest of the population , there was 1 individual who belonged to the Christian Catholic faith .": [{"arg0": "there", "arg0_index": [7, 7], "pred": "was", "pred_index": [8, 8], "arg1": "1 individual who belonged to the Christian Catholic faith", "arg1_index": [9, 17], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "1 individual", "arg0_index": [9, 10], "pred": "belonged to", "pred_index": [12, 13], "arg1": "Christian Catholic faith", "arg1_index": [15, 17], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "The ensemble also has extensive recordings with Deutsche Grammophon , Dorian Recordings , Newport Classic , Navona Records , and under their own label .": [{"arg0": "The ensemble", "arg0_index": [0, 1], "pred": "has extensive recordings with", "pred_index": [3, 6], "arg1": "Deutsche Grammophon , Dorian Recordings , Newport Classic , Navona Records", "arg1_index": [7, 17], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Trumbull was often incorrectly credited in print as being the sole special-effects creator for 2001 .": [{"arg0": "Trumbull", "arg0_index": [0, 0], "pred": "was often incorrectly credited in print as being", "pred_index": [1, 8], "arg1": "the sole special-effects creator for 2001", "arg1_index": [9, 14], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Under a merger agreement reached Sept. 14 , the UAL board agreed to reimburse certain of the buy - out group 's expenses out of company funds even if the transaction was n't completed , provided the group did n't breach the agreement .": [{"arg0": "the UAL board", "arg0_index": [8, 10], "pred": "agreed to reimburse", "pred_index": [11, 13], "arg1": "certain of the buy - out group 's expenses out of company funds", "arg1_index": [14, 26], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "the transaction", "arg0_index": [29, 30], "pred": "was n't completed", "pred_index": [31, 33], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "the group", "arg0_index": [36, 37], "pred": "did n't breach", "pred_index": [38, 40], "arg1": "the agreement", "arg1_index": [41, 42], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "a merger agreement", "arg0_index": [1, 3], "pred": "reached", "pred_index": [4, 4], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Cis-regulatory elements are sequences that control the transcription of a nearby gene .": [{"arg0": "Cis-regulatory elements", "arg0_index": [0, 1], "pred": "are", "pred_index": [2, 2], "arg1": "sequences that control the transcription of a nearby gene", "arg1_index": [3, 11], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "sequences", "arg0_index": [3, 3], "pred": "control", "pred_index": [5, 5], "arg1": "the transcription of a nearby gene", "arg1_index": [6, 11], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Unlike Uncle Sam later , he is not a figure of authority but rather a yeoman who prefers his small beer and domestic peace , possessed of neither patriarchal power nor heroic defiance .": [{"arg0": "he", "arg0_index": [5, 5], "pred": "is not", "pred_index": [6, 7], "arg1": "a figure of authority", "arg1_index": [8, 11], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "he", "arg0_index": [5, 5], "pred": "is", "pred_index": [6, 6], "arg1": "a yeoman who prefers his small beer and domestic peace , possessed of neither patriarchal power nor heroic defiance", "arg1_index": [14, 32], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "a yeoman", "arg0_index": [14, 15], "pred": "prefers", "pred_index": [17, 17], "arg1": "his small beer and domestic peace", "arg1_index": [18, 23], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "a yeoman", "arg0_index": [14, 15], "pred": " possessed of", "pred_index": [-2, 25, 26], "arg1": "neither patriarchal power nor heroic defiance", "arg1_index": [27, 32], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Third TV drama series was broadcast in 2008 - , featuring Mao Inoue as Anmitsu .": [{"arg0": "Third TV drama series", "arg0_index": [0, 3], "pred": "was broadcast in", "pred_index": [4, 6], "arg1": "2008", "arg1_index": [7, 7], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Third TV drama series", "arg0_index": [0, 3], "pred": "featuring", "pred_index": [10, 10], "arg1": "Mao Inoue", "arg1_index": [11, 12], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "A CEN forms an important but small part of a Local Strategic Partnership .": [{"arg0": "A CEN", "arg0_index": [0, 1], "pred": "forms", "pred_index": [2, 2], "arg1": "an important but small part of a Local Strategic Partnership", "arg1_index": [3, 12], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Good 1H NMR spectra can be acquired with 16 repeats , which takes only minutes .": [{"arg0": "Good 1H NMR spectra", "arg0_index": [0, 3], "pred": "can be acquired with", "pred_index": [4, 7], "arg1": "16 repeats", "arg1_index": [8, 9], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "16 repeats", "arg0_index": [8, 9], "pred": "takes", "pred_index": [12, 12], "arg1": "only minutes", "arg1_index": [13, 14], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Robert Charles `` Jack '' Russell , MBE , is a retired English international cricketer , now known for his abilities as an artist , as a cricket wicketkeeping coach , and a football goalkeeping coach .": [{"arg0": "Robert Charles `` Jack '' Russell , MBE", "arg0_index": [0, 7], "pred": "is", "pred_index": [9, 9], "arg1": "a retired English international cricketer", "arg1_index": [10, 14], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Robert Charles `` Jack '' Russell , MBE", "arg0_index": [0, 7], "pred": " known for", "pred_index": [-2, 17, 18], "arg1": "his abilities", "arg1_index": [19, 20], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Robert Charles `` Jack '' Russell , MBE", "arg0_index": [0, 7], "pred": "known for", "pred_index": [17, 18], "arg1": "his abilities", "arg1_index": [19, 20], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "I was pleased to note that your Oct. 23 Centennial Journal item recognized the money - fund concept as one of the significant events of the past century .": [{"arg0": "I", "arg0_index": [0, 0], "pred": "was pleased to note", "pred_index": [1, 4], "arg1": "that your Oct. 23 Centennial Journal item recognized the money - fund concept as one of the significant events of the past century", "arg1_index": [5, 27], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "your Oct. 23 Centennial Journal item", "arg0_index": [6, 11], "pred": "recognized", "pred_index": [12, 12], "arg1": "the money - fund concept", "arg1_index": [13, 17], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Dr. Pim played for Ireland against England in 1892 , 1893 , 1894 and 1896 .": [{"arg0": "Dr. Pim", "arg0_index": [0, 1], "pred": "played for", "pred_index": [2, 3], "arg1": "Ireland", "arg1_index": [4, 4], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "The government , already buffeted by high interest rates and a slowing economy , has been badly hurt by last week 's shake - up in Mrs. Thatcher 's cabinet .": [{"arg0": "The government", "arg0_index": [0, 1], "pred": " already buffeted by", "pred_index": [-2, 3, 5], "arg1": "high interest rates and a slowing economy", "arg1_index": [6, 12], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "The government", "arg0_index": [0, 1], "pred": "has been badly hurt by", "pred_index": [14, 18], "arg1": "last week 's shake - up", "arg1_index": [19, 24], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "During the past 25 years , the number of balloonists ( those who have passed a Federal Aviation Authority lighter - than - air test ) have swelled from a couple hundred to several thousand , with some estimates running as high as 10,000 .": [{"arg0": "the number of balloonists", "arg0_index": [6, 9], "pred": "have swelled from", "pred_index": [26, 28], "arg1": "a couple hundred", "arg1_index": [29, 31], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "balloonists", "arg0_index": [9, 9], "pred": "have passed", "pred_index": [13, 14], "arg1": "a Federal Aviation Authority lighter - than - air test", "arg1_index": [15, 24], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "some", "arg0_index": [37, 37], "pred": "estimates running as high as", "pred_index": [38, 42], "arg1": "10,000", "arg1_index": [43, 43], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Crouched at shortstop , Bert Campaneris , once Oakland 's master thief , effortlessly scoops up a groundball and flips it to second .": [{"arg0": "Bert Campaneris", "arg0_index": [4, 5], "pred": "", "pred_index": [-1, -1], "arg1": "once Oakland 's master thief", "arg1_index": [7, 11], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Bert Campaneris", "arg0_index": [4, 5], "pred": " Crouched at", "pred_index": [-2, 0, 1], "arg1": "shortstop", "arg1_index": [2, 2], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Bert Campaneris", "arg0_index": [4, 5], "pred": "effortlessly scoops up", "pred_index": [13, 15], "arg1": "a groundball", "arg1_index": [16, 17], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Bert Campaneris", "arg0_index": [4, 5], "pred": "flips", "pred_index": [19, 19], "arg1": "a groundball", "arg1_index": [16, 17], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "San Francisco 's diversity of cultures along with its eccentricities are so great that they have greatly influenced the country and the world at large over the years .": [{"arg0": "San Francisco 's diversity of cultures along with its eccentricities", "arg0_index": [0, 9], "pred": "are", "pred_index": [10, 10], "arg1": "so great", "arg1_index": [11, 12], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "San Francisco 's diversity of cultures along with its eccentricities", "arg0_index": [0, 9], "pred": "have greatly influenced", "pred_index": [15, 17], "arg1": "the country and the world", "arg1_index": [18, 22], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Accordingly , the 1962 Roman Missal , the edition whose continued use as an extraordinary form of the Roman Rite is authorized by the motu proprio `` Summorum Pontificum '' , also has no mention of her .": [{"arg0": "continued use as an extraordinary form of the Roman Rite", "arg0_index": [10, 19], "pred": "is authorized by", "pred_index": [20, 22], "arg1": "the motu proprio `` Summorum Pontificum ''", "arg1_index": [23, 29], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "the 1962 Roman Missal", "arg0_index": [2, 5], "pred": "has", "pred_index": [32, 32], "arg1": "no mention of her", "arg1_index": [33, 36], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Takeover stock traders noted that with the junk - bond market in disarray , Georgia - Pacific 's bid is an indication of where the takeover game is headed : namely , industrial companies can continue bidding for one another , but financial buyers such as leveraged buy - out firms will be at a disadvantage in obtaining financing .": [{"arg0": "Takeover stock traders", "arg0_index": [0, 2], "pred": "noted", "pred_index": [3, 3], "arg1": "that with the junk - bond market in disarray , Georgia - Pacific 's bid is an indication of where the takeover game is headed", "arg1_index": [4, 28], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Georgia - Pacific 's bid", "arg0_index": [14, 18], "pred": "is", "pred_index": [19, 19], "arg1": "an indication of where the takeover game is headed", "arg1_index": [20, 28], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "takeover game", "arg0_index": [25, 26], "pred": "is headed", "pred_index": [27, 28], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "industrial companies", "arg0_index": [32, 33], "pred": "can continue bidding for", "pred_index": [34, 37], "arg1": "one another", "arg1_index": [38, 39], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "financial buyers such as leveraged buy - out firms", "arg0_index": [42, 50], "pred": "will be at a disadvantage in", "pred_index": [51, 56], "arg1": "obtaining financing", "arg1_index": [57, 58], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "financial buyers such as leveraged buy - out firms", "arg0_index": [42, 50], "pred": "obtaining", "pred_index": [57, 57], "arg1": "financing", "arg1_index": [58, 58], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "The Chemical spokeswoman said the bank has examined its methodologies and internal controls .": [{"arg0": "The Chemical spokeswoman", "arg0_index": [0, 2], "pred": "said", "pred_index": [3, 3], "arg1": "the bank has examined its methodologies and internal controls", "arg1_index": [4, 12], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "the bank", "arg0_index": [4, 5], "pred": "has examined", "pred_index": [6, 7], "arg1": "its methodologies", "arg1_index": [8, 9], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "the bank", "arg0_index": [4, 5], "pred": "has examined", "pred_index": [6, 7], "arg1": "its methodologies and internal controls", "arg1_index": [8, 12], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "He left only a small contingent to guard the defile , and took his entire army to destroy the plain that lay ahead of Alexander 's army .": [{"arg0": "He", "arg0_index": [0, 0], "pred": "left", "pred_index": [1, 1], "arg1": "only a small contingent", "arg1_index": [2, 5], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "He", "arg0_index": [0, 0], "pred": "guard", "pred_index": [7, 7], "arg1": "the defile", "arg1_index": [8, 9], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "He", "arg0_index": [0, 0], "pred": "took", "pred_index": [12, 12], "arg1": "his entire army", "arg1_index": [13, 15], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "his entire army", "arg0_index": [13, 15], "pred": "destroy", "pred_index": [17, 17], "arg1": "the plain that lay ahead of Alexander 's army", "arg1_index": [18, 26], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "the plain", "arg0_index": [18, 19], "pred": "lay ahead of", "pred_index": [21, 23], "arg1": "Alexander 's army", "arg1_index": [24, 26], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "$ 300 million of bonds due Nov. 16 , 1993 , with equity - purchase warrants , indicating a 3 3\\/4 % coupon at par via Nomura International Ltd .": [{"arg0": "$ 300 million of bonds", "arg0_index": [0, 4], "pred": "due", "pred_index": [5, 5], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "equity - purchase warrants", "arg0_index": [12, 15], "pred": "indicating", "pred_index": [17, 17], "arg1": "a 3 3\\/4 % coupon at par", "arg1_index": [18, 24], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "A motorcycle speedway long-track meeting , one of the few held in the UK , was staged at Ammanford .": [{"arg0": "A motorcycle speedway long-track meeting", "arg0_index": [0, 4], "pred": "", "pred_index": [-1, -1], "arg1": "one of the few held in the UK", "arg1_index": [6, 13], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "one of the few", "arg0_index": [6, 9], "pred": " held in", "pred_index": [-2, 10, 11], "arg1": "the UK", "arg1_index": [12, 13], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "A motorcycle speedway long-track meeting", "arg0_index": [0, 4], "pred": "was staged at", "pred_index": [15, 17], "arg1": "Ammanford", "arg1_index": [18, 18], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "The staff provides a family-style , home-cooked dinner every night , which is attended not only by Dartmouth students , but by community members , Appalachian Trail thru-hikers , tourists , and even Dartmouth professors .": [{"arg0": "The staff", "arg0_index": [0, 1], "pred": "provides", "pred_index": [2, 2], "arg1": "a family-style , home-cooked dinner", "arg1_index": [3, 7], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "family-style , home-cooked dinner", "arg0_index": [4, 7], "pred": "is attended", "pred_index": [12, 13], "arg1": "not only by Dartmouth students , but by community members , Appalachian Trail thru-hikers , tourists , and even Dartmouth professors", "arg1_index": [14, 34], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "In the Civil War , he advocated strong prosecution of the Union War effort , the end of slavery , and civil rights for freed African Americans .": [{"arg0": "he", "arg0_index": [5, 5], "pred": "advocated strong prosecution of", "pred_index": [6, 9], "arg1": "the Union War effort", "arg1_index": [10, 13], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "he", "arg0_index": [5, 5], "pred": "advocated strong prosecution of", "pred_index": [6, 9], "arg1": "the Union War effort , the end of slavery , and civil rights for freed African Americans", "arg1_index": [10, 26], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "After this point many of the republicans were arrested in Free State `` round ups '' when they had come out of hiding and returned home .": [{"arg0": "many of the republicans", "arg0_index": [3, 6], "pred": "were arrested", "pred_index": [7, 8], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "many of the republicans", "arg0_index": [3, 6], "pred": "had come out of", "pred_index": [18, 21], "arg1": "hiding", "arg1_index": [22, 22], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "they", "arg0_index": [17, 17], "pred": "returned", "pred_index": [24, 24], "arg1": "home", "arg1_index": [25, 25], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Li Hongzhi began his public teachings of Falun Gong on 13 May 1992 in Changchun , and subsequently gave lectures and taught Falun Gong exercises across China .": [{"arg0": "Li Hongzhi", "arg0_index": [0, 1], "pred": "began", "pred_index": [2, 2], "arg1": "his public teachings of Falun Gong", "arg1_index": [3, 8], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Li Hongzhi", "arg0_index": [0, 1], "pred": "subsequently gave", "pred_index": [17, 18], "arg1": "lectures", "arg1_index": [19, 19], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Li Hongzhi", "arg0_index": [0, 1], "pred": "taught", "pred_index": [21, 21], "arg1": "Falun Gong exercises", "arg1_index": [22, 24], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "The Charles City equipment was transferred to Mason City to replace equipment burned in the November 24 , 1967 shop fire .": [{"arg0": "The Charles City equipment", "arg0_index": [0, 3], "pred": "was transferred to", "pred_index": [4, 6], "arg1": "Mason City", "arg1_index": [7, 8], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "The Charles City equipment", "arg0_index": [0, 3], "pred": "replace", "pred_index": [10, 10], "arg1": "equipment burned in the November 24 , 1967 shop fire", "arg1_index": [11, 20], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "equipment", "arg0_index": [11, 11], "pred": " burned in", "pred_index": [-2, 12, 13], "arg1": "the November 24 , 1967 shop fire", "arg1_index": [14, 20], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "The extension of the University Library can be found on the second floor , and parking for 120 cars on the third to sixth floors .": [{"arg0": "The extension of the University Library", "arg0_index": [0, 5], "pred": "can be found", "pred_index": [6, 8], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "parking for 120 cars", "arg0_index": [15, 18], "pred": "can be found", "pred_index": [6, 8], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Other signs of lens subluxation include mild conjunctival redness , vitreous humour degeneration , prolapse of the vitreous into the anterior chamber , and an increase or decrease of anterior chamber depth .": [{"arg0": "Other signs of lens subluxation", "arg0_index": [0, 4], "pred": "include", "pred_index": [5, 5], "arg1": "mild conjunctival redness , vitreous humour degeneration , prolapse of the vitreous into the anterior chamber , and an increase or decrease of anterior chamber depth", "arg1_index": [6, 31], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "These objects are thrown away if their screen projection is too small .": [{"arg0": "These objects", "arg0_index": [0, 1], "pred": "are thrown away", "pred_index": [2, 4], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "their screen projection", "arg0_index": [6, 8], "pred": "is", "pred_index": [9, 9], "arg1": "too small", "arg1_index": [10, 11], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Males had a median income of $ 36,016 versus $ 32,679 for females .": [{"arg0": "Males", "arg0_index": [0, 0], "pred": "had", "pred_index": [1, 1], "arg1": "a median income of $ 36,016", "arg1_index": [2, 7], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "The closest Watson ever got was when Republicans had 12 seats in the State House in 2003 .": [{"arg0": "The closest Watson ever got", "arg0_index": [0, 4], "pred": "was", "pred_index": [5, 5], "arg1": "when Republicans had 12 seats in the State House in 2003", "arg1_index": [6, 16], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Republicans", "arg0_index": [7, 7], "pred": "had", "pred_index": [8, 8], "arg1": "12 seats", "arg1_index": [9, 10], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "As is true for all sensors , absolute accuracy of a measurement requires a functionality for calibration .": [{"arg0": "absolute accuracy of a measurement requires a functionality for calibration", "arg0_index": [7, 16], "pred": "is", "pred_index": [1, 1], "arg1": "true", "arg1_index": [2, 2], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "absolute accuracy of a measurement", "arg0_index": [7, 11], "pred": "requires", "pred_index": [12, 12], "arg1": "a functionality for calibration", "arg1_index": [13, 16], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Despite the modest gains , traders said the market remains dull , with investors remaining cautiously on the sidelines .": [{"arg0": "traders", "arg0_index": [5, 5], "pred": "said", "pred_index": [6, 6], "arg1": "the market remains dull , with investors remaining cautiously on the sidelines", "arg1_index": [7, 18], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "the market", "arg0_index": [7, 8], "pred": "remains", "pred_index": [9, 9], "arg1": "dull", "arg1_index": [10, 10], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "investors", "arg0_index": [13, 13], "pred": "remaining cautiously on", "pred_index": [14, 16], "arg1": "the sidelines", "arg1_index": [17, 18], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "A surprising 78 % of people said they exercise regularly , up from 73 % in 1981 .": [{"arg0": "A surprising 78 % of people", "arg0_index": [0, 5], "pred": "said", "pred_index": [6, 6], "arg1": "they exercise regularly", "arg1_index": [7, 9], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "they", "arg0_index": [7, 7], "pred": "exercise regularly", "pred_index": [8, 9], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "The Bureau of Alcohol , Tobacco , Firearms and Explosives , formed in 1886 , is a federal law enforcement organization within the United States Department of Justice .": [{"arg0": "The Bureau of Alcohol , Tobacco , Firearms and Explosives", "arg0_index": [0, 9], "pred": "formed in", "pred_index": [11, 12], "arg1": "1886", "arg1_index": [13, 13], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "The Bureau of Alcohol , Tobacco , Firearms and Explosives", "arg0_index": [0, 9], "pred": "is", "pred_index": [15, 15], "arg1": "a federal law enforcement organization", "arg1_index": [16, 20], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "During the Second World War , the number of Turkish run cafes increased from 20 in 1939 to 200 in 1945 which created a demand for more Turkish Cypriot workers .": [{"arg0": "the number of Turkish run cafes", "arg0_index": [6, 11], "pred": "increased from", "pred_index": [12, 13], "arg1": "20 in 1939", "arg1_index": [14, 16], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "the number of Turkish run cafes increased from 20 in 1939 to 200 in 1945", "arg0_index": [6, 20], "pred": "created", "pred_index": [22, 22], "arg1": "a demand", "arg1_index": [23, 24], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "And , since the public has always been fascinated by gossip and voyeurism , reporters and editors will strain for creative angles to justify the inclusion of collateral facts about private lives including sexual activities and domestic relationships , activities of family members , and all matters about mental and physical health .": [{"arg0": "the public", "arg0_index": [3, 4], "pred": "has always been fascinated by", "pred_index": [5, 9], "arg1": "gossip and voyeurism", "arg1_index": [10, 12], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "reporters and editors", "arg0_index": [14, 16], "pred": "will strain for", "pred_index": [17, 19], "arg1": "creative angles", "arg1_index": [20, 21], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "collateral facts about private lives", "arg0_index": [27, 31], "pred": "including", "pred_index": [32, 32], "arg1": "sexual activities and domestic relationships , activities of family members , and all matters about mental and physical health", "arg1_index": [33, 51], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "`` Black Water '' became one of the few records by any act released as a B-side to another Hot 100 hit `` before '' topping the Hot 100 itself .": [{"arg0": "`` Black Water ''", "arg0_index": [0, 3], "pred": "became", "pred_index": [4, 4], "arg1": "one of the few records", "arg1_index": [5, 9], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "any act", "arg0_index": [11, 12], "pred": " released as", "pred_index": [-2, 13, 14], "arg1": "a B-side to another Hot 100 hit", "arg1_index": [15, 21], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "`` Black Water ''", "arg0_index": [0, 3], "pred": "topping", "pred_index": [25, 25], "arg1": "the Hot 100", "arg1_index": [26, 28], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "`` Nobody told us ; nobody called us , '' says an official close to the case who asked not to be named .": [{"arg0": "an official close to the case", "arg0_index": [11, 16], "pred": "says", "pred_index": [10, 10], "arg1": "`` Nobody told us ; nobody called us , ''", "arg1_index": [0, 9], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "an official close to the case", "arg0_index": [11, 16], "pred": "asked not to be named", "pred_index": [18, 22], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Nobody", "arg0_index": [1, 1], "pred": "told", "pred_index": [2, 2], "arg1": "us", "arg1_index": [3, 3], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "nobody", "arg0_index": [5, 5], "pred": "called", "pred_index": [6, 6], "arg1": "us", "arg1_index": [7, 7], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "A partial list of turbomachinery that may use one or more centrifugal compressors within the machine are listed here .": [{"arg0": "A partial list of turbomachinery that may use one or more centrifugal compressors within the machine", "arg0_index": [0, 15], "pred": "are listed", "pred_index": [16, 17], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "A partial list of turbomachinery", "arg0_index": [0, 4], "pred": "may use", "pred_index": [6, 7], "arg1": "one or more centrifugal compressors", "arg1_index": [8, 12], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Langford kept Walcott at a distance with his longer reach and used his footwork to evade all of Walcott 's attacks .": [{"arg0": "Langford", "arg0_index": [0, 0], "pred": "kept", "pred_index": [1, 1], "arg1": "Walcott", "arg1_index": [2, 2], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Langford", "arg0_index": [0, 0], "pred": "used", "pred_index": [11, 11], "arg1": "his footwork", "arg1_index": [12, 13], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "his footwork", "arg0_index": [12, 13], "pred": "evade", "pred_index": [15, 15], "arg1": "all of Walcott 's attacks", "arg1_index": [16, 20], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Here are price trends on the world 's major stock markets , as calculated by Morgan Stanley Capital International Perspective , Geneva .": [{"arg0": "Here", "arg0_index": [0, 0], "pred": "are", "pred_index": [1, 1], "arg1": "price trends", "arg1_index": [2, 3], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "price trends on the world 's major stock markets", "arg0_index": [2, 10], "pred": " calculated by", "pred_index": [-2, 13, 14], "arg1": "Morgan Stanley Capital International Perspective , Geneva", "arg1_index": [15, 21], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "But fully 90 % of those polled felt they did n't need to belong to a health club .": [{"arg0": "fully 90 % of those polled", "arg0_index": [1, 6], "pred": "felt", "pred_index": [7, 7], "arg1": "they did n't need to belong to a health club", "arg1_index": [8, 17], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "they", "arg0_index": [8, 8], "pred": "did n't need to belong to", "pred_index": [9, 14], "arg1": "a health club", "arg1_index": [15, 17], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "British government bonds ended moderately higher , encouraged by a steadier pound and a rise in British stocks .": [{"arg0": "British government bonds", "arg0_index": [0, 2], "pred": "ended", "pred_index": [3, 3], "arg1": "moderately higher", "arg1_index": [4, 5], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "British government bonds", "arg0_index": [0, 2], "pred": " encouraged by", "pred_index": [-2, 7, 8], "arg1": "a steadier pound and a rise in British stocks", "arg1_index": [9, 17], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Modification of the river began in earnest with the arrival of the Florida East Coast Railway in Miami in 1896 .": [{"arg0": "Modification of the river", "arg0_index": [0, 3], "pred": "began in", "pred_index": [4, 5], "arg1": "earnest", "arg1_index": [6, 6], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Watson has served as Minority Leader since elected by his caucus in November 1998 .": [{"arg0": "Watson", "arg0_index": [0, 0], "pred": "has served as", "pred_index": [1, 3], "arg1": "Minority Leader", "arg1_index": [4, 5], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Watson", "arg0_index": [0, 0], "pred": " elected by", "pred_index": [-2, 7, 8], "arg1": "his caucus", "arg1_index": [9, 10], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Daimler said it has had talks with Jaguar about possible joint ventures .": [{"arg0": "Daimler", "arg0_index": [0, 0], "pred": "said", "pred_index": [1, 1], "arg1": "it has had talks with Jaguar about possible joint ventures", "arg1_index": [2, 11], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "it", "arg0_index": [2, 2], "pred": "has had talks with", "pred_index": [3, 6], "arg1": "Jaguar", "arg1_index": [7, 7], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "he was one of only a few concert organists worldwide who supported themselves exclusively by giving recitals , concerts and master classes , without any supplement from teaching or church position .": [{"arg0": "he", "arg0_index": [0, 0], "pred": "was", "pred_index": [1, 1], "arg1": "one of only a few concert organists worldwide who supported themselves exclusively by giving recitals , concerts and master classes , without any supplement from teaching or church position", "arg1_index": [2, 30], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "concert organists", "arg0_index": [7, 8], "pred": "supported", "pred_index": [11, 11], "arg1": "themselves", "arg1_index": [12, 12], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "concert organists", "arg0_index": [7, 8], "pred": "giving", "pred_index": [15, 15], "arg1": "recitals , concerts and master classes", "arg1_index": [16, 21], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "A spokesman said HealthVest has paid two of the three banks it owed interest to in October and is in negotiations with the third bank .": [{"arg0": "A spokesman", "arg0_index": [0, 1], "pred": "said", "pred_index": [2, 2], "arg1": "HealthVest has paid two of the three banks it owed interest to in October and is in negotiations with the third bank", "arg1_index": [3, 24], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "HealthVest", "arg0_index": [3, 3], "pred": "has paid", "pred_index": [4, 5], "arg1": "two of the three banks it owed interest to", "arg1_index": [6, 14], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "HealthVest", "arg0_index": [3, 3], "pred": "is in negotiations with", "pred_index": [18, 21], "arg1": "the third bank", "arg1_index": [22, 24], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "HealthVest", "arg0_index": [3, 3], "pred": "owed interest to", "pred_index": [12, 14], "arg1": "the three banks", "arg1_index": [8, 10], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "This week , New York City announced a 10 - point policy patterned on the federal bill of rights for taxpayers .": [{"arg0": "New York City", "arg0_index": [3, 5], "pred": "announced", "pred_index": [6, 6], "arg1": "a 10 - point policy patterned", "arg1_index": [7, 12], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Due to the opposing nature of the two songs , they can be viewed as a debate on the opposing attitudes on love found throughout the play .": [{"arg0": "two songs", "arg0_index": [7, 8], "pred": "can be viewed as", "pred_index": [11, 14], "arg1": "a debate", "arg1_index": [15, 16], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "love", "arg0_index": [22, 22], "pred": " found", "pred_index": [-2, 23, 23], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "The Persian contingent that was supposed to guard the defile soon abandoned it , and Alexander passed through without any problems .": [{"arg0": "The Persian contingent that was supposed to guard the defile", "arg0_index": [0, 9], "pred": "soon abandoned", "pred_index": [10, 11], "arg1": "it", "arg1_index": [12, 12], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "The Persian contingent", "arg0_index": [0, 2], "pred": "was supposed to guard", "pred_index": [4, 7], "arg1": "the defile", "arg1_index": [8, 9], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Alexander", "arg0_index": [15, 15], "pred": "passed through", "pred_index": [16, 17], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "James Arthur Hogue is a US impostor who most famously entered Princeton University by posing as a self-taught orphan .": [{"arg0": "James Arthur Hogue", "arg0_index": [0, 2], "pred": "is", "pred_index": [3, 3], "arg1": "a US impostor", "arg1_index": [4, 6], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "James Arthur Hogue", "arg0_index": [0, 2], "pred": "most famously entered", "pred_index": [8, 10], "arg1": "Princeton University", "arg1_index": [11, 12], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "James Arthur Hogue", "arg0_index": [0, 2], "pred": "posing as", "pred_index": [14, 15], "arg1": "a self-taught orphan", "arg1_index": [16, 18], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Several isomers of octene are known , depending on the position and the geometry of the double bond in the carbon chain .": [{"arg0": "Several isomers of octene", "arg0_index": [0, 3], "pred": "are known", "pred_index": [4, 5], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Several isomers of octene", "arg0_index": [0, 3], "pred": "depending on", "pred_index": [7, 8], "arg1": "the position and the geometry of the double bond", "arg1_index": [9, 17], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "The series of three constitutional amendments in 1933 severely curtailed the role of the Governor-General of the Irish Free State .": [{"arg0": "The series of three constitutional amendments in 1933", "arg0_index": [0, 7], "pred": "severely curtailed", "pred_index": [8, 9], "arg1": "the role of the Governor-General of the Irish Free State", "arg1_index": [10, 19], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Byers states that global citizenship is a `` powerful term '' because `` people that invoke it do so to provoke and justify action , '' and encourages the attendees of his lecture to re-appropriate it in order for its meaning to have a positive purpose , based on idealistic values .": [{"arg0": "Byers", "arg0_index": [0, 0], "pred": "states", "pred_index": [1, 1], "arg1": "that global citizenship is a `` powerful term '' because `` people that invoke it do so to provoke and justify action", "arg1_index": [2, 23], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Byers", "arg0_index": [0, 0], "pred": "encourages", "pred_index": [27, 27], "arg1": "the attendees of his lecture", "arg1_index": [28, 32], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "global citizenship", "arg0_index": [3, 4], "pred": "is", "pred_index": [5, 5], "arg1": "a `` powerful term ''", "arg1_index": [6, 10], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "people that invoke it", "arg0_index": [13, 16], "pred": "do", "pred_index": [17, 17], "arg1": "so", "arg1_index": [18, 18], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "people", "arg0_index": [13, 13], "pred": "invoke", "pred_index": [15, 15], "arg1": "it", "arg1_index": [16, 16], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "people that invoke it", "arg0_index": [13, 16], "pred": "provoke", "pred_index": [20, 20], "arg1": "action", "arg1_index": [23, 23], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "people that invoke it", "arg0_index": [13, 16], "pred": "justify", "pred_index": [22, 22], "arg1": "action", "arg1_index": [23, 23], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "attendees of his lecture", "arg0_index": [29, 32], "pred": "re-appropriate", "pred_index": [34, 34], "arg1": "it", "arg1_index": [35, 35], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "its meaning", "arg0_index": [39, 40], "pred": "have", "pred_index": [42, 42], "arg1": "a positive purpose", "arg1_index": [43, 45], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "a positive purpose", "arg0_index": [43, 45], "pred": " based on", "pred_index": [-2, 47, 48], "arg1": "idealistic values", "arg1_index": [49, 50], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "But it does that at the cost of deepening the taxpayer 's exposure if the FHA is forced to pay for more loans going sour .": [{"arg0": "it", "arg0_index": [1, 1], "pred": "does", "pred_index": [2, 2], "arg1": "that", "arg1_index": [3, 3], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "the FHA", "arg0_index": [14, 15], "pred": "is forced to pay for", "pred_index": [16, 20], "arg1": "more loans going sour", "arg1_index": [21, 24], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "more loans", "arg0_index": [21, 22], "pred": "going", "pred_index": [23, 23], "arg1": "sour", "arg1_index": [24, 24], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "", "arg0_index": [], "pred": "deepening", "pred_index": [8, 8], "arg1": "the taxpayer 's exposure", "arg1_index": [9, 12], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "", "arg0_index": [], "pred": "", "pred_index": [], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "In 1926 , `` The News and Courier '' was bought by the owners of Charleston 's main evening paper , `` The Evening Post . ''": [{"arg0": "The News and Courier ''", "arg0_index": [4, 8], "pred": "was bought by", "pred_index": [9, 11], "arg1": "the owners of Charleston 's main evening paper", "arg1_index": [12, 19], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Charleston 's main evening paper", "arg0_index": [15, 19], "pred": "", "pred_index": [-1, -1], "arg1": "`` The Evening Post . ''", "arg1_index": [21, 26], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Mr. Mulford said reports of tension between the Treasury and Fed have been exaggerated , insisting that they involved `` nuances . ''": [{"arg0": "Mr. Mulford", "arg0_index": [0, 1], "pred": "said", "pred_index": [2, 2], "arg1": "reports of tension between the Treasury and Fed have been exaggerated", "arg1_index": [3, 13], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Mr. Mulford", "arg0_index": [0, 1], "pred": "insisting", "pred_index": [15, 15], "arg1": "that they involved `` nuances . ''", "arg1_index": [16, 22], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "reports of tension between the Treasury and Fed", "arg0_index": [3, 10], "pred": "have been exaggerated", "pred_index": [11, 13], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "they", "arg0_index": [17, 17], "pred": "involved", "pred_index": [18, 18], "arg1": "`` nuances . ''", "arg1_index": [19, 22], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "With real estate experts Olympia & York and Samuel Zell 's Itel owning close to 40 % of Santa Fe 's stock , management was under pressure -- in a favored phrase of Wall Street -- to quickly `` maximize values . ''": [{"arg0": "Olympia & York and Samuel Zell 's Itel", "arg0_index": [4, 11], "pred": "owning close to", "pred_index": [12, 14], "arg1": "40 % of Santa Fe 's stock", "arg1_index": [15, 21], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "management", "arg0_index": [23, 23], "pred": "was under", "pred_index": [24, 25], "arg1": "pressure", "arg1_index": [26, 26], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Olympia & York", "arg0_index": [4, 6], "pred": "", "pred_index": [-1, -1], "arg1": "real estate experts", "arg1_index": [1, 3], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Samuel Zell 's Itel", "arg0_index": [8, 11], "pred": "", "pred_index": [-1, -1], "arg1": "real estate experts", "arg1_index": [1, 3], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Wall Street", "arg0_index": [33, 34], "pred": "maximize", "pred_index": [39, 39], "arg1": "values", "arg1_index": [40, 40], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Rosen argues that one of the most important provisions of the Constitution in Exile is limitations on the interstate commerce clause , which were undermined by the Supreme Court 's `` expansive interpretation of Congress 's power to regulate interstate commerce ... extended to include any activities that might affect commerce indirectly '' during the New Deal .": [{"arg0": "Rosen", "arg0_index": [0, 0], "pred": "argues", "pred_index": [1, 1], "arg1": "that one of the most important provisions of the Constitution in Exile is limitations on the interstate commerce clause , which were undermined by the Supreme Court 's `` expansive interpretation of Congress 's power to regulate interstate commerce ... extended to include any activities that might affect commerce indirectly '' during the New Deal", "arg1_index": [2, 56], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "one of the most important provisions of the Constitution in Exile", "arg0_index": [3, 13], "pred": "is", "pred_index": [14, 14], "arg1": "limitations on the interstate commerce clause", "arg1_index": [15, 20], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "limitations on the interstate commerce clause", "arg0_index": [15, 20], "pred": "were undermined by", "pred_index": [23, 25], "arg1": "the Supreme Court 's `` expansive interpretation of Congress 's power", "arg1_index": [26, 36], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "the Supreme Court 's `` expansive interpretation of Congress 's power", "arg0_index": [26, 36], "pred": "regulate", "pred_index": [38, 38], "arg1": "interstate commerce", "arg1_index": [39, 40], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "", "arg0_index": [], "pred": "extended to include", "pred_index": [42, 44], "arg1": "activities that might affect commerce indirectly ''", "arg1_index": [46, 52], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "any activities", "arg0_index": [45, 46], "pred": "might affect", "pred_index": [48, 49], "arg1": "commerce", "arg1_index": [50, 50], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "The gauge sender is usually a magnetically coupled arrangement , with a float arm inside the tank rotating a magnet , which rotates an external gauge .": [{"arg0": "The gauge sender", "arg0_index": [0, 2], "pred": "is usually", "pred_index": [3, 4], "arg1": "a magnetically coupled arrangement", "arg1_index": [5, 8], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "a float arm inside the tank", "arg0_index": [11, 16], "pred": "rotating", "pred_index": [17, 17], "arg1": "a magnet", "arg1_index": [18, 19], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "a magnet", "arg0_index": [18, 19], "pred": "rotates", "pred_index": [22, 22], "arg1": "an external gauge", "arg1_index": [23, 25], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "The `` Charleston Courier , '' founded in 1803 , and `` Charleston Daily News , '' founded in 1865 , merged to form the `` News and Courier '' in 1873 .": [{"arg0": "The `` Charleston Courier , ''", "arg0_index": [0, 5], "pred": " founded in", "pred_index": [-2, 6, 7], "arg1": "1803", "arg1_index": [8, 8], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "`` Charleston Daily News , ''", "arg0_index": [11, 16], "pred": " founded in", "pred_index": [-2, 17, 18], "arg1": "1865", "arg1_index": [19, 19], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "The `` Charleston Courier , '' founded in 1803 , and `` Charleston Daily News , '' founded in 1865", "arg0_index": [0, 19], "pred": "merged to form", "pred_index": [21, 23], "arg1": "the `` News and Courier ''", "arg1_index": [24, 29], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "The campaign , a patriotic celebration of the 200th anniversary of the Bill of Rights , does n't mention cigarettes or smoking ; cigarette ads have been prohibited on television since 1971 .": [{"arg0": "The campaign", "arg0_index": [0, 1], "pred": "", "pred_index": [-1, -1], "arg1": "a patriotic celebration of the 200th anniversary of the Bill of Rights", "arg1_index": [3, 14], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "The campaign", "arg0_index": [0, 1], "pred": "does n't mention", "pred_index": [16, 18], "arg1": "cigarettes or smoking", "arg1_index": [19, 21], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "cigarette ads", "arg0_index": [23, 24], "pred": "have been prohibited on", "pred_index": [25, 28], "arg1": "television", "arg1_index": [29, 29], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "A casting director at the time told Scott that he had wished that he 'd met him a week before ; he was casting for the `` G.I. Joe '' cartoon .": [{"arg0": "A casting director", "arg0_index": [0, 2], "pred": "told", "pred_index": [6, 6], "arg1": "Scott", "arg1_index": [7, 7], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "he", "arg0_index": [9, 9], "pred": "had wished", "pred_index": [10, 11], "arg1": "that he 'd met him a week before", "arg1_index": [12, 19], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "he", "arg0_index": [13, 13], "pred": "'d met", "pred_index": [14, 15], "arg1": "him", "arg1_index": [16, 16], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "he", "arg0_index": [21, 21], "pred": "was casting for", "pred_index": [22, 24], "arg1": "the `` G.I. Joe '' cartoon", "arg1_index": [25, 30], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Team Racing is a NASCAR Craftsman Truck Series team .": [{"arg0": "Team Racing", "arg0_index": [0, 1], "pred": "is", "pred_index": [2, 2], "arg1": "a NASCAR Craftsman Truck Series team", "arg1_index": [3, 8], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Keats 's long and expensive medical training with Hammond and at Guy 's Hospital led his family to assume he would pursue a lifelong career in medicine , assuring financial security , and it seems that at this point Keats had a genuine desire to become a doctor .": [{"arg0": "Keats 's long and expensive medical training with Hammond and at Guy 's Hospital", "arg0_index": [0, 13], "pred": "led", "pred_index": [14, 14], "arg1": "his family", "arg1_index": [15, 16], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "his family", "arg0_index": [15, 16], "pred": "assume", "pred_index": [18, 18], "arg1": "he would pursue a lifelong career in medicine", "arg1_index": [19, 26], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "he", "arg0_index": [19, 19], "pred": "would pursue", "pred_index": [20, 21], "arg1": "a lifelong career", "arg1_index": [22, 24], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "a lifelong career in medicine", "arg0_index": [22, 26], "pred": "assuring", "pred_index": [28, 28], "arg1": "financial security", "arg1_index": [29, 30], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "it", "arg0_index": [33, 33], "pred": "seems", "pred_index": [34, 34], "arg1": "that at this point Keats had a genuine desire to become a doctor", "arg1_index": [35, 47], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Keats", "arg0_index": [39, 39], "pred": "had", "pred_index": [40, 40], "arg1": "a genuine desire", "arg1_index": [41, 43], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Keats", "arg0_index": [39, 39], "pred": "become", "pred_index": [45, 45], "arg1": "a doctor", "arg1_index": [46, 47], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Of the self - starting vacuum cleaner , he says : `` Could be Cuddles , { Mrs. Stinnett 's dog } . ''": [{"arg0": "Cuddles", "arg0_index": [14, 14], "pred": "", "pred_index": [-1, -1], "arg1": "Mrs. Stinnett 's dog", "arg1_index": [17, 20], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "he", "arg0_index": [8, 8], "pred": "says", "pred_index": [9, 9], "arg1": "`` Could be Cuddles , { Mrs. Stinnett 's dog } . ''", "arg1_index": [11, 23], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "", "arg0_index": [], "pred": "Could be", "pred_index": [12, 13], "arg1": "Cuddles", "arg1_index": [14, 14], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "However , comic relief sidekick `` Mike McGurk '' bears some resemblance to Tracy 's partner from the strip , Pat Patton ; Tracy 's secretary , Gwen Andrews , provides the same kind of feminine interest as Tess Trueheart ; and FBI Director Clive Anderson is the same kind of avuncular superior as Chief Brandon .": [{"arg0": "`` Mike McGurk ''", "arg0_index": [5, 8], "pred": "", "pred_index": [-1, -1], "arg1": "comic relief sidekick", "arg1_index": [2, 4], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "`` Mike McGurk ''", "arg0_index": [5, 8], "pred": "bears", "pred_index": [9, 9], "arg1": "some resemblance", "arg1_index": [10, 11], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Pat Patton", "arg0_index": [20, 21], "pred": "", "pred_index": [-1, -1], "arg1": "Tracy 's partner from the strip", "arg1_index": [13, 18], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Gwen Andrews", "arg0_index": [27, 28], "pred": "", "pred_index": [-1, -1], "arg1": "Tracy 's secretary", "arg1_index": [23, 25], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Gwen Andrews", "arg0_index": [27, 28], "pred": "provides", "pred_index": [30, 30], "arg1": "the same kind of feminine interest", "arg1_index": [31, 36], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Clive Anderson", "arg0_index": [44, 45], "pred": "", "pred_index": [-1, -1], "arg1": "FBI Director", "arg1_index": [42, 43], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Clive Anderson", "arg0_index": [44, 45], "pred": "is", "pred_index": [46, 46], "arg1": "the same kind of avuncular superior", "arg1_index": [47, 52], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "They have included some of the most dangerous assassins in the world including Lady Shiva , David Cain , and Merlyn .": [{"arg0": "They", "arg0_index": [0, 0], "pred": "have included", "pred_index": [1, 2], "arg1": "some of the most dangerous assassins in the world", "arg1_index": [3, 11], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "some of the most dangerous assassins in the world", "arg0_index": [3, 11], "pred": "including", "pred_index": [12, 12], "arg1": "Lady Shiva , David Cain , and Merlyn", "arg1_index": [13, 20], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "He said he expects the company to have $ 500 million in sales for this year .": [{"arg0": "He", "arg0_index": [0, 0], "pred": "said", "pred_index": [1, 1], "arg1": "he expects the company to have $ 500 million in sales for this year", "arg1_index": [2, 15], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "he", "arg0_index": [2, 2], "pred": "expects", "pred_index": [3, 3], "arg1": "the company", "arg1_index": [4, 5], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "the company", "arg0_index": [4, 5], "pred": "have", "pred_index": [7, 7], "arg1": "$ 500 million in sales", "arg1_index": [8, 12], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "As Attorney General he clashed with Daniel O'Connell when he insisted , against O'Connell 's wishes , on the appointment of Abraham Brewster as Law Adviser to the Lord Lieutenant of Ireland .": [{"arg0": "he", "arg0_index": [3, 3], "pred": "", "pred_index": [-1, -1], "arg1": "Attorney General", "arg1_index": [1, 2], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "he", "arg0_index": [3, 3], "pred": "clashed with", "pred_index": [4, 5], "arg1": "Daniel O'Connell", "arg1_index": [6, 7], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "he", "arg0_index": [9, 9], "pred": "insisted , against", "pred_index": [10, 12], "arg1": "O'Connell 's wishes", "arg1_index": [13, 15], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Nothing is known for certain about his life before about 1580 , but contemporary or near-contemporary accounts suggest that he was brought up as a member of the Church of Scotland , spent some time in Argyll before leaving for the Continent , and was converted to Catholicism in Spain .": [{"arg0": "Nothing", "arg0_index": [0, 0], "pred": "is known for certain about", "pred_index": [1, 5], "arg1": "his life before about 1580", "arg1_index": [6, 10], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "contemporary or near-contemporary accounts", "arg0_index": [13, 16], "pred": "suggest", "pred_index": [17, 17], "arg1": "that he was brought up as a member of the Church of Scotland , spent some time in Argyll before leaving for the Continent , and was converted to Catholicism in Spain", "arg1_index": [18, 49], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "he", "arg0_index": [19, 19], "pred": "was brought up as", "pred_index": [20, 23], "arg1": "a member of the Church of Scotland", "arg1_index": [24, 30], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "he", "arg0_index": [19, 19], "pred": "spent", "pred_index": [32, 32], "arg1": "some time", "arg1_index": [33, 34], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "he", "arg0_index": [19, 19], "pred": "was converted to", "pred_index": [44, 46], "arg1": "Catholicism", "arg1_index": [47, 47], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "The failure of 1st Armored to arrive intact and deploy as a single entity would have important consequences in later action against German forces in Tunisia .": [{"arg0": "The failure of 1st Armored to arrive intact and deploy as a single entity", "arg0_index": [0, 13], "pred": "would have", "pred_index": [14, 15], "arg1": "important consequences", "arg1_index": [16, 17], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "1st Armored", "arg0_index": [3, 4], "pred": "arrive", "pred_index": [6, 6], "arg1": "intact", "arg1_index": [7, 7], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "1st Armored", "arg0_index": [3, 4], "pred": "deploy as", "pred_index": [9, 10], "arg1": "a single entity", "arg1_index": [11, 13], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Models , taking into account the size and room number of the barrack blocks in the Gorgan Wall forts and likely occupation density , produce figures between 15,000 and 36,000 soldiers .": [{"arg0": "Models", "arg0_index": [0, 0], "pred": "produce", "pred_index": [24, 24], "arg1": "figures", "arg1_index": [25, 25], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Models", "arg0_index": [0, 0], "pred": "taking into account", "pred_index": [2, 4], "arg1": "the size and room number of the barrack blocks in the Gorgan Wall forts and likely occupation density", "arg1_index": [5, 22], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "DC Comics held a memorial service in Manhattan 's Lower East Side , a neighborhood Eisner often visited in his work , at the Angel Orensanz Foundation on Norfolk Street .": [{"arg0": "DC Comics", "arg0_index": [0, 1], "pred": "held", "pred_index": [2, 2], "arg1": "a memorial service", "arg1_index": [3, 5], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Eisner", "arg0_index": [15, 15], "pred": "often visited in", "pred_index": [16, 18], "arg1": "his work", "arg1_index": [19, 20], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Eisner", "arg0_index": [15, 15], "pred": "", "pred_index": [-1, -1], "arg1": "a neighborhood", "arg1_index": [13, 14], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Keeping the Japanese happy will be one of the most important tasks facing conservative leader Ernesto Ruffo when he takes office Nov. 1 , as the first opposition governor in Mexico 's modern history .": [{"arg0": "Keeping the Japanese happy", "arg0_index": [0, 3], "pred": "will be", "pred_index": [4, 5], "arg1": "one of the most important tasks", "arg1_index": [6, 11], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Ernesto Ruffo", "arg0_index": [15, 16], "pred": "facing", "pred_index": [12, 12], "arg1": "the most important tasks", "arg1_index": [8, 11], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Ernesto Ruffo", "arg0_index": [15, 16], "pred": "", "pred_index": [-1, -1], "arg1": "conservative leader", "arg1_index": [13, 14], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "", "arg0_index": [], "pred": "Keeping", "pred_index": [0, 0], "arg1": "the Japanese", "arg1_index": [1, 2], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Ernesto Ruffo", "arg0_index": [15, 16], "pred": "takes office", "pred_index": [19, 20], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "He discovered a 75 - cent discrepancy in the charges made to various departments for computer time and traced it to a user named `` Hunter , '' who had no valid billing address .": [{"arg0": "He", "arg0_index": [0, 0], "pred": "discovered", "pred_index": [1, 1], "arg1": "a 75 - cent discrepancy", "arg1_index": [2, 6], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "He", "arg0_index": [0, 0], "pred": "traced", "pred_index": [18, 18], "arg1": "it", "arg1_index": [19, 19], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "a user", "arg0_index": [21, 22], "pred": " named", "pred_index": [-2, 23, 23], "arg1": "`` Hunter , ''", "arg1_index": [24, 27], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "a user", "arg0_index": [21, 22], "pred": "had", "pred_index": [29, 29], "arg1": "no valid billing address", "arg1_index": [30, 33], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "the charges", "arg0_index": [8, 9], "pred": " made to", "pred_index": [-2, 10, 11], "arg1": "various departments", "arg1_index": [12, 13], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Initially flying the A-4B Skyhawk , the squadron later transitioned to the A-4L Skyhawk .": [{"arg0": "the squadron", "arg0_index": [6, 7], "pred": "transitioned to", "pred_index": [9, 10], "arg1": "the A-4L Skyhawk", "arg1_index": [11, 13], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "the squadron", "arg0_index": [6, 7], "pred": "Initially flying", "pred_index": [0, 1], "arg1": "the A-4B Skyhawk", "arg1_index": [2, 4], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "At least 11 villagers disappeared and 8 people were killed in the ensuing tsunami , two of which are prisoners at one of the Permisan prisons .": [{"arg0": "At least 11 villagers", "arg0_index": [0, 3], "pred": "disappeared", "pred_index": [4, 4], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "8 people", "arg0_index": [6, 7], "pred": "were killed", "pred_index": [8, 9], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "two of which", "arg0_index": [15, 17], "pred": "are", "pred_index": [18, 18], "arg1": "prisoners at one of the Permisan prisons", "arg1_index": [19, 25], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Lens subluxation is also seen in dogs and is characterized by a partial displacement of the lens .": [{"arg0": "Lens subluxation", "arg0_index": [0, 1], "pred": "is also seen in", "pred_index": [2, 5], "arg1": "dogs", "arg1_index": [6, 6], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Lens subluxation", "arg0_index": [0, 1], "pred": "is characterized by", "pred_index": [8, 10], "arg1": "a partial displacement of the lens", "arg1_index": [11, 16], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "However , it became far less safe for the Nationals from 1983 onward , and strong population growth over the last three decades has seen it progressively lose its rural territory and reduced it to a more coastal-based and urbanised division .": [{"arg0": "it", "arg0_index": [2, 2], "pred": "became", "pred_index": [3, 3], "arg1": "far less safe", "arg1_index": [4, 6], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "strong population growth over the last three decades", "arg0_index": [15, 22], "pred": "has seen", "pred_index": [23, 24], "arg1": "it", "arg1_index": [25, 25], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "it", "arg0_index": [25, 25], "pred": "progressively lose", "pred_index": [26, 27], "arg1": "its rural territory", "arg1_index": [28, 30], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "strong population growth over the last three decades", "arg0_index": [15, 22], "pred": "reduced", "pred_index": [32, 32], "arg1": "it", "arg1_index": [33, 33], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Avery Inc. said it completed the sale of Uniroyal Chemical Holding Co. to a group led by management of Uniroyal Chemical Co. , the unit 's main business .": [{"arg0": "Avery Inc.", "arg0_index": [0, 1], "pred": "said", "pred_index": [2, 2], "arg1": "it completed the sale of Uniroyal Chemical Holding Co. to a group led by management of Uniroyal Chemical Co.", "arg1_index": [3, 21], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "it", "arg0_index": [3, 3], "pred": "completed", "pred_index": [4, 4], "arg1": "the sale of Uniroyal Chemical Holding Co.", "arg1_index": [5, 11], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "a group", "arg0_index": [13, 14], "pred": " led by", "pred_index": [-2, 15, 16], "arg1": "management of Uniroyal Chemical Co.", "arg1_index": [17, 21], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "management of Uniroyal Chemical Co.", "arg0_index": [17, 21], "pred": "", "pred_index": [-1, -1], "arg1": "the unit 's main business", "arg1_index": [23, 27], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "In 1964 Barrie appeared in two episodes of `` Alfred Hitchcock Presents '' .": [{"arg0": "Barrie", "arg0_index": [2, 2], "pred": "appeared in", "pred_index": [3, 4], "arg1": "two episodes of `` Alfred Hitchcock Presents ''", "arg1_index": [5, 12], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "To the Medieval school of Jewish Philosophy , that framed Judaism in light of Greek thought and human intellect , God the Infinite has no needs .": [{"arg0": "God the Infinite", "arg0_index": [20, 22], "pred": "has", "pred_index": [23, 23], "arg1": "no needs", "arg1_index": [24, 25], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "the Medieval school of Jewish Philosophy", "arg0_index": [1, 6], "pred": "framed", "pred_index": [9, 9], "arg1": "Judaism", "arg1_index": [10, 10], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "To increase their share of that business , jewelry makers such as Crystal Brands Inc. 's Trifari and Monet units and Swank Inc. , maker of Anne Klein jewelry , are launching new lines with as much fanfare as the fragrance companies .": [{"arg0": "jewelry makers such as Crystal Brands Inc. 's Trifari and Monet units and Swank Inc. , maker of Anne Klein jewelry", "arg0_index": [8, 28], "pred": "increase", "pred_index": [1, 1], "arg1": "their share of that business", "arg1_index": [2, 6], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "jewelry makers such as Crystal Brands Inc. 's Trifari and Monet units and Swank Inc. , maker of Anne Klein jewelry", "arg0_index": [8, 28], "pred": "are launching", "pred_index": [30, 31], "arg1": "new lines", "arg1_index": [32, 33], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "`` Now everything '' -- such as program trading and wide stock market swings -- `` that everyone had pushed back in their consciousness is just sitting right there . ''": [{"arg0": "`` Now everything ''", "arg0_index": [0, 3], "pred": "is just sitting", "pred_index": [24, 26], "arg1": "right there", "arg1_index": [27, 28], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "everyone", "arg0_index": [17, 17], "pred": "had pushed back", "pred_index": [18, 20], "arg1": "everything", "arg1_index": [2, 2], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "The conviction stemmed from federal charges of consumer fraud for sale of phony infant apple juice between 1978 and 1983 .": [{"arg0": "The conviction", "arg0_index": [0, 1], "pred": "stemmed from", "pred_index": [2, 3], "arg1": "federal charges of consumer fraud for sale of phony infant apple juice between 1978 and 1983", "arg1_index": [4, 19], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "At a presentation in the Toronto Pearson International Airport hangar , Celine Dion helped the newly solvent airline debut its new image .": [{"arg0": "Celine Dion", "arg0_index": [11, 12], "pred": "helped", "pred_index": [13, 13], "arg1": "the newly solvent airline", "arg1_index": [14, 17], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "the newly solvent", "arg0_index": [14, 16], "pred": "debut", "pred_index": [18, 18], "arg1": "its new image", "arg1_index": [19, 21], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "These orientations allow easy movement , i.e. degrees of freedom , and thus lowers entropy minimally .": [{"arg0": "These orientations", "arg0_index": [0, 1], "pred": "allow", "pred_index": [2, 2], "arg1": "easy movement", "arg1_index": [3, 4], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "These orientations", "arg0_index": [0, 1], "pred": "lowers", "pred_index": [13, 13], "arg1": "entropy", "arg1_index": [14, 14], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "According to the indictment , Gonzalez is accused of defrauding the West Bronx Neighborhood Association Inc. , a not-for-profit corporation , by using funds donated to the organization in order to pay for over $ 37,000 in personal expenses .": [{"arg0": "Gonzalez", "arg0_index": [5, 5], "pred": "is accused of", "pred_index": [6, 8], "arg1": "defrauding the West Bronx Neighborhood Association Inc.", "arg1_index": [9, 15], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Gonzalez", "arg0_index": [5, 5], "pred": "defrauding", "pred_index": [9, 9], "arg1": "the West Bronx Neighborhood Association Inc.", "arg1_index": [10, 15], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Gonzalez", "arg0_index": [5, 5], "pred": "using", "pred_index": [22, 22], "arg1": "funds donated to the organization", "arg1_index": [23, 27], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Gonzalez", "arg0_index": [5, 5], "pred": "pay for", "pred_index": [31, 32], "arg1": "over $ 37,000 in personal expenses", "arg1_index": [33, 38], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "funds", "arg0_index": [23, 23], "pred": " donated to", "pred_index": [-2, 24, 25], "arg1": "the organization", "arg1_index": [26, 27], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "West Bronx Neighborhood Association Inc.", "arg0_index": [11, 15], "pred": "", "pred_index": [-1, -1], "arg1": "a not-for-profit corporation", "arg1_index": [17, 19], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "And do n't expect many complete games by pitchers -- perhaps three out of 288 , laughs Mr. Fingers , the former Oakland reliever .": [{"arg0": "Mr. Fingers", "arg0_index": [17, 18], "pred": "", "pred_index": [-1, -1], "arg1": "the former Oakland reliever", "arg1_index": [20, 23], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Mr. Fingers", "arg0_index": [17, 18], "pred": "laughs", "pred_index": [16, 16], "arg1": "And do n't expect many complete games by pitchers -- perhaps three out of 288", "arg1_index": [0, 14], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "", "arg0_index": [], "pred": "do n't expect", "pred_index": [1, 3], "arg1": "many complete games", "arg1_index": [4, 6], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "The operative definition of newsworthiness will favor virtually unrestrained use of personal , sensitive and intimate facts .": [{"arg0": "The operative definition of newsworthiness", "arg0_index": [0, 4], "pred": "will favor virtually", "pred_index": [5, 7], "arg1": "unrestrained use of personal , sensitive and intimate facts", "arg1_index": [8, 16], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Pakistan Chrome Mines Ltd. is a mining company incorporated in the Islamic Republic of Pakistan .": [{"arg0": "Pakistan Chrome Mines Ltd.", "arg0_index": [0, 3], "pred": "is", "pred_index": [4, 4], "arg1": "a mining company incorporated in the Islamic Republic of Pakistan", "arg1_index": [5, 14], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "a mining company", "arg0_index": [5, 7], "pred": " incorporated in", "pred_index": [-2, 8, 9], "arg1": "the Islamic Republic of Pakistan", "arg1_index": [10, 14], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "The field at the Lake Elsinore Diamond is named the Pete Lehr Field .": [{"arg0": "The field at the Lake Elsinore Diamond", "arg0_index": [0, 6], "pred": "is named", "pred_index": [7, 8], "arg1": "the Pete Lehr Field", "arg1_index": [9, 12], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Despite the below-freezing temperatures , Beuerlein was red-hot , out-dueling Brett Favre and connecting on 29 of 42 attempts , with 3 TDs and no INTs , and passing for a then franchise-record 373 yards .": [{"arg0": "Beuerlein", "arg0_index": [5, 5], "pred": "was", "pred_index": [6, 6], "arg1": "red-hot", "arg1_index": [7, 7], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Beuerlein", "arg0_index": [5, 5], "pred": "out-dueling", "pred_index": [9, 9], "arg1": "Brett Favre", "arg1_index": [10, 11], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Beuerlein", "arg0_index": [5, 5], "pred": "connecting on", "pred_index": [13, 14], "arg1": "29 of 42 attempts", "arg1_index": [15, 18], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Beuerlein", "arg0_index": [5, 5], "pred": "passing for", "pred_index": [28, 29], "arg1": "a then franchise-record 373 yards", "arg1_index": [30, 34], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "It is essentially the same as the dialect spoken in Xiamen , and is unintelligible with Standard Chinese .": [{"arg0": "It", "arg0_index": [0, 0], "pred": "is essentially the same as", "pred_index": [1, 5], "arg1": "the dialect spoken in Xiamen", "arg1_index": [6, 10], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "the dialect", "arg0_index": [6, 7], "pred": " spoken in", "pred_index": [-2, 8, 9], "arg1": "Xiamen", "arg1_index": [10, 10], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "It", "arg0_index": [0, 0], "pred": "is unintelligible with", "pred_index": [13, 15], "arg1": "Standard Chinese", "arg1_index": [16, 17], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Meanwhile , the Mason City Division continued to operate as usual .": [{"arg0": "the Mason City Division", "arg0_index": [2, 5], "pred": "continued to operate", "pred_index": [6, 8], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Moore briefly dropped Marciano in the second round , but Marciano recovered and knocked Moore down five times , knocking him out in the ninth to retain the belt .": [{"arg0": "Moore", "arg0_index": [0, 0], "pred": "briefly dropped", "pred_index": [1, 2], "arg1": "Marciano", "arg1_index": [3, 3], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Marciano", "arg0_index": [10, 10], "pred": "recovered", "pred_index": [11, 11], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Marciano", "arg0_index": [10, 10], "pred": "knocked", "pred_index": [13, 13], "arg1": "Moore", "arg1_index": [14, 14], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Marciano", "arg0_index": [10, 10], "pred": "knocking", "pred_index": [19, 19], "arg1": "him", "arg1_index": [20, 20], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Marciano", "arg0_index": [10, 10], "pred": "retain", "pred_index": [26, 26], "arg1": "the belt", "arg1_index": [27, 28], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "But , with the state offering only $ 39,000 a year and California 's high standard of living , `` there are n't too many to choose from , '' says Brent Scott , a recruiting officer .": [{"arg0": "Brent Scott", "arg0_index": [31, 32], "pred": "", "pred_index": [-1, -1], "arg1": "a recruiting officer", "arg1_index": [34, 36], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Brent Scott", "arg0_index": [31, 32], "pred": "says", "pred_index": [30, 30], "arg1": "`` there are n't too many to choose from , ''", "arg1_index": [19, 29], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "the state", "arg0_index": [3, 4], "pred": "offering", "pred_index": [5, 5], "arg1": "only $ 39,000", "arg1_index": [6, 8], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "there", "arg0_index": [20, 20], "pred": "are n't", "pred_index": [21, 22], "arg1": "too many", "arg1_index": [23, 24], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "", "arg0_index": [], "pred": "choose from", "pred_index": [26, 27], "arg1": "too many", "arg1_index": [23, 24], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "This policy was , however , opposed by the miners who demanded that the inspections be carried out by experienced colliers .": [{"arg0": "This policy", "arg0_index": [0, 1], "pred": "was , however , opposed by", "pred_index": [2, 7], "arg1": "the miners", "arg1_index": [8, 9], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "the miners", "arg0_index": [8, 9], "pred": "demanded", "pred_index": [11, 11], "arg1": "that the inspections be carried out by experienced colliers", "arg1_index": [12, 20], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "the inspections", "arg0_index": [13, 14], "pred": "be carried out by", "pred_index": [15, 18], "arg1": "experienced colliers", "arg1_index": [19, 20], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "In 1005 for example , the governor of the important Adriatic port of Dyrrhachium had surrendered the town to Basil II .": [{"arg0": "the governor of the important Adriatic port of Dyrrhachium", "arg0_index": [5, 13], "pred": "had surrendered", "pred_index": [14, 15], "arg1": "the town", "arg1_index": [16, 17], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Student job postings at Boston University slip 10 % this year following a 10 % drop in 1988 .": [{"arg0": "Student job postings at Boston University", "arg0_index": [0, 5], "pred": "slip", "pred_index": [6, 6], "arg1": "10 %", "arg1_index": [7, 8], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "10 %", "arg0_index": [7, 8], "pred": "following", "pred_index": [11, 11], "arg1": "a 10 % drop in 1988", "arg1_index": [12, 17], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "In a typical case of substrate interference , a Language A occupies a given territory and another Language B arrives in the same territory .": [{"arg0": "a Language A", "arg0_index": [8, 10], "pred": "occupies", "pred_index": [11, 11], "arg1": "a given territory", "arg1_index": [12, 14], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "another Language B", "arg0_index": [16, 18], "pred": "arrives in", "pred_index": [19, 20], "arg1": "the same territory", "arg1_index": [21, 23], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Mrs. Marcos 's trial is expected to begin in March .": [{"arg0": "Mrs. Marcos 's trial", "arg0_index": [0, 3], "pred": "is expected to begin in", "pred_index": [4, 8], "arg1": "March", "arg1_index": [9, 9], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Two seats were won by the Labor-Progressive Party on its own with the re-election of A.A. MacLeod and J.B. Salsberg .": [{"arg0": "Two seats", "arg0_index": [0, 1], "pred": "were won by", "pred_index": [2, 4], "arg1": "the Labor-Progressive Party", "arg1_index": [5, 7], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Superboy-Prime , seeing an opportunity to defeat the now-weakened Anti-Monitor , flew through the Anti-Monitor 's chest and hurled his shattered body into space .": [{"arg0": "Superboy-Prime", "arg0_index": [0, 0], "pred": "flew through", "pred_index": [11, 12], "arg1": "the Anti-Monitor 's chest", "arg1_index": [13, 16], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Superboy-Prime", "arg0_index": [0, 0], "pred": "hurled", "pred_index": [18, 18], "arg1": "his shattered body", "arg1_index": [19, 21], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Superboy-Prime", "arg0_index": [0, 0], "pred": "seeing", "pred_index": [2, 2], "arg1": "an opportunity", "arg1_index": [3, 4], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Superboy-Prime", "arg0_index": [0, 0], "pred": "defeat", "pred_index": [6, 6], "arg1": "the now-weakened Anti-Monitor", "arg1_index": [7, 9], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Under the debt - equity program , potential investors will submit sealed bids on the percentage of discount they are willing to purchase the debt at , and the bids will be allocated based on these discount offers .": [{"arg0": "potential investors", "arg0_index": [7, 8], "pred": "will submit", "pred_index": [9, 10], "arg1": "sealed bids", "arg1_index": [11, 12], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "they", "arg0_index": [18, 18], "pred": "are willing to purchase", "pred_index": [19, 22], "arg1": "the debt", "arg1_index": [23, 24], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "the bids", "arg0_index": [28, 29], "pred": "will be allocated", "pred_index": [30, 32], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "the bids will be allocated", "arg0_index": [28, 32], "pred": "based on", "pred_index": [33, 34], "arg1": "these discount offers", "arg1_index": [35, 37], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Yet the Soviet leader 's readiness to embark on foreign visits and steady accumulation of personal power , particularly since the last Politburo reshuffle on Sept. 30 , do not suggest that Mr. Gorbachev is on the verge of being toppled ; nor does he look likely to reverse the powers of perestroika .": [{"arg0": "the Soviet leader 's readiness to embark on foreign visits and steady accumulation of personal power", "arg0_index": [1, 16], "pred": "do not suggest", "pred_index": [28, 30], "arg1": "that Mr. Gorbachev is on the verge of being toppled", "arg1_index": [31, 40], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Soviet leader", "arg0_index": [2, 3], "pred": "embark on", "pred_index": [7, 8], "arg1": "foreign visits", "arg1_index": [9, 10], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Mr. Gorbachev", "arg0_index": [32, 33], "pred": "is on the verge of", "pred_index": [34, 38], "arg1": "being toppled", "arg1_index": [39, 40], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Mr. Gorbachev", "arg0_index": [32, 33], "pred": "being toppled", "pred_index": [39, 40], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "he", "arg0_index": [44, 44], "pred": "look likely to reverse", "pred_index": [45, 48], "arg1": "the powers of perestroika", "arg1_index": [49, 52], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Between flashes , certain areas in subjects ' brains are jolted with a magnetic stimulator .": [{"arg0": "certain areas in subjects ' brains", "arg0_index": [3, 8], "pred": "are jolted with", "pred_index": [9, 11], "arg1": "a magnetic stimulator", "arg1_index": [12, 14], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "In French , `` droit '' can mean `` the whole body of the Law '' , as in the motto `` dieu et mon droit , '' which is to say `` God and my whole body of Law . ''": [{"arg0": "`` droit ''", "arg0_index": [3, 5], "pred": "can mean", "pred_index": [6, 7], "arg1": "`` the whole body of the Law ''", "arg1_index": [8, 15], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "`` dieu et mon droit , ''", "arg0_index": [21, 27], "pred": "is to say", "pred_index": [29, 31], "arg1": "`` God and my whole body of Law . ''", "arg1_index": [32, 41], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Although Knievel broke his arms , he was more distraught over a permanent injury his accident caused to the cameraman .": [{"arg0": "Knievel", "arg0_index": [1, 1], "pred": "broke", "pred_index": [2, 2], "arg1": "his arms", "arg1_index": [3, 4], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "he", "arg0_index": [6, 6], "pred": "was", "pred_index": [7, 7], "arg1": "more distraught", "arg1_index": [8, 9], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "his accident", "arg0_index": [14, 15], "pred": "caused", "pred_index": [16, 16], "arg1": "a permanent injury", "arg1_index": [11, 13], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "And Dewar 's gave discounts on Scottish merchandise to people who sent in bottle labels .": [{"arg0": "Dewar", "arg0_index": [1, 1], "pred": "'s gave", "pred_index": [2, 3], "arg1": "discounts on Scottish merchandise", "arg1_index": [4, 7], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "people", "arg0_index": [9, 9], "pred": "sent in", "pred_index": [11, 12], "arg1": "bottle labels", "arg1_index": [13, 14], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Luke Robert Ravenstahl is an American politician who served as the 59th Mayor of Pittsburgh from 2006 until 2014 .": [{"arg0": "Luke Robert Ravenstahl", "arg0_index": [0, 2], "pred": "is", "pred_index": [3, 3], "arg1": "an American politician who served as the 59th Mayor of Pittsburgh from 2006 until 2014", "arg1_index": [4, 18], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Luke Robert Ravenstahl", "arg0_index": [0, 2], "pred": "served as", "pred_index": [8, 9], "arg1": "the 59th Mayor of Pittsburgh", "arg1_index": [10, 14], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Erotica and pornography involving sex between women have been predominantly produced by men for a male and female audience .": [{"arg0": "Erotica and pornography involving sex between women", "arg0_index": [0, 6], "pred": "have been predominantly produced by", "pred_index": [7, 11], "arg1": "men", "arg1_index": [12, 12], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Wright was the subject of `` This Is Your Life '' on two occasions : in May 1961 when he was surprised by Eamonn Andrews , and in January 1990 , when Michael Aspel surprised him at Thames Television 's Teddington Studios .": [{"arg0": "Wright", "arg0_index": [0, 0], "pred": "was", "pred_index": [1, 1], "arg1": "the subject of `` This Is Your Life ''", "arg1_index": [2, 10], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "he", "arg0_index": [19, 19], "pred": "was surprised by", "pred_index": [20, 22], "arg1": "Eamonn Andrews", "arg1_index": [23, 24], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Michael Aspel", "arg0_index": [32, 33], "pred": "surprised", "pred_index": [34, 34], "arg1": "him", "arg1_index": [35, 35], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "`` It 's a super - exciting set of discoveries , '' says Bert Vogelstein , a Johns Hopkins University researcher who has just found a gene pivotal to the triggering of colon cancer .": [{"arg0": "Bert Vogelstein", "arg0_index": [13, 14], "pred": "", "pred_index": [-1, -1], "arg1": "Johns Hopkins University researcher", "arg1_index": [17, 20], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Bert Vogelstein", "arg0_index": [13, 14], "pred": "says", "pred_index": [12, 12], "arg1": "`` It 's a super - exciting set of discoveries , ''", "arg1_index": [0, 11], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Bert Vogelstein", "arg0_index": [13, 14], "pred": "has just found", "pred_index": [22, 24], "arg1": "a gene pivotal", "arg1_index": [25, 27], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "It", "arg0_index": [1, 1], "pred": "'s", "pred_index": [2, 2], "arg1": "a super - exciting set of discoveries", "arg1_index": [3, 9], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "At Giant Bicycle Inc. , Rancho Dominguez , Calif. , sales have tripled since the company entered the U.S. mountain - bike business in 1987 .": [{"arg0": "sales", "arg0_index": [10, 10], "pred": "have tripled", "pred_index": [11, 12], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "the company", "arg0_index": [14, 15], "pred": "entered", "pred_index": [16, 16], "arg1": "the U.S. mountain - bike business", "arg1_index": [17, 22], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Because of his talents and training , Beast can outperform any Olympic-level athlete , contorting his body and performing aerial feats gracefully .": [{"arg0": "Beast", "arg0_index": [7, 7], "pred": "can outperform", "pred_index": [8, 9], "arg1": "any Olympic-level athlete", "arg1_index": [10, 12], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Beast", "arg0_index": [7, 7], "pred": "contorting", "pred_index": [14, 14], "arg1": "his body", "arg1_index": [15, 16], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Beast", "arg0_index": [7, 7], "pred": "performing", "pred_index": [18, 18], "arg1": "aerial feats", "arg1_index": [19, 20], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Edison Brothers Stores Inc. said it agreed to buy 229 Foxmoor women 's apparel stores from Foxmoor Specialty Stores Corp. , a unit of Dylex Ltd. of Toronto .": [{"arg0": "Edison Brothers Stores Inc.", "arg0_index": [0, 3], "pred": "said", "pred_index": [4, 4], "arg1": "it agreed to buy 229 Foxmoor women 's apparel stores from Foxmoor Specialty Stores Corp.", "arg1_index": [5, 19], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "it", "arg0_index": [5, 5], "pred": "agreed to buy", "pred_index": [6, 8], "arg1": "229 Foxmoor women 's apparel stores", "arg1_index": [9, 14], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Foxmoor Specialty Stores Corp.", "arg0_index": [16, 19], "pred": "", "pred_index": [-1, -1], "arg1": "a unit of Dylex Ltd. of Toronto", "arg1_index": [21, 27], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "But this practice simply reduces government interest costs rather than truly canceling government debt , and can result in hyperinflation if used unsparingly .": [{"arg0": "this practice", "arg0_index": [1, 2], "pred": "simply reduces", "pred_index": [3, 4], "arg1": "government interest costs", "arg1_index": [5, 7], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "this practice", "arg0_index": [1, 2], "pred": "truly canceling", "pred_index": [10, 11], "arg1": "government debt", "arg1_index": [12, 13], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "this practice", "arg0_index": [1, 2], "pred": "can result in", "pred_index": [16, 18], "arg1": "hyperinflation", "arg1_index": [19, 19], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "this practice", "arg0_index": [1, 2], "pred": " used", "pred_index": [-2, 21, 21], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Wide acceptance of zero-energy building technology may require more government incentives or building code regulations , the development of recognized standards , or significant increases in the cost of conventional energy .": [{"arg0": "Wide acceptance of zero-energy building technology", "arg0_index": [0, 5], "pred": "may require", "pred_index": [6, 7], "arg1": "more government incentives or building code regulations , the development of recognized standards , or significant increases in the cost of conventional energy", "arg1_index": [8, 30], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Not everyone completely trusted Vakama 's vision - Matau was particularly frustrated at following what he considered the delusions of a `` fire-spitter '' - but with nothing else to go on they decided to track the Matoran down .": [{"arg0": "Not everyone", "arg0_index": [0, 1], "pred": "completely trusted", "pred_index": [2, 3], "arg1": "Vakama 's vision", "arg1_index": [4, 6], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Matau", "arg0_index": [8, 8], "pred": "was particularly frustrated at", "pred_index": [9, 12], "arg1": "following what he considered the delusions of a `` fire-spitter ''", "arg1_index": [13, 23], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Matau", "arg0_index": [8, 8], "pred": "following", "pred_index": [13, 13], "arg1": "what he considered the delusions of a `` fire-spitter ''", "arg1_index": [14, 23], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "he", "arg0_index": [15, 15], "pred": "considered", "pred_index": [16, 16], "arg1": "the delusions of a `` fire-spitter ''", "arg1_index": [17, 23], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "nothing else", "arg0_index": [27, 28], "pred": "go on", "pred_index": [30, 31], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "they", "arg0_index": [32, 32], "pred": "decided to track", "pred_index": [33, 35], "arg1": "the Matoran", "arg1_index": [36, 37], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Bruce 's Justice Lord counterpart was happily married to Wonder Woman as well until her Justice Lord counterpart killed him .": [{"arg0": "Bruce 's Justice Lord counterpart", "arg0_index": [0, 4], "pred": "was happily married to", "pred_index": [5, 8], "arg1": "Wonder Woman", "arg1_index": [9, 10], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "her Justice Lord counterpart", "arg0_index": [14, 17], "pred": "killed", "pred_index": [18, 18], "arg1": "him", "arg1_index": [19, 19], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "On a recent afternoon , Mr. Baker and a reporter go ghost - busting , visiting Kathleen Stinnett , a Lexington woman who has phoned the University of Kentucky to report mysterious happenings in her house .": [{"arg0": "Mr. Baker and a reporter", "arg0_index": [5, 9], "pred": "go ghost - busting", "pred_index": [10, 13], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Mr. Baker and a reporter", "arg0_index": [5, 9], "pred": "visiting", "pred_index": [15, 15], "arg1": "Kathleen Stinnett", "arg1_index": [16, 17], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Kathleen Stinnett", "arg0_index": [16, 17], "pred": "", "pred_index": [-1, -1], "arg1": "Lexington woman", "arg1_index": [20, 21], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Kathleen Stinnett", "arg0_index": [16, 17], "pred": "has phoned", "pred_index": [23, 24], "arg1": "the University of Kentucky", "arg1_index": [25, 28], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Kathleen Stinnett", "arg0_index": [16, 17], "pred": "report", "pred_index": [30, 30], "arg1": "mysterious happenings in her house", "arg1_index": [31, 35], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Although under constant attack from kamikazes as well as fighters and dive-bombers , `` Hazelwood '' came through the invasion untouched and on the night of 25 February sank two small enemy freighters with her guns .": [{"arg0": "`` Hazelwood ''", "arg0_index": [13, 15], "pred": "came through", "pred_index": [16, 17], "arg1": "the invasion untouched", "arg1_index": [18, 20], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "`` Hazelwood ''", "arg0_index": [13, 15], "pred": "sank", "pred_index": [28, 28], "arg1": "two small enemy freighters", "arg1_index": [29, 32], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "The Bourbons built additional reception rooms and reconstructed the Sala d'Ercole , named for its frescos depicted the mythological hero , Hercules .": [{"arg0": "The Bourbons", "arg0_index": [0, 1], "pred": "built", "pred_index": [2, 2], "arg1": "additional reception rooms", "arg1_index": [3, 5], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "The Bourbons", "arg0_index": [0, 1], "pred": "reconstructed", "pred_index": [7, 7], "arg1": "the Sala d'Ercole", "arg1_index": [8, 10], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "the Sala d'Ercole", "arg0_index": [8, 10], "pred": " named for", "pred_index": [-2, 12, 13], "arg1": "its frescos depicted the mythological hero , Hercules", "arg1_index": [14, 21], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "its frescos", "arg0_index": [14, 15], "pred": "depicted", "pred_index": [16, 16], "arg1": "the mythological hero , Hercules", "arg1_index": [17, 21], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Hercules", "arg0_index": [21, 21], "pred": "", "pred_index": [-1, -1], "arg1": "the mythological hero", "arg1_index": [17, 19], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Pennzoil 's poison pill covers five years in order to give current management enough time to put these proceeds to work in a prudent manner .": [{"arg0": "Pennzoil 's poison pill", "arg0_index": [0, 3], "pred": "covers", "pred_index": [4, 4], "arg1": "five years", "arg1_index": [5, 6], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "five years", "arg0_index": [5, 6], "pred": "give", "pred_index": [10, 10], "arg1": "current management", "arg1_index": [11, 12], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "current management", "arg0_index": [11, 12], "pred": "put", "pred_index": [16, 16], "arg1": "these proceeds", "arg1_index": [17, 18], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "these proceeds", "arg0_index": [17, 18], "pred": "work", "pred_index": [20, 20], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Separately , Ford and Mazda Motor Corp. 's U.S. sales arm said they are recalling about 88,500 1988 - model Mercury Tracers and 220,000 1986 , 1987 and 1988 model Mazda 323s equipped with 1.6 - liter fuel - injected engines to replace the oil filler cap .": [{"arg0": "Ford and Mazda Motor Corp. 's U.S. sales arm", "arg0_index": [2, 10], "pred": "said", "pred_index": [11, 11], "arg1": "they are recalling about 88,500 1988 - model Mercury Tracers and 220,000 1986 , 1987 and 1988 model Mazda 323s equipped with 1.6 - liter fuel - injected engines to replace the oil filler cap", "arg1_index": [12, 46], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "they", "arg0_index": [12, 12], "pred": "are recalling", "pred_index": [13, 14], "arg1": "about 88,500 1988 - model Mercury Tracers and 220,000 1986 , 1987 and 1988 model Mazda 323s equipped with 1.6 - liter fuel - injected engines", "arg1_index": [15, 40], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "1986 , 1987 and 1988 model Mazda 323s", "arg0_index": [24, 31], "pred": " equipped with", "pred_index": [-2, 32, 33], "arg1": "1.6 - liter fuel - injected engines", "arg1_index": [34, 40], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Ford and Mazda Motor Corp. 's U.S. sales arm", "arg0_index": [2, 10], "pred": "replace", "pred_index": [42, 42], "arg1": "the oil filler cap", "arg1_index": [43, 46], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "For the past five years , unions have n't managed to win wage increases as large as those granted to nonunion workers .": [{"arg0": "unions", "arg0_index": [6, 6], "pred": "have n't managed to win", "pred_index": [7, 11], "arg1": "wage increases", "arg1_index": [12, 13], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "those", "arg0_index": [17, 17], "pred": "granted to", "pred_index": [18, 19], "arg1": "nonunion workers", "arg1_index": [20, 21], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "At no cost to the parents , these services are provided in compliance with state and federal law ; and are reasonably calculated to yield meaningful educational benefit and student progress .": [{"arg0": "these services", "arg0_index": [7, 8], "pred": "are provided in compliance with", "pred_index": [9, 13], "arg1": "state and federal law", "arg1_index": [14, 17], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "these services", "arg0_index": [7, 8], "pred": "are reasonably calculated to yield", "pred_index": [20, 24], "arg1": "meaningful educational benefit", "arg1_index": [25, 27], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "It was originally aimed at mature entrants to the teaching profession , who could not afford to give up work and undertake a traditional method of teacher training such as the PGCE .": [{"arg0": "It", "arg0_index": [0, 0], "pred": "was originally aimed at", "pred_index": [1, 4], "arg1": "mature entrants to the teaching profession", "arg1_index": [5, 10], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "mature entrants to the teaching profession", "arg0_index": [5, 10], "pred": "could not afford to give up", "pred_index": [13, 18], "arg1": "work", "arg1_index": [19, 19], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "mature entrants to the teaching profession", "arg0_index": [5, 10], "pred": "undertake", "pred_index": [21, 21], "arg1": "a traditional method of teacher training", "arg1_index": [22, 27], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "The first five laps would be added to the second part of the race and the overall result would be decided on aggregate .": [{"arg0": "The first five laps", "arg0_index": [0, 3], "pred": "would be added to", "pred_index": [4, 7], "arg1": "the second part of the race", "arg1_index": [8, 13], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "the overall result", "arg0_index": [15, 17], "pred": "would be decided", "pred_index": [18, 20], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "It was the most active of the 100 - share index at 8.3 million shares , 6.5 million of which were traded by midday .": [{"arg0": "It", "arg0_index": [0, 0], "pred": "was", "pred_index": [1, 1], "arg1": "the most active of the 100 - share index at 8.3 million shares", "arg1_index": [2, 14], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "6.5 million of which", "arg0_index": [16, 19], "pred": "were traded", "pred_index": [20, 21], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "As in his first novel , Armah contrasts the two worlds of materialism and moral values , corruption and dreams , two worlds of integrity and social pressure .": [{"arg0": "Armah", "arg0_index": [6, 6], "pred": "contrasts", "pred_index": [7, 7], "arg1": "the two worlds of materialism and moral values , corruption and dreams , two worlds of integrity and social pressure", "arg1_index": [8, 27], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Its cultivation even declined in favour of the Asian species , which was introduced to East Africa early in the common era and spread westward .": [{"arg0": "Its cultivation", "arg0_index": [0, 1], "pred": "even declined in favour of", "pred_index": [2, 6], "arg1": "the Asian species", "arg1_index": [7, 9], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "the Asian species", "arg0_index": [7, 9], "pred": "was introduced to", "pred_index": [12, 14], "arg1": "East Africa", "arg1_index": [15, 16], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "the Asian species", "arg0_index": [7, 9], "pred": "spread", "pred_index": [23, 23], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "The very large piers at the crossing signify that there was once a tower .": [{"arg0": "The very large piers at the crossing", "arg0_index": [0, 6], "pred": "signify", "pred_index": [7, 7], "arg1": "that there was once a tower", "arg1_index": [8, 13], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "there", "arg0_index": [9, 9], "pred": "was", "pred_index": [10, 10], "arg1": "a tower", "arg1_index": [12, 13], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "The first library in Huntington Beach opened in 1909 and has since evolved to a five location library system : Central , Main Street , Oak View , Helen Murphy , and Banning .": [{"arg0": "The first library in Huntington Beach", "arg0_index": [0, 5], "pred": "opened in", "pred_index": [6, 7], "arg1": "1909", "arg1_index": [8, 8], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "The first library in Huntington Beach", "arg0_index": [0, 5], "pred": "has since evolved to", "pred_index": [10, 13], "arg1": "a five location library system : Central , Main Street , Oak View , Helen Murphy , and Banning", "arg1_index": [14, 32], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "The tax has raised less than one billion marks ( $ 545.3 million ) annually in recent years , but the government has been reluctant to abolish the levy for budgetary concerns .": [{"arg0": "The tax", "arg0_index": [0, 1], "pred": "has raised less than", "pred_index": [2, 5], "arg1": "one billion marks ( $ 545.3 million ) annually", "arg1_index": [6, 14], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "the government", "arg0_index": [20, 21], "pred": "has been reluctant to abolish", "pred_index": [22, 26], "arg1": "the levy", "arg1_index": [27, 28], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "After the battle , Battra rested in the Arctic Ocean , whereas Mothra retired to Infant Island , accompanied by the two Cosmos .": [{"arg0": "Battra", "arg0_index": [4, 4], "pred": "rested in", "pred_index": [5, 6], "arg1": "the Arctic Ocean", "arg1_index": [7, 9], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Mothra", "arg0_index": [12, 12], "pred": "retired to", "pred_index": [13, 14], "arg1": "Infant Island", "arg1_index": [15, 16], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Mothra", "arg0_index": [12, 12], "pred": " accompanied by", "pred_index": [-2, 18, 19], "arg1": "the two Cosmos", "arg1_index": [20, 22], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Prior to the Playmaker tool , the Player could only call one of four available `` hot routes . ''": [{"arg0": "the Player", "arg0_index": [6, 7], "pred": "could only call", "pred_index": [8, 10], "arg1": "one of four available `` hot routes . ''", "arg1_index": [11, 19], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Mr. Rifenburgh said the board still has n't acted on most of the internal report 's recommendations , pending restatement of the balance sheet .": [{"arg0": "Mr. Rifenburgh", "arg0_index": [0, 1], "pred": "said", "pred_index": [2, 2], "arg1": "the board still has n't acted on most of the internal report 's recommendations , pending restatement of the balance sheet", "arg1_index": [3, 23], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "the board", "arg0_index": [3, 4], "pred": "still has n't acted on", "pred_index": [5, 9], "arg1": "most of the internal report 's recommendations", "arg1_index": [10, 16], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "The $ 150 million in senior subordinated floating - rate notes were targeted to be offered at a price to float four percentage points above the three - month LIBOR .": [{"arg0": "The $ 150 million in senior subordinated floating - rate notes", "arg0_index": [0, 10], "pred": "were targeted to be offered", "pred_index": [11, 15], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "a price", "arg0_index": [17, 18], "pred": "float", "pred_index": [20, 20], "arg1": "four percentage points above the three - month LIBOR", "arg1_index": [21, 29], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "The insurer sponsored the golf tournament known as the New Orleans Open beginning in 1981 .": [{"arg0": "The insurer", "arg0_index": [0, 1], "pred": "sponsored", "pred_index": [2, 2], "arg1": "the golf tournament", "arg1_index": [3, 5], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "the golf tournament", "arg0_index": [3, 5], "pred": " known as", "pred_index": [-2, 6, 7], "arg1": "the New Orleans Open", "arg1_index": [8, 11], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "the golf tournament", "arg0_index": [3, 5], "pred": "beginning in", "pred_index": [12, 13], "arg1": "1981", "arg1_index": [14, 14], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "With more than 15 million exercise bikes sold in the past five years , he adds , `` a lot of garages , basements and attics must be populated with them . ''": [{"arg0": "more than 15 million exercise bikes", "arg0_index": [1, 6], "pred": " sold", "pred_index": [-2, 7, 7], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "he", "arg0_index": [14, 14], "pred": "adds", "pred_index": [15, 15], "arg1": "`` a lot of garages , basements and attics must be populated with them . ''", "arg1_index": [17, 32], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "a lot of garages , basements and attics", "arg0_index": [18, 25], "pred": "must be populated with", "pred_index": [26, 29], "arg1": "exercise bikes", "arg1_index": [5, 6], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "A specialist is an exchange member designated to maintain a fair and orderly market in a specified stock .": [{"arg0": "A specialist", "arg0_index": [0, 1], "pred": "is", "pred_index": [2, 2], "arg1": "an exchange member designated to maintain a fair and orderly market in a specified stock", "arg1_index": [3, 17], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "an exchange member", "arg0_index": [3, 5], "pred": " designated to maintain", "pred_index": [-2, 6, 8], "arg1": "a fair and orderly market", "arg1_index": [9, 13], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "On May 15 , 2007 , XM suspended Opie & Anthony for 30 days , in response to a broadcast featuring a homeless man who wandered into the studio .": [{"arg0": "XM", "arg0_index": [6, 6], "pred": "suspended", "pred_index": [7, 7], "arg1": "Opie & Anthony", "arg1_index": [8, 10], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "a broadcast", "arg0_index": [18, 19], "pred": "featuring", "pred_index": [20, 20], "arg1": "a homeless man who wandered into the studio", "arg1_index": [21, 28], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "homeless man", "arg0_index": [22, 23], "pred": "wandered into", "pred_index": [25, 26], "arg1": "the studio", "arg1_index": [27, 28], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "HTB 's aim is for an Alpha course to be accessible to anyone who would like to attend the course , and in this way HTB seeks to spread the teachings of Christianity .": [{"arg0": "HTB 's aim", "arg0_index": [0, 2], "pred": "is", "pred_index": [3, 3], "arg1": "for an Alpha course", "arg1_index": [4, 7], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Alpha course", "arg0_index": [6, 7], "pred": "be accessible to", "pred_index": [9, 11], "arg1": "anyone who would like to attend the course", "arg1_index": [12, 19], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "anyone", "arg0_index": [12, 12], "pred": "would like to attend", "pred_index": [14, 17], "arg1": "the course", "arg1_index": [18, 19], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "HTB", "arg0_index": [25, 25], "pred": "seeks to spread", "pred_index": [26, 28], "arg1": "the teachings of Christianity", "arg1_index": [29, 32], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Nixon , on the fourth day of a private visit to China , said that damage to Sino - U.S. relations was `` very great , '' calling the situation `` the most serious '' since 1972 .": [{"arg0": "Nixon", "arg0_index": [0, 0], "pred": "said", "pred_index": [13, 13], "arg1": "that damage to Sino - U.S. relations was `` very great", "arg1_index": [14, 24], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "damage to Sino - U.S. relations", "arg0_index": [15, 20], "pred": "was", "pred_index": [21, 21], "arg1": "`` very great , ''", "arg1_index": [22, 26], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Nixon", "arg0_index": [0, 0], "pred": "calling", "pred_index": [27, 27], "arg1": "the situation", "arg1_index": [28, 29], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "`` Le Griffon '' is reported to be the `` Holy Grail '' of Great Lakes shipwreck hunters .": [{"arg0": "`` Le Griffon ''", "arg0_index": [0, 3], "pred": "is reported to be", "pred_index": [4, 7], "arg1": "the `` Holy Grail '' of Great Lakes shipwreck hunters", "arg1_index": [8, 17], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Technology stocks bore the brunt of the OTC market 's recent sell - off , and traders say it 's natural that they rebound sharply now that the market has turned around .": [{"arg0": "Technology stocks", "arg0_index": [0, 1], "pred": "bore", "pred_index": [2, 2], "arg1": "the brunt of the OTC market 's recent sell - off", "arg1_index": [3, 13], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "traders", "arg0_index": [16, 16], "pred": "say", "pred_index": [17, 17], "arg1": "it 's natural that they rebound sharply now that the market has turned around", "arg1_index": [18, 31], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "it", "arg0_index": [18, 18], "pred": "'s", "pred_index": [19, 19], "arg1": "natural", "arg1_index": [20, 20], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Technology stocks", "arg0_index": [0, 1], "pred": "rebound", "pred_index": [23, 23], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "the market", "arg0_index": [27, 28], "pred": "has turned around", "pred_index": [29, 31], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "George Bluth Sr. , patriarch of the Bluth family , is the founder and former CEO of the Bluth Company which markets and builds mini-mansions among many other activities .": [{"arg0": "George Bluth Sr.", "arg0_index": [0, 2], "pred": "", "pred_index": [-1, -1], "arg1": "patriarch of the Bluth family", "arg1_index": [4, 8], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "George Bluth Sr.", "arg0_index": [0, 2], "pred": "is", "pred_index": [10, 10], "arg1": "the founder and former CEO of the Bluth Company", "arg1_index": [11, 19], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Bluth Company", "arg0_index": [18, 19], "pred": "markets", "pred_index": [21, 21], "arg1": "mini-mansions", "arg1_index": [24, 24], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Bluth Company", "arg0_index": [18, 19], "pred": "builds", "pred_index": [23, 23], "arg1": "mini-mansions", "arg1_index": [24, 24], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}]}
\ No newline at end of file
diff --git a/3-NLP_services/src/Multi2OIE/evaluate/Re-OIE2016-Portuguese-Binary.json b/3-NLP_services/src/Multi2OIE/evaluate/Re-OIE2016-Portuguese-Binary.json
deleted file mode 100644
index 7b7929d..0000000
--- a/3-NLP_services/src/Multi2OIE/evaluate/Re-OIE2016-Portuguese-Binary.json
+++ /dev/null
@@ -1 +0,0 @@
-{"Poucas pessoas no neg\u00f3cio de publicidade t\u00eam levantado tantas hackles como Alvin A. Achenbaum .": [{"arg0": "Poucas pessoas no neg\u00f3cio de publicidade", "arg0_index": [0, 5], "pred": "levantado", "pred_index": [7, 7], "arg1": "tantas hackles", "arg1_index": [8, 9], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Stoll suspeita que o intruso era um desses alunos precoces que tem quebra divers\u00e3o em computadores .": [{"arg0": "o intruso", "arg0_index": [3, 4], "pred": "era", "pred_index": [5, 5], "arg1": "um desses alunos precoces que tem quebra divers\u00e3o em computadores", "arg1_index": [6, 15], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Stoll", "arg0_index": [0, 0], "pred": "suspeita", "pred_index": [1, 1], "arg1": "o intruso era um desses alunos precoces que tem quebra divers\u00e3o em computadores", "arg1_index": [3, 15], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "alunos precoces", "arg0_index": [8, 9], "pred": "tem quebra divers\u00e3o em", "pred_index": [11, 14], "arg1": "computadores", "arg1_index": [15, 15], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Havia 143 casas fora de que 30.1% tiveram as crian\u00e7as sob a idade de 18 que vivem com eles , 49,7% eram casais vivendo juntos , 11,9% tiveram um householder f\u00eamea com nenhum presente do marido , e 36,4% eram n\u00e3o-fam\u00edlias .": [{"arg0": "30.1%", "arg0_index": [6, 6], "pred": "tiveram", "pred_index": [7, 7], "arg1": "crian\u00e7as sob a idade de 18 que vivem com eles", "arg1_index": [9, 18], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "49,7%", "arg0_index": [20, 20], "pred": "eram", "pred_index": [21, 21], "arg1": "casais vivendo juntos", "arg1_index": [22, 24], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "11,9%", "arg0_index": [26, 26], "pred": "tiveram", "pred_index": [27, 27], "arg1": "um householder f\u00eamea com nenhum presente do marido", "arg1_index": [28, 35], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "36,4%", "arg0_index": [38, 38], "pred": "eram", "pred_index": [39, 39], "arg1": "n\u00e3o-fam\u00edlias", "arg1_index": [40, 40], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "A fam\u00edlia Steinbrenner adicionado um monumento ao Monument Park em 20 de setembro de 2010 para honrar Steinbrenner .": [{"arg0": "A fam\u00edlia Steinbrenner", "arg0_index": [0, 2], "pred": "adicionado", "pred_index": [3, 3], "arg1": "um monumento", "arg1_index": [4, 5], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "A fam\u00edlia Steinbrenner", "arg0_index": [0, 2], "pred": "honrar", "pred_index": [16, 16], "arg1": "Steinbrenner", "arg1_index": [17, 17], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Um espectro de um \u00fanico FID tem uma baixa rela\u00e7\u00e3o de sinal-para-ru\u00eddo , mas felizmente , melhora prontamente com m\u00e9dia de aquisi\u00e7\u00f5es repetidas .": [{"arg0": "Um espectro de um \u00fanico FID", "arg0_index": [0, 5], "pred": "tem", "pred_index": [6, 6], "arg1": "uma baixa rela\u00e7\u00e3o de sinal-para-ru\u00eddo", "arg1_index": [7, 11], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Um espectro de um \u00fanico FID", "arg0_index": [0, 5], "pred": "melhora prontamente", "pred_index": [16, 17], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "A empresa opera\u00e7\u00f5es de explora\u00e7\u00e3o e mergulho de petr\u00f3leo e g\u00e1s de New Orleans acrescentou que n\u00e3o espera qualquer impacto adicional financeiro adverso da reestrutura\u00e7\u00e3o .": [{"arg0": "empresa opera\u00e7\u00f5es de explora\u00e7\u00e3o e mergulho de petr\u00f3leo e g\u00e1s de New Orleans", "arg0_index": [1, 13], "pred": "adicional", "pred_index": [20, 20], "arg1": "que n\u00e3o espera qualquer impacto adicional financeiro adverso da reestrutura\u00e7\u00e3o", "arg1_index": [15, 24], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "que", "arg0_index": [15, 15], "pred": "n\u00e3o espera", "pred_index": [16, 17], "arg1": "qualquer impacto adicional financeiro adverso da reestrutura\u00e7\u00e3o", "arg1_index": [18, 24], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "`` Para permitir este n\u00edvel maci\u00e7a de empr\u00e9stimos federais sem restri\u00e7\u00f5es , sem a aprova\u00e7\u00e3o do Congresso antes seria irrespons\u00e1vel '' , disse Rep. Fortney Stark (D. , Calif.) , Que introduziu um projeto de lei para limitar a RTC 'autoridade s \u00e0 d\u00edvida quest\u00e3o .": [{"arg0": "permitir este n\u00edvel maci\u00e7a de empr\u00e9stimos federais sem restri\u00e7\u00f5es , sem a aprova\u00e7\u00e3o do Congresso", "arg0_index": [2, 16], "pred": "seria", "pred_index": [18, 18], "arg1": "irrespons\u00e1vel", "arg1_index": [19, 19], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Rep. Fortney Stark (D. , Calif.)", "arg0_index": [23, 28], "pred": "disse", "pred_index": [22, 22], "arg1": "permitir este n\u00edvel maci\u00e7a de empr\u00e9stimos federais sem restri\u00e7\u00f5es , sem a aprova\u00e7\u00e3o do Congresso antes seria irrespons\u00e1vel", "arg1_index": [2, 19], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Rep. Fortney Stark (D. , Calif.)", "arg0_index": [23, 28], "pred": "introduziu", "pred_index": [31, 31], "arg1": "um projeto", "arg1_index": [32, 33], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "um projeto", "arg0_index": [32, 33], "pred": "limitar", "pred_index": [37, 37], "arg1": "RTC 'autoridade s \u00e0 d\u00edvida quest\u00e3o", "arg1_index": [39, 44], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "", "arg0_index": [], "pred": "quest\u00e3o", "pred_index": [44, 44], "arg1": "d\u00edvida", "arg1_index": [43, 43], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "A Democrata , ele se tornou o prefeito mais jovem da hist\u00f3ria Pittsburgh 's em setembro de 2006 com a idade de 26 .": [{"arg0": "ele", "arg0_index": [3, 3], "pred": "tornou", "pred_index": [5, 5], "arg1": "o prefeito mais jovem da hist\u00f3ria Pittsburgh 's", "arg1_index": [6, 13], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "O caldeir\u00e3o deve ser refrigerada e a massa s\u00f3lida de gotejamento que se estabelece quando refrigerado deve ser raspados e re-refrigerados para uso futuro .": [{"arg0": "O caldeir\u00e3o", "arg0_index": [0, 1], "pred": "deve ser refrigerada", "pred_index": [2, 4], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "a massa s\u00f3lida de gotejamento", "arg0_index": [6, 10], "pred": "deve ser raspados e re-refrigerados", "pred_index": [16, 20], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "a massa s\u00f3lida de gotejamento", "arg0_index": [6, 10], "pred": "re-refrigerados", "pred_index": [20, 20], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "a massa s\u00f3lida de gotejamento", "arg0_index": [6, 10], "pred": "se estabelece", "pred_index": [12, 13], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "No atletismo , Boston College deixou a Confer\u00eancia Big East e se juntou ao Atlantic Coast Conference on 01 de julho de 2005 .": [{"arg0": "Boston College", "arg0_index": [3, 4], "pred": "deixou", "pred_index": [5, 5], "arg1": "Confer\u00eancia Big East", "arg1_index": [7, 9], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Boston College", "arg0_index": [3, 4], "pred": "juntou", "pred_index": [12, 12], "arg1": "Atlantic Coast Conference", "arg1_index": [14, 16], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Em 30 de setembro , American Brands tinha 95,2 milh\u00f5es de a\u00e7\u00f5es em circula\u00e7\u00e3o .": [{"arg0": "American Brands", "arg0_index": [5, 6], "pred": "tinha", "pred_index": [7, 7], "arg1": "95,2 milh\u00f5es de a\u00e7\u00f5es em circula\u00e7\u00e3o", "arg1_index": [8, 13], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "No an\u00fancio da UTV foi feito sobre a decis\u00e3o de fechar a esta\u00e7\u00e3o antes do planejado .": [{"arg0": "No an\u00fancio da UTV", "arg0_index": [0, 3], "pred": "foi feito", "pred_index": [4, 5], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "a decis\u00e3o", "arg0_index": [7, 8], "pred": "fechar", "pred_index": [10, 10], "arg1": "a esta\u00e7\u00e3o", "arg1_index": [11, 12], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "No entanto , StatesWest n\u00e3o est\u00e1 abandonando sua busca do bem - maior Mesa .": [{"arg0": "StatesWest", "arg0_index": [3, 3], "pred": "n\u00e3o est\u00e1 abandonando", "pred_index": [4, 6], "arg1": "sua busca do bem - maior Mesa", "arg1_index": [7, 13], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "O resto do grupo chegar a uma pequena loja , onde Brady tentativas de telefone do Sheriff , mas o crocodilo rompe uma parede e devora Annabelle .": [{"arg0": "O resto do grupo", "arg0_index": [0, 3], "pred": "chegar", "pred_index": [4, 4], "arg1": "uma pequena loja", "arg1_index": [6, 8], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Brady", "arg0_index": [11, 11], "pred": "tentativas de telefone", "pred_index": [12, 14], "arg1": "do Sheriff", "arg1_index": [15, 16], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "o crocodilo", "arg0_index": [19, 20], "pred": "rompe", "pred_index": [21, 21], "arg1": "uma parede", "arg1_index": [22, 23], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "o crocodilo", "arg0_index": [19, 20], "pred": "devora", "pred_index": [25, 25], "arg1": "Annabelle", "arg1_index": [26, 26], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Ele deu entrada perto do hospital em 28 de St Street 's Thomas em Southwark , com outros estudantes de medicina , incluindo Henry Stephens , que se tornou um famoso inventor e tinta magnata .": [{"arg0": "Ele", "arg0_index": [0, 0], "pred": "deu entrada", "pred_index": [1, 2], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Henry Stephens", "arg0_index": [23, 24], "pred": "se tornou", "pred_index": [27, 28], "arg1": "um famoso inventor e tinta magnata", "arg1_index": [29, 34], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Para manter a fam\u00edlia unida , Michael pede que sua irm\u00e3 egoc\u00eantrica g\u00eameo Lindsay , seu marido Tobias e sua filha Maeby para juntos ao vivo no modelo de casa Bluth com ele e George Michael .": [{"arg0": "Michael", "arg0_index": [6, 6], "pred": "pede", "pred_index": [7, 7], "arg1": "sua irm\u00e3 egoc\u00eantrica g\u00eameo Lindsay , seu marido Tobias e sua filha Maeby", "arg1_index": [9, 21], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "A Rodovia Wilbur Cruz anteriormente terminou em Sturbridge ; locals \u00e0s vezes chamam Haynes rua e por\u00e7\u00f5es de Mashapaug Estrada `` Old Route 15 '' .": [{"arg0": "A Rodovia Wilbur Cruz", "arg0_index": [0, 3], "pred": "anteriormente terminou em", "pred_index": [4, 6], "arg1": "Sturbridge", "arg1_index": [7, 7], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "locals", "arg0_index": [9, 9], "pred": "\u00e0s vezes chamam", "pred_index": [10, 12], "arg1": "Haynes rua e por\u00e7\u00f5es de Mashapaug Estrada", "arg1_index": [13, 19], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Ele tem patas traseiras compridas e uma longa , fina , cauda escamosa que ele usa para se comunicar , fazendo ru\u00eddos bateria .": [{"arg0": "Ele", "arg0_index": [0, 0], "pred": "tem", "pred_index": [1, 1], "arg1": "patas traseiras compridas e uma longa , fina , cauda escamosa", "arg1_index": [2, 12], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Ele", "arg0_index": [0, 0], "pred": "usa", "pred_index": [15, 15], "arg1": "uma longa , fina , cauda escamosa", "arg1_index": [6, 12], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Ryukichi Imai , embaixador Jap\u00e3o 's para o M\u00e9xico , concorda que o M\u00e9xico pode ser muito ansioso .": [{"arg0": "Ryukichi", "arg0_index": [0, 0], "pred": "", "pred_index": [-1, -1], "arg1": "embaixador Jap\u00e3o 's para o M\u00e9xico", "arg1_index": [3, 8], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Ryukichi Imai", "arg0_index": [0, 1], "pred": "concorda", "pred_index": [10, 10], "arg1": "que o M\u00e9xico pode ser muito ansioso", "arg1_index": [11, 17], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "M\u00e9xico", "arg0_index": [13, 13], "pred": "pode ser", "pred_index": [14, 15], "arg1": "muito ansioso", "arg1_index": [16, 17], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "A quest\u00e3o \u00e9 apoiado por uma carta de 12% do cr\u00e9dito do Credit Suisse .": [{"arg0": "A quest\u00e3o", "arg0_index": [0, 1], "pred": "\u00e9 apoiado por", "pred_index": [2, 4], "arg1": "uma carta de 12% do cr\u00e9dito do Credit Suisse", "arg1_index": [5, 13], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Dentro de duas horas , os espectadores se comprometeu mais de US $ 400.000 , de acordo com um executivo da Cruz Vermelha .": [{"arg0": "os espectadores", "arg0_index": [5, 6], "pred": "se comprometeu", "pred_index": [7, 8], "arg1": "$ 400.000", "arg1_index": [12, 13], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Johns tamb\u00e9m apareceu como um oficial Imperial em 1980 `` Star Wars sequela '' , `` The Empire Strikes Back '' .": [{"arg0": "Johns", "arg0_index": [0, 0], "pred": "apareceu como", "pred_index": [2, 3], "arg1": "um oficial Imperial", "arg1_index": [4, 6], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "No entanto , um funcion\u00e1rio da Embaixada do Canad\u00e1 em Tel Aviv disse que o Canad\u00e1 era improv\u00e1vel para vender a pesada Candu - reator de \u00e1gua para Israel desde que Israel n\u00e3o assinou o Non Nuclear - Prolifera\u00e7\u00e3o Nuclear .": [{"arg0": "um funcion\u00e1rio da Embaixada do Canad\u00e1 em Tel Aviv", "arg0_index": [3, 11], "pred": "disse", "pred_index": [12, 12], "arg1": "que o Canad\u00e1 era improv\u00e1vel para vender a pesada Candu - reator de \u00e1gua para Israel desde que Israel n\u00e3o assinou o Non Nuclear - Prolifera\u00e7\u00e3o Nuclear", "arg1_index": [13, 39], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Canad\u00e1", "arg0_index": [15, 15], "pred": "era improv\u00e1vel para vender", "pred_index": [16, 19], "arg1": "a pesada Candu - reator de \u00e1gua", "arg1_index": [20, 26], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Israel", "arg0_index": [31, 31], "pred": "n\u00e3o assinou", "pred_index": [32, 33], "arg1": "o Non Nuclear - Prolifera\u00e7\u00e3o Nuclear", "arg1_index": [34, 39], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Seus classifica o recente relat\u00f3rio de a\u00e7\u00f5es como um `` hold . ''": [{"arg0": "o recente relat\u00f3rio", "arg0_index": [2, 4], "pred": "classifica", "pred_index": [1, 1], "arg1": "Seus", "arg1_index": [0, 0], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Hawker Pacific Aerospace \u00e9 uma empresa de MRO-Service , que oferece desembarque servi\u00e7os de transmiss\u00e3o e de MRO hidr\u00e1ulica para todos os principais tipos de aeronaves .": [{"arg0": "Hawker Pacific Aerospace", "arg0_index": [0, 2], "pred": "\u00e9", "pred_index": [3, 3], "arg1": "uma empresa de MRO-Service", "arg1_index": [4, 7], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Hawker Pacific Aerospace", "arg0_index": [0, 2], "pred": "oferece", "pred_index": [10, 10], "arg1": "desembarque servi\u00e7os de transmiss\u00e3o e de MRO", "arg1_index": [11, 17], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "O primeiro vem de quando da Su\u00e9cia casal real viveu l\u00e1 durante os Jogos Ol\u00edmpicos de Ver\u00e3o de 1992 em Barcelona .": [{"arg0": "O primeiro", "arg0_index": [0, 1], "pred": "vem de", "pred_index": [2, 3], "arg1": "quando da Su\u00e9cia casal real viveu l\u00e1 durante os Jogos Ol\u00edmpicos de Ver\u00e3o de 1992 em Barcelona", "arg1_index": [4, 20], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "da Su\u00e9cia casal real", "arg0_index": [5, 8], "pred": "viveu", "pred_index": [9, 9], "arg1": "l\u00e1", "arg1_index": [10, 10], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "A modernidade tem sido misturado sem sacrificar sobre o ethos tradicional budista .": [{"arg0": "modernidade", "arg0_index": [1, 1], "pred": "tem sido misturado", "pred_index": [2, 4], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "", "arg0_index": [], "pred": "sacrificar", "pred_index": [6, 6], "arg1": "o ethos tradicional budista", "arg1_index": [8, 11], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "A terceira vers\u00e3o conhecida faz parte n\u00famero 2189014-00-212 , com pelo menos um modelo a ser produzido em Fevereiro de 1993 .": [{"arg0": "A terceira vers\u00e3o conhecida", "arg0_index": [0, 3], "pred": "faz", "pred_index": [4, 4], "arg1": "parte n\u00famero 2189014-00-212", "arg1_index": [5, 7], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "pelo menos um modelo", "arg0_index": [10, 13], "pred": "ser produzido", "pred_index": [15, 16], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Embora as autoridades Heathrow foram assistir um grupo de carregadores de bagagem supostamente curvado por algum tempo , o Gauguin pode ser `` perdidos . ''": [{"arg0": "autoridades Heathrow", "arg0_index": [2, 3], "pred": "foram assistir", "pred_index": [4, 5], "arg1": "um grupo de carregadores de bagagem supostamente curvado", "arg1_index": [6, 13], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "o Gauguin", "arg0_index": [18, 19], "pred": "pode ser", "pred_index": [20, 21], "arg1": "`` perdidos . ''", "arg1_index": [22, 25], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Mr. Ridley a decis\u00e3o do dispara a pistola de partida para talvez um concurso caro entre o mundo 's auto gigantes por liderar luxo da Gr\u00e3-Bretanha - fabricante de carro .": [{"arg0": "Mr. Ridley a decis\u00e3o", "arg0_index": [0, 3], "pred": "dispara", "pred_index": [5, 5], "arg1": "a pistola de partida", "arg1_index": [6, 9], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Quando a explos\u00e3o rasgou atrav\u00e9s da cabana , Stauffenberg estava convencido de que ningu\u00e9m na sala poderia ter sobrevivido .": [{"arg0": "a explos\u00e3o", "arg0_index": [1, 2], "pred": "rasgou", "pred_index": [3, 3], "arg1": "cabana", "arg1_index": [6, 6], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Stauffenberg", "arg0_index": [8, 8], "pred": "estava convencido", "pred_index": [9, 10], "arg1": "que ningu\u00e9m na sala poderia ter sobrevivido", "arg1_index": [12, 18], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "ningu\u00e9m na sala", "arg0_index": [13, 15], "pred": "poderia ter sobrevivido", "pred_index": [16, 18], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Ap\u00f3s cinco anos de pesquisa , os colonos encontraram um novo mundo primitivo , exuberante e vibrante e nomeou-o Terra .": [{"arg0": "os colonos", "arg0_index": [6, 7], "pred": "encontraram", "pred_index": [8, 8], "arg1": "um novo mundo primitivo , exuberante e vibrante", "arg1_index": [9, 16], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "os colonos", "arg0_index": [6, 7], "pred": "nomeou-o", "pred_index": [18, 18], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Esta muta\u00e7\u00e3o lhe d\u00e1 for\u00e7a sobre-humana , velocidade , reflexos , agilidade , flexibilidade , agilidade , coordena\u00e7\u00e3o , equil\u00edbrio e resist\u00eancia .": [{"arg0": "Esta muta\u00e7\u00e3o", "arg0_index": [0, 1], "pred": "d\u00e1", "pred_index": [3, 3], "arg1": "lhe", "arg1_index": [2, 2], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Mas , em meio as duas dezenas de burocratas e secret\u00e1rios senta apenas um verdadeiro - vida PC .": [{"arg0": "apenas um verdadeiro - vida PC", "arg0_index": [12, 17], "pred": "senta", "pred_index": [11, 11], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "As fortes vendas at\u00e9 agora este ano est\u00e3o determinados a virar o jogo , mas mesmo a quota de mercado de 25% que espera Nissan em 1989 , vai deix\u00e1-lo muito abaixo da sua posi\u00e7\u00e3o no in\u00edcio da d\u00e9cada .": [{"arg0": "As fortes vendas", "arg0_index": [0, 2], "pred": "est\u00e3o determinados a virar", "pred_index": [7, 10], "arg1": "o jogo", "arg1_index": [11, 12], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "mas mesmo a quota de mercado de 25% que espera Nissan em 1989", "arg0_index": [14, 26], "pred": "vai deix\u00e1-lo", "pred_index": [28, 29], "arg1": "este", "arg1_index": [5, 5], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Nissan", "arg0_index": [24, 24], "pred": "espera", "pred_index": [23, 23], "arg1": "quota de mercado", "arg1_index": [17, 19], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Mas parece ser o tipo de reten\u00e7\u00e3o uma faz enquanto se dirigiam para a porta .": [{"arg0": "", "arg0_index": [], "pred": "parece ser", "pred_index": [1, 2], "arg1": "o tipo de reten\u00e7\u00e3o uma faz enquanto se dirigiam para a porta", "arg1_index": [3, 14], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "uma", "arg0_index": [7, 7], "pred": "faz", "pred_index": [8, 8], "arg1": "o tipo de reten\u00e7\u00e3o", "arg1_index": [3, 6], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "uma", "arg0_index": [7, 7], "pred": "dirigiam para", "pred_index": [11, 12], "arg1": "a porta", "arg1_index": [13, 14], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Ele conversou com McGee sobre o uso de seu nome e recebido permiss\u00e3o , o que \u00e9 confirmado pela correspond\u00eancia entre McGee e sua fam\u00edlia .": [{"arg0": "Ele", "arg0_index": [0, 0], "pred": "conversou com", "pred_index": [1, 2], "arg1": "McGee", "arg1_index": [3, 3], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "o uso de seu nome e recebido permiss\u00e3o", "arg0_index": [5, 12], "pred": "\u00e9 confirmado pela", "pred_index": [16, 18], "arg1": "correspond\u00eancia entre McGee e sua fam\u00edlia", "arg1_index": [19, 24], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Mas transfer\u00eancias eletr\u00f4nicas de uma conta permanente - incluindo aquelas maiores que US $ 10.000 - n\u00e3o s\u00e3o relatadas .": [{"arg0": "transfer\u00eancias eletr\u00f4nicas de uma conta permanente", "arg0_index": [1, 6], "pred": "n\u00e3o s\u00e3o relatadas", "pred_index": [16, 18], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Um exemplo poderia ser `` Time '' , a quinta can\u00e7\u00e3o do Pink Floyd '1973 album s `` The Dark Side Of The Moon '' , que cont\u00e9m uma reprise de `` respirar '' , a primeira m\u00fasica do mesmo \u00e1lbum .": [{"arg0": "`` Time ''", "arg0_index": [4, 6], "pred": "", "pred_index": [-1, -1], "arg1": "a quinta can\u00e7\u00e3o do Pink Floyd '1973 album s `` The Dark Side Of The Moon ''", "arg1_index": [8, 24], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Um exemplo", "arg0_index": [0, 1], "pred": "poderia ser", "pred_index": [2, 3], "arg1": "`` Time ''", "arg1_index": [4, 6], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "`` The Dark Side Of The Moon ''", "arg0_index": [17, 24], "pred": "cont\u00e9m", "pred_index": [27, 27], "arg1": "uma reprise de `` respirar ''", "arg1_index": [28, 33], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "`` respirar ''", "arg0_index": [31, 33], "pred": "", "pred_index": [-1, -1], "arg1": "a primeira m\u00fasica do mesmo \u00e1lbum", "arg1_index": [35, 40], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "`` The Dark Side Of The Moon ''", "arg0_index": [17, 24], "pred": "", "pred_index": [-1, -1], "arg1": "Pink Floyd '1973 album", "arg1_index": [12, 15], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "As tr\u00eas plantas existentes e sua terra ser\u00e1 vendida .": [{"arg0": "As tr\u00eas plantas existentes e sua terra", "arg0_index": [0, 6], "pred": "ser\u00e1 vendida", "pred_index": [7, 8], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Embora h\u00e1 acordos espec\u00edficos s\u00e3o esperados , o Sr. Shevardnadze disse `` isso n\u00e3o significa que eles v\u00e3o ficar sem uma agenda . ''": [{"arg0": "h\u00e1 acordos espec\u00edficos", "arg0_index": [1, 3], "pred": "s\u00e3o esperados", "pred_index": [4, 5], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Sr. Shevardnadze", "arg0_index": [8, 9], "pred": "disse", "pred_index": [10, 10], "arg1": "`` isso n\u00e3o significa que eles v\u00e3o ficar sem uma agenda . ''", "arg1_index": [11, 23], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "que", "arg0_index": [15, 15], "pred": "n\u00e3o significa", "pred_index": [13, 14], "arg1": "eles v\u00e3o ficar sem uma agenda", "arg1_index": [16, 21], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "eles", "arg0_index": [16, 16], "pred": "v\u00e3o ficar sem", "pred_index": [17, 19], "arg1": "uma agenda", "arg1_index": [20, 21], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "De acordo com a samaritana tradi\u00e7\u00e3o , no entanto , o ethnonym Samaritano n\u00e3o \u00e9 derivada da regi\u00e3o de Samaria , mas do fato de que eles eram os `` Guardians '' da verdadeira religi\u00e3o israelita .": [{"arg0": "o ethnonym Samaritano", "arg0_index": [10, 12], "pred": "n\u00e3o \u00e9 derivada", "pred_index": [13, 15], "arg1": "da regi\u00e3o de Samaria", "arg1_index": [16, 19], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "eles", "arg0_index": [26, 26], "pred": "eram", "pred_index": [27, 27], "arg1": "os `` Guardians '' da verdadeira religi\u00e3o israelita", "arg1_index": [28, 35], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Em 1990 Kelsang Gyatso se tornou tamb\u00e9m aberta contra o Programa de Estudos de Geshe , e `` fez a busca de seus novos programas obrigat\u00f3rios . ''": [{"arg0": "Kelsang Gyatso", "arg0_index": [2, 3], "pred": "tornou", "pred_index": [5, 5], "arg1": "aberta contra o Programa de Estudos de Geshe", "arg1_index": [7, 14], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Kelsang Gyatso", "arg0_index": [2, 3], "pred": "fez", "pred_index": [18, 18], "arg1": "a busca de", "arg1_index": [19, 21], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "A pousada est\u00e1 aberta de meados de Maio a meados de outubro , com duas semanas a partir do final de agosto reservados para as viagens Dartmouth primeiro ano .": [{"arg0": "A pousada", "arg0_index": [0, 1], "pred": "est\u00e1 aberta", "pred_index": [2, 3], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "duas semanas", "arg0_index": [14, 15], "pred": "partir do", "pred_index": [17, 18], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "duas semanas", "arg0_index": [14, 15], "pred": "reservados para", "pred_index": [22, 23], "arg1": "as viagens Dartmouth primeiro ano", "arg1_index": [24, 28], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "First Boston incorridos milh\u00f5es de d\u00f3lares de perdas em t\u00edtulos Campeau que possu\u00eda , bem como em t\u00edtulos especiais que n\u00e3o poderia vender .": [{"arg0": "First Boston", "arg0_index": [0, 1], "pred": "incorridos", "pred_index": [2, 2], "arg1": "milh\u00f5es de d\u00f3lares de perdas em t\u00edtulos Campeau que possu\u00eda , bem como em t\u00edtulos especiais que n\u00e3o poderia vender", "arg1_index": [3, 22], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "que", "arg0_index": [11, 11], "pred": "possu\u00eda", "pred_index": [12, 12], "arg1": "t\u00edtulos Campeau", "arg1_index": [9, 10], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "que", "arg0_index": [19, 19], "pred": "n\u00e3o poderia vender", "pred_index": [20, 22], "arg1": "t\u00edtulos especiais", "arg1_index": [17, 18], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "No Canad\u00e1 , existem duas organiza\u00e7\u00f5es que regulam a universidade e atletismo escolar .": [{"arg0": "duas organiza\u00e7\u00f5es", "arg0_index": [4, 5], "pred": "regulam", "pred_index": [7, 7], "arg1": "universidade e atletismo escolar", "arg1_index": [9, 12], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Os dialetos que eles falam s\u00e3o semelhantes , mas t\u00eam diferentes entona\u00e7\u00f5es .": [{"arg0": "Os dialetos que eles falam", "arg0_index": [0, 4], "pred": "s\u00e3o", "pred_index": [5, 5], "arg1": "semelhantes", "arg1_index": [6, 6], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Os dialetos que eles falam", "arg0_index": [0, 4], "pred": "t\u00eam", "pred_index": [9, 9], "arg1": "diferentes entona\u00e7\u00f5es", "arg1_index": [10, 11], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "eles", "arg0_index": [3, 3], "pred": "falam", "pred_index": [4, 4], "arg1": "Os dialetos", "arg1_index": [0, 1], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Sukhum funcionou como a capital do `` tratado da Uni\u00e3o '' Abkhaz Rep\u00fablica Socialista Sovi\u00e9tica associado \u00e0 SSR Georgian de 1921 at\u00e9 1931 , quando se tornou a capital do Sovi\u00e9tica Aut\u00f3noma da Rep\u00fablica da Abkhazia Socialista dentro do SSR Georgian .": [{"arg0": "Sukhum", "arg0_index": [0, 0], "pred": "funcionou como", "pred_index": [1, 2], "arg1": "a capital do `` tratado da Uni\u00e3o '' Abkhaz Rep\u00fablica Socialista Sovi\u00e9tica associado \u00e0 SSR Georgian", "arg1_index": [3, 18], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "`` tratado da Uni\u00e3o '' Abkhaz Rep\u00fablica Socialista Sovi\u00e9tica", "arg0_index": [6, 14], "pred": "associado \u00e0", "pred_index": [15, 16], "arg1": "\u00e0 SSR Georgian", "arg1_index": [16, 18], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "se", "arg0_index": [25, 25], "pred": "tornou", "pred_index": [26, 26], "arg1": "a capital do Sovi\u00e9tica Aut\u00f3noma da Rep\u00fablica da Abkhazia Socialista dentro do SSR Georgian", "arg1_index": [27, 40], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Sua imagem erguida significa a terra , que `` paira no ar '' .": [{"arg0": "Sua imagem erguida", "arg0_index": [0, 2], "pred": "significa", "pred_index": [3, 3], "arg1": "a terra", "arg1_index": [4, 5], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "a terra", "arg0_index": [4, 5], "pred": "paira", "pred_index": [9, 9], "arg1": "no ar", "arg1_index": [10, 11], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Ele vendeu-os bem abaixo do valor de mercado para dinheiro raise `` para saldar montagem de cr\u00e9dito - d\u00edvidas de cart\u00e3o , '' incorrido para comprar presentes para sua namorada , seu advogado , Philip Russell , disse IFAR .": [{"arg0": "Ele", "arg0_index": [0, 0], "pred": "vendeu-os", "pred_index": [1, 1], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Ele", "arg0_index": [0, 0], "pred": "incorrido para comprar", "pred_index": [23, 25], "arg1": "presentes", "arg1_index": [26, 26], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Philip Russell", "arg0_index": [34, 35], "pred": "", "pred_index": [-1, -1], "arg1": "seu advogado", "arg1_index": [31, 32], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "`` Para obter uma lista de todos os medalhistas , por favor consulte a lista de medalhistas grande festival de cerveja americano ''": [{"arg0": "", "arg0_index": [], "pred": "consulte", "pred_index": [12, 12], "arg1": "a lista de medalhistas grande festival de cerveja americano", "arg1_index": [13, 21], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Desde que a unidade imobili\u00e1rio tamb\u00e9m inclui a d\u00edvida , o valor imputado do real pr\u00f3pria fazenda \u00e9 cerca de US $ 3 bilh\u00f5es .": [{"arg0": "imobili\u00e1rio", "arg0_index": [4, 4], "pred": "tamb\u00e9m inclui", "pred_index": [5, 6], "arg1": "d\u00edvida", "arg1_index": [8, 8], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "o valor imputado do real pr\u00f3pria fazenda", "arg0_index": [10, 16], "pred": "\u00e9 cerca de", "pred_index": [17, 19], "arg1": "$ 3 bilh\u00f5es", "arg1_index": [21, 23], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Cerca de US $ 70 bilh\u00f5es s\u00e3o estimados para ser amarrado no curto - prazo do mercado monet\u00e1rio , que atua tanto como um hedge contra a infla\u00e7\u00e3o para os consumidores e um acelerador da infla\u00e7\u00e3o e d\u00e9ficits para o governo .": [{"arg0": "Cerca de US $ 70 bilh\u00f5es", "arg0_index": [0, 5], "pred": "s\u00e3o estimados", "pred_index": [6, 7], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Cerca de US $ 70 bilh\u00f5es", "arg0_index": [0, 5], "pred": "atua", "pred_index": [20, 20], "arg1": "tanto como um hedge contra a infla\u00e7\u00e3o para os consumidores e um acelerador da infla\u00e7\u00e3o e d\u00e9ficits para o governo", "arg1_index": [21, 40], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Burnham morreu de insufici\u00eancia card\u00edaca na idade de 86 , em 01 de setembro de 1947 em sua casa em Santa Barbara , Calif\u00f3rnia .": [{"arg0": "Burnham", "arg0_index": [0, 0], "pred": "morreu de", "pred_index": [1, 2], "arg1": "insufici\u00eancia card\u00edaca", "arg1_index": [3, 4], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "No estudo Van Howe 's , todos os casos de estenose meatal estavam entre meninos circuncidados .": [{"arg0": "todos os casos de estenose meatal", "arg0_index": [6, 11], "pred": "estavam", "pred_index": [12, 12], "arg1": "entre meninos circuncidados", "arg1_index": [13, 15], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Em 13 de maio de 2010 , Yost foi nomeado gerente do Kansas City Royals , substituindo Trey Hillman .": [{"arg0": "Yost", "arg0_index": [7, 7], "pred": "foi nomeado", "pred_index": [8, 9], "arg1": "gerente do Kansas City Royals", "arg1_index": [10, 14], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Yost", "arg0_index": [7, 7], "pred": "substituindo", "pred_index": [16, 16], "arg1": "Trey Hillman", "arg1_index": [17, 18], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "defesas pr\u00f3prias da Jaguar contra uma oferta hostil est\u00e3o enfraquecidos , os analistas acrescentar , porque menos de 3% de suas a\u00e7\u00f5es s\u00e3o de propriedade de empregados e administradores .": [{"arg0": "defesas pr\u00f3prias da Jaguar contra uma oferta hostil", "arg0_index": [0, 7], "pred": "est\u00e3o enfraquecidos", "pred_index": [8, 9], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "analistas", "arg0_index": [12, 12], "pred": "acrescentar", "pred_index": [13, 13], "arg1": "defesas pr\u00f3prias da Jaguar contra uma oferta hostil est\u00e3o enfraquecidos", "arg1_index": [0, 9], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "menos de 3% de suas a\u00e7\u00f5es", "arg0_index": [16, 21], "pred": "s\u00e3o de propriedade de", "pred_index": [22, 25], "arg1": "empregados e administradores", "arg1_index": [26, 28], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "O res\u00edduo pode ser reprocessada para mais gotejamento e filtrada atrav\u00e9s de uma gaze alinhado peneira como um ingrediente para um estoque fina carne .": [{"arg0": "O res\u00edduo", "arg0_index": [0, 1], "pred": "pode ser reprocessada", "pred_index": [2, 4], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "O res\u00edduo", "arg0_index": [0, 1], "pred": "filtrada atrav\u00e9s", "pred_index": [9, 10], "arg1": "uma gaze alinhado peneira", "arg1_index": [12, 15], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Chevalier cumpriu sua promessa no ano seguinte ao erguer um santu\u00e1rio dedicado \u00e0 honra de Maria sob o t\u00edtulo de `` Nossa Senhora do Sagrado Cora\u00e7\u00e3o '' .": [{"arg0": "Chevalier", "arg0_index": [0, 0], "pred": "cumpriu", "pred_index": [1, 1], "arg1": "sua promessa", "arg1_index": [2, 3], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "um santu\u00e1rio", "arg0_index": [9, 10], "pred": "dedicado \u00e0", "pred_index": [11, 12], "arg1": "\u00e0 honra de Maria", "arg1_index": [12, 15], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Desde ent\u00e3o , os membros restantes foram desesperados para os Estados Unidos para se reunir este grupo terr\u00edvel .": [{"arg0": "os membros restantes", "arg0_index": [3, 5], "pred": "foram", "pred_index": [6, 6], "arg1": "desesperados", "arg1_index": [7, 7], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "os Estados Unidos", "arg0_index": [9, 11], "pred": "reunir", "pred_index": [14, 14], "arg1": "este grupo terr\u00edvel", "arg1_index": [15, 17], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Nos EUA , mais de metade do software PC vendido ou \u00e9 para planilhas ou para an\u00e1lise de banco de dados , de acordo com a Lotus .": [{"arg0": "mais de metade do software PC vendido", "arg0_index": [3, 9], "pred": "\u00e9", "pred_index": [11, 11], "arg1": "ou \u00e9 para planilhas ou para an\u00e1lise", "arg1_index": [10, 16], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "De acordo com o United States Census Bureau , a cidade tem uma \u00e1rea total de , todo ele pousar .": [{"arg0": "a cidade", "arg0_index": [9, 10], "pred": "tem", "pred_index": [11, 11], "arg1": "uma \u00e1rea total de , todo ele pousar", "arg1_index": [12, 19], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Em 1987 , Rodan se tornou presidente da Sociedade Americana de Pesquisa Mineral e \u00d3ssea .": [{"arg0": "Rodan", "arg0_index": [3, 3], "pred": "tornou", "pred_index": [5, 5], "arg1": "presidente da Sociedade Americana de Pesquisa Mineral e \u00d3ssea", "arg1_index": [6, 14], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Procter & Gamble Co. introduziu recentemente vers\u00f5es recarreg\u00e1veis de quatro produtos , incluindo Tide e Mr. Clean , no Canad\u00e1 , mas n\u00e3o tem planos de traz\u00ea-los para os EUA .": [{"arg0": "Procter & Gamble Co.", "arg0_index": [0, 3], "pred": "introduziu", "pred_index": [4, 4], "arg1": "vers\u00f5es recarreg\u00e1veis de quatro produtos , incluindo Tide e Mr. Clean", "arg1_index": [6, 16], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "vers\u00f5es recarreg\u00e1veis de quatro produtos", "arg0_index": [6, 10], "pred": "incluindo", "pred_index": [12, 12], "arg1": "Tide e Mr. Clean", "arg1_index": [13, 16], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Procter & Gamble Co.", "arg0_index": [0, 3], "pred": "n\u00e3o tem planos de traz\u00ea-los", "pred_index": [22, 26], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "investimento parental \u00e9 qualquer disp\u00eandio de recursos para beneficiar uma prole .": [{"arg0": "investimento parental", "arg0_index": [0, 1], "pred": "\u00e9", "pred_index": [2, 2], "arg1": "qualquer disp\u00eandio de recursos para beneficiar uma prole", "arg1_index": [3, 10], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "qualquer disp\u00eandio de recursos", "arg0_index": [3, 6], "pred": "beneficiar", "pred_index": [8, 8], "arg1": "uma prole", "arg1_index": [9, 10], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "No in\u00edcio deste ano , Blackstone Group , um banco de investimentos de Nova York , tinha nenhuma venda problemas fora uma hipoteca especial de $ 570 milh\u00f5es - valores mobili\u00e1rios confiar nele criado para investidores japoneses .": [{"arg0": "Blackstone Group", "arg0_index": [5, 6], "pred": "tinha nenhuma venda problemas fora", "pred_index": [16, 20], "arg1": "uma hipoteca especial de $ 570 milh\u00f5es - valores mobili\u00e1rios confiar nele criado para investidores japoneses", "arg1_index": [21, 36], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "nele", "arg0_index": [32, 32], "pred": "criado", "pred_index": [33, 33], "arg1": "uma hipoteca especial de $ 570 milh\u00f5es - valores mobili\u00e1rios confiar", "arg1_index": [21, 31], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "A comunidade \u00e9 servida pela United States Postal Service Hinsdale Correios .": [{"arg0": "A comunidade", "arg0_index": [0, 1], "pred": "\u00e9 servida pela", "pred_index": [2, 4], "arg1": "pela United States Postal Service Hinsdale Correios", "arg1_index": [4, 10], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Total de `Fresh Food Story 'constru\u00eddo no final do Norte Shopping .": [{"arg0": "Total de `Fresh Food Story", "arg0_index": [0, 4], "pred": "'constru\u00eddo", "pred_index": [5, 5], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "O segundo foi intitulado `` considera os seus caminhos '' e tamb\u00e9m estrelou Barrie como o chumbo chamada Jane Waterleigh .": [{"arg0": "O segundo", "arg0_index": [0, 1], "pred": "foi intitulado", "pred_index": [2, 3], "arg1": "`` considera os seus caminhos ''", "arg1_index": [4, 9], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "O segundo", "arg0_index": [0, 1], "pred": "estrelou", "pred_index": [12, 12], "arg1": "Barrie", "arg1_index": [13, 13], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "o chumbo", "arg0_index": [15, 16], "pred": "chamada", "pred_index": [17, 17], "arg1": "Jane Waterleigh", "arg1_index": [18, 19], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Esta disposi\u00e7\u00e3o conheceu cedo e forte resist\u00eancia dos banqueiros de investimento preocupado com interrup\u00e7\u00f5es em carteiras de seus clientes .": [{"arg0": "Esta disposi\u00e7\u00e3o", "arg0_index": [0, 1], "pred": "conheceu cedo", "pred_index": [2, 3], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "forte resist\u00eancia dos banqueiros de investimento", "arg0_index": [5, 10], "pred": "preocupado com", "pred_index": [11, 12], "arg1": "interrup\u00e7\u00f5es", "arg1_index": [13, 13], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Isto teve implica\u00e7\u00f5es consider\u00e1veis para a l\u00edngua galesa como era a l\u00edngua principal das igrejas n\u00e3o-conformistas no Pa\u00eds de Gales .": [{"arg0": "Isto", "arg0_index": [0, 0], "pred": "teve", "pred_index": [1, 1], "arg1": "implica\u00e7\u00f5es consider\u00e1veis", "arg1_index": [2, 3], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "", "arg0_index": [], "pred": "era", "pred_index": [9, 9], "arg1": "a l\u00edngua principal das igrejas n\u00e3o-conformistas no Pa\u00eds de Gales", "arg1_index": [10, 19], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "De acordo com uma pessoa familiarizada com a companhia a\u00e9rea , o buy - grupo fora - liderado por pilotos uni\u00e3o de Estados e Presidente UAL Stephen Wolf - come\u00e7ou faturamento UAL para honor\u00e1rios e despesas que ela deve ao banqueiros de investimento , escrit\u00f3rios de advocacia e bancos .": [{"arg0": "o buy - grupo fora -", "arg0_index": [11, 16], "pred": "liderado por", "pred_index": [17, 18], "arg1": "pilotos uni\u00e3o de Estados e Presidente UAL Stephen Wolf", "arg1_index": [19, 27], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "o buy - grupo fora - liderado por pilotos uni\u00e3o de Estados e Presidente UAL Stephen Wolf -", "arg0_index": [11, 28], "pred": "come\u00e7ou faturamento", "pred_index": [29, 30], "arg1": "UAL", "arg1_index": [31, 31], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "ela", "arg0_index": [37, 37], "pred": "deve", "pred_index": [38, 38], "arg1": "honor\u00e1rios e despesas", "arg1_index": [33, 35], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Shea nasceu em 5 de setembro de 1900 em San Francisco , Calif\u00f3rnia .": [{"arg0": "Shea", "arg0_index": [0, 0], "pred": "nasceu", "pred_index": [1, 1], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Como os pacientes exigem menos aten\u00e7\u00e3o dos enfermeiros e outros funcion\u00e1rios , cobran\u00e7a s\u00e3o mais baixos - cerca de US $ 100 a menos por dia do que um quarto normal no hospital Vermont .": [{"arg0": "pacientes", "arg0_index": [2, 2], "pred": "exigem", "pred_index": [3, 3], "arg1": "menos aten\u00e7\u00e3o dos enfermeiros e outros funcion\u00e1rios", "arg1_index": [4, 10], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "cobran\u00e7a", "arg0_index": [12, 12], "pred": "s\u00e3o", "pred_index": [13, 13], "arg1": "mais baixos", "arg1_index": [14, 15], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "cooperativas m\u00e9dicas , entre os mais bem sucedidos no U.R.S.S. , est\u00e3o proibidos de fornecer geral - servi\u00e7os praticante ( a sua principal fonte de renda ) , a realiza\u00e7\u00e3o de cirurgia , e tratar pacientes com c\u00e2ncer , toxicodependentes e mulheres gr\u00e1vidas .": [{"arg0": "cooperativas m\u00e9dicas", "arg0_index": [0, 1], "pred": "", "pred_index": [-1, -1], "arg1": "entre os mais bem sucedidos no U.R.S.S.", "arg1_index": [3, 9], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "cooperativas m\u00e9dicas", "arg0_index": [0, 1], "pred": "fornecer", "pred_index": [14, 14], "arg1": "geral - servi\u00e7os praticante", "arg1_index": [15, 18], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "cooperativas m\u00e9dicas", "arg0_index": [0, 1], "pred": "a realiza\u00e7\u00e3o", "pred_index": [28, 29], "arg1": "cirurgia", "arg1_index": [31, 31], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "cooperativas m\u00e9dicas", "arg0_index": [0, 1], "pred": "tratar", "pred_index": [34, 34], "arg1": "pacientes com c\u00e2ncer , toxicodependentes e mulheres gr\u00e1vidas", "arg1_index": [35, 42], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "cooperativas m\u00e9dicas", "arg0_index": [0, 1], "pred": "est\u00e3o proibidos de", "pred_index": [11, 13], "arg1": "de fornecer geral - servi\u00e7os praticante ( a sua principal fonte de renda ) , a realiza\u00e7\u00e3o de cirurgia , e tratar pacientes com c\u00e2ncer , toxicodependentes e mulheres gr\u00e1vidas", "arg1_index": [13, 42], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "geral - servi\u00e7os praticante", "arg0_index": [15, 18], "pred": "", "pred_index": [-1, -1], "arg1": "a sua principal fonte de renda", "arg1_index": [20, 25], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Finalmente , Mitsubishi Estate n\u00e3o tem planos para interferir com a gest\u00e3o Rockefeller 's al\u00e9m de tomar um lugar no conselho .": [{"arg0": "Mitsubishi Estate", "arg0_index": [2, 3], "pred": "n\u00e3o tem planos para interferir com", "pred_index": [4, 9], "arg1": "gest\u00e3o Rockefeller 's", "arg1_index": [11, 13], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "No in\u00edcio da manh\u00e3 o Sr. Sider , um advogado imobili\u00e1rio , debru\u00e7a sobre testamentos .": [{"arg0": "Sr. Sider", "arg0_index": [5, 6], "pred": "debru\u00e7a sobre", "pred_index": [12, 13], "arg1": "debru\u00e7a sobre testamentos", "arg1_index": [12, 14], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Sr. Sider", "arg0_index": [5, 6], "pred": "", "pred_index": [-1, -1], "arg1": "um advogado imobili\u00e1rio", "arg1_index": [8, 10], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Este motor foi equipado com um carburador controlado eletronicamente .": [{"arg0": "Este motor", "arg0_index": [0, 1], "pred": "foi equipado com", "pred_index": [2, 4], "arg1": "um carburador controlado eletronicamente", "arg1_index": [5, 8], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Kostabi 's outros lan\u00e7amentos incluem : `` Can\u00e7\u00f5es para Sumera '' , `` New Alliance '' e `` o espectro do Modernismo '' .": [{"arg0": "Kostabi 's outros lan\u00e7amentos", "arg0_index": [0, 3], "pred": "incluem", "pred_index": [4, 4], "arg1": "`` Can\u00e7\u00f5es para Sumera '' , `` New Alliance '' e `` o espectro do Modernismo ''", "arg1_index": [6, 22], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "USG Corp. concordou em vender sua sede construindo aqui para Fabricantes Life Insurance Co. de Toronto , e arrendar\u00e1 a 19 - instala\u00e7\u00e3o de hist\u00f3ria at\u00e9 que ele se move para uma nova sede em 1992 .": [{"arg0": "USG Corp.", "arg0_index": [0, 1], "pred": "concordou em vender", "pred_index": [2, 4], "arg1": "sua sede construindo aqui", "arg1_index": [5, 8], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "USG Corp.", "arg0_index": [0, 1], "pred": "arrendar\u00e1", "pred_index": [18, 18], "arg1": "19 - instala\u00e7\u00e3o de hist\u00f3ria", "arg1_index": [20, 24], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "sua", "arg0_index": [5, 5], "pred": "move para", "pred_index": [29, 30], "arg1": "uma nova sede", "arg1_index": [31, 33], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "No entanto , ap\u00f3s campanhas de press\u00e3o de v\u00e1rios grupos de direitos humanos , a BAE Systems declarou recentemente que deixou de produzir minas terrestres ou bombas de fragmenta\u00e7\u00e3o .": [{"arg0": "BAE Systems", "arg0_index": [15, 16], "pred": "declarou", "pred_index": [17, 17], "arg1": "que deixou de produzir minas terrestres ou bombas de fragmenta\u00e7\u00e3o", "arg1_index": [19, 28], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "", "arg0_index": [], "pred": "deixou de produzir", "pred_index": [20, 22], "arg1": "minas terrestres ou bombas de fragmenta\u00e7\u00e3o", "arg1_index": [23, 28], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Um m\u00eas atr\u00e1s , quando Beatrice primeiro apresentou \u00e0 d\u00edvida venda , a empresa havia planejado para oferecer US $ 200 milh\u00f5es de seus seniores notas de reset subordinadas com um rendimento de 12 3 \\ / 4% .": [{"arg0": "a empresa", "arg0_index": [12, 13], "pred": "havia planejado para oferecer", "pred_index": [14, 17], "arg1": "$ 200 milh\u00f5es de seus seniores notas de reset subordinadas", "arg1_index": [19, 28], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "No mercado corporativo , uma oferta de d\u00edvida esperado hoje pela International Business Machines Corp. gerado consider\u00e1vel aten\u00e7\u00e3o .": [{"arg0": "uma oferta de d\u00edvida esperado hoje pela International Business Machines Corp.", "arg0_index": [4, 14], "pred": "gerado", "pred_index": [15, 15], "arg1": "consider\u00e1vel aten\u00e7\u00e3o", "arg1_index": [16, 17], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "De fato , os ajustadores de seguro j\u00e1 tinha aparafusado fora do tribunal .": [{"arg0": "os ajustadores de seguro", "arg0_index": [3, 6], "pred": "j\u00e1 tinha aparafusado fora", "pred_index": [7, 10], "arg1": "do tribunal", "arg1_index": [11, 12], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Ele disse CS First Boston `` tem sido consistentemente um dos mais empresas agressivos na banca comercial '' e que `` uma parte muito significativa '' da empresa 's lucro nos \u00faltimos anos tem vindo de merchant banking - neg\u00f3cios relacionados .": [{"arg0": "Ele", "arg0_index": [0, 0], "pred": "disse", "pred_index": [1, 1], "arg1": "CS First Boston `` tem sido consistentemente um dos mais empresas agressivos na banca comercial ''", "arg1_index": [2, 17], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Ele", "arg0_index": [0, 0], "pred": "disse", "pred_index": [1, 1], "arg1": "que `` uma parte muito significativa '' da empresa 's lucro nos \u00faltimos anos tem vindo de merchant banking - neg\u00f3cios relacionados", "arg1_index": [19, 40], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "CS First Boston", "arg0_index": [2, 4], "pred": "tem sido consistentemente", "pred_index": [6, 8], "arg1": "um dos mais empresas agressivos na banca comercial", "arg1_index": [9, 16], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "`` uma parte muito significativa '' da empresa 's lucro nos \u00faltimos anos", "arg0_index": [20, 32], "pred": "tem vindo de", "pred_index": [33, 35], "arg1": "merchant banking - neg\u00f3cios relacionados", "arg1_index": [36, 40], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "O Hamburgo Concatedral com chapterhouse e quadras residenciais capitulares formado um `` Imunidade Catedral Distrito '' do Pr\u00edncipe-Arcebispo de Bremen tamb\u00e9m .": [{"arg0": "O Hamburgo Concatedral com chapterhouse e quadras residenciais capitulares", "arg0_index": [0, 8], "pred": "formado", "pred_index": [9, 9], "arg1": "um `` Imunidade Catedral Distrito '' do Pr\u00edncipe-Arcebispo de Bremen", "arg1_index": [10, 19], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Para meu conhecimento , h\u00e1 entidades governamentais , incluindo a EPA , est\u00e3o buscando UV - medi\u00e7\u00f5es B .": [{"arg0": "h\u00e1 entidades governamentais , incluindo a EPA", "arg0_index": [4, 10], "pred": "est\u00e3o buscando", "pred_index": [12, 13], "arg1": "UV - medi\u00e7\u00f5es B", "arg1_index": [14, 17], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "entidades governamentais", "arg0_index": [5, 6], "pred": "incluindo", "pred_index": [8, 8], "arg1": "a EPA", "arg1_index": [9, 10], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Cada um dos Matoran trouxeram sua pedra Toa e se conheceram no Grande Templo .": [{"arg0": "Cada um dos Matoran", "arg0_index": [0, 3], "pred": "trouxeram", "pred_index": [4, 4], "arg1": "sua pedra Toa", "arg1_index": [5, 7], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Cada um dos Matoran", "arg0_index": [0, 3], "pred": "conheceram", "pred_index": [10, 10], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "RedHat engenheiros identificados problemas com ProPolice entanto , e em 2005 reimplementou a prote\u00e7\u00e3o contra quebra de pilha para inclus\u00e3o no GCC 4.1 .": [{"arg0": "RedHat engenheiros", "arg0_index": [0, 1], "pred": "identificados", "pred_index": [2, 2], "arg1": "problemas", "arg1_index": [3, 3], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "RedHat engenheiros", "arg0_index": [0, 1], "pred": "reimplementou", "pred_index": [11, 11], "arg1": "prote\u00e7\u00e3o contra quebra de pilha para inclus\u00e3o no GCC 4.1", "arg1_index": [13, 22], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "edif\u00edcios de apartamentos , lojas , cl\u00ednicas m\u00e9dicas , cinemas etc. foram constru\u00eddos em estreita proximidade com a planta MAZ , fornecendo trabalhadores da f\u00e1brica com as necessidades locais .": [{"arg0": "edif\u00edcios de apartamentos , lojas , cl\u00ednicas m\u00e9dicas , cinemas etc.", "arg0_index": [0, 10], "pred": "foram constru\u00eddos", "pred_index": [11, 12], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "edif\u00edcios de apartamentos , lojas , cl\u00ednicas m\u00e9dicas , cinemas etc.", "arg0_index": [0, 10], "pred": "fornecendo", "pred_index": [21, 21], "arg1": "trabalhadores da f\u00e1brica", "arg1_index": [22, 24], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "O efeito \u00e9 que os processos que poderiam ter sido barrado porque eles foram arquivados tarde demais poderia prosseguir por causa do um - extens\u00e3o ano .": [{"arg0": "O efeito", "arg0_index": [0, 1], "pred": "\u00e9", "pred_index": [2, 2], "arg1": "que os processos que poderiam ter sido barrado porque eles foram arquivados tarde demais poderia prosseguir por causa do um - extens\u00e3o ano", "arg1_index": [3, 25], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "os processos", "arg0_index": [4, 5], "pred": "ter sido barrado", "pred_index": [8, 10], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "os processos", "arg0_index": [4, 5], "pred": "foram arquivados", "pred_index": [13, 14], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "os processos", "arg0_index": [4, 5], "pred": "poderia prosseguir", "pred_index": [17, 18], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "A cidade foi anteriormente servido por uma esta\u00e7\u00e3o na Somerset e Dorset Railway mas este fechou em 1966 , e por uma segunda esta\u00e7\u00e3o no Bristol e North Somerset Railway em Welton no vale .": [{"arg0": "A cidade", "arg0_index": [0, 1], "pred": "foi anteriormente servido por", "pred_index": [2, 5], "arg1": "uma esta\u00e7\u00e3o na Somerset e Dorset Railway", "arg1_index": [6, 12], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "este", "arg0_index": [14, 14], "pred": "fechou em", "pred_index": [15, 16], "arg1": "1966", "arg1_index": [17, 17], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "O canal foi represado fora do rio durante a maior parte do per\u00edodo de constru\u00e7\u00e3o .": [{"arg0": "O canal", "arg0_index": [0, 1], "pred": "foi represado fora", "pred_index": [2, 4], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Anos atr\u00e1s , ele colaborou com os novos gurus da m\u00fasica Peter Serkin e Fred Sherry no grupo de c\u00e2mara muito contracultural Tashi , que ganhou audi\u00eancias superiores a pontua\u00e7\u00e3o contempor\u00e2neos temidas como `` Quarteto 's Messiaen para o fim dos tempos . ''": [{"arg0": "ele", "arg0_index": [3, 3], "pred": "colaborou com", "pred_index": [4, 5], "arg1": "os novos gurus da m\u00fasica Peter Serkin e Fred Sherry", "arg1_index": [6, 15], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "ele colaborou com os novos gurus da m\u00fasica Peter Serkin e Fred Sherry no grupo de c\u00e2mara muito contracultural Tashi", "arg0_index": [3, 22], "pred": "ganhou", "pred_index": [25, 25], "arg1": "audi\u00eancias", "arg1_index": [26, 26], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Shaw Industries , que concordou em adquirir as opera\u00e7\u00f5es do tapete Armstrong World Industries por um pre\u00e7o n\u00e3o revelado , subiu 2 1\\/4 para 26 janeiro\\/8 .": [{"arg0": "Shaw Industries", "arg0_index": [0, 1], "pred": "concordou em adquirir", "pred_index": [4, 6], "arg1": "opera\u00e7\u00f5es do tapete Armstrong World Industries", "arg1_index": [8, 13], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Shaw Industries", "arg0_index": [0, 1], "pred": "subiu", "pred_index": [20, 20], "arg1": "2 1\\/4", "arg1_index": [21, 22], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "presidente , h\u00e1 seis anos , o juiz O'Kicki foi votado da Confer\u00eancia Pensilv\u00e2nia do Estado de julgamento ju\u00edzes pelo Estado \u00e9 de 400 ju\u00edzes .": [{"arg0": "juiz O'Kicki", "arg0_index": [7, 8], "pred": "foi votado", "pred_index": [9, 10], "arg1": "da Confer\u00eancia Pensilv\u00e2nia do Estado de julgamento ju\u00edzes", "arg1_index": [11, 18], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "H\u00e1 luz no fim do t\u00fanel para munic\u00edpios , '' disse ele , acrescentando que ele espera que os pre\u00e7os para `` polegada up '' no curto prazo .": [{"arg0": "ele", "arg0_index": [11, 11], "pred": "disse", "pred_index": [10, 10], "arg1": "H\u00e1 luz no fim do t\u00fanel para munic\u00edpios , ''", "arg1_index": [0, 9], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "ele", "arg0_index": [11, 11], "pred": "acrescentando", "pred_index": [13, 13], "arg1": "que ele espera que os pre\u00e7os para `` polegada up '' no curto prazo", "arg1_index": [14, 27], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "H\u00e1", "arg0_index": [0, 0], "pred": "", "pred_index": [], "arg1": "luz", "arg1_index": [1, 1], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "ele", "arg0_index": [15, 15], "pred": "espera", "pred_index": [16, 16], "arg1": "pre\u00e7os", "arg1_index": [19, 19], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Banco Industrial do Jap\u00e3o , que afirma ser o maior comprador japon\u00eas de t\u00edtulos hipotec\u00e1rios norte-americanos , diz que vai mais que dobrar suas compras este ano , a uma quantidade um coloca oficiais a v\u00e1rios bilh\u00f5es de d\u00f3lares .": [{"arg0": "Banco Industrial do Jap\u00e3o", "arg0_index": [0, 3], "pred": "afirma ser", "pred_index": [6, 7], "arg1": "o maior comprador japon\u00eas de t\u00edtulos hipotec\u00e1rios norte-americanos", "arg1_index": [8, 15], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Banco Industrial do Jap\u00e3o", "arg0_index": [0, 3], "pred": "diz", "pred_index": [17, 17], "arg1": "que vai mais que dobrar suas compras este ano , a uma quantidade um coloca oficiais a v\u00e1rios bilh\u00f5es de d\u00f3lares", "arg1_index": [18, 38], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "este", "arg0_index": [25, 25], "pred": "vai mais que dobrar", "pred_index": [19, 22], "arg1": "suas compras", "arg1_index": [23, 24], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "oficiais", "arg0_index": [33, 33], "pred": "coloca", "pred_index": [32, 32], "arg1": "uma quantidade", "arg1_index": [29, 30], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "O primeiro-ministro Lee Kuan Yew , l\u00edder s e um dos \u00c1sia Singapore principais estadistas s por 30 anos , anunciou recentemente a sua inten\u00e7\u00e3o de se aposentar no pr\u00f3ximo ano - embora n\u00e3o necessariamente para acabar com sua influ\u00eancia .": [{"arg0": "Lee Kuan Yew", "arg0_index": [2, 4], "pred": "", "pred_index": [-1, -1], "arg1": "Singapore", "arg1_index": [12, 12], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Lee Kuan Yew", "arg0_index": [2, 4], "pred": "", "pred_index": [-1, -1], "arg1": "l\u00edder s e um dos \u00c1sia", "arg1_index": [6, 11], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Lee Kuan Yew", "arg0_index": [2, 4], "pred": "", "pred_index": [-1, -1], "arg1": "primeiro-ministro", "arg1_index": [1, 1], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Lee Kuan", "arg0_index": [2, 3], "pred": "anunciou", "pred_index": [20, 20], "arg1": "sua inten\u00e7\u00e3o de se aposentar no pr\u00f3ximo", "arg1_index": [23, 29], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "sua inten\u00e7\u00e3o de se aposentar no pr\u00f3ximo ano", "arg0_index": [23, 30], "pred": "n\u00e3o necessariamente para acabar", "pred_index": [33, 36], "arg1": "sua influ\u00eancia", "arg1_index": [38, 39], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Ele tamb\u00e9m afirmou que os demandantes n\u00e3o citaram qualquer autoridade legal que justifique essa injun\u00e7\u00e3o .": [{"arg0": "Ele", "arg0_index": [0, 0], "pred": "afirmou", "pred_index": [2, 2], "arg1": "que os demandantes n\u00e3o citaram qualquer autoridade legal que justifique essa injun\u00e7\u00e3o", "arg1_index": [3, 14], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "os demandantes", "arg0_index": [4, 5], "pred": "n\u00e3o citaram", "pred_index": [6, 7], "arg1": "qualquer autoridade legal que justifique essa injun\u00e7\u00e3o", "arg1_index": [8, 14], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "qualquer autoridade legal", "arg0_index": [8, 10], "pred": "justifique", "pred_index": [12, 12], "arg1": "demandantes", "arg1_index": [5, 5], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Noatak tem uma pista p\u00fablica de cascalho e \u00e9 alcan\u00e7ado principalmente por via a\u00e9rea .": [{"arg0": "Noatak", "arg0_index": [0, 0], "pred": "tem", "pred_index": [1, 1], "arg1": "uma pista p\u00fablica de cascalho", "arg1_index": [2, 6], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Noatak", "arg0_index": [0, 0], "pred": "\u00e9 alcan\u00e7ado principalmente por", "pred_index": [8, 11], "arg1": "de", "arg1_index": [5, 5], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Segundo o censo de 2010 , a popula\u00e7\u00e3o da cidade \u00e9 2.310 .": [{"arg0": "a popula\u00e7\u00e3o da cidade", "arg0_index": [6, 9], "pred": "\u00e9", "pred_index": [10, 10], "arg1": "2.310", "arg1_index": [11, 11], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "A empresa disse que o neg\u00f3cio prendedor `` tem estado sob press\u00e3o de custos graves para algum tempo . ''": [{"arg0": "A empresa", "arg0_index": [0, 1], "pred": "disse", "pred_index": [2, 2], "arg1": "o neg\u00f3cio prendedor `` tem estado sob press\u00e3o de custos graves para algum tempo . ''", "arg1_index": [4, 19], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "o neg\u00f3cio prendedor", "arg0_index": [4, 6], "pred": "tem estado", "pred_index": [8, 9], "arg1": "sob press\u00e3o de custos graves", "arg1_index": [10, 14], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Esta mudan\u00e7a foi logo apanhado por escritores huguenotes , que come\u00e7aram a se expandir em Calvin e promover a id\u00e9ia da soberania do povo , ideias para que escritores cat\u00f3licos e pregadores responderam ferozmente .": [{"arg0": "Esta mudan\u00e7a", "arg0_index": [0, 1], "pred": "foi logo apanhado por", "pred_index": [2, 5], "arg1": "escritores huguenotes", "arg1_index": [6, 7], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "escritores huguenotes", "arg0_index": [6, 7], "pred": "come\u00e7aram a se expandir em", "pred_index": [10, 14], "arg1": "Calvin", "arg1_index": [15, 15], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "escritores huguenotes", "arg0_index": [6, 7], "pred": "promover", "pred_index": [17, 17], "arg1": "a id\u00e9ia da soberania do povo", "arg1_index": [18, 23], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "escritores cat\u00f3licos e pregadores", "arg0_index": [28, 31], "pred": "responderam ferozmente", "pred_index": [32, 33], "arg1": "ideias", "arg1_index": [25, 25], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Especificamente , conhecimento e interesse no evento afeta o n\u00edvel de import\u00e2ncia pessoal para o indiv\u00edduo , que tamb\u00e9m afeta o n\u00edvel individual 's de excita\u00e7\u00e3o emocional .": [{"arg0": "conhecimento e interesse no evento", "arg0_index": [2, 6], "pred": "afeta", "pred_index": [7, 7], "arg1": "o n\u00edvel de import\u00e2ncia pessoal para o indiv\u00edduo", "arg1_index": [8, 15], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "conhecimento e interesse no evento", "arg0_index": [2, 6], "pred": "afeta", "pred_index": [19, 19], "arg1": "o n\u00edvel individual 's de excita\u00e7\u00e3o emocional", "arg1_index": [20, 26], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Lemmy acredita que se Will Reid Dick n\u00e3o tinha sido l\u00e1 , eles poderiam ter trabalhado com os problemas , mas acabou algumas palavras e Clarke deixou o est\u00fadio .": [{"arg0": "Lemmy", "arg0_index": [0, 0], "pred": "acredita", "pred_index": [1, 1], "arg1": "que se Will Reid Dick n\u00e3o tinha sido l\u00e1 , eles poderiam ter trabalhado com os problemas", "arg1_index": [2, 18], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Will Reid Dick", "arg0_index": [4, 6], "pred": "n\u00e3o tinha sido", "pred_index": [7, 9], "arg1": "l\u00e1", "arg1_index": [10, 10], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "eles", "arg0_index": [12, 12], "pred": "poderiam ter trabalhado com", "pred_index": [13, 16], "arg1": "os problemas", "arg1_index": [17, 18], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "eles", "arg0_index": [12, 12], "pred": "acabou", "pred_index": [21, 21], "arg1": "algumas palavras", "arg1_index": [22, 23], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Clarke", "arg0_index": [25, 25], "pred": "deixou", "pred_index": [26, 26], "arg1": "o est\u00fadio", "arg1_index": [27, 28], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Originalmente , Hank McCoy mant\u00e9m as caracter\u00edsticas b\u00e1sicas de um ser humano normal ao lado de uma fisiologia geral s\u00edmia equivalente ao de um grande macaco .": [{"arg0": "Hank McCoy", "arg0_index": [2, 3], "pred": "mant\u00e9m", "pred_index": [4, 4], "arg1": "as caracter\u00edsticas b\u00e1sicas de um ser humano normal", "arg1_index": [5, 12], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Em ambos os casos esta fun\u00e7\u00e3o especializada substitui a posi\u00e7\u00e3o atirador b\u00e1sico no fireteam .": [{"arg0": "esta fun\u00e7\u00e3o especializada", "arg0_index": [4, 6], "pred": "substitui", "pred_index": [7, 7], "arg1": "a posi\u00e7\u00e3o atirador b\u00e1sico no fireteam", "arg1_index": [8, 13], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "`` A maioria dos caras LBO n\u00e3o sei como executar um neg\u00f3cio de qualquer maneira . ''": [{"arg0": "A maioria dos caras LBO", "arg0_index": [1, 5], "pred": "n\u00e3o sei", "pred_index": [6, 7], "arg1": "como executar um neg\u00f3cio", "arg1_index": [8, 11], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "", "arg0_index": [], "pred": "executar", "pred_index": [9, 9], "arg1": "um neg\u00f3cio", "arg1_index": [10, 11], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Em hebreu judaico , os samaritanos s\u00e3o chamados `` Shomronim '' , enquanto que em Hebraico samaritano eles se chamam `` Shamerim '' .": [{"arg0": "os samaritanos", "arg0_index": [4, 5], "pred": "s\u00e3o chamados", "pred_index": [6, 7], "arg1": "`` Shomronim ''", "arg1_index": [8, 10], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "eles", "arg0_index": [17, 17], "pred": "chamam", "pred_index": [19, 19], "arg1": "eles", "arg1_index": [17, 17], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Ele representou a equita\u00e7\u00e3o de n\u00edquel Belt na \u00e1rea de Sudbury , Ont\u00e1rio .": [{"arg0": "Ele", "arg0_index": [0, 0], "pred": "representou", "pred_index": [1, 1], "arg1": "a equita\u00e7\u00e3o de n\u00edquel Belt", "arg1_index": [2, 6], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Devido ao papel de Maom\u00e9 na sua forma\u00e7\u00e3o , a alian\u00e7a desempenha um papel significativo na \u00e9tica isl\u00e2mica .": [{"arg0": "a alian\u00e7a", "arg0_index": [9, 10], "pred": "desempenha um", "pred_index": [11, 12], "arg1": "papel significativo na \u00e9tica isl\u00e2mica", "arg1_index": [13, 17], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "`` \u00c9 realmente bizarro '' , diz Albert Lerman , diretor criativo da ag\u00eancia de publicidade Wells Greene rico .": [{"arg0": "Albert Lerman", "arg0_index": [7, 8], "pred": "diz", "pred_index": [6, 6], "arg1": "`` \u00c9 realmente bizarro ''", "arg1_index": [0, 4], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "\u00c9", "arg0_index": [1, 1], "pred": "", "pred_index": [], "arg1": "realmente bizarro", "arg1_index": [2, 3], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Albert Lerman", "arg0_index": [7, 8], "pred": "", "pred_index": [-1, -1], "arg1": "diretor criativo da ag\u00eancia de publicidade Wells Greene rico", "arg1_index": [10, 18], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "trabalhadores de escrit\u00f3rio japon\u00eas usar PCs a metade da taxa de seus hom\u00f3logos europeus e um - ter\u00e7o dos americanos .": [{"arg0": "trabalhadores de escrit\u00f3rio japon\u00eas", "arg0_index": [0, 3], "pred": "usar", "pred_index": [4, 4], "arg1": "PCs", "arg1_index": [5, 5], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Ela publicou mais de 15 publica\u00e7\u00f5es de pesquisa , incluindo Revistas internacionais , confer\u00eancias internacionais , Confer\u00eancias Nacionais , workshops e semin\u00e1rios .": [{"arg0": "Ela", "arg0_index": [0, 0], "pred": "publicou", "pred_index": [1, 1], "arg1": "mais de 15 publica\u00e7\u00f5es de pesquisa", "arg1_index": [2, 7], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "mais de 15 publica\u00e7\u00f5es de pesquisa", "arg0_index": [2, 7], "pred": "incluindo", "pred_index": [9, 9], "arg1": "Revistas internacionais , confer\u00eancias internacionais , Confer\u00eancias Nacionais , workshops e semin\u00e1rios", "arg1_index": [10, 21], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Nomes como Jo\u00e3o Berks , Gary Edwards , Frank Sanders , Robin Alexander , Darryl Jooste , George Wayne e David Gresham tudo come\u00e7ou na R\u00e1dio LM antes de passar para outras esta\u00e7\u00f5es , como Swazi Music Radio , Radio 702 , Springbok r\u00e1dio e outras esta\u00e7\u00f5es SABC, 2JJ e Capital 604 .": [{"arg0": "Nomes como Jo\u00e3o Berks , Gary Edwards , Frank Sanders , Robin Alexander , Darryl Jooste , George Wayne e David Gresham", "arg0_index": [0, 21], "pred": "tudo come\u00e7ou na", "pred_index": [22, 24], "arg1": "R\u00e1dio LM", "arg1_index": [25, 26], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Nomes como Jo\u00e3o Berks , Gary Edwards , Frank Sanders , Robin Alexander , Darryl Jooste , George Wayne e David Gresham", "arg0_index": [0, 21], "pred": "passar para", "pred_index": [29, 30], "arg1": "outras esta\u00e7\u00f5es", "arg1_index": [31, 32], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Nos anos 1960 e 70 , a maioria de economia de Cabul dependia de turismo .": [{"arg0": "a maioria de economia de Cabul", "arg0_index": [6, 11], "pred": "dependia de", "pred_index": [12, 13], "arg1": "turismo", "arg1_index": [14, 14], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Um tinha melhor n\u00e3o dan\u00e7ar em cima de um caix\u00e3o at\u00e9 que a tampa \u00e9 selada hermeticamente fechada . ''": [{"arg0": "Um", "arg0_index": [0, 0], "pred": "tinha melhor n\u00e3o", "pred_index": [1, 3], "arg1": "dan\u00e7ar em cima de um caix\u00e3o", "arg1_index": [4, 9], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "a tampa", "arg0_index": [12, 13], "pred": "\u00e9 selada hermeticamente fechada", "pred_index": [14, 17], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Os machos tiveram uma renda mediana de $ 28.750 contra $ 16.250 para f\u00eameas .": [{"arg0": "Os machos", "arg0_index": [0, 1], "pred": "tiveram", "pred_index": [2, 2], "arg1": "uma renda mediana de $ 28.750", "arg1_index": [3, 8], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "`` \u00c9 uma espera - e - ver a atitude '' , disse Dave Vellante , vice-presidente de pesquisa de armazenamento para International Data Corp .": [{"arg0": "Dave Vellante", "arg0_index": [13, 14], "pred": "", "pred_index": [-1, -1], "arg1": "vice-presidente de pesquisa de armazenamento para International Data Corp", "arg1_index": [16, 24], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Dave Vellante", "arg0_index": [13, 14], "pred": "disse", "pred_index": [12, 12], "arg1": "`` \u00c9 uma espera - e - ver a atitude ''", "arg1_index": [0, 10], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "\u00c9", "arg0_index": [1, 1], "pred": "", "pred_index": [], "arg1": "uma espera - e - ver a atitude", "arg1_index": [2, 9], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Tom Panelli tinha uma boa raz\u00e3o para n\u00e3o usar os US $ 300 m\u00e1quina de remo que ele comprou h\u00e1 tr\u00eas anos .": [{"arg0": "Tom Panelli", "arg0_index": [0, 1], "pred": "tinha", "pred_index": [2, 2], "arg1": "uma boa raz\u00e3o", "arg1_index": [3, 5], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Tom Panelli", "arg0_index": [0, 1], "pred": "n\u00e3o usar", "pred_index": [7, 8], "arg1": "$ 300 m\u00e1quina de remo que ele comprou h\u00e1 tr\u00eas anos", "arg1_index": [11, 21], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Tom Panelli", "arg0_index": [0, 1], "pred": "comprou", "pred_index": [18, 18], "arg1": "$ 300 m\u00e1quina de remo", "arg1_index": [11, 15], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "A incapacidade de realizar o dever poderia levar a acusa\u00e7\u00e3o a lei e re-escraviza\u00e7\u00e3o .": [{"arg0": "A incapacidade de realizar o dever", "arg0_index": [0, 5], "pred": "poderia levar a", "pred_index": [6, 8], "arg1": "a acusa\u00e7\u00e3o a lei e re-escraviza\u00e7\u00e3o", "arg1_index": [8, 13], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "", "arg0_index": [], "pred": "realizar", "pred_index": [3, 3], "arg1": "o dever", "arg1_index": [4, 5], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Desde que entrou para a competi\u00e7\u00e3o em 1908 , Richmond ganhou premierships dez , a vit\u00f3ria mais recente foi em 1980 .": [{"arg0": "Richmond", "arg0_index": [9, 9], "pred": "entrou para", "pred_index": [2, 3], "arg1": "a competi\u00e7\u00e3o", "arg1_index": [4, 5], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Richmond", "arg0_index": [9, 9], "pred": "ganhou", "pred_index": [10, 10], "arg1": "premierships dez", "arg1_index": [11, 12], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "a vit\u00f3ria mais recente", "arg0_index": [14, 17], "pred": "foi", "pred_index": [18, 18], "arg1": "em 1980", "arg1_index": [19, 20], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "`` Eu n\u00e3o prever qualquer escassez ao longo dos pr\u00f3ximos meses '' , diz Ken Allen , funcion\u00e1rio da Opera\u00e7\u00e3o engenheiros locais 3 em San Francisco .": [{"arg0": "Ken Allen", "arg0_index": [14, 15], "pred": "", "pred_index": [-1, -1], "arg1": "funcion\u00e1rio da Opera\u00e7\u00e3o engenheiros locais 3 em San Francisco", "arg1_index": [17, 25], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Ken Allen", "arg0_index": [14, 15], "pred": "diz", "pred_index": [13, 13], "arg1": "`` Eu n\u00e3o prever qualquer escassez ao longo dos pr\u00f3ximos meses ''", "arg1_index": [0, 11], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Eu", "arg0_index": [1, 1], "pred": "n\u00e3o prever", "pred_index": [2, 3], "arg1": "qualquer escassez", "arg1_index": [4, 5], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Em 1977 , ela apareceu em dois filmes de televis\u00e3o , como a m\u00e3e de Lesley Ann Warren 'car\u00e1ter s em `` 79 Park Avenue '' e como Emily McPhail em `` diz-me meu nome '' .": [{"arg0": "ela", "arg0_index": [3, 3], "pred": "apareceu em", "pred_index": [4, 5], "arg1": "dois filmes de televis\u00e3o", "arg1_index": [6, 9], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "A a\u00e7\u00e3o alegou que eles conspiraram para fixar pre\u00e7os para e-books , e enfraquecer Amazon.com 's posi\u00e7\u00e3o no mercado , em viola\u00e7\u00e3o da lei antitruste .": [{"arg0": "A a\u00e7\u00e3o", "arg0_index": [0, 1], "pred": "alegou", "pred_index": [2, 2], "arg1": "que eles conspiraram para fixar pre\u00e7os para e-books , e enfraquecer Amazon.com 's posi\u00e7\u00e3o no mercado , em viola\u00e7\u00e3o da lei antitruste", "arg1_index": [3, 24], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "eles", "arg0_index": [4, 4], "pred": "conspiraram para fixar", "pred_index": [5, 7], "arg1": "pre\u00e7os para e-books", "arg1_index": [8, 10], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "eles", "arg0_index": [4, 4], "pred": "enfraquecer", "pred_index": [13, 13], "arg1": "Amazon.com 's posi\u00e7\u00e3o no mercado", "arg1_index": [14, 18], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Uma t\u00e9cnica similar \u00e9 quase imposs\u00edvel de aplicar-se a outras culturas , como algod\u00e3o , soja e arroz .": [{"arg0": "Uma t\u00e9cnica similar", "arg0_index": [0, 2], "pred": "\u00e9 quase imposs\u00edvel de aplicar-se", "pred_index": [3, 7], "arg1": "outras culturas", "arg1_index": [9, 10], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "A diocese foi originalmente constru\u00eddo como a Prefeitura Apost\u00f3lica de Hpyeng-yang em 17 de Mar\u00e7o de 1927 , e renomeado como a Prefeitura Apost\u00f3lica de Peng-yang na d\u00e9cima s\u00e9tima mar\u00e7o de 1929 .": [{"arg0": "A diocese", "arg0_index": [0, 1], "pred": "foi originalmente constru\u00eddo como", "pred_index": [2, 5], "arg1": "a Prefeitura Apost\u00f3lica de Hpyeng-yang", "arg1_index": [6, 10], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "A diocese", "arg0_index": [0, 1], "pred": "renomeado como", "pred_index": [19, 20], "arg1": "a Prefeitura Apost\u00f3lica de Peng-yang", "arg1_index": [21, 25], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Um animal que se preocupa com seus jovens , mas mostra n\u00e3o outros tra\u00e7os sociabilidade \u00e9 dito ser `` subsocial '' .": [{"arg0": "Um animal que se preocupa com seus jovens , mas mostra n\u00e3o outros tra\u00e7os sociabilidade", "arg0_index": [0, 14], "pred": "\u00e9 dito ser", "pred_index": [15, 17], "arg1": "`` subsocial ''", "arg1_index": [18, 20], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Um animal", "arg0_index": [0, 1], "pred": "se preocupa com", "pred_index": [3, 5], "arg1": "seus jovens", "arg1_index": [6, 7], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Um animal", "arg0_index": [0, 1], "pred": "mostra", "pred_index": [10, 10], "arg1": "n\u00e3o outros tra\u00e7os sociabilidade", "arg1_index": [11, 14], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Isso se compara com 3,5% butterfat para o leite inteiro .": [{"arg0": "se", "arg0_index": [1, 1], "pred": "compara com", "pred_index": [2, 3], "arg1": "3,5% butterfat para o leite inteiro", "arg1_index": [4, 9], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "A cidade foi fundada pelo Western Town Lot Empresa em 1880 , e originalmente chamado Nordland , com as ruas platted nomes pr\u00f3prios noruegueses .": [{"arg0": "A cidade", "arg0_index": [0, 1], "pred": "foi fundada pelo", "pred_index": [2, 4], "arg1": "Western Town Lot Empresa", "arg1_index": [5, 8], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "A cidade", "arg0_index": [0, 1], "pred": "originalmente chamado", "pred_index": [13, 14], "arg1": "Nordland", "arg1_index": [15, 15], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "R\u00e9pteis identificados durante pesquisas incluem lagartixas em ambos os grupos de ilhas em m\u00e1rmore , enquanto o seguinte s\u00e3o limitados para a ilha principal do grupo do Norte - quatro dedos skink earless , skinks touro e cobras marrons ocidentais .": [{"arg0": "R\u00e9pteis identificados durante pesquisas", "arg0_index": [0, 3], "pred": "incluem", "pred_index": [4, 4], "arg1": "lagartixas em ambos os grupos de ilhas em m\u00e1rmore", "arg1_index": [5, 13], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "o seguinte", "arg0_index": [16, 17], "pred": "s\u00e3o limitados", "pred_index": [18, 19], "arg1": "a ilha principal", "arg1_index": [21, 23], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Mas , embora a golden share foi dispensada , um licitante hostil para Jaguar ainda teria que alterar a preocupa\u00e7\u00e3o brit\u00e2nica 's estatutos que pro\u00edbem participa\u00e7\u00f5es de mais de 15% .": [{"arg0": "a golden share", "arg0_index": [3, 5], "pred": "foi dispensada", "pred_index": [6, 7], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "um licitante hostil para Jaguar", "arg0_index": [9, 13], "pred": "ainda teria que alterar", "pred_index": [14, 17], "arg1": "a preocupa\u00e7\u00e3o brit\u00e2nica 's estatutos", "arg1_index": [18, 22], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "a preocupa\u00e7\u00e3o brit\u00e2nica 's estatutos", "arg0_index": [18, 22], "pred": "licitante", "pred_index": [10, 10], "arg1": "participa\u00e7\u00f5es de mais de 15%", "arg1_index": [25, 29], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "S\u00f3 quando se est\u00e1 ascendente - ou no nosso caso , descendo um pouco trop rapidement - que se sente bem , transportado por via a\u00e9rea em uma cesta de piquenique .": [{"arg0": "", "arg0_index": [], "pred": "sente", "pred_index": [19, 19], "arg1": "transportado por via a\u00e9rea", "arg1_index": [22, 25], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "", "arg0_index": [], "pred": "est\u00e1 ascendente", "pred_index": [3, 4], "arg1": "um pouco", "arg1_index": [12, 13], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "", "arg0_index": [], "pred": "descendo", "pred_index": [11, 11], "arg1": "um pouco", "arg1_index": [12, 13], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Os pre\u00e7os da maioria dos contratos futuros de milho , soja e trigo caiu ligeiramente como agricultores no Centro-Oeste continuou a reconstruir os estoques que foram esgotados pelo 1,988 seca .": [{"arg0": "Os pre\u00e7os da maioria dos contratos futuros de milho , soja e trigo", "arg0_index": [0, 12], "pred": "caiu ligeiramente", "pred_index": [13, 14], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "como agricultores no Centro-Oeste", "arg0_index": [15, 18], "pred": "continuou a reconstruir", "pred_index": [19, 21], "arg1": "estoques que foram esgotados pelo 1,988 seca", "arg1_index": [23, 29], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "estoques", "arg0_index": [23, 23], "pred": "foram esgotados pelo", "pred_index": [25, 27], "arg1": "1,988 seca", "arg1_index": [28, 29], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Como resultado , ele disse que vai examinar os documentos Marcos procurados pelos promotores para determinar se transformando ao longo dos arquivamentos \u00e9 auto - incrimina\u00e7\u00e3o .": [{"arg0": "ele", "arg0_index": [3, 3], "pred": "disse", "pred_index": [4, 4], "arg1": "que vai examinar os documentos Marcos procurados pelos promotores para determinar se transformando ao longo dos arquivamentos \u00e9 auto - incrimina\u00e7\u00e3o", "arg1_index": [5, 25], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "ele", "arg0_index": [3, 3], "pred": "examinar", "pred_index": [7, 7], "arg1": "os documentos Marcos procurados pelos promotores", "arg1_index": [8, 13], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "documentos Marcos", "arg0_index": [9, 10], "pred": "procurados", "pred_index": [11, 11], "arg1": "promotores", "arg1_index": [13, 13], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "que vai examinar os documentos Marcos procurados pelos promotores", "arg0_index": [5, 13], "pred": "determinar", "pred_index": [15, 15], "arg1": "se transformando ao longo dos arquivamentos \u00e9 auto - incrimina\u00e7\u00e3o", "arg1_index": [16, 25], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "transformando ao longo dos arquivamentos", "arg0_index": [17, 21], "pred": "\u00e9", "pred_index": [22, 22], "arg1": "auto - incrimina\u00e7\u00e3o", "arg1_index": [23, 25], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "", "arg0_index": [], "pred": "transformando ao longo", "pred_index": [17, 19], "arg1": "dos arquivamentos", "arg1_index": [20, 21], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Os dois l\u00edderes devem discutir mudan\u00e7as radicais no Oriente bloco , bem como humana - quest\u00f5es de direitos , disputas regionais e coopera\u00e7\u00e3o econ\u00f3mica .": [{"arg0": "Os dois l\u00edderes", "arg0_index": [0, 2], "pred": "devem discutir mudan\u00e7as", "pred_index": [3, 5], "arg1": "radicais no Oriente bloco", "arg1_index": [6, 9], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "O segundo foi nomeado ap\u00f3s o ex-presidente dos EUA , George H. W. Bush ficou a bordo em Novembro de 1995 .": [{"arg0": "O segundo", "arg0_index": [0, 1], "pred": "foi nomeado ap\u00f3s", "pred_index": [2, 4], "arg1": "ex-presidente dos EUA , George H. W. Bush ficou a bordo em Novembro de 1995", "arg1_index": [6, 20], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "George H. W. Bush", "arg0_index": [10, 13], "pred": "", "pred_index": [-1, -1], "arg1": "ex-presidente dos EUA", "arg1_index": [6, 8], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "George H. W. Bush", "arg0_index": [10, 13], "pred": "ficou a bordo", "pred_index": [14, 16], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Grande parte da esta\u00e7\u00e3o permanece no metr\u00f4 fora de uso , mas n\u00e3o h\u00e1 acesso p\u00fablico .": [{"arg0": "Grande parte da esta\u00e7\u00e3o", "arg0_index": [0, 3], "pred": "permanece no", "pred_index": [4, 5], "arg1": "metr\u00f4 fora de uso", "arg1_index": [6, 9], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "h\u00e1", "arg0_index": [13, 13], "pred": "n\u00e3o", "pred_index": [12, 12], "arg1": "acesso p\u00fablico", "arg1_index": [14, 15], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "A \u00faltima vez que IBM bateu o mercado de d\u00edvida corporativa foi em abril de 1988 , quando se ofereceu US $ 500 milh\u00f5es em t\u00edtulos de d\u00edvida .": [{"arg0": "A \u00faltima vez que IBM bateu o mercado de d\u00edvida corporativa", "arg0_index": [0, 10], "pred": "foi em", "pred_index": [11, 12], "arg1": "abril de 1988", "arg1_index": [13, 15], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "IBM", "arg0_index": [4, 4], "pred": "bateu", "pred_index": [5, 5], "arg1": "o mercado de d\u00edvida corporativa", "arg1_index": [6, 10], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "se", "arg0_index": [18, 18], "pred": "ofereceu", "pred_index": [19, 19], "arg1": "US $ 500 milh\u00f5es em t\u00edtulos de d\u00edvida", "arg1_index": [20, 27], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Em segundo lugar , o d\u00f3lar est\u00e1 mostrando for\u00e7a persistente apesar da desacelera\u00e7\u00e3o da economia EUA demonstrado por indicadores econ\u00f4micos .": [{"arg0": "o d\u00f3lar", "arg0_index": [4, 5], "pred": "est\u00e1 mostrando", "pred_index": [6, 7], "arg1": "for\u00e7a persistente", "arg1_index": [8, 9], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "desacelera\u00e7\u00e3o da economia EUA", "arg0_index": [12, 15], "pred": "demonstrado por", "pred_index": [16, 17], "arg1": "indicadores econ\u00f4micos", "arg1_index": [18, 19], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Combinado com peletes de f\u00f3sforo apropriados estas espingardas produzir um desempenho consistente do anel 10 , para que um resultado n\u00e3o-m\u00e1xima durante a fase inicial pode ser atribu\u00eddo ao participante .": [{"arg0": "estas espingardas", "arg0_index": [6, 7], "pred": "Combinado com", "pred_index": [0, 1], "arg1": "peletes de f\u00f3sforo apropriados", "arg1_index": [2, 5], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "estas espingardas", "arg0_index": [6, 7], "pred": "produzir", "pred_index": [8, 8], "arg1": "um desempenho consistente do anel 10", "arg1_index": [9, 14], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "um resultado n\u00e3o-m\u00e1xima", "arg0_index": [18, 20], "pred": "pode ser atribu\u00eddo ao", "pred_index": [25, 28], "arg1": "ao participante", "arg1_index": [28, 29], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Devido \u00e0 localiza\u00e7\u00e3o do transmissor ser baseado em Tyrone e uma pot\u00eancia de sinal menor , foi mal aud\u00edvel nas partes do norte da Atlanta al\u00e9m da \u00e1rea do centro ou mesmo os alcances do norte de Fulton ou DeKalb munic\u00edpios , como foi um rimshot a sudoeste da cidade .": [{"arg0": "\u00e0 localiza\u00e7\u00e3o do transmissor", "arg0_index": [1, 4], "pred": "ser baseado em", "pred_index": [5, 7], "arg1": "Tyrone", "arg1_index": [8, 8], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "", "arg0_index": [], "pred": "foi", "pred_index": [16, 16], "arg1": "mal aud\u00edvel", "arg1_index": [17, 18], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "", "arg0_index": [], "pred": "foi", "pred_index": [43, 43], "arg1": "um rimshot a sudoeste da cidade", "arg1_index": [44, 49], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Como parte de v\u00e1rios esfor\u00e7os para que o cavalo Gypsy reconhecido como uma ra\u00e7a fora da comunidade Romanichal , um nome mais descritivo foi procurado por ele , come\u00e7ando na d\u00e9cada de 1990 .": [{"arg0": "um nome mais descritivo", "arg0_index": [19, 22], "pred": "foi procurado por", "pred_index": [23, 25], "arg1": "ele", "arg1_index": [26, 26], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "um nome mais descritivo foi procurado por ele", "arg0_index": [19, 26], "pred": "come\u00e7ando na", "pred_index": [28, 29], "arg1": "de 1990", "arg1_index": [31, 32], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "cavalo Gypsy", "arg0_index": [8, 9], "pred": "reconhecido como", "pred_index": [10, 11], "arg1": "uma ra\u00e7a", "arg1_index": [12, 13], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Um centro de arrefecimento \u00e9 um espa\u00e7o p\u00fablico com ar condicionado tempor\u00e1ria criada pelas autoridades locais para lidar com os efeitos na sa\u00fade de uma onda de calor .": [{"arg0": "Um centro de arrefecimento", "arg0_index": [0, 3], "pred": "\u00e9", "pred_index": [4, 4], "arg1": "espa\u00e7o p\u00fablico com ar condicionado tempor\u00e1ria", "arg1_index": [6, 11], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "espa\u00e7o p\u00fablico com ar condicionado tempor\u00e1ria", "arg0_index": [6, 11], "pred": "criada pelas", "pred_index": [12, 13], "arg1": "autoridades locais", "arg1_index": [14, 15], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "espa\u00e7o p\u00fablico com ar condicionado tempor\u00e1ria", "arg0_index": [6, 11], "pred": "lidar com", "pred_index": [17, 18], "arg1": "efeitos na sa\u00fade de uma onda de calor", "arg1_index": [20, 27], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "A corrida est\u00e1 em oitos mistos , e , geralmente , realizada no final de fevereiro / in\u00edcio de mar\u00e7o .": [{"arg0": "A corrida", "arg0_index": [0, 1], "pred": "est\u00e1 em", "pred_index": [2, 3], "arg1": "oitos mistos", "arg1_index": [4, 5], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "A corrida", "arg0_index": [0, 1], "pred": "geralmente , realizada no", "pred_index": [9, 12], "arg1": "final de fevereiro / in\u00edcio de mar\u00e7o", "arg1_index": [13, 19], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "A rua do t\u00fanel principal , localizado em Welland , Ont\u00e1rio , Canad\u00e1 , \u00e9 um t\u00fanel subaqu\u00e1tico , levando Niagara estrada 27 ea designa\u00e7\u00e3o sem sinal de estrada 7146 sob o Canal Welland .": [{"arg0": "A rua do t\u00fanel principal", "arg0_index": [0, 4], "pred": "localizado em", "pred_index": [6, 7], "arg1": "Welland , Ont\u00e1rio , Canad\u00e1", "arg1_index": [8, 12], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "A rua do t\u00fanel principal", "arg0_index": [0, 4], "pred": "\u00e9", "pred_index": [14, 14], "arg1": "um t\u00fanel subaqu\u00e1tico", "arg1_index": [15, 17], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "A rua do t\u00fanel principal", "arg0_index": [0, 4], "pred": "levando", "pred_index": [19, 19], "arg1": "Niagara estrada 27 ea designa\u00e7\u00e3o sem sinal de estrada 7146 sob o Canal Welland", "arg1_index": [20, 33], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "De acordo com Hofmann , enquanto ainda um colecionador de moedas adolescente , ele forjou uma marca de hortel\u00e3 rara em um centavo e foi dito por uma organiza\u00e7\u00e3o de coleccionadores que era genu\u00edno .": [{"arg0": "ele", "arg0_index": [13, 13], "pred": "forjou", "pred_index": [14, 14], "arg1": "uma marca de hortel\u00e3 rara", "arg1_index": [15, 19], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "ele", "arg0_index": [13, 13], "pred": "foi dito por", "pred_index": [24, 26], "arg1": "uma organiza\u00e7\u00e3o de coleccionadores", "arg1_index": [27, 30], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "", "arg0_index": [], "pred": "foi", "pred_index": [24, 24], "arg1": "genu\u00edno", "arg1_index": [33, 33], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "O pre\u00e7o n\u00e3o foi divulgado , mas um analista estimou que foi de US $ 150 milh\u00f5es .": [{"arg0": "O pre\u00e7o", "arg0_index": [0, 1], "pred": "n\u00e3o foi divulgado", "pred_index": [2, 4], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "um analista", "arg0_index": [7, 8], "pred": "estimou", "pred_index": [9, 9], "arg1": "que foi de US $ 150 milh\u00f5es", "arg1_index": [10, 16], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "", "arg0_index": [], "pred": "foi", "pred_index": [11, 11], "arg1": "$ 150 milh\u00f5es", "arg1_index": [14, 16], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Ambos refletem a demiss\u00e3o de mais baixo - n\u00edvel e mais curtas - executivos de posse .": [{"arg0": "Ambos", "arg0_index": [0, 0], "pred": "refletem", "pred_index": [1, 1], "arg1": "a demiss\u00e3o de mais baixo - n\u00edvel e mais curtas - executivos de posse", "arg1_index": [2, 15], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "fabricantes norte-americanos t\u00eam menos de 10% de participa\u00e7\u00e3o , em compara\u00e7\u00e3o com a metade do mercado na Europa e 80% em casa .": [{"arg0": "fabricantes norte-americanos", "arg0_index": [0, 1], "pred": "t\u00eam", "pred_index": [2, 2], "arg1": "menos de 10% de participa\u00e7\u00e3o", "arg1_index": [3, 7], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "fabricantes norte-americanos t\u00eam menos de 10% de participa\u00e7\u00e3o", "arg0_index": [0, 7], "pred": "compara\u00e7\u00e3o com", "pred_index": [10, 11], "arg1": "metade do mercado na Europa e 80% em casa", "arg1_index": [13, 21], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "O estabelecimento de um museu tinha sido previamente planeado em 1821 pela Sociedade Filos\u00f3fica da Austr\u00e1lia , e embora as amostras foram recolhidas , a Sociedade dobrado em 1822 .": [{"arg0": "O estabelecimento de um museu", "arg0_index": [0, 4], "pred": "tinha sido previamente planeado", "pred_index": [5, 8], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "amostras", "arg0_index": [20, 20], "pred": "foram", "pred_index": [21, 21], "arg1": "recolhidas", "arg1_index": [22, 22], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "a Sociedade", "arg0_index": [24, 25], "pred": "dobrado em", "pred_index": [26, 27], "arg1": "1821", "arg1_index": [10, 10], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "No Jap\u00e3o , essas fun\u00e7\u00f5es s\u00e3o respons\u00e1veis por apenas cerca de um ter\u00e7o do mercado de software .": [{"arg0": "essas fun\u00e7\u00f5es", "arg0_index": [3, 4], "pred": "respons\u00e1veis por", "pred_index": [6, 7], "arg1": "apenas cerca de um ter\u00e7o do mercado de software", "arg1_index": [8, 16], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "( Separadamente , o Senado na semana passada aprovou uma lei que permite a execu\u00e7\u00e3o de terroristas que matam americanos no exterior . )": [{"arg0": "o Senado", "arg0_index": [3, 4], "pred": "passada", "pred_index": [7, 7], "arg1": "uma lei", "arg1_index": [9, 10], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "uma lei", "arg0_index": [9, 10], "pred": "permite", "pred_index": [12, 12], "arg1": "execu\u00e7\u00e3o de terroristas que matam americanos no exterior", "arg1_index": [14, 21], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "terroristas", "arg0_index": [16, 16], "pred": "matam", "pred_index": [18, 18], "arg1": "americanos no exterior", "arg1_index": [19, 21], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "O v\u00eddeo foi o primeiro a apresentar o uso do di\u00e1logo .": [{"arg0": "O v\u00eddeo", "arg0_index": [0, 1], "pred": "foi", "pred_index": [2, 2], "arg1": "o primeiro", "arg1_index": [3, 4], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "O v\u00eddeo", "arg0_index": [0, 1], "pred": "a apresentar", "pred_index": [5, 6], "arg1": "o uso do di\u00e1logo", "arg1_index": [7, 10], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Cada vez Cluemaster escapa ou come\u00e7ar algum plano novo , Stephanie veste seu traje novo .": [{"arg0": "Stephanie", "arg0_index": [10, 10], "pred": "ou", "pred_index": [4, 4], "arg1": "seu traje", "arg1_index": [12, 13], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Cluemaster", "arg0_index": [2, 2], "pred": "escapa", "pred_index": [3, 3], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Cluemaster", "arg0_index": [2, 2], "pred": "come\u00e7ar", "pred_index": [5, 5], "arg1": "algum plano novo", "arg1_index": [6, 8], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "O \u00edndice Segunda Se\u00e7\u00e3o , que caiu 36,87 pontos sexta-feira , caiu 21,44 pontos , ou 0,59% , para fechar em 3.636,06 .": [{"arg0": "O \u00edndice Segunda Se\u00e7\u00e3o", "arg0_index": [0, 3], "pred": "caiu", "pred_index": [11, 11], "arg1": "36,87 pontos", "arg1_index": [7, 8], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "O \u00edndice Segunda Se\u00e7\u00e3o", "arg0_index": [0, 3], "pred": "que caiu", "pred_index": [5, 6], "arg1": "21,44 pontos , ou 0,59%", "arg1_index": [12, 16], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "O \u00edndice Segunda Se\u00e7\u00e3o", "arg0_index": [0, 3], "pred": "fechar em", "pred_index": [19, 20], "arg1": "3.636,06", "arg1_index": [21, 21], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "A floresta - produtos preocupa\u00e7\u00e3o tem atualmente cerca de 38 milh\u00f5es de a\u00e7\u00f5es em circula\u00e7\u00e3o .": [{"arg0": "A floresta - produtos preocupa\u00e7\u00e3o", "arg0_index": [0, 4], "pred": "tem", "pred_index": [5, 5], "arg1": "cerca de 38 milh\u00f5es de a\u00e7\u00f5es em circula\u00e7\u00e3o", "arg1_index": [7, 14], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Em um ponto , Ballard \u00e9 quase possu\u00eddo , mas resiste quando ela \u00e9 dada uma droga e descobre que os esp\u00edritos est\u00e3o atacando-los como eles acreditam que os seres humanos s\u00e3o invasores e plano para exterminar os seres humanos em Marte .": [{"arg0": "Ballard", "arg0_index": [4, 4], "pred": "\u00e9", "pred_index": [5, 5], "arg1": "quase possu\u00eddo", "arg1_index": [6, 7], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Ballard", "arg0_index": [4, 4], "pred": "resiste", "pred_index": [10, 10], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "ela", "arg0_index": [12, 12], "pred": "\u00e9 dada", "pred_index": [13, 14], "arg1": "uma droga", "arg1_index": [15, 16], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "ela", "arg0_index": [12, 12], "pred": "descobre", "pred_index": [18, 18], "arg1": "que os esp\u00edritos est\u00e3o atacando-los como eles acreditam que os seres humanos s\u00e3o invasores e plano para exterminar os seres humanos em Marte", "arg1_index": [19, 41], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "os esp\u00edritos", "arg0_index": [20, 21], "pred": "est\u00e3o atacando-los", "pred_index": [22, 23], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "eles", "arg0_index": [25, 25], "pred": "acreditam", "pred_index": [26, 26], "arg1": "que os seres humanos s\u00e3o invasores", "arg1_index": [27, 32], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "humanos", "arg0_index": [30, 30], "pred": "s\u00e3o", "pred_index": [31, 31], "arg1": "invasores", "arg1_index": [32, 32], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "eles", "arg0_index": [25, 25], "pred": "plano para exterminar", "pred_index": [34, 36], "arg1": "os seres humanos em Marte", "arg1_index": [37, 41], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "N\u00e3o \u00e9 realmente aceit\u00e1vel , e deve ser feito a p\u00e9 , se tentada .": [{"arg0": "", "arg0_index": [], "pred": "N\u00e3o \u00e9", "pred_index": [0, 1], "arg1": "realmente aceit\u00e1vel", "arg1_index": [2, 3], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "", "arg0_index": [], "pred": "e deve ser feito", "pred_index": [5, 8], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Coca - Cola Co. , com o objetivo de impulsionar o soft - volume de bebida em Cingapura , disse que est\u00e1 discutindo uma joint venture com Fraser & Neave Ltd. , seu franqueado engarrafamento naquele pa\u00eds .": [{"arg0": "Coca - Cola Co.", "arg0_index": [0, 3], "pred": "objetivo de impulsionar", "pred_index": [7, 9], "arg1": "soft - volume de bebida", "arg1_index": [11, 15], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Coca - Cola Co.", "arg0_index": [0, 3], "pred": "disse", "pred_index": [19, 19], "arg1": "que est\u00e1 discutindo uma joint venture com Fraser & Neave Ltd. , seu franqueado engarrafamento naquele pa\u00eds", "arg1_index": [20, 36], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "", "arg0_index": [], "pred": "est\u00e1 discutindo", "pred_index": [21, 22], "arg1": "uma joint venture", "arg1_index": [23, 25], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Fraser & Neave Ltd.", "arg0_index": [27, 30], "pred": "", "pred_index": [-1, -1], "arg1": "seu franqueado engarrafamento naquele pa\u00eds", "arg1_index": [32, 36], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Hoechst 33342 e 33258 s\u00e3o extinta por Bromodeoxiuridina , que \u00e9 vulgarmente utilizado para detectar as c\u00e9lulas em divis\u00e3o .": [{"arg0": "Hoechst 33342 e 33258", "arg0_index": [0, 3], "pred": "s\u00e3o extinta por", "pred_index": [4, 6], "arg1": "Bromodeoxiuridina", "arg1_index": [7, 7], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Bromodeoxiuridina", "arg0_index": [7, 7], "pred": "\u00e9 vulgarmente utilizado para detectar", "pred_index": [10, 14], "arg1": "c\u00e9lulas em divis\u00e3o", "arg1_index": [16, 18], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "JAL introduziu o servi\u00e7o de jato na rota Fukuoka-T\u00f3quio em 1961 .": [{"arg0": "JAL", "arg0_index": [0, 0], "pred": "introduziu", "pred_index": [1, 1], "arg1": "servi\u00e7o de jato", "arg1_index": [3, 5], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Warner Communications Inc. , que est\u00e1 sendo adquirida pela Time Warner , apresentou uma quebra $ 1 bilh\u00f5es - de - terno contrato contra a Sony e os dois produtores .": [{"arg0": "Warner Communications Inc.", "arg0_index": [0, 2], "pred": "est\u00e1 sendo adquirida pela", "pred_index": [5, 8], "arg1": "Time Warner", "arg1_index": [9, 10], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Warner Communications Inc.", "arg0_index": [0, 2], "pred": "apresentou", "pred_index": [12, 12], "arg1": "uma quebra $ 1 bilh\u00f5es - de - terno contrato", "arg1_index": [13, 22], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Desde o in\u00edcio do primeiro semestre de 2010 , a Universidade proibiu o fumo em qualquer de sua propriedade , incluindo dentro e fora de edif\u00edcios em \u00e1reas que j\u00e1 foram designadas como \u00e1reas de fumadores .": [{"arg0": "a Universidade", "arg0_index": [9, 10], "pred": "proibiu", "pred_index": [11, 11], "arg1": "fumo", "arg1_index": [13, 13], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "sua propriedade", "arg0_index": [17, 18], "pred": "incluindo", "pred_index": [20, 20], "arg1": "dentro e fora de edif\u00edcios em \u00e1reas que j\u00e1 foram designadas como \u00e1reas de fumadores", "arg1_index": [21, 35], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "\u00e1reas", "arg0_index": [27, 27], "pred": "foram designadas como", "pred_index": [30, 32], "arg1": "\u00e1reas de fumadores", "arg1_index": [33, 35], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "As restri\u00e7\u00f5es contra comer carne e beber vinho , al\u00e9m de reduzir uma pessoa 'prazer s , recordar a cessa\u00e7\u00e3o do `` Korban Tamid '' e o `` Nesach Hayayin '' sobre o altar do templo com a destrui\u00e7\u00e3o do Templo .": [{"arg0": "As restri\u00e7\u00f5es contra comer carne e beber vinho", "arg0_index": [0, 7], "pred": "reduzir", "pred_index": [11, 11], "arg1": "uma pessoa 'prazer s", "arg1_index": [12, 15], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "As restri\u00e7\u00f5es contra comer carne e beber vinho", "arg0_index": [0, 7], "pred": "recordar", "pred_index": [17, 17], "arg1": "a cessa\u00e7\u00e3o do `` Korban Tamid '' e o `` Nesach Hayayin ''", "arg1_index": [18, 30], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Um nome comum , logotipo , e programar cronograma seguido em 1982 , com o estabelecimento do `` TV8 '' rede entre as tr\u00eas esta\u00e7\u00f5es , alterado para o `` Southern Cross Rede '' sete anos depois .": [{"arg0": "Um nome comum , logotipo , e programar cronograma seguido em 1982", "arg0_index": [0, 11], "pred": "alterado para", "pred_index": [26, 27], "arg1": "o `` Southern Cross Rede", "arg1_index": [28, 32], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Um nome comum , logotipo , e programar cronograma", "arg0_index": [0, 8], "pred": "seguido em", "pred_index": [9, 10], "arg1": "1982", "arg1_index": [11, 11], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Com nenhuma tarefa atribu\u00edda , o Cosmos expressou preocupa\u00e7\u00e3o com o que Battra pode fazer .": [{"arg0": "o Cosmos", "arg0_index": [5, 6], "pred": "expressou", "pred_index": [7, 7], "arg1": "preocupa\u00e7\u00e3o", "arg1_index": [8, 8], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Battra", "arg0_index": [12, 12], "pred": "pode fazer", "pred_index": [13, 14], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "advogado A San Francisco , o Sr. Panelli remou religiosamente quando ele tem a m\u00e1quina , mas , ele reclama , deixou marcas de graxa em seu tapete , `` e que era chato .": [{"arg0": "Sr. Panelli", "arg0_index": [6, 7], "pred": "", "pred_index": [-1, -1], "arg1": "advogado A San Francisco", "arg1_index": [0, 3], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Sr. Panelli", "arg0_index": [6, 7], "pred": "remou religiosamente", "pred_index": [8, 9], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "ele", "arg0_index": [11, 11], "pred": "tem", "pred_index": [12, 12], "arg1": "a m\u00e1quina", "arg1_index": [13, 14], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "ele", "arg0_index": [18, 18], "pred": "reclama", "pred_index": [19, 19], "arg1": "deixou marcas de graxa em seu tapete , `` e que era chato", "arg1_index": [21, 33], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "", "arg0_index": [], "pred": "e que", "pred_index": [30, 31], "arg1": "marcas de graxa", "arg1_index": [22, 24], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "que", "arg0_index": [31, 31], "pred": "era", "pred_index": [32, 32], "arg1": "chato", "arg1_index": [33, 33], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Para auxiliar o papa nas muitas chamadas para a sua ajuda e caridade , Pascalina organizou e liderou o `` Magazzino '' , um escrit\u00f3rio de caridade papal privada que empregava at\u00e9 40 ajudantes e continuou at\u00e9 1959 .": [{"arg0": "Pascalina", "arg0_index": [14, 14], "pred": "organizou", "pred_index": [15, 15], "arg1": "o `` Magazzino ''", "arg1_index": [18, 21], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Pascalina", "arg0_index": [14, 14], "pred": "continuou", "pred_index": [35, 35], "arg1": "o `` Magazzino ''", "arg1_index": [18, 21], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "`` Magazzino ''", "arg0_index": [19, 21], "pred": "auxiliar", "pred_index": [1, 1], "arg1": "o papa nas muitas chamadas para a sua ajuda e caridade", "arg1_index": [2, 12], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "o `` Magazzino ''", "arg0_index": [18, 21], "pred": "", "pred_index": [-1, -1], "arg1": "um escrit\u00f3rio de caridade papal privada que empregava at\u00e9 40 ajudantes e continuou at\u00e9 1959", "arg1_index": [23, 37], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "um escrit\u00f3rio de caridade papal privada", "arg0_index": [23, 28], "pred": "empregava", "pred_index": [30, 30], "arg1": "at\u00e9 40 ajudantes", "arg1_index": [31, 33], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "um escrit\u00f3rio de caridade papal privada", "arg0_index": [23, 28], "pred": "continuou", "pred_index": [35, 35], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Presidente da Comiss\u00e3o de Dota\u00e7\u00f5es do Senado Robert Byrd (D., W.Va.) Resistiu fortemente cortes mais profundos procurado pelo House .": [{"arg0": "Robert Byrd (D., W.Va.)", "arg0_index": [7, 10], "pred": "", "pred_index": [-1, -1], "arg1": "Presidente da Comiss\u00e3o de Dota\u00e7\u00f5es do Senado", "arg1_index": [0, 6], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Robert Byrd (D., W.Va.)", "arg0_index": [7, 10], "pred": "Resistiu fortemente", "pred_index": [11, 12], "arg1": "cortes mais profundos procurado pelo House", "arg1_index": [13, 18], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "cortes mais profundos", "arg0_index": [13, 15], "pred": "procurado pelo", "pred_index": [16, 17], "arg1": "House", "arg1_index": [18, 18], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "`` Eu n\u00e3o posso acreditar que eles (GM) vai deixar Ford ter uma corrida livre '' , disse Stephen Reitman , um analista da ind\u00fastria automobil\u00edstica europeia a UBS - Phillips & tirou .": [{"arg0": "Stephen Reitman", "arg0_index": [18, 19], "pred": "", "pred_index": [-1, -1], "arg1": "um analista da ind\u00fastria automobil\u00edstica europeia a UBS - Phillips & tirou", "arg1_index": [21, 32], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Stephen Reitman", "arg0_index": [18, 19], "pred": "disse", "pred_index": [17, 17], "arg1": "`` Eu n\u00e3o posso acreditar que eles (GM) vai deixar Ford ter uma corrida livre ''", "arg1_index": [0, 15], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Stephen Reitman", "arg0_index": [18, 19], "pred": "n\u00e3o posso acreditar", "pred_index": [2, 4], "arg1": "eles (GM) vai deixar Ford ter uma corrida livre", "arg1_index": [6, 14], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "eles (GM)", "arg0_index": [6, 7], "pred": "vai deixar", "pred_index": [8, 9], "arg1": "Ford", "arg1_index": [10, 10], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Ford", "arg0_index": [10, 10], "pred": "ter", "pred_index": [11, 11], "arg1": "uma corrida livre", "arg1_index": [12, 14], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "O SAS matou um total de 14 Provis\u00f3ria Irish Republican Army e do Ex\u00e9rcito de Liberta\u00e7\u00e3o Nacional Irland\u00eas membros nesses locais .": [{"arg0": "O SAS", "arg0_index": [0, 1], "pred": "matou", "pred_index": [2, 2], "arg1": "um total de 14 Provis\u00f3ria Irish Republican Army e do Ex\u00e9rcito de Liberta\u00e7\u00e3o Nacional Irland\u00eas membros", "arg1_index": [3, 18], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "As corredeiras \u00e0 frente do South Fork foram removidos em 1908 .": [{"arg0": "As corredeiras \u00e0 frente do South Fork", "arg0_index": [0, 6], "pred": "foram removidos em", "pred_index": [7, 9], "arg1": "1908", "arg1_index": [10, 10], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "O pr\u00f3prio mania de fitness tem suave foi , segundo a pesquisa .": [{"arg0": "a pesquisa", "arg0_index": [10, 11], "pred": "segundo", "pred_index": [9, 9], "arg1": "O pr\u00f3prio mania de fitness tem suave", "arg1_index": [0, 6], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "O pr\u00f3prio mania de fitness", "arg0_index": [0, 4], "pred": "tem suave", "pred_index": [5, 6], "arg1": "suave", "arg1_index": [6, 6], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Hilf al-Fudul foi uma alian\u00e7a de s\u00e9culo 7 criado por v\u00e1rios habitantes de Meca , incluindo o profeta isl\u00e2mico Maom\u00e9 , para estabelecer negocia\u00e7\u00e3o comercial justo .": [{"arg0": "Hilf al-Fudul", "arg0_index": [0, 1], "pred": "foi", "pred_index": [2, 2], "arg1": "alian\u00e7a de s\u00e9culo 7 criado por v\u00e1rios habitantes de Meca , incluindo o profeta isl\u00e2mico Maom\u00e9", "arg1_index": [4, 19], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Hilf al-Fudul", "arg0_index": [0, 1], "pred": "criado por", "pred_index": [8, 9], "arg1": "v\u00e1rios habitantes de Meca , incluindo o profeta isl\u00e2mico Maom\u00e9", "arg1_index": [10, 19], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "v\u00e1rios habitantes de", "arg0_index": [10, 12], "pred": "incluindo", "pred_index": [15, 15], "arg1": "o profeta isl\u00e2mico Maom\u00e9", "arg1_index": [16, 19], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Hilf al-Fudul", "arg0_index": [0, 1], "pred": "estabelecer", "pred_index": [22, 22], "arg1": "negocia\u00e7\u00e3o comercial justo", "arg1_index": [23, 25], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Um ano antes UNIFIRST ganhou US $ 2,4 milh\u00f5es , ou 24 centavos por a\u00e7\u00e3o ajustado para o desdobramento .": [{"arg0": "UNIFIRST", "arg0_index": [3, 3], "pred": "ganhou", "pred_index": [4, 4], "arg1": "$ 2,4 milh\u00f5es , ou 24 centavos por a\u00e7\u00e3o ajustado para o desdobramento", "arg1_index": [6, 18], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Osamu Nagayama , vice-presidente da Chugai , que gasta cerca de 15% de suas vendas em pesquisa e desenvolvimento , foi incapaz de identificar quanto dinheiro Chugai iria bombear em Gen - Probe .": [{"arg0": "Osamu Nagayama", "arg0_index": [0, 1], "pred": "", "pred_index": [-1, -1], "arg1": "vice-presidente da Chugai", "arg1_index": [3, 5], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Osamu Nagayama", "arg0_index": [0, 1], "pred": "foi incapaz de identificar", "pred_index": [20, 23], "arg1": "quanto dinheiro Chugai iria bombear em Gen - Probe", "arg1_index": [24, 32], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Chugai", "arg0_index": [5, 5], "pred": "gasta", "pred_index": [8, 8], "arg1": "cerca de 15% de suas vendas", "arg1_index": [9, 14], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Chugai", "arg0_index": [26, 26], "pred": "iria bombear", "pred_index": [27, 28], "arg1": "quanto dinheiro", "arg1_index": [24, 25], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "US 258 cruza NC 222 em Fountain antes de entrar Edgecombe County .": [{"arg0": "US 258", "arg0_index": [0, 1], "pred": "antes", "pred_index": [7, 7], "arg1": "NC 222", "arg1_index": [3, 4], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "US 258", "arg0_index": [0, 1], "pred": "entrar", "pred_index": [9, 9], "arg1": "Edgecombe County", "arg1_index": [10, 11], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Ele tamb\u00e9m , infelizmente , ilustrou esta intrincada , tape\u00e7aria jazzy com o Sr. Pearson 'imagens s , desta vez de objetos geom\u00e9tricos ou de repeti\u00e7\u00e3o , em um kitsch espelhamento da estrutura musical que foi completamente distraindo do Sr. Reich' pe\u00e7a s e s Mr. Stoltzman' execu\u00e7\u00e3o elegante dele .": [{"arg0": "Ele", "arg0_index": [0, 0], "pred": "infelizmente , ilustrou", "pred_index": [3, 5], "arg1": "esta intrincada , tape\u00e7aria jazzy com o Sr. Pearson 'imagens s", "arg1_index": [6, 16], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "estrutura musical", "arg0_index": [32, 33], "pred": "foi completamente distraindo", "pred_index": [35, 37], "arg1": "Sr. Reich' pe\u00e7a s e s Mr. Stoltzman' execu\u00e7\u00e3o elegante dele", "arg1_index": [39, 49], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Quando Naguib come\u00e7ou a mostrar sinais de independ\u00eancia de Nasser por se distanciar do RCC decretos de reforma agr\u00e1ria s e aproximando-Egipto for\u00e7as pol\u00edticas estabelecidas s , ou seja , o Wafd ea Irmandade , Nasser resolveu dep\u00f4-lo .": [{"arg0": "Nasser", "arg0_index": [35, 35], "pred": "resolveu dep\u00f4-lo", "pred_index": [36, 37], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Naguib", "arg0_index": [1, 1], "pred": "come\u00e7ou a mostrar", "pred_index": [2, 4], "arg1": "sinais de independ\u00eancia de Nasser", "arg1_index": [5, 9], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Naguib", "arg0_index": [1, 1], "pred": "distanciar", "pred_index": [12, 12], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Naguib", "arg0_index": [1, 1], "pred": "aproximando-Egipto", "pred_index": [21, 21], "arg1": "for\u00e7as pol\u00edticas estabelecidas s", "arg1_index": [22, 25], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "aproximando-Egipto for\u00e7as pol\u00edticas estabelecidas s", "arg0_index": [21, 25], "pred": "", "pred_index": [-1, -1], "arg1": "o Wafd ea Irmandade", "arg1_index": [30, 33], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Em junho , Nasser tomou o controle do cargo do Minist\u00e9rio do Interior de Naguib leal Sulayman Hafez , e pressionados Naguib concluir a aboli\u00e7\u00e3o da monarquia .": [{"arg0": "Nasser", "arg0_index": [3, 3], "pred": "tomou o controle do", "pred_index": [4, 7], "arg1": "cargo do Minist\u00e9rio do Interior", "arg1_index": [8, 12], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Nasser", "arg0_index": [3, 3], "pred": "pressionados", "pred_index": [20, 20], "arg1": "Naguib", "arg1_index": [21, 21], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Naguib", "arg0_index": [21, 21], "pred": "concluir", "pred_index": [22, 22], "arg1": "a aboli\u00e7\u00e3o da monarquia", "arg1_index": [23, 26], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "`` Greenfish '' foi lan\u00e7ado pela Electric Boat Co. , Groton , Connecticut , 21 de dezembro de 1945 ; patrocinado pela Sra Thomas J. Doyle ; e encomendou 07 junho de 1946 , Comdr. R. M. Metcalf comandando .": [{"arg0": "`` Greenfish ''", "arg0_index": [0, 2], "pred": "foi lan\u00e7ado pela", "pred_index": [3, 5], "arg1": "Electric Boat Co. , Groton , Connecticut", "arg1_index": [6, 12], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "`` Greenfish ''", "arg0_index": [0, 2], "pred": "patrocinado pela", "pred_index": [20, 21], "arg1": "Sra Thomas J. Doyle", "arg1_index": [22, 25], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "`` Greenfish ''", "arg0_index": [0, 2], "pred": "encomendou", "pred_index": [28, 28], "arg1": "Comdr. R. M. Metcalf", "arg1_index": [34, 37], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Comdr. R. M. Metcalf", "arg0_index": [34, 37], "pred": "comandando", "pred_index": [38, 38], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Panhandle Eastern Corp. disse que aplicado , em nome de duas de suas subsidi\u00e1rias , \u00e0 Comiss\u00e3o Federal Regulat\u00f3ria de Energia permiss\u00e3o para construir um 352 - , $ 273 milh\u00f5es de sistema de tubula\u00e7\u00e3o milha de Pittsburg County , Oklahoma , a independ\u00eancia , a srta. .": [{"arg0": "Panhandle Eastern Corp.", "arg0_index": [0, 2], "pred": "disse", "pred_index": [3, 3], "arg1": "que aplicado , em nome de duas de suas subsidi\u00e1rias , \u00e0 Comiss\u00e3o Federal Regulat\u00f3ria de Energia permiss\u00e3o para construir um 352 - , $ 273 milh\u00f5es de sistema de tubula\u00e7\u00e3o milha de Pittsburg County , Oklahoma , a independ\u00eancia , a srta.", "arg1_index": [4, 46], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "", "arg0_index": [], "pred": "aplicado", "pred_index": [5, 5], "arg1": "\u00e0 Comiss\u00e3o Federal Regulat\u00f3ria de Energia", "arg1_index": [15, 20], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Panhandle Eastern Corp.", "arg0_index": [0, 2], "pred": "construir", "pred_index": [23, 23], "arg1": "um 352 - , $ 273 milh\u00f5es de sistema de tubula\u00e7\u00e3o milha", "arg1_index": [24, 35], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Gavin Hood \u00e9 um cineasta Sul Africano , roteirista , produtor e ator , mais conhecido por escrever e dirigir a Academy Award-winning L\u00edngua Estrangeira Film `` Tsotsi '' .": [{"arg0": "Gavin Hood", "arg0_index": [0, 1], "pred": "\u00e9", "pred_index": [2, 2], "arg1": "Sul Africano , roteirista , produtor e ator", "arg1_index": [5, 12], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Gavin Hood", "arg0_index": [0, 1], "pred": "mais conhecido por", "pred_index": [14, 16], "arg1": "escrever e dirigir a Academy Award-winning L\u00edngua Estrangeira Film `` Tsotsi ''", "arg1_index": [17, 28], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Gavin Hood", "arg0_index": [0, 1], "pred": "escrever", "pred_index": [17, 17], "arg1": "`` Tsotsi ''", "arg1_index": [26, 28], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Gavin Hood", "arg0_index": [0, 1], "pred": "dirigir", "pred_index": [19, 19], "arg1": "`` Tsotsi ''", "arg1_index": [26, 28], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "`` Tsotsi ''", "arg0_index": [26, 28], "pred": "", "pred_index": [-1, -1], "arg1": "a Academy Award-winning L\u00edngua Estrangeira Film", "arg1_index": [20, 25], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "movimentos Swinburne em seu programa de escrita do filos\u00f3fica para o teol\u00f3gico , a constru\u00e7\u00e3o de seu caso com rigor .": [{"arg0": "Swinburne", "arg0_index": [1, 1], "pred": "movimentos", "pred_index": [0, 0], "arg1": "seu programa de escrita", "arg1_index": [3, 6], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Swinburne", "arg0_index": [1, 1], "pred": "constru\u00e7\u00e3o", "pred_index": [14, 14], "arg1": "seu caso", "arg1_index": [16, 17], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Este pode ainda ser generalizada pela defini\u00e7\u00e3o de uma caracter\u00edstica de Euler-Q valorizado para certas categorias finitas , uma no\u00e7\u00e3o compat\u00edvel com as caracter\u00edsticas de Euler de gr\u00e1ficos , e orbifolds posets mencionados acima .": [{"arg0": "Este", "arg0_index": [0, 0], "pred": "pode ainda ser generalizada", "pred_index": [1, 4], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "", "arg0_index": [], "pred": "defini\u00e7\u00e3o", "pred_index": [6, 6], "arg1": "uma caracter\u00edstica de Euler-Q valorizado", "arg1_index": [8, 12], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "uma caracter\u00edstica de Euler-Q valorizado para certas categorias finitas", "arg0_index": [8, 16], "pred": "", "pred_index": [-1, -1], "arg1": "uma no\u00e7\u00e3o compat\u00edvel com as caracter\u00edsticas de Euler de gr\u00e1ficos , e orbifolds posets mencionados acima", "arg1_index": [18, 33], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "O site consiste em tr\u00eas loucuras Grotto subterr\u00e2neos , constru\u00eddos no s\u00e9culo 18 , divididos entre duas \u00e1reas , uma no lado oeste do lago , no e um no lado oriental no .": [{"arg0": "O site", "arg0_index": [0, 1], "pred": "consiste em", "pred_index": [2, 3], "arg1": "tr\u00eas loucuras Grotto subterr\u00e2neos", "arg1_index": [4, 7], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "O site", "arg0_index": [0, 1], "pred": "constru\u00eddos", "pred_index": [9, 9], "arg1": "no s\u00e9culo 18", "arg1_index": [10, 12], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "O site", "arg0_index": [0, 1], "pred": "divididos entre", "pred_index": [14, 15], "arg1": "duas \u00e1reas", "arg1_index": [16, 17], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Porque marcas Yesler forma como a fronteira entre dois plats diferentes , a rede norte rua de Yesler n\u00e3o se alinha com a vizinhan\u00e7a de outras ruas , de modo que o norte `` fronteira '' dos ziguezagues do distrito ao longo de v\u00e1rias ruas .": [{"arg0": "Yesler n\u00e3o", "arg0_index": [17, 18], "pred": "marcas", "pred_index": [1, 1], "arg1": "a fronteira entre dois plats diferentes", "arg1_index": [5, 10], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "a rede norte rua de Yesler", "arg0_index": [12, 17], "pred": "n\u00e3o se alinha com", "pred_index": [18, 21], "arg1": "a vizinhan\u00e7a de outras ruas", "arg1_index": [22, 26], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "o norte `` fronteira '' dos", "arg0_index": [31, 36], "pred": "ziguezagues do", "pred_index": [37, 38], "arg1": "outras ruas", "arg1_index": [25, 26], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Historicamente , Aiseau era uma aldeia dedicada \u00e0 agricultura , extra\u00e7\u00e3o de madeira , mas tamb\u00e9m para a ind\u00fastria .": [{"arg0": "Aiseau", "arg0_index": [2, 2], "pred": "era", "pred_index": [3, 3], "arg1": "uma aldeia dedicada \u00e0 agricultura , extra\u00e7\u00e3o de madeira , mas tamb\u00e9m para a ind\u00fastria", "arg1_index": [4, 18], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Aiseau", "arg0_index": [2, 2], "pred": "dedicada \u00e0", "pred_index": [6, 7], "arg1": "agricultura , extra\u00e7\u00e3o de madeira , mas tamb\u00e9m para a ind\u00fastria", "arg1_index": [8, 18], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Estes s\u00e3o visualmente muito semelhante ao n\u00famero de pe\u00e7a 2189014-00-211 , com o mesmo tamp\u00e3o estilo AT e chassis , etiqueta de prata sobre o rolamento inverso o moniker AnyKey , parafusos que prendem o teclado em conjunto , programa\u00e7\u00e3o macro exigir a chave de controlo , e a que falta o AnyKey inscri\u00e7\u00e3o em seu rosto .": [{"arg0": "Estes", "arg0_index": [0, 0], "pred": "s\u00e3o visualmente muito semelhante ao", "pred_index": [1, 5], "arg1": "de pe\u00e7a 2189014-00-211", "arg1_index": [7, 9], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "parafusos", "arg0_index": [31, 31], "pred": "teclado", "pred_index": [35, 35], "arg1": "o teclado", "arg1_index": [34, 35], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "programa\u00e7\u00e3o macro", "arg0_index": [39, 40], "pred": "exigir", "pred_index": [41, 41], "arg1": "a chave de controlo", "arg1_index": [42, 45], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "etiqueta de prata sobre o", "arg0_index": [20, 24], "pred": "rolamento", "pred_index": [25, 25], "arg1": "falta o AnyKey", "arg1_index": [50, 52], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "programa\u00e7\u00e3o macro", "arg0_index": [39, 40], "pred": "que falta", "pred_index": [49, 50], "arg1": "o AnyKey inscri\u00e7\u00e3o em seu rosto", "arg1_index": [51, 56], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "O an\u00fancio surpresa veio depois que o IRS rompeu as negocia\u00e7\u00f5es com o Sr. ca\u00e7ar em um assentamento do um - tempo tycoon 's caso de fal\u00eancia pessoal .": [{"arg0": "O an\u00fancio surpresa", "arg0_index": [0, 2], "pred": "veio", "pred_index": [3, 3], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "o IRS", "arg0_index": [6, 7], "pred": "rompeu as", "pred_index": [8, 9], "arg1": "negocia\u00e7\u00f5es", "arg1_index": [10, 10], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "No \u00e2mbito do programa Comanche , cada empresa construiu diferentes partes da aeronave .": [{"arg0": "cada empresa", "arg0_index": [6, 7], "pred": "construiu", "pred_index": [8, 8], "arg1": "diferentes partes da aeronave", "arg1_index": [9, 12], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Se o segundo pulso de excita\u00e7\u00e3o \u00e9 enviada prematuramente antes do relaxamento \u00e9 completa , o vector de magnetiza\u00e7\u00e3o m\u00e9dia ainda aponta numa direc\u00e7\u00e3o n\u00e3o paralela , dando absor\u00e7\u00e3o sub-tima e a emiss\u00e3o do impulso .": [{"arg0": "o segundo pulso de excita\u00e7\u00e3o", "arg0_index": [1, 5], "pred": "\u00e9 enviada prematuramente", "pred_index": [6, 8], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "do relaxamento", "arg0_index": [10, 11], "pred": "\u00e9 completa", "pred_index": [12, 13], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "o vector de magnetiza\u00e7\u00e3o m\u00e9dia", "arg0_index": [15, 19], "pred": "ainda aponta", "pred_index": [20, 21], "arg1": "numa direc\u00e7\u00e3o n\u00e3o paralela", "arg1_index": [22, 25], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "o vector de magnetiza\u00e7\u00e3o m\u00e9dia", "arg0_index": [15, 19], "pred": "dando", "pred_index": [27, 27], "arg1": "absor\u00e7\u00e3o sub-tima e a emiss\u00e3o do impulso", "arg1_index": [28, 34], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Ap\u00f3s 1895 cabo alagem cessou e locomotivas puxado trens de todo o comprimento dos t\u00faneis Victoria e Waterloo .": [{"arg0": "alagem cessou", "arg0_index": [3, 4], "pred": "cessou", "pred_index": [4, 4], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "locomotivas", "arg0_index": [6, 6], "pred": "puxado", "pred_index": [7, 7], "arg1": "trens", "arg1_index": [8, 8], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Os sovi\u00e9ticos complicada a quest\u00e3o , oferecendo para incluir tanques leves , que s\u00e3o t\u00e3o leves quanto 10 toneladas .": [{"arg0": "Os sovi\u00e9ticos", "arg0_index": [0, 1], "pred": "complicada", "pred_index": [2, 2], "arg1": "a quest\u00e3o", "arg1_index": [3, 4], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Os sovi\u00e9ticos", "arg0_index": [0, 1], "pred": "oferecendo para incluir", "pred_index": [6, 8], "arg1": "tanques leves", "arg1_index": [9, 10], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "tanques leves", "arg0_index": [9, 10], "pred": "s\u00e3o t\u00e3o leves quanto", "pred_index": [13, 16], "arg1": "10 toneladas", "arg1_index": [17, 18], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Os pilotos desceu e come\u00e7ou a caminhar , gritando protestos em geral e em particular o abuso para o m\u00e9dico ra\u00e7a , Pierre Dumas , a quem alguns exigiu tamb\u00e9m deve fazer um teste para ver se ele 'd sido beber vinho ou tomar aspirina para fazer o seu pr\u00f3prio trabalho mais f\u00e1cil .": [{"arg0": "Os pilotos", "arg0_index": [0, 1], "pred": "desceu", "pred_index": [2, 2], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Os pilotos", "arg0_index": [0, 1], "pred": "come\u00e7ou a caminhar", "pred_index": [4, 6], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Os pilotos", "arg0_index": [0, 1], "pred": "gritando", "pred_index": [8, 8], "arg1": "protestos", "arg1_index": [9, 9], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Pierre Dumas", "arg0_index": [22, 23], "pred": "", "pred_index": [-1, -1], "arg1": "o m\u00e9dico ra\u00e7a", "arg1_index": [18, 20], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "alguns", "arg0_index": [27, 27], "pred": "exigiu", "pred_index": [28, 28], "arg1": "Pierre Dumas", "arg1_index": [22, 23], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Pierre Dumas", "arg0_index": [22, 23], "pred": "tamb\u00e9m deve fazer", "pred_index": [29, 31], "arg1": "um teste", "arg1_index": [32, 33], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "alguns", "arg0_index": [27, 27], "pred": "ver", "pred_index": [35, 35], "arg1": "se ele 'd sido beber vinho ou tomar aspirina para fazer o seu pr\u00f3prio trabalho mais f\u00e1cil", "arg1_index": [36, 52], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "ele", "arg0_index": [37, 37], "pred": "'d sido beber", "pred_index": [38, 40], "arg1": "vinho", "arg1_index": [41, 41], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "ele", "arg0_index": [37, 37], "pred": "tomar", "pred_index": [43, 43], "arg1": "aspirina", "arg1_index": [44, 44], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "beber vinho ou tomar aspirina", "arg0_index": [40, 44], "pred": "fazer", "pred_index": [46, 46], "arg1": "seu pr\u00f3prio trabalho", "arg1_index": [48, 50], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Sovi\u00e9ticos permanecer no comando de programas de educa\u00e7\u00e3o , um ex-chefe de um tribunal militar Africano de execu\u00e7\u00f5es est\u00e1 a cargo da cultura , e um disco - linha comunista polon\u00eas no ex\u00edlio direciona o ser humano - direitos e divis\u00e3o de paz .": [{"arg0": "Sovi\u00e9ticos", "arg0_index": [0, 0], "pred": "permanecer no comando de", "pred_index": [1, 4], "arg1": "programas de educa\u00e7\u00e3o", "arg1_index": [5, 7], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "um ex-chefe de um tribunal militar Africano de execu\u00e7\u00f5es", "arg0_index": [9, 17], "pred": "est\u00e1 a cargo da", "pred_index": [18, 21], "arg1": "cultura", "arg1_index": [22, 22], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "um disco - linha comunista polon\u00eas no ex\u00edlio", "arg0_index": [25, 32], "pred": "direciona", "pred_index": [33, 33], "arg1": "o ser humano - direitos e divis\u00e3o de paz", "arg1_index": [34, 42], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Houve dois acidentes envolvendo fatalidades no aer\u00f3dromo desde que foi criado .": [{"arg0": "", "arg0_index": [], "pred": "Houve", "pred_index": [0, 0], "arg1": "dois acidentes envolvendo fatalidades", "arg1_index": [1, 4], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "aer\u00f3dromo", "arg0_index": [6, 6], "pred": "foi criado", "pred_index": [9, 10], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "John Stewart e Guy Gardner derrubado New Warworld ea Bateria Central Amarelo , que foram detonados ao lado do Anti-Monitor , e contido por um escudo criado por centenas de Lanternas Verdes para conter a explos\u00e3o ; mesmo isso n\u00e3o foi suficiente para mat\u00e1-lo .": [{"arg0": "John Stewart e Guy Gardner", "arg0_index": [0, 4], "pred": "derrubado", "pred_index": [5, 5], "arg1": "New Warworld ea Bateria Central Amarelo", "arg1_index": [6, 11], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "New Warworld ea Bateria Central Amarelo", "arg0_index": [6, 11], "pred": "foram detonados", "pred_index": [14, 15], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "New Warworld ea Bateria Central Amarelo", "arg0_index": [6, 11], "pred": "contido por", "pred_index": [22, 23], "arg1": "um escudo", "arg1_index": [24, 25], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "um escudo", "arg0_index": [24, 25], "pred": "criado por", "pred_index": [26, 27], "arg1": "centenas de Lanternas Verdes", "arg1_index": [28, 31], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "um escudo", "arg0_index": [24, 25], "pred": "conter", "pred_index": [33, 33], "arg1": "a explos\u00e3o", "arg1_index": [34, 35], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "isso", "arg0_index": [38, 38], "pred": "n\u00e3o foi suficiente para mat\u00e1-lo", "pred_index": [39, 43], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Embora o Sr. Packer , desde ent\u00e3o , vendeu sua participa\u00e7\u00e3o , Courtaulds est\u00e1 se movendo para manter seus acionistas institucionais feliz .": [{"arg0": "Sr. Packer", "arg0_index": [2, 3], "pred": "desde ent\u00e3o , vendeu", "pred_index": [5, 8], "arg1": "sua participa\u00e7\u00e3o", "arg1_index": [9, 10], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Courtaulds", "arg0_index": [12, 12], "pred": "est\u00e1 se movendo para manter", "pred_index": [13, 17], "arg1": "seus acionistas institucionais", "arg1_index": [18, 20], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Repita os clientes tamb\u00e9m podem comprar itens de luxo a pre\u00e7os reduzidos .": [{"arg0": "Repita os clientes", "arg0_index": [0, 2], "pred": "podem comprar", "pred_index": [4, 5], "arg1": "itens de luxo", "arg1_index": [6, 8], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Nos primeiros nove meses , o lucro cresceu 10% para US $ 313,2 milh\u00f5es , ou US $ 3,89 por a\u00e7\u00e3o , de US $ 283,9 milh\u00f5es , ou US $ 3,53 por a\u00e7\u00e3o .": [{"arg0": "lucro", "arg0_index": [6, 6], "pred": "cresceu", "pred_index": [7, 7], "arg1": "10%", "arg1_index": [8, 8], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Aplicando esta t\u00e9cnica facilita a liga\u00e7\u00e3o do centro do p\u00e9 com o abd\u00f4men inferior .": [{"arg0": "Aplicando esta t\u00e9cnica", "arg0_index": [0, 2], "pred": "facilita", "pred_index": [3, 3], "arg1": "a liga\u00e7\u00e3o do centro do p\u00e9", "arg1_index": [4, 9], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "", "arg0_index": [], "pred": "Aplicando", "pred_index": [0, 0], "arg1": "esta t\u00e9cnica", "arg1_index": [1, 2], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Para o registro , Jeffrey Kaufman , um advogado para Fundo de Bombeiro , disse que estava `` sacudiu - literal e figurativamente . ''": [{"arg0": "Jeffrey Kaufman", "arg0_index": [4, 5], "pred": "", "pred_index": [-1, -1], "arg1": "um advogado para Fundo de Bombeiro", "arg1_index": [7, 12], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Jeffrey Kaufman", "arg0_index": [4, 5], "pred": "disse", "pred_index": [14, 14], "arg1": "que estava `` sacudiu - literal e figurativamente . ''", "arg1_index": [15, 24], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "que", "arg0_index": [15, 15], "pred": "estava", "pred_index": [16, 16], "arg1": "`` sacudiu - literal e figurativamente . ''", "arg1_index": [17, 24], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Em 2 de novembro de 2005 , Brown terminou seu contrato cedo e deixou o governo federal .": [{"arg0": "Brown", "arg0_index": [7, 7], "pred": "terminou", "pred_index": [8, 8], "arg1": "seu contrato", "arg1_index": [9, 10], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Brown", "arg0_index": [7, 7], "pred": "deixou", "pred_index": [13, 13], "arg1": "o governo federal", "arg1_index": [14, 16], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "A CRZ foi organizado pelo Nepal e membros indianos do movimento Naxalite , em uma reuni\u00e3o no Siliguri no Estado indiano de Bengala Ocidental durante Agosto de 2001 .": [{"arg0": "A CRZ", "arg0_index": [0, 1], "pred": "foi organizado pelo", "pred_index": [2, 4], "arg1": "Nepal e membros indianos do movimento Naxalite", "arg1_index": [5, 11], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "A banda tamb\u00e9m confirmou que o \u00e1lbum seria auto-lan\u00e7ado .": [{"arg0": "A banda", "arg0_index": [0, 1], "pred": "confirmou", "pred_index": [3, 3], "arg1": "que o \u00e1lbum seria auto-lan\u00e7ado", "arg1_index": [4, 8], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "o \u00e1lbum", "arg0_index": [5, 6], "pred": "seria", "pred_index": [7, 7], "arg1": "auto-lan\u00e7ado", "arg1_index": [8, 8], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "O d\u00f3lar Ganhou for\u00e7a subida do mercado de a\u00e7\u00f5es .": [{"arg0": "O d\u00f3lar", "arg0_index": [0, 1], "pred": "Ganhou for\u00e7a subida", "pred_index": [2, 4], "arg1": "do mercado de a\u00e7\u00f5es", "arg1_index": [5, 8], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Na s\u00e9rie 1986 de televis\u00e3o `` War and Remembrance '' , Johns assumiu o papel do idoso oficial da SS nazista Adolf Eichmann .": [{"arg0": "Johns", "arg0_index": [11, 11], "pred": "assumiu o papel do", "pred_index": [12, 15], "arg1": "do idoso oficial da SS nazista Adolf Eichmann", "arg1_index": [15, 22], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Adolf Eichmann", "arg0_index": [21, 22], "pred": "", "pred_index": [-1, -1], "arg1": "do idoso oficial da SS nazista", "arg1_index": [15, 20], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Note-se que estes n\u00fameros s\u00e3o inclusivas de qualquer uma das amas crian\u00e7as pr\u00f3prios .": [{"arg0": "", "arg0_index": [], "pred": "Note-se", "pred_index": [0, 0], "arg1": "que estes n\u00fameros s\u00e3o inclusivas de qualquer uma das amas crian\u00e7as", "arg1_index": [1, 11], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "estes n\u00fameros", "arg0_index": [2, 3], "pred": "s\u00e3o inclusivas de", "pred_index": [4, 6], "arg1": "qualquer uma das amas crian\u00e7as", "arg1_index": [7, 11], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Merrill disse que continua a acreditar que `` as causas do excesso de volatilidade do mercado s\u00e3o muito mais complexos do que qualquer estrat\u00e9gia de negocia\u00e7\u00e3o de computador particular .": [{"arg0": "Merrill", "arg0_index": [0, 0], "pred": "disse", "pred_index": [1, 1], "arg1": "que continua a acreditar que `` as causas do excesso de volatilidade do mercado s\u00e3o muito mais complexos do que qualquer estrat\u00e9gia de negocia\u00e7\u00e3o", "arg1_index": [2, 25], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "que", "arg0_index": [2, 2], "pred": "continua a acreditar", "pred_index": [3, 5], "arg1": "que `` as causas do excesso de volatilidade do mercado s\u00e3o muito mais complexos do que qualquer estrat\u00e9gia de negocia\u00e7\u00e3o", "arg1_index": [6, 25], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "as causas do excesso de volatilidade do mercado", "arg0_index": [8, 15], "pred": "s\u00e3o", "pred_index": [16, 16], "arg1": "muito mais complexos", "arg1_index": [17, 19], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "passageiros indisciplinados s\u00e3o muitas vezes adiadas aqui para ser levado em cust\u00f3dia .": [{"arg0": "passageiros indisciplinados", "arg0_index": [0, 1], "pred": "s\u00e3o muitas vezes adiadas aqui", "pred_index": [2, 6], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "passageiros indisciplinados", "arg0_index": [0, 1], "pred": "ser levado em", "pred_index": [8, 10], "arg1": "cust\u00f3dia", "arg1_index": [11, 11], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "The Triple-A Basebol National Championship Game foi criada em 2006 .": [{"arg0": "The Triple-A Basebol National Championship Game", "arg0_index": [0, 5], "pred": "foi criada em", "pred_index": [6, 8], "arg1": "2006", "arg1_index": [9, 9], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "\u00c0s vezes , se voc\u00ea tem uma dor de cabe\u00e7a , voc\u00ea pode sair e caminhar por ele imediatamente . ''": [{"arg0": "voc\u00ea", "arg0_index": [4, 4], "pred": "tem", "pred_index": [5, 5], "arg1": "dor de cabe\u00e7a", "arg1_index": [7, 9], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "voc\u00ea", "arg0_index": [11, 11], "pred": "pode sair", "pred_index": [12, 13], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "voc\u00ea", "arg0_index": [11, 11], "pred": "caminhar", "pred_index": [15, 15], "arg1": "dor de cabe\u00e7a", "arg1_index": [7, 9], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Em seus primeiros seis meses , RCPO concluiu 858 casos convic\u00e7\u00f5es em 88% dos casos .": [{"arg0": "RCPO", "arg0_index": [6, 6], "pred": "concluiu", "pred_index": [7, 7], "arg1": "858 casos convic\u00e7\u00f5es", "arg1_index": [8, 10], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "A maioria dos rendimentos em curto - CDs jumbo prazo , aqueles com denomina\u00e7\u00f5es mais de US $ 90.000 , tamb\u00e9m movido na dire\u00e7\u00e3o oposta dos rendimentos do tesouro .": [{"arg0": "maioria dos rendimentos em curto - CDs jumbo prazo", "arg0_index": [1, 9], "pred": "movido na dire\u00e7\u00e3o oposta dos", "pred_index": [21, 25], "arg1": "rendimentos do tesouro", "arg1_index": [26, 28], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "curto - CDs jumbo prazo", "arg0_index": [5, 9], "pred": "", "pred_index": [-1, -1], "arg1": "aqueles com denomina\u00e7\u00f5es mais de US $ 90.000", "arg1_index": [11, 18], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Sidley manter\u00e1 sua associa\u00e7\u00e3o com a Secretaria de Direito Hashidate em T\u00f3quio .": [{"arg0": "Sidley", "arg0_index": [0, 0], "pred": "manter\u00e1", "pred_index": [1, 1], "arg1": "sua associa\u00e7\u00e3o", "arg1_index": [2, 3], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Muhammad ibn Abu Bakr era um mu\u00e7ulmano devoto que apoiaram o Imam da sua \u00e9poca , Ali ibn Abi Talib , embora sua irm\u00e3 Aisha oposi\u00e7\u00e3o `Ali na batalha de Jamal , Ibn Abu Bakr foi fiel a seu padrasto .": [{"arg0": "Muhammad ibn Abu Bakr", "arg0_index": [0, 3], "pred": "foi", "pred_index": [35, 35], "arg1": "um mu\u00e7ulmano devoto", "arg1_index": [5, 7], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "um mu\u00e7ulmano devoto", "arg0_index": [5, 7], "pred": "apoiaram", "pred_index": [9, 9], "arg1": "Ali ibn Abi Talib", "arg1_index": [16, 19], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Ali ibn Abi Talib", "arg0_index": [16, 19], "pred": "", "pred_index": [-1, -1], "arg1": "o Imam da sua \u00e9poca", "arg1_index": [10, 14], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "sua irm\u00e3", "arg0_index": [22, 23], "pred": "oposi\u00e7\u00e3o", "pred_index": [25, 25], "arg1": "Ali", "arg1_index": [16, 16], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Ibn Abu Bakr", "arg0_index": [32, 34], "pred": "foi fiel a", "pred_index": [35, 37], "arg1": "seu padrasto", "arg1_index": [38, 39], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Os empregadores tamb\u00e9m poderia pagar um subminimum `` sal\u00e1rio forma\u00e7\u00e3o '' por 90 dias para novos trabalhadores at\u00e9 19 anos de idade , e , em seguida , por mais 90 dias , se os institutos empresa um programa de treinamento espec\u00edfico para os rec\u00e9m-chegados .": [{"arg0": "empregadores", "arg0_index": [1, 1], "pred": "tamb\u00e9m poderia pagar", "pred_index": [2, 4], "arg1": "um subminimum `` sal\u00e1rio forma\u00e7\u00e3o ''", "arg1_index": [5, 10], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "novos trabalhadores", "arg0_index": [15, 16], "pred": "at\u00e9", "pred_index": [17, 17], "arg1": "19 anos de idade", "arg1_index": [18, 21], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "empregadores", "arg0_index": [1, 1], "pred": "tamb\u00e9m poderia pagar", "pred_index": [2, 4], "arg1": "um subminimum `` sal\u00e1rio forma\u00e7\u00e3o ''", "arg1_index": [5, 10], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "empresa", "arg0_index": [36, 36], "pred": "institutos", "pred_index": [35, 35], "arg1": "um programa de treinamento espec\u00edfico", "arg1_index": [37, 41], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "A meados de Mar\u00e7o de ordem judicial 2002 para interromper a impress\u00e3o durante tr\u00eas meses , foi evitada pela impress\u00e3o sob outros t\u00edtulos , tais como `` Not That Respublika '' .": [{"arg0": "A meados de Mar\u00e7o de ordem judicial 2002 para interromper a impress\u00e3o durante tr\u00eas meses", "arg0_index": [0, 14], "pred": "foi evitada pela", "pred_index": [16, 18], "arg1": "impress\u00e3o sob outros t\u00edtulos", "arg1_index": [19, 22], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "J\u00e1 no s\u00e9culo 15 , os reis franceses enviou comiss\u00e1rios para as prov\u00edncias para inspecionar sobre assuntos reais e administrativas e para tomar as medidas necess\u00e1rias .": [{"arg0": "os reis franceses", "arg0_index": [5, 7], "pred": "enviou", "pred_index": [8, 8], "arg1": "comiss\u00e1rios", "arg1_index": [9, 9], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "comiss\u00e1rios", "arg0_index": [9, 9], "pred": "inspecionar", "pred_index": [14, 14], "arg1": "assuntos reais e administrativas", "arg1_index": [16, 19], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "comiss\u00e1rios", "arg0_index": [9, 9], "pred": "tomar", "pred_index": [22, 22], "arg1": "medidas necess\u00e1rias", "arg1_index": [24, 25], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Al\u00e9m disso , a Comunidade Francesa da B\u00e9lgica controversa a referir-se-se exclusivamente como o Val\u00f3nia-Bruxelas Federa\u00e7\u00e3o para enfatizar os v\u00ednculos entre a Comunidade Francesa , Val\u00f3nia e Bruxelas .": [{"arg0": "a Comunidade Francesa da B\u00e9lgica", "arg0_index": [3, 7], "pred": "controversa a referir-se-se exclusivamente", "pred_index": [8, 11], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "a Comunidade Francesa da B\u00e9lgica", "arg0_index": [3, 7], "pred": "enfatizar", "pred_index": [17, 17], "arg1": "os v\u00ednculos entre a Comunidade Francesa , Val\u00f3nia e Bruxelas", "arg1_index": [18, 27], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "O rio Stour Trust , formada em 1968 , tem sua sede em Sudbury , e uma finalidade constru\u00edda Centro de Visitantes localizado na Cornard Lock .": [{"arg0": "O rio Stour Trust", "arg0_index": [0, 3], "pred": "formada em", "pred_index": [5, 6], "arg1": "1968", "arg1_index": [7, 7], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "O rio Stour Trust", "arg0_index": [0, 3], "pred": "tem", "pred_index": [9, 9], "arg1": "sua sede", "arg1_index": [10, 11], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "O rio Stour Trust", "arg0_index": [0, 3], "pred": "tem", "pred_index": [9, 9], "arg1": "uma finalidade constru\u00edda Centro de Visitantes localizado na Cornard Lock", "arg1_index": [16, 25], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Centro de Visitantes", "arg0_index": [19, 21], "pred": "localizado na", "pred_index": [22, 23], "arg1": "Cornard Lock", "arg1_index": [24, 25], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Humana afirma que $ 8.000 representa um caso extremo e que sua carga regular para litotripsia \u00e9 de R $ 4.900 .": [{"arg0": "Humana", "arg0_index": [0, 0], "pred": "afirma", "pred_index": [1, 1], "arg1": "que $ 8.000 representa um caso extremo e que sua carga regular para litotripsia \u00e9 de R $ 4.900", "arg1_index": [2, 20], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "$ 8.000", "arg0_index": [3, 4], "pred": "representa", "pred_index": [5, 5], "arg1": "um caso extremo", "arg1_index": [6, 8], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "sua carga regular para litotripsia", "arg0_index": [11, 15], "pred": "\u00e9", "pred_index": [16, 16], "arg1": "$ 4.900", "arg1_index": [19, 20], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Depois de deixar `` Hex '' , Cole passou a aparecer como Blanche Ingram no aclamado `` Jane Eyre '' s\u00e9rie de TV para a BBC e estrelou como Lilith na `` Doctor Who '' epis\u00f3dio `` O C\u00f3digo Shakespeare '' .": [{"arg0": "Cole", "arg0_index": [7, 7], "pred": "passou a aparecer como", "pred_index": [8, 11], "arg1": "Blanche Ingram", "arg1_index": [12, 13], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Cole", "arg0_index": [7, 7], "pred": "estrelou como", "pred_index": [27, 28], "arg1": "Lilith", "arg1_index": [29, 29], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Al\u00e9m disso , como John Cecil Masterman , presidente do Comit\u00ea de vinte , comentou : `` Se , por exemplo , a Catedral de St Paul 's foram atingidos , era in\u00fatil e prejudicial para relatar que a bomba tinha descido sobre um cinema em Islington , desde a verdade , inevitavelmente , passar para a Alemanha ... ''": [{"arg0": "John Cecil Masterman", "arg0_index": [4, 6], "pred": "", "pred_index": [-1, -1], "arg1": "presidente do Comit\u00ea de vinte", "arg1_index": [8, 12], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "John Cecil Masterman", "arg0_index": [4, 6], "pred": "comentou", "pred_index": [14, 14], "arg1": "Se , por exemplo , a Catedral de St Paul 's foram atingidos , era in\u00fatil e prejudicial para relatar que a bomba tinha descido sobre um cinema em Islington , desde a verdade , inevitavelmente , passar para a Alemanha ... ''", "arg1_index": [17, 59], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "", "arg0_index": [], "pred": "era", "pred_index": [31, 31], "arg1": "in\u00fatil e prejudicial", "arg1_index": [32, 34], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Catedral de St Paul 's", "arg0_index": [23, 27], "pred": "foram atingidos", "pred_index": [28, 29], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "", "arg0_index": [], "pred": "relatar", "pred_index": [36, 36], "arg1": "que a bomba tinha descido sobre um cinema em Islington", "arg1_index": [37, 46], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "a bomba", "arg0_index": [38, 39], "pred": "tinha descido sobre", "pred_index": [40, 42], "arg1": "um cinema", "arg1_index": [43, 44], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "a verdade", "arg0_index": [49, 50], "pred": "inevitavelmente , passar para a", "pred_index": [52, 56], "arg1": "Alemanha", "arg1_index": [57, 57], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Os membros permanentes s\u00e3o o reitor , o Carl H. Professor Universidade Pforzheimer e os decanos ou designados a partir das seguintes escolas : a Faculdade de Artes e Ci\u00eancias , Harvard Business School , Harvard Law School e Harvard Medical School .": [{"arg0": "Os membros permanentes", "arg0_index": [0, 2], "pred": "s\u00e3o", "pred_index": [3, 3], "arg1": "o reitor , o Carl H. Professor Universidade Pforzheimer e os decanos ou designados a partir das seguintes escolas : a Faculdade de Artes e Ci\u00eancias , Harvard Business School , Harvard Law School e Harvard Medical School", "arg1_index": [4, 41], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Em outubro de 2009 , foi confirmado que o corte Byrom Street era um engate e de ponto unhitching para trens sendo cabo arrastado para Edge Hill atrav\u00e9s do t\u00fanel Victoria .": [{"arg0": "", "arg0_index": [], "pred": "foi confirmado", "pred_index": [5, 6], "arg1": "que o corte Byrom Street era um engate e de ponto unhitching para trens sendo cabo arrastado para Edge Hill atrav\u00e9s do t\u00fanel Victoria", "arg1_index": [7, 30], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "o corte Byrom Street", "arg0_index": [8, 11], "pred": "era", "pred_index": [12, 12], "arg1": "um engate e de ponto unhitching", "arg1_index": [13, 18], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Com este ato , a R\u00fassia foi oficialmente transformado a partir de uma monarquia absoluta para uma constitucional , embora a extens\u00e3o exata de apenas `` como '' rapidamente constitucional se tornou tema de debate , com base no imperador 'a\u00e7\u00f5es subsequentes s .": [{"arg0": "R\u00fassia", "arg0_index": [5, 5], "pred": "foi oficialmente transformado a partir", "pred_index": [6, 10], "arg1": "uma monarquia absoluta", "arg1_index": [12, 14], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "a extens\u00e3o exata de apenas `` como '' rapidamente constitucional se tornou tema de debate", "arg0_index": [20, 34], "pred": "com base no", "pred_index": [36, 38], "arg1": "no imperador 'a\u00e7\u00f5es subsequentes", "arg1_index": [38, 41], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "constitucional", "arg0_index": [29, 29], "pred": "rapidamente", "pred_index": [28, 28], "arg1": "tema de debate", "arg1_index": [32, 34], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "No in\u00edcio do s\u00e9culo 19 os metodistas galeses rompeu com a Igreja Anglicana e estabeleceu a sua pr\u00f3pria denomina\u00e7\u00e3o , agora a Igreja Presbiteriana de Gales .": [{"arg0": "os metodistas galeses", "arg0_index": [5, 7], "pred": "rompeu com", "pred_index": [8, 9], "arg1": "a Igreja Anglicana", "arg1_index": [10, 12], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "os metodistas galeses", "arg0_index": [5, 7], "pred": "estabeleceu", "pred_index": [14, 14], "arg1": "sua pr\u00f3pria denomina\u00e7\u00e3o", "arg1_index": [16, 18], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "sua pr\u00f3pria denomina\u00e7\u00e3o", "arg0_index": [16, 18], "pred": "", "pred_index": [-1, -1], "arg1": "a Igreja Presbiteriana de Gales", "arg1_index": [21, 25], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Fraser & Neave , que tamb\u00e9m tem interesses em embalagens , cerveja e produtos l\u00e1cteos , det\u00e9m as licen\u00e7as de Coca-Cola para Mal\u00e1sia e Brunei , onde per - capita o consumo n\u00e3o \u00e9 t\u00e3o alta como em Cingapura .": [{"arg0": "Fraser & Neave", "arg0_index": [0, 2], "pred": "det\u00e9m", "pred_index": [16, 16], "arg1": "as licen\u00e7as de Coca-Cola para Mal\u00e1sia e Brunei", "arg1_index": [17, 24], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Fraser & Neave", "arg0_index": [0, 2], "pred": "tem interesses em", "pred_index": [6, 8], "arg1": "embalagens , cerveja e produtos l\u00e1cteos", "arg1_index": [9, 14], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "per - capita o consumo", "arg0_index": [27, 31], "pred": "n\u00e3o \u00e9 t\u00e3o alta como", "pred_index": [32, 36], "arg1": "em Cingapura", "arg1_index": [37, 38], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Newhan dividir a temporada entre Triple-A Round Rock , onde ele bateu .308 .": [{"arg0": "Newhan", "arg0_index": [0, 0], "pred": "dividir", "pred_index": [1, 1], "arg1": "a temporada entre Triple-A Round Rock", "arg1_index": [2, 7], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "ele", "arg0_index": [10, 10], "pred": "bateu", "pred_index": [11, 11], "arg1": ".308", "arg1_index": [12, 12], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Este \u00e9 o grupo da ONU que conseguiu difamar a sua pr\u00f3pria carta de promover a educa\u00e7\u00e3o , ci\u00eancia e cultura .": [{"arg0": "Este", "arg0_index": [0, 0], "pred": "\u00e9", "pred_index": [1, 1], "arg1": "o grupo da ONU que conseguiu difamar a sua pr\u00f3pria carta de promover a educa\u00e7\u00e3o , ci\u00eancia e cultura", "arg1_index": [2, 20], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "grupo da ONU", "arg0_index": [3, 5], "pred": "conseguiu difamar", "pred_index": [7, 8], "arg1": "a sua pr\u00f3pria carta de promover a educa\u00e7\u00e3o , ci\u00eancia e cultura", "arg1_index": [9, 20], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Para torn\u00e1-los directamente compar\u00e1vel , cada \u00edndice baseia-se no fim de 1969 igual a 100 .": [{"arg0": "cada \u00edndice baseia-se no fim de 1969 igual a 100", "arg0_index": [5, 14], "pred": "torn\u00e1-los", "pred_index": [1, 1], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "cada \u00edndice", "arg0_index": [5, 6], "pred": "baseia-se no", "pred_index": [7, 8], "arg1": "no fim de 1969 igual a 100", "arg1_index": [8, 14], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "O fundador tinha se comprometido a honrar a Sant\u00edssima Virgem de uma maneira especial .": [{"arg0": "O fundador", "arg0_index": [0, 1], "pred": "tinha se comprometido", "pred_index": [2, 4], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "O fundador", "arg0_index": [0, 1], "pred": "honrar", "pred_index": [6, 6], "arg1": "a Sant\u00edssima Virgem", "arg1_index": [7, 9], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "A esta\u00e7\u00e3o tem uma \u00e1rea de p\u00e1tio e bilheteira que foi internamente redesenhado e reaberto em meados de 2012 .": [{"arg0": "A esta\u00e7\u00e3o", "arg0_index": [0, 1], "pred": "tem", "pred_index": [2, 2], "arg1": "uma \u00e1rea de p\u00e1tio e bilheteira", "arg1_index": [3, 8], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "p\u00e1tio e bilheteira", "arg0_index": [6, 8], "pred": "foi internamente redesenhado", "pred_index": [10, 12], "arg1": "e bilheteira que foi internamente redesenhado e reaberto em meados de 2012", "arg1_index": [7, 18], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "p\u00e1tio e bilheteira", "arg0_index": [6, 8], "pred": "reaberto em", "pred_index": [14, 15], "arg1": "meados de 2012", "arg1_index": [16, 18], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "De 1909 a 1912 , o Miami Canal foi cavado , contornando as corredeiras \u00e0 frente da North Fork .": [{"arg0": "o Miami Canal", "arg0_index": [5, 7], "pred": "foi cavado", "pred_index": [8, 9], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "o Miami Canal", "arg0_index": [5, 7], "pred": "contornando", "pred_index": [11, 11], "arg1": "as corredeiras", "arg1_index": [12, 13], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Apenas Ballard e Williams s\u00e3o deixados ap\u00f3s o Sargento Jericho e os outros oficiais , juntamente com os dois operadores ferrovi\u00e1rios , s\u00e3o mortos quando tentam terminar a luta .": [{"arg0": "Ballard e Williams", "arg0_index": [1, 3], "pred": "s\u00e3o deixados", "pred_index": [4, 5], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Sargento Jericho e os outros oficiais , juntamente com os dois operadores ferrovi\u00e1rios", "arg0_index": [8, 20], "pred": "s\u00e3o mortos", "pred_index": [22, 23], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Sargento Jericho e os outros oficiais , juntamente com os dois operadores ferrovi\u00e1rios", "arg0_index": [8, 20], "pred": "tentam terminar", "pred_index": [25, 26], "arg1": "a luta", "arg1_index": [27, 28], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Em um post not\u00edcias , Holkins afirmou que ele reservou o direito de trazer Carl volta a qualquer momento Krahulik vai para a Fran\u00e7a .": [{"arg0": "Holkins", "arg0_index": [5, 5], "pred": "afirmou", "pred_index": [6, 6], "arg1": "que ele reservou o direito de trazer Carl volta a qualquer momento Krahulik vai para a Fran\u00e7a", "arg1_index": [7, 23], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "ele", "arg0_index": [8, 8], "pred": "reservou", "pred_index": [9, 9], "arg1": "o direito de trazer Carl volta a qualquer momento Krahulik vai para a Fran\u00e7a", "arg1_index": [10, 23], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Holkins", "arg0_index": [5, 5], "pred": "trazer", "pred_index": [13, 13], "arg1": "Carl", "arg1_index": [14, 14], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Krahulik", "arg0_index": [19, 19], "pred": "vai para", "pred_index": [20, 21], "arg1": "Fran\u00e7a", "arg1_index": [23, 23], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Warner tem um cinco - contrato de exclusividade ano com o Sr. Guber e Mr. Peters que os obriga a fazer filmes exclusivamente no est\u00fadio Warner Bros. .": [{"arg0": "Warner", "arg0_index": [0, 0], "pred": "tem", "pred_index": [1, 1], "arg1": "um cinco - contrato de exclusividade ano com o Sr. Guber e Mr. Peters", "arg1_index": [2, 15], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "um cinco - contrato de exclusividade ano com o Sr. Guber e Mr. Peters", "arg0_index": [2, 15], "pred": "obriga", "pred_index": [18, 18], "arg1": "os", "arg1_index": [17, 17], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Sr. Guber e Mr. Peters", "arg0_index": [11, 15], "pred": "fazer", "pred_index": [20, 20], "arg1": "filmes", "arg1_index": [21, 21], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "A pe\u00e7a central desse complexo , a Landmark Tower , ser\u00e1 o edif\u00edcio mais alto do Jap\u00e3o quando estiver conclu\u00edda em 1993 .": [{"arg0": "a Landmark Tower", "arg0_index": [6, 8], "pred": "ser\u00e1", "pred_index": [10, 10], "arg1": "edif\u00edcio mais alto do Jap\u00e3o", "arg1_index": [12, 16], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "A pe\u00e7a central desse complexo", "arg0_index": [0, 4], "pred": "", "pred_index": [-1, -1], "arg1": "a Landmark Tower", "arg1_index": [6, 8], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "a Landmark Tower", "arg0_index": [6, 8], "pred": "estiver conclu\u00edda em", "pred_index": [18, 20], "arg1": "1993", "arg1_index": [21, 21], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Estudos similares s\u00e3o esperados para revelar como os c\u00e9rebros dos pacientes com AVC reagrupar - um primeiro passo para encontrar maneiras de refor\u00e7ar esse processo e velocidade de reabilita\u00e7\u00e3o .": [{"arg0": "Estudos similares", "arg0_index": [0, 1], "pred": "s\u00e3o esperados para revelar", "pred_index": [2, 5], "arg1": "como os c\u00e9rebros dos pacientes com AVC reagrupar", "arg1_index": [6, 13], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "para revelar como os c\u00e9rebros dos pacientes com AVC reagrupar", "arg0_index": [4, 13], "pred": "", "pred_index": [-1, -1], "arg1": "um primeiro passo para encontrar maneiras de refor\u00e7ar esse processo e velocidade de reabilita\u00e7\u00e3o", "arg1_index": [15, 28], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "", "arg0_index": [], "pred": "encontrar", "pred_index": [19, 19], "arg1": "maneiras", "arg1_index": [20, 20], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "maneiras", "arg0_index": [20, 20], "pred": "refor\u00e7ar", "pred_index": [22, 22], "arg1": "esse processo", "arg1_index": [23, 24], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "maneiras", "arg0_index": [20, 20], "pred": "velocidade", "pred_index": [26, 26], "arg1": "reabilita\u00e7\u00e3o", "arg1_index": [28, 28], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Em 2012 , Bloomberg Businessweek votou San Francisco como America 's Best City .": [{"arg0": "Bloomberg Businessweek", "arg0_index": [3, 4], "pred": "votou", "pred_index": [5, 5], "arg1": "San Francisco", "arg1_index": [6, 7], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Obviamente o ep\u00edlogo n\u00e3o era uma reflex\u00e3o tardia fornecido tarde demais para a edi\u00e7\u00e3o de Ingl\u00eas , pois \u00e9 referido no `` O Castaway '' : `` na sequ\u00eancia da narrativa , ele ir\u00e1 ent\u00e3o ser visto que , como abandono me aconteceu . ''": [{"arg0": "o ep\u00edlogo", "arg0_index": [1, 2], "pred": "n\u00e3o era", "pred_index": [3, 4], "arg1": "uma reflex\u00e3o tardia fornecido tarde demais para a edi\u00e7\u00e3o de Ingl\u00eas", "arg1_index": [5, 15], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "", "arg0_index": [], "pred": "\u00e9 referido", "pred_index": [18, 19], "arg1": "no `` O Castaway '' : `` na sequ\u00eancia da narrativa , ele ir\u00e1 ent\u00e3o ser visto que , como abandono me aconteceu . ''", "arg1_index": [20, 44], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "uma reflex\u00e3o tardia", "arg0_index": [5, 7], "pred": "fornecido", "pred_index": [8, 8], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Hapoel Lod jogou na primeira divis\u00e3o durante os anos 1960 e 1980 , e ganhou a Copa do Estado em 1984 .": [{"arg0": "Hapoel Lod", "arg0_index": [0, 1], "pred": "jogou na", "pred_index": [2, 3], "arg1": "primeira divis\u00e3o", "arg1_index": [4, 5], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Hapoel Lod", "arg0_index": [0, 1], "pred": "ganhou", "pred_index": [14, 14], "arg1": "a Copa do Estado", "arg1_index": [15, 18], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Ford Motor Co. disse que est\u00e1 recordando cerca de 3.600 de seus 1990 - modelo Escorts porque o adesivo de p\u00e1ra-brisa foi indevidamente aplicada a alguns carros .": [{"arg0": "Ford Motor Co.", "arg0_index": [0, 2], "pred": "disse", "pred_index": [3, 3], "arg1": "est\u00e1 recordando cerca de 3.600 de seus 1990 - modelo Escorts porque o adesivo de p\u00e1ra-brisa foi indevidamente aplicada a alguns carros", "arg1_index": [5, 26], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "est\u00e1", "arg0_index": [5, 5], "pred": "recordando", "pred_index": [6, 6], "arg1": "cerca de 3.600 de seus 1990 - modelo Escorts", "arg1_index": [7, 15], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "o adesivo de p\u00e1ra-brisa", "arg0_index": [17, 20], "pred": "foi indevidamente aplicada a", "pred_index": [21, 24], "arg1": "alguns carros", "arg1_index": [25, 26], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Inicialmente suas chances de sobreviv\u00eancia foram pensados para n\u00e3o melhor do que 50-50 ser .": [{"arg0": "suas chances de sobreviv\u00eancia", "arg0_index": [1, 4], "pred": "foram pensados para n\u00e3o", "pred_index": [5, 8], "arg1": "n\u00e3o melhor do que 50-50", "arg1_index": [8, 12], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Em um ponto , quase todas as a\u00e7\u00f5es na 20 - \u00cdndice de A\u00e7\u00f5es Mercado Major , que imita a m\u00e9dia industrial , eram muito mais altos .": [{"arg0": "quase todas as a\u00e7\u00f5es na 20 - \u00cdndice de A\u00e7\u00f5es", "arg0_index": [4, 13], "pred": "eram", "pred_index": [23, 23], "arg1": "muito mais altos", "arg1_index": [24, 26], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "20 - \u00cdndice de A\u00e7\u00f5es Mercado Major", "arg0_index": [9, 15], "pred": "imita", "pred_index": [18, 18], "arg1": "a m\u00e9dia industrial", "arg1_index": [19, 21], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Parlamento da Hungria votou para realizar um referendo nacional sobre uma elei\u00e7\u00e3o para preencher o novo cargo de presidente .": [{"arg0": "Parlamento da Hungria", "arg0_index": [0, 2], "pred": "votou para realizar", "pred_index": [3, 5], "arg1": "um referendo nacional sobre uma elei\u00e7\u00e3o", "arg1_index": [6, 11], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "uma elei\u00e7\u00e3o", "arg0_index": [10, 11], "pred": "preencher", "pred_index": [13, 13], "arg1": "o novo cargo de presidente", "arg1_index": [14, 18], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Mas ontem , o Sr. Carpenter disse grandes investidores institucionais , que ele n\u00e3o quis identificar , `` nos disse que n\u00e3o iria fazer neg\u00f3cios com empresas '' que continuaram a fazer \u00edndice de arbitragem para as suas pr\u00f3prias contas .": [{"arg0": "Sr. Carpenter", "arg0_index": [4, 5], "pred": "disse", "pred_index": [6, 6], "arg1": "grandes investidores institucionais", "arg1_index": [7, 9], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "ele", "arg0_index": [12, 12], "pred": "n\u00e3o quis identificar", "pred_index": [13, 15], "arg1": "grandes investidores institucionais", "arg1_index": [7, 9], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "grandes investidores institucionais", "arg0_index": [7, 9], "pred": "disse", "pred_index": [19, 19], "arg1": "nos", "arg1_index": [18, 18], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "grandes investidores institucionais", "arg0_index": [7, 9], "pred": "n\u00e3o iria", "pred_index": [21, 22], "arg1": "neg\u00f3cios", "arg1_index": [24, 24], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "empresas", "arg0_index": [26, 26], "pred": "continuaram a fazer", "pred_index": [29, 31], "arg1": "\u00edndice de arbitragem", "arg1_index": [32, 34], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Scarpetta volta a Virginia em `` Tra\u00e7o '' , convencendo-se de que ela foi demitida de seu cargo , a pedido de seu substituto , Dr. Joel Marcus .": [{"arg0": "Scarpetta", "arg0_index": [0, 0], "pred": "volta a", "pred_index": [1, 2], "arg1": "Virginia", "arg1_index": [3, 3], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Scarpetta", "arg0_index": [0, 0], "pred": "convencendo-se", "pred_index": [9, 9], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "ela", "arg0_index": [12, 12], "pred": "foi demitida", "pred_index": [13, 14], "arg1": "de seu cargo", "arg1_index": [15, 17], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Dr. Joel Marcus", "arg0_index": [25, 27], "pred": "", "pred_index": [-1, -1], "arg1": "seu substituto", "arg1_index": [22, 23], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "O Ver\u00e3o Escrit\u00f3rio Programas executado esses programas , e muitos classes ou acampamento attend Wardlaw-Hartridge alunos durante o ver\u00e3o .": [{"arg0": "O Ver\u00e3o Escrit\u00f3rio Programas", "arg0_index": [0, 3], "pred": "", "pred_index": [], "arg1": "esses programas", "arg1_index": [5, 6], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Wardlaw-Hartridge alunos", "arg0_index": [14, 15], "pred": "attend", "pred_index": [13, 13], "arg1": "classes ou acampamento", "arg1_index": [10, 12], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "A fim de apoiar a expans\u00e3o TRAX planejada , UTA ordenou 77 Siemens S70 ve\u00edculos ferrovi\u00e1rios luz da Siemens AG .": [{"arg0": "UTA", "arg0_index": [9, 9], "pred": "ordenou", "pred_index": [10, 10], "arg1": "77 Siemens S70 ve\u00edculos ferrovi\u00e1rios", "arg1_index": [11, 15], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "UTA", "arg0_index": [9, 9], "pred": "apoiar", "pred_index": [3, 3], "arg1": "expans\u00e3o TRAX planejada", "arg1_index": [5, 7], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Durante a manh\u00e3 e \u00e0 noite horas de ponta alguns servi\u00e7os executados direto de / para Paddington e Reading .": [{"arg0": "alguns servi\u00e7os", "arg0_index": [9, 10], "pred": "executados direto de / para", "pred_index": [11, 15], "arg1": "Paddington e Reading", "arg1_index": [16, 18], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Estas e outras tentativas forneceu uma ponte entre a literatura dos dois idiomas .": [{"arg0": "Estas e outras tentativas", "arg0_index": [0, 3], "pred": "forneceu", "pred_index": [4, 4], "arg1": "uma ponte entre a literatura dos dois idiomas", "arg1_index": [5, 12], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Em anos mais recentes , esta pol\u00edtica tem , aparentemente , relaxou um pouco .": [{"arg0": "esta pol\u00edtica", "arg0_index": [5, 6], "pred": "tem , aparentemente , relaxou", "pred_index": [7, 11], "arg1": "um pouco", "arg1_index": [12, 13], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Carl usa o `` velha magia '' para domar a profunda Crow , alegando que n\u00e3o \u00e9 o seu `` primeira vez para o rodeio . ''": [{"arg0": "Carl", "arg0_index": [0, 0], "pred": "usa", "pred_index": [1, 1], "arg1": "o `` velha magia ''", "arg1_index": [2, 6], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "`` velha magia ''", "arg0_index": [3, 6], "pred": "domar", "pred_index": [8, 8], "arg1": "a profunda Crow", "arg1_index": [9, 11], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Carl", "arg0_index": [0, 0], "pred": "alegando", "pred_index": [13, 13], "arg1": "n\u00e3o \u00e9 o seu `` primeira vez para o rodeio . ''", "arg1_index": [15, 26], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "", "arg0_index": [], "pred": "n\u00e3o \u00e9", "pred_index": [15, 16], "arg1": "seu `` primeira vez para o rodeio . ''", "arg1_index": [18, 26], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "`` Neg\u00f3cios em todo o pa\u00eds est\u00e1 gastando mais tempo abordar esta quest\u00e3o '' , diz o senador Edward Kennedy ( D. , Mass . ) .": [{"arg0": "o senador Edward Kennedy ( D. , Mass . )", "arg0_index": [16, 25], "pred": "diz", "pred_index": [15, 15], "arg1": "`` Neg\u00f3cios em todo o pa\u00eds est\u00e1 gastando mais tempo abordar esta quest\u00e3o ''", "arg1_index": [0, 13], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Neg\u00f3cios em todo o pa\u00eds", "arg0_index": [1, 5], "pred": "est\u00e1 gastando", "pred_index": [6, 7], "arg1": "mais tempo", "arg1_index": [8, 9], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Neg\u00f3cios em todo o pa\u00eds", "arg0_index": [1, 5], "pred": "abordar", "pred_index": [10, 10], "arg1": "est\u00e1 gastando", "arg1_index": [6, 7], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Entre outras coisas , eles disseram , o Sr. Azoff iria desenvolver atos musicais para uma nova gravadora .": [{"arg0": "eles", "arg0_index": [4, 4], "pred": "disseram", "pred_index": [5, 5], "arg1": "Sr. Azoff iria desenvolver atos musicais para uma nova gravadora", "arg1_index": [8, 17], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Sr. Azoff", "arg0_index": [8, 9], "pred": "iria desenvolver", "pred_index": [10, 11], "arg1": "atos musicais", "arg1_index": [12, 13], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "A oferta foi pre\u00e7os com uma taxa de cup\u00e3o de 8,95% a 99,1875% para se obter 9,19% .": [{"arg0": "A oferta", "arg0_index": [0, 1], "pred": "foi pre\u00e7os com", "pred_index": [2, 4], "arg1": "uma taxa de cup\u00e3o de 8,95% a 99,1875%", "arg1_index": [5, 12], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "A oferta", "arg0_index": [0, 1], "pred": "pre\u00e7os", "pred_index": [3, 3], "arg1": "9,19%", "arg1_index": [16, 16], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Mr. Guber e Mr. Peters tamb\u00e9m quase certamente n\u00e3o seria capaz de participar em futuras continua\u00e7\u00f5es para `` Batman '' , o blockbuster eles produziram para a Warner .": [{"arg0": "Mr. Guber e Mr. Peters", "arg0_index": [0, 4], "pred": "tamb\u00e9m quase certamente n\u00e3o seria capaz de participar em", "pred_index": [5, 13], "arg1": "futuras continua\u00e7\u00f5es para `` Batman ''", "arg1_index": [14, 19], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "eles", "arg0_index": [23, 23], "pred": "produziram", "pred_index": [24, 24], "arg1": "o blockbuster", "arg1_index": [21, 22], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "O National Transportation Safety Board determinou que os pilotos n\u00e3o conseguiram definir o plano de flaps e slats adequadamente para a decolagem e n\u00e3o conseguiu fazer verifica\u00e7\u00f5es de comprova\u00e7\u00e3o obrigat\u00f3rios que teria detectado o erro .": [{"arg0": "O National Transportation Safety Board", "arg0_index": [0, 4], "pred": "determinou", "pred_index": [5, 5], "arg1": "que os pilotos n\u00e3o conseguiram definir o plano de flaps e slats adequadamente para a decolagem e n\u00e3o conseguiu fazer verifica\u00e7\u00f5es de comprova\u00e7\u00e3o obrigat\u00f3rios que teria detectado o erro", "arg1_index": [6, 34], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "pilotos", "arg0_index": [8, 8], "pred": "n\u00e3o conseguiram definir", "pred_index": [9, 11], "arg1": "o plano de flaps e slats adequadamente", "arg1_index": [12, 18], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "pilotos", "arg0_index": [8, 8], "pred": "n\u00e3o conseguiu fazer", "pred_index": [23, 25], "arg1": "verifica\u00e7\u00f5es de comprova\u00e7\u00e3o obrigat\u00f3rios que teria detectado o erro", "arg1_index": [26, 34], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "verifica\u00e7\u00f5es de comprova\u00e7\u00e3o obrigat\u00f3rios", "arg0_index": [26, 29], "pred": "teria detectado", "pred_index": [31, 32], "arg1": "o erro", "arg1_index": [33, 34], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "O escrit\u00f3rio tamb\u00e9m pode ser capaz de aconselhar os clientes estrangeiros e multinacionais no direito internacional e assuntos gerais .": [{"arg0": "O escrit\u00f3rio", "arg0_index": [0, 1], "pred": "pode ser capaz de aconselhar", "pred_index": [3, 7], "arg1": "clientes estrangeiros e multinacionais", "arg1_index": [9, 12], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Sr. Wathen , que diz Pinkerton 's teve uma perda de cerca de US $ 8 milh\u00f5es em 1987 sob American Brands , se gaba de que ele est\u00e1 feitas rent\u00e1vel novamente 's Pinkerton .": [{"arg0": "Sr. Wathen", "arg0_index": [0, 1], "pred": "diz", "pred_index": [4, 4], "arg1": "Pinkerton 's teve uma perda de cerca de US $ 8 milh\u00f5es em 1987 sob American Brands", "arg1_index": [5, 21], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Sr. Wathen", "arg0_index": [0, 1], "pred": "se gaba", "pred_index": [23, 24], "arg1": "que ele est\u00e1 feitas rent\u00e1vel novamente", "arg1_index": [26, 31], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "'s Pinkerton", "arg0_index": [32, 33], "pred": "teve", "pred_index": [7, 7], "arg1": "uma perda de cerca de US $ 8 milh\u00f5es", "arg1_index": [8, 16], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "ele", "arg0_index": [27, 27], "pred": "est\u00e1 feitas", "pred_index": [28, 29], "arg1": "'s Pinkerton", "arg1_index": [32, 33], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Muitos s\u00e3o removidos cirurgicamente para a est\u00e9tica e al\u00edvio da carga psicossocial , mas os maiores tamb\u00e9m s\u00e3o excisadas para a preven\u00e7\u00e3o do c\u00e2ncer , embora o benef\u00edcio \u00e9 imposs\u00edvel avaliar para qualquer paciente individual .": [{"arg0": "Muitos", "arg0_index": [0, 0], "pred": "s\u00e3o removidos cirurgicamente para", "pred_index": [1, 4], "arg1": "est\u00e9tica e al\u00edvio da carga psicossocial", "arg1_index": [6, 11], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "maiores", "arg0_index": [15, 15], "pred": "tamb\u00e9m s\u00e3o excisadas para", "pred_index": [16, 19], "arg1": "preven\u00e7\u00e3o do c\u00e2ncer", "arg1_index": [21, 23], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "o benef\u00edcio", "arg0_index": [26, 27], "pred": "\u00e9", "pred_index": [28, 28], "arg1": "imposs\u00edvel", "arg1_index": [29, 29], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "O mercado de 'tempo s foi ajudado pelo d\u00f3lar de resili\u00eancia , disse ele .": [{"arg0": "O mercado de 'tempo s", "arg0_index": [0, 4], "pred": "foi ajudado pelo", "pred_index": [5, 7], "arg1": "d\u00f3lar de resili\u00eancia", "arg1_index": [8, 10], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "ele", "arg0_index": [13, 13], "pred": "disse", "pred_index": [12, 12], "arg1": "O mercado de 'tempo s foi ajudado pelo d\u00f3lar de resili\u00eancia", "arg1_index": [0, 10], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Hani Zayadi foi nomeado presidente e executivo-chefe desta cadeia de lojas de departamento com problemas financeiros , efetivo 15 de novembro , sucedendo Frank Robertson , que est\u00e1 se aposentando mais cedo .": [{"arg0": "Hani Zayadi", "arg0_index": [0, 1], "pred": "foi nomeado", "pred_index": [2, 3], "arg1": "presidente e executivo-chefe desta cadeia de lojas de departamento", "arg1_index": [4, 12], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Hani Zayadi", "arg0_index": [0, 1], "pred": "sucedendo", "pred_index": [22, 22], "arg1": "Frank Robertson", "arg1_index": [23, 24], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Frank Robertson", "arg0_index": [23, 24], "pred": "est\u00e1 se aposentando", "pred_index": [27, 29], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Na verdade , Condon , depois de ver Hauptmann em um lineup em New York Police Department Station Rua Greenwich dito agente especial do FBI Turrou que Hauptmann n\u00e3o era `` John , '' o homem a quem Condon alegou que ele passou o dinheiro do resgate no St. Raymond 's cemit\u00e9rio .": [{"arg0": "Condon", "arg0_index": [3, 3], "pred": "dito", "pred_index": [20, 20], "arg1": "especial do FBI Turrou", "arg1_index": [22, 25], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Turrou", "arg0_index": [25, 25], "pred": "", "pred_index": [-1, -1], "arg1": "agente especial do FBI", "arg1_index": [21, 24], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Hauptmann", "arg0_index": [27, 27], "pred": "n\u00e3o era", "pred_index": [28, 29], "arg1": "`` John , ''", "arg1_index": [30, 33], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Condon", "arg0_index": [3, 3], "pred": "ver", "pred_index": [7, 7], "arg1": "Hauptmann", "arg1_index": [8, 8], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "`` John , ''", "arg0_index": [30, 33], "pred": "", "pred_index": [-1, -1], "arg1": "'' o homem a quem Condon alegou que ele passou o dinheiro do resgate no St. Raymond 's cemit\u00e9rio", "arg1_index": [33, 51], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Condon", "arg0_index": [38, 38], "pred": "alegou", "pred_index": [39, 39], "arg1": "ele passou o dinheiro do resgate no St. Raymond 's cemit\u00e9rio", "arg1_index": [41, 51], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "ele", "arg0_index": [41, 41], "pred": "passou", "pred_index": [42, 42], "arg1": "o dinheiro do resgate", "arg1_index": [43, 46], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Spennymoor Cidade F. C. s\u00e3o a principal equipa de futebol local e ganhou a FA Carlsberg vaso , depois de vencer por 2-1 na final no Est\u00e1dio de Wembley contra Tunbridge Wells em maio de 2013 .": [{"arg0": "Spennymoor Cidade F. C.", "arg0_index": [0, 3], "pred": "s\u00e3o", "pred_index": [4, 4], "arg1": "a principal equipa de futebol local", "arg1_index": [5, 10], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Spennymoor Cidade F. C.", "arg0_index": [0, 3], "pred": "ganhou", "pred_index": [12, 12], "arg1": "a FA Carlsberg vaso", "arg1_index": [13, 16], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Spennymoor Cidade F. C.", "arg0_index": [0, 3], "pred": "ganhou", "pred_index": [12, 12], "arg1": "2-1", "arg1_index": [22, 22], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Falun Gong 'ensinamentos s s\u00e3o compilados a partir Li' palestras s , e Li det\u00e9m o poder de defini\u00e7\u00e3o nesse sistema de cren\u00e7as .": [{"arg0": "Falun Gong 'ensinamentos", "arg0_index": [0, 2], "pred": "s\u00e3o compilados a partir", "pred_index": [4, 7], "arg1": "Li' palestras", "arg1_index": [8, 9], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Li", "arg0_index": [13, 13], "pred": "det\u00e9m", "pred_index": [14, 14], "arg1": "poder de defini\u00e7\u00e3o", "arg1_index": [16, 18], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Os aplicativos podem usar este servi\u00e7o para a atividade recorde para um sistema de produ\u00e7\u00e3o , enquanto implementa\u00e7\u00f5es de outros OSIDs pode usar o servi\u00e7o para registrar os dados detalhados durante o desenvolvimento , depura\u00e7\u00e3o , ou analisar o desempenho .": [{"arg0": "aplicativos", "arg0_index": [1, 1], "pred": "pode usar", "pred_index": [21, 22], "arg1": "este servi\u00e7o", "arg1_index": [4, 5], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "este servi\u00e7o", "arg0_index": [4, 5], "pred": "recorde", "pred_index": [9, 9], "arg1": "atividade", "arg1_index": [8, 8], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "implementa\u00e7\u00f5es de outros OSIDs", "arg0_index": [17, 20], "pred": "pode usar", "pred_index": [21, 22], "arg1": "o servi\u00e7o", "arg1_index": [23, 24], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "o servi\u00e7o", "arg0_index": [23, 24], "pred": "registrar", "pred_index": [26, 26], "arg1": "dados detalhados", "arg1_index": [28, 29], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Com empresas como a Honda Motor Co. , Toyota Motor Corp e Nissan Motor Co. funcionando assim - chamados de opera\u00e7\u00f5es de auto transplante , a produ\u00e7\u00e3o de autom\u00f3veis japon\u00eas nos EUA vai atingir um milh\u00e3o de ve\u00edculos este ano .": [{"arg0": "produ\u00e7\u00e3o de autom\u00f3veis japon\u00eas nos EUA", "arg0_index": [26, 31], "pred": "vai atingir", "pred_index": [32, 33], "arg1": "milh\u00e3o de ve\u00edculos", "arg1_index": [35, 37], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "empresas como a Honda Motor Co. , Toyota Motor Corp e Nissan Motor Co.", "arg0_index": [1, 14], "pred": "funcionando", "pred_index": [15, 15], "arg1": "assim - chamados de opera\u00e7\u00f5es de auto transplante", "arg1_index": [16, 23], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Isso \u00e9 mais comum nos pa\u00edses ocidentais naqueles com es\u00f4fago de Barrett , e ocorre nas c\u00e9lulas c\u00fabicas .": [{"arg0": "Isso", "arg0_index": [0, 0], "pred": "\u00e9", "pred_index": [1, 1], "arg1": "mais comum", "arg1_index": [2, 3], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Isso", "arg0_index": [0, 0], "pred": "ocorre nas", "pred_index": [14, 15], "arg1": "c\u00e9lulas c\u00fabicas", "arg1_index": [16, 17], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Um juiz do Estado adiou uma decis\u00e3o sobre uma jogada de titulares de Telerate Inc. para bloquear a oferta de compra da Dow Jones & Co. para o 33% do Telerate n\u00e3o j\u00e1 possui .": [{"arg0": "Um juiz do", "arg0_index": [0, 2], "pred": "adiou", "pred_index": [4, 4], "arg1": "uma decis\u00e3o sobre uma jogada de titulares de Telerate Inc.", "arg1_index": [5, 14], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "uma jogada de titulares de Telerate Inc.", "arg0_index": [8, 14], "pred": "para", "pred_index": [15, 15], "arg1": "a oferta de compra da Dow Jones & Co.", "arg1_index": [17, 25], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "", "arg0_index": [], "pred": "n\u00e3o j\u00e1 possui", "pred_index": [31, 33], "arg1": "o 33% do Telerate", "arg1_index": [27, 30], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "E ele se livrou de baixo - as empresas de margem que simplesmente n\u00e3o estavam a ganhar dinheiro para a empresa .": [{"arg0": "ele", "arg0_index": [1, 1], "pred": "se livrou de", "pred_index": [2, 4], "arg1": "baixo - as empresas de margem", "arg1_index": [5, 10], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "baixo - as empresas de margem", "arg0_index": [5, 10], "pred": "n\u00e3o estavam a ganhar", "pred_index": [13, 16], "arg1": "dinheiro", "arg1_index": [17, 17], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Combinada PC e trabalho - Esta\u00e7\u00e3o de uso no Jap\u00e3o vai saltar at\u00e9 25% ao ano nos pr\u00f3ximos cinco anos , de acordo com alguns analistas , em compara\u00e7\u00e3o com cerca de 10% nos EUA .": [{"arg0": "Combinada PC e trabalho - Esta\u00e7\u00e3o de uso no Jap\u00e3o", "arg0_index": [0, 9], "pred": "vai saltar", "pred_index": [10, 11], "arg1": "saltar at\u00e9 25% ao ano", "arg1_index": [11, 15], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "25%", "arg0_index": [13, 13], "pred": "compara\u00e7\u00e3o com", "pred_index": [28, 29], "arg1": "cerca de 10% nos EUA", "arg1_index": [30, 34], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Neste explica\u00e7\u00e3o do prop\u00f3sito da Cria\u00e7\u00e3o \u00e9 que `` Deus desejava uma morada nos reinos inferiores '' - \u00e9 o homem que transforma o mundano , o mais baixo mundo em uma morada para Deus 'ess\u00eancia s .": [{"arg0": "do prop\u00f3sito da Cria\u00e7\u00e3o", "arg0_index": [2, 5], "pred": "\u00e9", "pred_index": [6, 6], "arg1": "que `` Deus desejava uma morada nos reinos inferiores ''", "arg1_index": [7, 16], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Deus", "arg0_index": [9, 9], "pred": "desejava", "pred_index": [10, 10], "arg1": "uma morada", "arg1_index": [11, 12], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "", "arg0_index": [], "pred": "\u00e9", "pred_index": [18, 18], "arg1": "homem que transforma o mundano , o mais baixo mundo em uma morada para Deus 'ess\u00eancia s", "arg1_index": [20, 36], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "homem", "arg0_index": [20, 20], "pred": "transforma", "pred_index": [22, 22], "arg1": "o mundano , o mais baixo mundo", "arg1_index": [23, 29], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Para o norte , ao longo e atrav\u00e9s da mesma fronteira , vivo alto-falantes ao de Lakha .": [{"arg0": "alto-falantes ao de Lakha", "arg0_index": [13, 16], "pred": "vivo", "pred_index": [12, 12], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "De acordo com os sul-coreanos , muitos coreanos tornaram-se v\u00edtimas de brutalidades japonesas durante o per\u00edodo colonial .": [{"arg0": "muitos coreanos", "arg0_index": [6, 7], "pred": "tornaram-se", "pred_index": [8, 8], "arg1": "v\u00edtimas de brutalidades japonesas", "arg1_index": [9, 12], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Ele define Wild Cards como `baixa probabilidade , eventos de alto impacto que , eles estavam a ocorrer , teria impacto severamente a condi\u00e7\u00e3o humana\" .": [{"arg0": "Ele", "arg0_index": [0, 0], "pred": "define", "pred_index": [1, 1], "arg1": "Wild Cards", "arg1_index": [2, 3], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "eles", "arg0_index": [14, 14], "pred": "ocorrer", "pred_index": [17, 17], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "eles", "arg0_index": [14, 14], "pred": "teria impacto severamente", "pred_index": [19, 21], "arg1": "a condi\u00e7\u00e3o humana\"", "arg1_index": [22, 24], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "No geral , as vendas de todos os fundos de investimento , excepto fundos do mercado monet\u00e1rio , caiu para US $ 1,9 bilh\u00f5es em setembro de US $ 4,2 bilh\u00f5es em agosto , disse o grupo de com\u00e9rcio .": [{"arg0": "as vendas de todos os fundos de investimento , excepto fundos do mercado monet\u00e1rio", "arg0_index": [3, 16], "pred": "caiu para", "pred_index": [18, 19], "arg1": "$ 1,9 bilh\u00f5es em setembro", "arg1_index": [21, 25], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "A fam\u00edlia acrolepiidae de mariposas s\u00e3o tamb\u00e9m conhecidos como mariposas falsos Diamondbacks .": [{"arg0": "A fam\u00edlia acrolepiidae de mariposas", "arg0_index": [0, 4], "pred": "s\u00e3o tamb\u00e9m conhecidos como", "pred_index": [5, 8], "arg1": "mariposas falsos Diamondbacks", "arg1_index": [9, 11], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Para evitar um segundo turno , um candidato teria que ganhar 50% dos votos - uma fa\u00e7anha que a maioria dos analistas consideram imposs\u00edvel com tantos candidatos em execu\u00e7\u00e3o .": [{"arg0": "um candidato", "arg0_index": [6, 7], "pred": "teria que ganhar", "pred_index": [8, 10], "arg1": "50% dos votos", "arg1_index": [11, 13], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "um candidato teria que ganhar 50% dos votos", "arg0_index": [6, 13], "pred": "evitar", "pred_index": [1, 1], "arg1": "um segundo turno", "arg1_index": [2, 4], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "maioria dos analistas", "arg0_index": [19, 21], "pred": "consideram", "pred_index": [22, 22], "arg1": "uma fa\u00e7anha", "arg1_index": [15, 16], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "O motor tinha turbocompressores , e produzido um anunciado em 5700 rpm e de torque em 8 libras de impulso .": [{"arg0": "O motor", "arg0_index": [0, 1], "pred": "tinha", "pred_index": [2, 2], "arg1": "turbocompressores", "arg1_index": [3, 3], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "O motor", "arg0_index": [0, 1], "pred": "produzido", "pred_index": [6, 6], "arg1": "um anunciado em 5700 rpm e de torque em 8 libras de impulso", "arg1_index": [7, 19], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Este traje tamb\u00e9m se tornou popular entre as mulheres de outras comunidades .": [{"arg0": "Este traje", "arg0_index": [0, 1], "pred": "tamb\u00e9m se tornou popular entre", "pred_index": [2, 6], "arg1": "mulheres de outras comunidades", "arg1_index": [8, 11], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Os pilares em uma linha no seu ambos os lados est\u00e3o de acordo com d\u00f3rico ou estilo grego e suas decora\u00e7\u00f5es s\u00e3o de acordo com o Templo Meenakshi em Madurai , em Tamil Nadu .": [{"arg0": "Os pilares em uma linha no seu ambos os lados", "arg0_index": [0, 9], "pred": "s\u00e3o de acordo com", "pred_index": [21, 24], "arg1": "d\u00f3rico ou estilo grego", "arg1_index": [14, 17], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "suas decora\u00e7\u00f5es", "arg0_index": [19, 20], "pred": "s\u00e3o de acordo com", "pred_index": [21, 24], "arg1": "o Templo Meenakshi em Madurai , em Tamil Nadu", "arg1_index": [25, 33], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Enquanto isso , em casa , Mitsubishi tem o controle de alguns grandes projectos .": [{"arg0": "Mitsubishi", "arg0_index": [6, 6], "pred": "tem o controle de", "pred_index": [7, 10], "arg1": "alguns grandes projectos", "arg1_index": [11, 13], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Ele tamb\u00e9m possui avan\u00e7ados sentidos e pode acompanhar as pessoas para grandes dist\u00e2ncias em terrenos abertos e os p\u00e9s s\u00e3o sens\u00edveis o suficiente para detectar sinais eletr\u00f4nicos atrav\u00e9s de paredes s\u00f3lidas e pisos .": [{"arg0": "Ele", "arg0_index": [0, 0], "pred": "possui", "pred_index": [2, 2], "arg1": "avan\u00e7ados sentidos", "arg1_index": [3, 4], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Ele", "arg0_index": [0, 0], "pred": "pode acompanhar", "pred_index": [6, 7], "arg1": "pessoas", "arg1_index": [9, 9], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "os p\u00e9s", "arg0_index": [17, 18], "pred": "s\u00e3o", "pred_index": [19, 19], "arg1": "sens\u00edveis o suficiente", "arg1_index": [20, 22], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "os p\u00e9s s\u00e3o", "arg0_index": [17, 19], "pred": "detectar", "pred_index": [24, 24], "arg1": "sinais eletr\u00f4nicos", "arg1_index": [25, 26], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Muitos chineses ultramarinos cujos antepassados vieram da \u00e1rea de Quanzhou , especialmente aqueles no sudeste da \u00c1sia , muitas vezes falam principalmente Hokkien em casa .": [{"arg0": "Muitos chineses ultramarinos cujos antepassados vieram da \u00e1rea de Quanzhou , especialmente aqueles no sudeste da \u00c1sia", "arg0_index": [0, 16], "pred": "muitas vezes falam principalmente", "pred_index": [18, 21], "arg1": "Hokkien", "arg1_index": [22, 22], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "antepassados", "arg0_index": [4, 4], "pred": "vieram da", "pred_index": [5, 6], "arg1": "\u00e1rea de Quanzhou", "arg1_index": [7, 9], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Se h\u00e1 algo 'estranho e n\u00e3o parece bom .": [{"arg0": "", "arg0_index": [], "pred": "h\u00e1", "pred_index": [1, 1], "arg1": "algo 'estranho", "arg1_index": [2, 3], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "", "arg0_index": [], "pred": "n\u00e3o parece", "pred_index": [5, 6], "arg1": "bom", "arg1_index": [7, 7], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "O senador Mitchell est\u00e1 confiante de que tem votos suficientes para bloquear essa medida um com a\u00e7\u00f5es processuais .": [{"arg0": "O senador Mitchell", "arg0_index": [0, 2], "pred": "est\u00e1 confiante", "pred_index": [3, 4], "arg1": "que tem votos suficientes para bloquear essa medida um com a\u00e7\u00f5es processuais", "arg1_index": [6, 17], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "que", "arg0_index": [6, 6], "pred": "tem", "pred_index": [7, 7], "arg1": "votos suficientes", "arg1_index": [8, 9], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "que", "arg0_index": [6, 6], "pred": "bloquear", "pred_index": [11, 11], "arg1": "essa medida", "arg1_index": [12, 13], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Os \u00faltimos 10 - notas exerc\u00edcio findo em cerca de 100 16 \\ / 32 para produzir 7,90% , em compara\u00e7\u00e3o com 100 11 \\ / 32 para produzir 7,93% na sexta-feira .": [{"arg0": "Os \u00faltimos 10 - notas", "arg0_index": [0, 4], "pred": "findo em", "pred_index": [6, 7], "arg1": "cerca de 100 16 \\ / 32", "arg1_index": [8, 14], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "cerca de 100 16 \\ / 32 para produzir 7,90%", "arg0_index": [8, 17], "pred": "compara\u00e7\u00e3o com", "pred_index": [20, 21], "arg1": "100 11 \\ / 32 para produzir 7,93% na sexta-feira", "arg1_index": [22, 31], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Como resultado , o rio mais baixo teve que ser dragado tr\u00eas vezes em dois anos .": [{"arg0": "o rio mais baixo", "arg0_index": [3, 6], "pred": "teve que ser dragado", "pred_index": [7, 10], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "No entanto , o problema \u00e9 que uma vez que a maioria das poison pills s\u00e3o adotados , eles sobrevivem para sempre .": [{"arg0": "o problema", "arg0_index": [3, 4], "pred": "\u00e9", "pred_index": [5, 5], "arg1": "que a maioria das poison pills s\u00e3o adotados , eles sobrevivem para sempre", "arg1_index": [9, 21], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "a maioria das poison", "arg0_index": [10, 13], "pred": "s\u00e3o adotados", "pred_index": [15, 16], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "eles", "arg0_index": [18, 18], "pred": "sobrevivem", "pred_index": [19, 19], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "As deb\u00eantures subordinadas seniores vencimento em 2004 s\u00e3o direccionadas para ser oferecido a um rendimento de 12 entre 5 \\/ 8 % a 12 3 \\/ 4 % .": [{"arg0": "As deb\u00eantures subordinadas seniores vencimento em 2004", "arg0_index": [0, 6], "pred": "s\u00e3o direccionadas para ser oferecido a", "pred_index": [7, 12], "arg1": "um rendimento de 12 entre 5 \\/ 8 % a 12 3 \\/ 4 %", "arg1_index": [13, 27], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "As deb\u00eantures subordinadas seniores", "arg0_index": [0, 3], "pred": "vencimento", "pred_index": [4, 4], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Agora o Sr. Broberg , um advogado , afirma que ele 'jogo d gratuitamente .": [{"arg0": "Sr. Broberg", "arg0_index": [2, 3], "pred": "", "pred_index": [-1, -1], "arg1": "um advogado", "arg1_index": [5, 6], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Sr. Broberg", "arg0_index": [2, 3], "pred": "afirma", "pred_index": [8, 8], "arg1": "ele 'jogo d gratuitamente", "arg1_index": [10, 13], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "ele", "arg0_index": [10, 10], "pred": "'jogo d", "pred_index": [11, 12], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "O desemprego atingiu 27,6 % no Azerbaij\u00e3o , de 25,7 % em Tadzhikistan , 22,8 % no Uzbequist\u00e3o , 18,8 % em Turkmenia , 18 % na Arm\u00e9nia e 16,3 % na Quirgu\u00edzia , disse o jornal do Partido Comunista .": [{"arg0": "O desemprego", "arg0_index": [0, 1], "pred": "atingiu", "pred_index": [2, 2], "arg1": "27,6 %", "arg1_index": [3, 4], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "O desemprego", "arg0_index": [0, 1], "pred": "atingiu", "pred_index": [2, 2], "arg1": "25,7 %", "arg1_index": [9, 10], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "O desemprego", "arg0_index": [0, 1], "pred": "atingiu", "pred_index": [2, 2], "arg1": "22,8 %", "arg1_index": [14, 15], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "O desemprego", "arg0_index": [0, 1], "pred": "atingiu", "pred_index": [2, 2], "arg1": "18,8 %", "arg1_index": [19, 20], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "O desemprego", "arg0_index": [0, 1], "pred": "atingiu", "pred_index": [2, 2], "arg1": "18 %", "arg1_index": [24, 25], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "desemprego", "arg0_index": [1, 1], "pred": "atingiu", "pred_index": [2, 2], "arg1": "16,3 %", "arg1_index": [29, 30], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "`` As \u00fanicas pessoas que est\u00e3o voando s\u00e3o aqueles que t\u00eam a '' , disse Frank Moore , presidente da Associa\u00e7\u00e3o da Ind\u00fastria de Turismo da Austr\u00e1lia .": [{"arg0": "Frank Moore", "arg0_index": [15, 16], "pred": "", "pred_index": [-1, -1], "arg1": "presidente da Associa\u00e7\u00e3o da Ind\u00fastria de Turismo da Austr\u00e1lia", "arg1_index": [18, 26], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Frank Moore", "arg0_index": [15, 16], "pred": "disse", "pred_index": [14, 14], "arg1": "`` As \u00fanicas pessoas que est\u00e3o voando s\u00e3o aqueles que t\u00eam a ''", "arg1_index": [0, 12], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "As \u00fanicas pessoas que est\u00e3o voando", "arg0_index": [1, 6], "pred": "est\u00e3o", "pred_index": [5, 5], "arg1": "aqueles que t\u00eam a", "arg1_index": [8, 11], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "As \u00fanicas pessoas", "arg0_index": [1, 3], "pred": "est\u00e3o voando", "pred_index": [5, 6], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "O 2\u00ba Batalh\u00e3o da 13\u00aa Infantaria Leve foi levantada em Winchester em janeiro 1858 .": [{"arg0": "O 2\u00ba Batalh\u00e3o da 13\u00aa Infantaria Leve", "arg0_index": [0, 6], "pred": "foi levantada em", "pred_index": [7, 9], "arg1": "Winchester", "arg1_index": [10, 10], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "O redesenhado 2006 Ram SRT-10 veio em Mineral Grey Metallic , Inferno Vermelho , e Brilliant Bras\u00e3o Black Crystal Clear .": [{"arg0": "O redesenhado 2006 Ram SRT-10", "arg0_index": [0, 4], "pred": "veio em", "pred_index": [5, 6], "arg1": "Mineral Grey Metallic , Inferno Vermelho , e Brilliant Bras\u00e3o Black Crystal Clear", "arg1_index": [7, 19], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Tyabb tamb\u00e9m tem Aeroporto Tyabb , um aer\u00f3dromo privado , que atua h\u00e1 mais de trinta anos .": [{"arg0": "Tyabb", "arg0_index": [0, 0], "pred": "tem", "pred_index": [2, 2], "arg1": "Aeroporto Tyabb", "arg1_index": [3, 4], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Aeroporto Tyabb", "arg0_index": [3, 4], "pred": "", "pred_index": [-1, -1], "arg1": "um aer\u00f3dromo privado , que atua h\u00e1 mais de trinta anos", "arg1_index": [6, 16], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Aeroporto Tyabb", "arg0_index": [3, 4], "pred": "atua", "pred_index": [11, 11], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Norris McLaughlin \u00e9 um general - firme pr\u00e1tica que recentemente expandiu em especialidades como a banca , trabalho e trabalho ambiental .": [{"arg0": "Norris McLaughlin", "arg0_index": [0, 1], "pred": "\u00e9", "pred_index": [2, 2], "arg1": "um general - firme pr\u00e1tica", "arg1_index": [3, 7], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "um general - firme pr\u00e1tica", "arg0_index": [3, 7], "pred": "recentemente expandiu em", "pred_index": [9, 11], "arg1": "especialidades como a banca , trabalho e trabalho ambiental", "arg1_index": [12, 20], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Leite vendido \u00e0 na\u00e7\u00e3o 's latic\u00ednios plantas e revendedores m\u00e9dia de US $ 14,50 para cada cem libras , um aumento de 50 centavos de d\u00f3lar a partir de Setembro e at\u00e9 US $ 1,50 a partir de outubro de 1988 , segundo o departamento .": [{"arg0": "o departamento", "arg0_index": [43, 44], "pred": "segundo", "pred_index": [42, 42], "arg1": "Leite vendido \u00e0 na\u00e7\u00e3o 's latic\u00ednios plantas e revendedores m\u00e9dia de US $ 14,50 para cada cem libras , um aumento de 50 centavos de d\u00f3lar a partir de Setembro e at\u00e9 US $ 1,50 a partir de outubro de 1988", "arg1_index": [0, 40], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Leite", "arg0_index": [0, 0], "pred": "vendido \u00e0", "pred_index": [1, 2], "arg1": "na\u00e7\u00e3o 's latic\u00ednios plantas e revendedores", "arg1_index": [3, 8], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Leite vendido \u00e0 na\u00e7\u00e3o 's latic\u00ednios plantas e revendedores", "arg0_index": [0, 8], "pred": "m\u00e9dia de", "pred_index": [9, 10], "arg1": "$ 14,50", "arg1_index": [12, 13], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Em 2004 , o Brumbies terminou no topo da tabela do Super 12 , seis pontos de vantagem sobre a segunda melhor equipe .": [{"arg0": "o Brumbies", "arg0_index": [3, 4], "pred": "terminou", "pred_index": [5, 5], "arg1": "no topo da tabela do Super 12", "arg1_index": [6, 12], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "`` Se trabalhar financiamento de capital n\u00e3o for fornecido , '' disse ele , `` o RTC pode ter que retardar { vendas S & L } ou despejar ativos adquiridos por meio de vendas de fogo .": [{"arg0": "trabalhar financiamento de capital", "arg0_index": [2, 5], "pred": "n\u00e3o for fornecido", "pred_index": [6, 8], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "o RTC", "arg0_index": [15, 16], "pred": "pode ter que retardar", "pred_index": [17, 20], "arg1": "{ vendas S & L } ou despejar ativos adquiridos", "arg1_index": [21, 30], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Trabalhadores em duas minas chilenas , Los Bronces e El Soldado , que pertencem \u00e0 Exxon - propriedade do grupo Disputado Minera , vai votar quinta-feira se a greve depois de um dois - ano pacto de trabalho extremidades hoje .": [{"arg0": "Trabalhadores em duas minas chilenas , Los Bronces e El Soldado", "arg0_index": [0, 10], "pred": "pertencem \u00e0", "pred_index": [13, 14], "arg1": "Exxon - propriedade do grupo Disputado Minera", "arg1_index": [15, 21], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Trabalhadores em duas minas chilenas , Los Bronces e El Soldado", "arg0_index": [0, 10], "pred": "vai votar", "pred_index": [23, 24], "arg1": "se a greve depois de um dois - ano pacto de trabalho extremidades hoje", "arg1_index": [26, 39], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "um dois - ano pacto de trabalho", "arg0_index": [31, 37], "pred": "extremidades", "pred_index": [38, 38], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Trabalhadores em duas minas chilenas , Los Bronces e El Soldado", "arg0_index": [0, 10], "pred": "greve", "pred_index": [28, 28], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Na manh\u00e3 seguinte , a corrida deixou a cidade no caminho para os Pirin\u00e9us e parou no sub\u00farbio de Gradignan , na \u00e1rea universit\u00e1ria de La Casa .": [{"arg0": "a corrida", "arg0_index": [4, 5], "pred": "deixou", "pred_index": [6, 6], "arg1": "a cidade", "arg1_index": [7, 8], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "a corrida", "arg0_index": [4, 5], "pred": "parou", "pred_index": [15, 15], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Embora o Sr. Azoff n\u00e3o vai produzir filmes em primeiro lugar , \u00e9 poss\u00edvel que ele poderia faz\u00ea-lo mais tarde , disseram as fontes .": [{"arg0": "as fontes", "arg0_index": [22, 23], "pred": "disseram", "pred_index": [21, 21], "arg1": "Embora o Sr. Azoff n\u00e3o vai produzir filmes em primeiro lugar , \u00e9 poss\u00edvel que ele poderia faz\u00ea-lo mais tarde", "arg1_index": [0, 19], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Sr. Azoff", "arg0_index": [2, 3], "pred": "n\u00e3o vai produzir", "pred_index": [4, 6], "arg1": "filmes", "arg1_index": [7, 7], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Sr. Azoff", "arg0_index": [2, 3], "pred": "poderia faz\u00ea-lo", "pred_index": [16, 17], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "", "arg0_index": [], "pred": "\u00e9 poss\u00edvel", "pred_index": [12, 13], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "O carro usado em `` Stealth '' era um carro do membro da banda , e gravou apenas fora do est\u00fadio no estacionamento .": [{"arg0": "O carro usado em `` Stealth ''", "arg0_index": [0, 6], "pred": "era", "pred_index": [7, 7], "arg1": "um carro do membro da banda", "arg1_index": [8, 13], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "O carro usado em `` Stealth ''", "arg0_index": [0, 6], "pred": "gravou", "pred_index": [16, 16], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "O carro", "arg0_index": [0, 1], "pred": "usado em", "pred_index": [2, 3], "arg1": "`` Stealth ''", "arg1_index": [4, 6], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "A 41 - year - old Mr. Azoff , ex-rock 'n gerente de rolo , \u00e9 creditado com virar uma vez 's MCA - moribunda divis\u00e3o de m\u00fasica em seus seis anos na empresa .": [{"arg0": "Mr. Azoff", "arg0_index": [6, 7], "pred": "", "pred_index": [-1, -1], "arg1": "ex-rock 'n gerente de rolo", "arg1_index": [9, 13], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Mr. Azoff", "arg0_index": [6, 7], "pred": "\u00e9 creditado com", "pred_index": [15, 17], "arg1": "virar uma vez 's MCA - moribunda divis\u00e3o de m\u00fasica", "arg1_index": [18, 27], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Mr. Azoff", "arg0_index": [6, 7], "pred": "virar", "pred_index": [18, 18], "arg1": "uma vez 's MCA - moribunda divis\u00e3o de m\u00fasica", "arg1_index": [19, 27], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Na elei\u00e7\u00e3o de 1901 , ap\u00f3s o qual os oposicionistas sob George Leake foram capazes de formar um governo minorit\u00e1rio , Frank Wilson , ex-membro para Canning , ganhou o assento .": [{"arg0": "Frank Wilson", "arg0_index": [21, 22], "pred": "", "pred_index": [-1, -1], "arg1": "ex-membro para Canning", "arg1_index": [24, 26], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Frank Wilson", "arg0_index": [21, 22], "pred": "ganhou", "pred_index": [28, 28], "arg1": "o assento", "arg1_index": [29, 30], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "os oposicionistas sob George Leake", "arg0_index": [8, 12], "pred": "foram capazes de formar", "pred_index": [13, 16], "arg1": "um governo minorit\u00e1rio", "arg1_index": [17, 19], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Por que o `` Ep\u00edlogo '' est\u00e1 faltando \u00e9 desconhecida .": [{"arg0": "Por que o `` Ep\u00edlogo '' est\u00e1 faltando", "arg0_index": [0, 7], "pred": "\u00e9", "pred_index": [8, 8], "arg1": "desconhecida", "arg1_index": [9, 9], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "o `` Ep\u00edlogo ''", "arg0_index": [2, 5], "pred": "est\u00e1 faltando", "pred_index": [6, 7], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "`` A maioria das pessoas - seja em Toledo , Tucson ou Topeka - N\u00e3o tenho a menor id\u00e9ia de quem somos '' , diz Guy L. Smith , Philip Morris 's vice-presidente de assuntos corporativos .": [{"arg0": "Guy L. Smith", "arg0_index": [25, 27], "pred": "", "pred_index": [-1, -1], "arg1": "Philip Morris 's vice-presidente de assuntos corporativos", "arg1_index": [29, 35], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Guy L. Smith", "arg0_index": [25, 27], "pred": "diz", "pred_index": [24, 24], "arg1": "`` A maioria das pessoas - seja em Toledo , Tucson ou Topeka - N\u00e3o tenho a menor id\u00e9ia de quem somos ''", "arg1_index": [0, 22], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "A maioria das pessoas - seja em Toledo , Tucson ou Topeka", "arg0_index": [1, 12], "pred": "N\u00e3o tenho", "pred_index": [14, 15], "arg1": "id\u00e9ia de quem somos", "arg1_index": [18, 21], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "A sequ\u00eancia de cr\u00e9ditos de abertura para a recolha foi dirigido por Hanada Daizaburo .": [{"arg0": "A sequ\u00eancia de cr\u00e9ditos de abertura para a recolha", "arg0_index": [0, 8], "pred": "foi dirigido por", "pred_index": [9, 11], "arg1": "Hanada Daizaburo", "arg1_index": [12, 13], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Durante o per\u00edodo de entressafra da Rugby Union ACT foi rebatizado o ACT e do Sul NSW Uni\u00e3o de R\u00e2guebi , eo nome da equipe foi mudado para Brumbies Rugby .": [{"arg0": "Rugby Union ACT", "arg0_index": [6, 8], "pred": "foi rebatizado", "pred_index": [9, 10], "arg1": "o ACT e do Sul NSW Uni\u00e3o de R\u00e2guebi", "arg1_index": [11, 19], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "nome da equipe", "arg0_index": [22, 24], "pred": "foi mudado para", "pred_index": [25, 27], "arg1": "Brumbies Rugby", "arg1_index": [28, 29], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "O oficial ENFERMAGEM CHEFE pode ser respons\u00e1vel por mais de 1.000 funcion\u00e1rios e pelo menos um - ter\u00e7o de um or\u00e7amento do hospital 's ; a enfermeira-chefe normalmente supervisiona at\u00e9 80 funcion\u00e1rios e US $ 8 milh\u00f5es .": [{"arg0": "O oficial ENFERMAGEM CHEFE", "arg0_index": [0, 3], "pred": "pode ser respons\u00e1vel por", "pred_index": [4, 7], "arg1": "mais de 1.000 funcion\u00e1rios e pelo menos um - ter\u00e7o de um or\u00e7amento do hospital 's", "arg1_index": [8, 23], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "a enfermeira-chefe", "arg0_index": [25, 26], "pred": "normalmente supervisiona", "pred_index": [27, 28], "arg1": "at\u00e9 80 funcion\u00e1rios e US $ 8 milh\u00f5es", "arg1_index": [29, 36], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "O medidor externo \u00e9 geralmente leg\u00edvel diretamente , ea maioria tamb\u00e9m incorporam um remetente eletr\u00f4nico para operar um medidor de combust\u00edvel no painel .": [{"arg0": "O medidor externo", "arg0_index": [0, 2], "pred": "\u00e9", "pred_index": [3, 3], "arg1": "geralmente leg\u00edvel diretamente", "arg1_index": [4, 6], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "ea maioria", "arg0_index": [8, 9], "pred": "incorporam", "pred_index": [11, 11], "arg1": "um remetente eletr\u00f4nico", "arg1_index": [12, 14], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "maioria", "arg0_index": [9, 9], "pred": "operar", "pred_index": [16, 16], "arg1": "um medidor de combust\u00edvel", "arg1_index": [17, 20], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "A economia de Ostrov \u00e9 baseada em ind\u00fastrias de alimentos , eletr\u00f4nicos e t\u00eaxteis .": [{"arg0": "A economia de Ostrov", "arg0_index": [0, 3], "pred": "\u00e9 baseada em", "pred_index": [4, 6], "arg1": "ind\u00fastrias de alimentos , eletr\u00f4nicos e t\u00eaxteis", "arg1_index": [7, 13], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Sra Marcos n\u00e3o admitiu que ela apresentou quaisquer documentos , tais como aqueles procurados pelo governo .": [{"arg0": "Sra Marcos", "arg0_index": [0, 1], "pred": "n\u00e3o admitiu", "pred_index": [2, 3], "arg1": "que ela apresentou quaisquer documentos , tais como aqueles procurados pelo governo", "arg1_index": [4, 15], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Sra Marcos", "arg0_index": [0, 1], "pred": "apresentou", "pred_index": [6, 6], "arg1": "quaisquer documentos , tais como aqueles procurados pelo governo", "arg1_index": [7, 15], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "aqueles", "arg0_index": [12, 12], "pred": "procurados pelo", "pred_index": [13, 14], "arg1": "governo", "arg1_index": [15, 15], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Godzilla e Battra lutou no fundo do oceano , at\u00e9 que causou um racha abrir entre as placas tect\u00f4nicas .": [{"arg0": "Godzilla e Battra", "arg0_index": [0, 2], "pred": "lutou", "pred_index": [3, 3], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Godzilla e Battra", "arg0_index": [0, 2], "pred": "causou", "pred_index": [11, 11], "arg1": "um racha", "arg1_index": [12, 13], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "racha", "arg0_index": [13, 13], "pred": "abrir", "pred_index": [14, 14], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Rolls - Royce Motor Cars Inc. disse que espera que suas vendas nos EUA de permanecer est\u00e1vel em cerca de 1.200 carros em 1990 .": [{"arg0": "Rolls - Royce Motor Cars Inc.", "arg0_index": [0, 5], "pred": "disse", "pred_index": [6, 6], "arg1": "que espera que suas vendas nos EUA de permanecer est\u00e1vel em cerca de 1.200 carros em 1990", "arg1_index": [7, 23], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Rolls - Royce Motor Cars Inc.", "arg0_index": [0, 5], "pred": "espera", "pred_index": [8, 8], "arg1": "suas vendas nos EUA", "arg1_index": [10, 13], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "suas vendas nos EUA", "arg0_index": [10, 13], "pred": "permanecer est\u00e1vel em", "pred_index": [15, 17], "arg1": "cerca de 1.200 carros", "arg1_index": [18, 21], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Atlas de Andrea Bianco de 1436 compreende dez folhas de pergaminho , medi\u00e7\u00e3o , em uma do s\u00e9culo 18 de ligao .": [{"arg0": "Atlas de Andrea Bianco de 1436", "arg0_index": [0, 5], "pred": "compreende", "pred_index": [6, 6], "arg1": "dez folhas de pergaminho", "arg1_index": [7, 10], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Atlas de Andrea Bianco de 1436", "arg0_index": [0, 5], "pred": "medi\u00e7\u00e3o", "pred_index": [13, 13], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Vernon E. Jordan foi eleito para o conselho de esta preocupa\u00e7\u00e3o servi\u00e7os de transporte .": [{"arg0": "Vernon E. Jordan", "arg0_index": [0, 2], "pred": "foi eleito para", "pred_index": [3, 5], "arg1": "o conselho de esta preocupa\u00e7\u00e3o servi\u00e7os de transporte", "arg1_index": [6, 13], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Em 1954 , um fot\u00f3grafo not\u00edcias KOMO descobriu uma maneira de desenvolver filme colorido em um novo processo que levou apenas algumas horas em vez de dias .": [{"arg0": "um fot\u00f3grafo not\u00edcias KOMO", "arg0_index": [3, 6], "pred": "descobriu", "pred_index": [7, 7], "arg1": "uma maneira", "arg1_index": [8, 9], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "", "arg0_index": [], "pred": "desenvolver", "pred_index": [11, 11], "arg1": "filme colorido", "arg1_index": [12, 13], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "um novo processo", "arg0_index": [15, 17], "pred": "levou", "pred_index": [19, 19], "arg1": "apenas algumas horas", "arg1_index": [20, 22], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "A taxa de desconto em tr\u00eas - m\u00eas t\u00edtulos do Tesouro aumentou ligeiramente da taxa m\u00e9dia no leil\u00e3o de segunda-feira a 7,79% para um t\u00edtulo - rendimento equivalente a 8,04% .": [{"arg0": "A taxa de desconto em tr\u00eas - m\u00eas t\u00edtulos do Tesouro", "arg0_index": [0, 10], "pred": "aumentou ligeiramente", "pred_index": [11, 12], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Como resultado , torna-se claro que o micr\u00f3bio n\u00e3o pode sobreviver fora de um intervalo de pH estreito .": [{"arg0": "", "arg0_index": [], "pred": "torna-se", "pred_index": [3, 3], "arg1": "claro", "arg1_index": [4, 4], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "o micr\u00f3bio", "arg0_index": [6, 7], "pred": "n\u00e3o pode sobreviver", "pred_index": [8, 10], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Mas , em seguida , o juiz O'Kicki muitas vezes se comportou como um homem que queria ser rei - e , dizem alguns , um arrogante e abusivo .": [{"arg0": "juiz O'Kicki", "arg0_index": [6, 7], "pred": "muitas vezes se comportou como", "pred_index": [8, 12], "arg1": "um homem que queria ser rei", "arg1_index": [13, 18], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Ao aumentar o n\u00famero de PCs que usa de 66 a 1.000 , Omron Tateishi Electronics Co. , de Kyoto , espera n\u00e3o s\u00f3 para facilitar determinadas tarefas , mas tamb\u00e9m para transformar a forma como a empresa \u00e9 administrada .": [{"arg0": "Omron Tateishi Electronics Co. , de Kyoto", "arg0_index": [13, 19], "pred": "espera", "pred_index": [21, 21], "arg1": "n\u00e3o s\u00f3 para facilitar determinadas tarefas , mas tamb\u00e9m para transformar a forma como a empresa \u00e9 administrada", "arg1_index": [22, 39], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Omron Tateishi Electronics Co. , de Kyoto", "arg0_index": [13, 19], "pred": "aumentar", "pred_index": [1, 1], "arg1": "o n\u00famero de PCs que usa", "arg1_index": [2, 7], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "que", "arg0_index": [6, 6], "pred": "usa", "pred_index": [7, 7], "arg1": "PCs", "arg1_index": [5, 5], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "aumentar o n\u00famero de PCs que usa de 66 a 1.000", "arg0_index": [1, 11], "pred": "facilitar", "pred_index": [25, 25], "arg1": "determinadas tarefas", "arg1_index": [26, 27], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "aumentar o n\u00famero de PCs que usa de 66 a 1.000", "arg0_index": [1, 11], "pred": "transformar", "pred_index": [32, 32], "arg1": "a forma como a empresa \u00e9 administrada", "arg1_index": [33, 39], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "a empresa", "arg0_index": [36, 37], "pred": "\u00e9 administrada", "pred_index": [38, 39], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "No inverno de 1976 , a Knievel foi marcada para um grande salto em Chicago , Illinois .": [{"arg0": "Knievel", "arg0_index": [6, 6], "pred": "foi marcada para", "pred_index": [7, 9], "arg1": "um grande salto", "arg1_index": [10, 12], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Uma meia - d\u00fazia de autoridades espaciais sovi\u00e9ticos , em T\u00f3quio em julho para uma exposi\u00e7\u00e3o , parou para ver os seus hom\u00f3logos na Ag\u00eancia Nacional do Jap\u00e3o Desenvolvimento Espacial .": [{"arg0": "Uma meia - d\u00fazia de autoridades espaciais sovi\u00e9ticos", "arg0_index": [0, 7], "pred": "parou", "pred_index": [17, 17], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Uma meia - d\u00fazia de autoridades espaciais sovi\u00e9ticos", "arg0_index": [0, 7], "pred": "ver", "pred_index": [19, 19], "arg1": "seus hom\u00f3logos", "arg1_index": [21, 22], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "tecnologia RISC acelera um computador , simplificando o software interno .": [{"arg0": "tecnologia RISC", "arg0_index": [0, 1], "pred": "acelera", "pred_index": [2, 2], "arg1": "um computador", "arg1_index": [3, 4], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "tecnologia RISC", "arg0_index": [0, 1], "pred": "simplificando", "pred_index": [6, 6], "arg1": "o software interno", "arg1_index": [7, 9], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "A partir de `` um vento na porta '' , Sandy aspira se tornar um banqueiro , com o fundamento de que \u00e9 pr\u00e1tico e lucrativo .": [{"arg0": "Sandy", "arg0_index": [10, 10], "pred": "aspira se tornar", "pred_index": [11, 13], "arg1": "um banqueiro", "arg1_index": [14, 15], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "que", "arg0_index": [21, 21], "pred": "\u00e9", "pred_index": [22, 22], "arg1": "pr\u00e1tico e lucrativo", "arg1_index": [23, 25], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Estes feixes derivam de uma fonte de energia c\u00f3smica chamada de `` Omega Effect '' .": [{"arg0": "Estes feixes derivam de uma fonte de energia c\u00f3smica", "arg0_index": [0, 8], "pred": "chamada", "pred_index": [9, 9], "arg1": "de `` Omega Effect ''", "arg1_index": [10, 14], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "L\u00edngua B , em seguida , come\u00e7a a suplantar L\u00edngua A : os alto-falantes de L\u00edngua A abandonar sua pr\u00f3pria l\u00edngua em favor da outra l\u00edngua , geralmente porque eles acreditam que ele ir\u00e1 ajud\u00e1 los a alcan\u00e7ar determinados objetivos dentro do governo , local de trabalho e em ambientes sociais .": [{"arg0": "L\u00edngua B", "arg0_index": [0, 1], "pred": "come\u00e7a a suplantar", "pred_index": [6, 8], "arg1": "L\u00edngua A", "arg1_index": [9, 10], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "os alto-falantes de L\u00edngua A", "arg0_index": [12, 16], "pred": "abandonar", "pred_index": [17, 17], "arg1": "sua pr\u00f3pria l\u00edngua", "arg1_index": [18, 20], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "eles", "arg0_index": [29, 29], "pred": "acreditam", "pred_index": [30, 30], "arg1": "que ele ir\u00e1 ajud\u00e1 los a alcan\u00e7ar determinados objetivos dentro do governo , local de trabalho e em ambientes sociais", "arg1_index": [31, 50], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "ele", "arg0_index": [32, 32], "pred": "ir\u00e1 ajud\u00e1", "pred_index": [33, 34], "arg1": "los", "arg1_index": [35, 35], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "los", "arg0_index": [35, 35], "pred": "alcan\u00e7ar", "pred_index": [37, 37], "arg1": "determinados objetivos dentro do governo , local de trabalho e em ambientes sociais", "arg1_index": [38, 50], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Os executivos haviam lucrado generosamente atrav\u00e9s da constru\u00e7\u00e3o de American National Can Co. , principal ativo 's Triangle .": [{"arg0": "Os executivos", "arg0_index": [0, 1], "pred": "haviam lucrado generosamente", "pred_index": [2, 4], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Os executivos", "arg0_index": [0, 1], "pred": "constru\u00e7\u00e3o", "pred_index": [7, 7], "arg1": "American National Can Co. , principal ativo 's Triangle", "arg1_index": [9, 17], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Mr. Phelan \u00e9 um diplomata h\u00e1bil que normalmente parece ser solidamente no controle de fac\u00e7\u00f5es a placa 's Big .": [{"arg0": "Mr. Phelan", "arg0_index": [0, 1], "pred": "\u00e9", "pred_index": [2, 2], "arg1": "um diplomata h\u00e1bil", "arg1_index": [3, 5], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Mr. Phelan", "arg0_index": [0, 1], "pred": "normalmente parece ser", "pred_index": [7, 9], "arg1": "solidamente no controle de fac\u00e7\u00f5es a placa 's Big", "arg1_index": [10, 18], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Costumava haver um albergue mas fechada em outubro de 2008 eo edif\u00edcio , desde ent\u00e3o , reaberto como Keld Lodge , um hotel com bar e restaurante .": [{"arg0": "", "arg0_index": [], "pred": "Costumava haver", "pred_index": [0, 1], "arg1": "um hotel", "arg1_index": [21, 22], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "um albergue", "arg0_index": [2, 3], "pred": "fechada", "pred_index": [5, 5], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "eo edif\u00edcio", "arg0_index": [10, 11], "pred": "reaberto como", "pred_index": [16, 17], "arg1": "Keld Lodge", "arg1_index": [18, 19], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Keld Lodge", "arg0_index": [18, 19], "pred": "", "pred_index": [-1, -1], "arg1": "com bar e restaurante", "arg1_index": [23, 26], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Agora que a decis\u00e3o New York foi deixado intacto , outros estados podem seguir o exemplo .": [{"arg0": "a decis\u00e3o New York", "arg0_index": [2, 5], "pred": "foi deixado", "pred_index": [6, 7], "arg1": "intacto", "arg1_index": [8, 8], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "outros estados", "arg0_index": [10, 11], "pred": "podem seguir", "pred_index": [12, 13], "arg1": "o exemplo", "arg1_index": [14, 15], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Auxiliando no processo de grava\u00e7\u00e3o foram Fernando Cabello e dois amigos do grupo , Eva Dalda e Lydia Iovanne .": [{"arg0": "Auxiliando no processo de grava\u00e7\u00e3o", "arg0_index": [0, 4], "pred": "foram", "pred_index": [5, 5], "arg1": "Fernando Cabello e dois amigos do grupo , Eva Dalda e Lydia Iovanne", "arg1_index": [6, 18], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Fernando Cabello e dois amigos do grupo , Eva Dalda e Lydia Iovanne", "arg0_index": [6, 18], "pred": "Auxiliando no", "pred_index": [0, 1], "arg1": "processo de grava\u00e7\u00e3o", "arg1_index": [2, 4], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Em vez agourentamente , estudos com coelhos revelam que o RU-486 pode causar defeitos de nascimento , Lancet , revista m\u00e9dica brit\u00e2nica , relataram em 1987 .": [{"arg0": "estudos com coelhos", "arg0_index": [4, 6], "pred": "revelam", "pred_index": [7, 7], "arg1": "que o RU-486 pode causar defeitos de nascimento", "arg1_index": [8, 15], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Lancet", "arg0_index": [17, 17], "pred": "", "pred_index": [-1, -1], "arg1": "revista m\u00e9dica brit\u00e2nica", "arg1_index": [19, 21], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Lancet", "arg0_index": [17, 17], "pred": "relataram", "pred_index": [23, 23], "arg1": "estudos com coelhos revelam que o RU-486 pode causar defeitos de nascimento", "arg1_index": [4, 15], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "RU-486", "arg0_index": [10, 10], "pred": "pode causar", "pred_index": [11, 12], "arg1": "defeitos de nascimento", "arg1_index": [13, 15], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Com vers\u00f5es em 1/48 , 1/72 , 1/96 e 1/144 escala , Big Gun modelo clubes Navio de combate t\u00eam provis\u00f5es para calibre canh\u00e3o e espessura armadura para ser escala de acordo com o que existia na embarca\u00e7\u00e3o prot\u00f3tipo .": [{"arg0": "Big Gun modelo clubes Navio de combate", "arg0_index": [12, 18], "pred": "t\u00eam provis\u00f5es para", "pred_index": [19, 21], "arg1": "calibre canh\u00e3o e espessura armadura", "arg1_index": [22, 26], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "calibre canh\u00e3o e espessura armadura", "arg0_index": [22, 26], "pred": "ser escala", "pred_index": [28, 29], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Al\u00e9m disso os pr\u00e9mios pagos pelo governo EUA em uma compra de cobre para a Casa da Moeda EUA foram inferiores ao esperado , e agiu como um depressor de pre\u00e7os , disseram analistas .": [{"arg0": "analistas", "arg0_index": [33, 33], "pred": "disseram", "pred_index": [32, 32], "arg1": "os pr\u00e9mios pagos pelo governo EUA em uma compra de cobre para a Casa da Moeda EUA foram inferiores ao esperado , e agiu como um depressor de pre\u00e7os", "arg1_index": [2, 30], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "os pr\u00e9mios pagos pelo governo EUA em uma compra de cobre para a Casa da Moeda EUA", "arg0_index": [2, 18], "pred": "foram", "pred_index": [19, 19], "arg1": "inferiores", "arg1_index": [20, 20], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "os pr\u00e9mios pagos pelo governo EUA em uma compra de cobre para a Casa da Moeda EUA", "arg0_index": [2, 18], "pred": "agiu como", "pred_index": [25, 26], "arg1": "um depressor de pre\u00e7os", "arg1_index": [27, 30], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "os pr\u00e9mios", "arg0_index": [2, 3], "pred": "pagos pelo", "pred_index": [4, 5], "arg1": "governo EUA", "arg1_index": [6, 7], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Na Guerra da Crim\u00e9ia , os 5o Protetores do Dragoon fazia parte da Pesada Brigada de Cavalaria e foi enviado para o Mar Negro em 1854 .": [{"arg0": "os 5o Protetores do Dragoon", "arg0_index": [5, 9], "pred": "fazia parte da", "pred_index": [10, 12], "arg1": "Pesada Brigada de Cavalaria", "arg1_index": [13, 16], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "os 5o Protetores do Dragoon", "arg0_index": [5, 9], "pred": "foi enviado para", "pred_index": [18, 20], "arg1": "o Mar Negro", "arg1_index": [21, 23], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Piffaro geralmente executa uma s\u00e9rie de concertos de 4-5 concertos por ano na Filad\u00e9lfia , al\u00e9m de turn\u00eas por todo os Estados Unidos , Canad\u00e1 , Europa e em outros lugares .": [{"arg0": "Piffaro", "arg0_index": [0, 0], "pred": "geralmente executa", "pred_index": [1, 2], "arg1": "uma s\u00e9rie de concertos de 4-5 concertos", "arg1_index": [3, 9], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Piffaro", "arg0_index": [0, 0], "pred": "turn\u00eas por todo", "pred_index": [17, 19], "arg1": "os Estados Unidos , Canad\u00e1 , Europa e em outros lugares", "arg1_index": [20, 30], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "`` Nada pode ser melhor do que este '' , diz Don Sider , propriet\u00e1rio dos em West Palm Beach Tropics .": [{"arg0": "Don Sider", "arg0_index": [11, 12], "pred": "", "pred_index": [-1, -1], "arg1": "propriet\u00e1rio dos em West Palm Beach Tropics", "arg1_index": [14, 20], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Don Sider", "arg0_index": [11, 12], "pred": "diz", "pred_index": [10, 10], "arg1": "`` Nada pode ser melhor do que este ''", "arg1_index": [0, 8], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Nada", "arg0_index": [1, 1], "pred": "pode ser", "pred_index": [2, 3], "arg1": "melhor", "arg1_index": [4, 4], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "parcela de responsabilidade de cada empresa 's seria baseado em sua participa\u00e7\u00e3o no mercado nacional DES .": [{"arg0": "parcela de responsabilidade de cada empresa 's", "arg0_index": [0, 6], "pred": "seria baseado em", "pred_index": [7, 9], "arg1": "sua participa\u00e7\u00e3o no mercado nacional DES", "arg1_index": [10, 15], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Watson foi o fundador e editor do `` newcritics.com '' , uma revista online de m\u00eddia e artes cr\u00edtica lan\u00e7ada em janeiro de 2007 e fechou em junho de 2009 .": [{"arg0": "Watson", "arg0_index": [0, 0], "pred": "foi", "pred_index": [1, 1], "arg1": "o fundador e editor do `` newcritics.com ''", "arg1_index": [2, 9], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "`` newcritics.com ''", "arg0_index": [7, 9], "pred": "", "pred_index": [-1, -1], "arg1": "uma revista online de m\u00eddia e artes cr\u00edtica lan\u00e7ada em janeiro de 2007 e fechou em junho de 2009", "arg1_index": [11, 29], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "`` newcritics.com ''", "arg0_index": [7, 9], "pred": "lan\u00e7ada em", "pred_index": [19, 20], "arg1": "janeiro de 2007", "arg1_index": [21, 23], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "`` newcritics.com ''", "arg0_index": [7, 9], "pred": "fechou em", "pred_index": [25, 26], "arg1": "em junho de 2009", "arg1_index": [26, 29], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "No norte e leste habitantes falam Bumthangkha , e no extremo sudeste Khengkha \u00e9 falado .": [{"arg0": "habitantes", "arg0_index": [4, 4], "pred": "falam", "pred_index": [5, 5], "arg1": "Bumthangkha", "arg1_index": [6, 6], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Khengkha", "arg0_index": [12, 12], "pred": "\u00e9 falado", "pred_index": [13, 14], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Transferido para Key West , Florida , em 1 de Junho de 1941 , `` R-11 '' continuou seus deveres navio de treinamento em todo o restante de sua carreira .": [{"arg0": "`` R-11 ''", "arg0_index": [14, 16], "pred": "continuou", "pred_index": [17, 17], "arg1": "seus deveres navio de treinamento", "arg1_index": [18, 22], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "`` R-11 ''", "arg0_index": [14, 16], "pred": "Transferido para", "pred_index": [0, 1], "arg1": "Key West , Florida", "arg1_index": [2, 5], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Um candidato \u00e9 um acidente , na extremidade oeste da Ilha Manitoulin no Lago Huron , com outro naufr\u00e1gio perto de Escanaba , Michigan , tamb\u00e9m proposto .": [{"arg0": "Um candidato", "arg0_index": [0, 1], "pred": "\u00e9", "pred_index": [2, 2], "arg1": "um acidente", "arg1_index": [3, 4], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "outro naufr\u00e1gio", "arg0_index": [17, 18], "pred": "proposto", "pred_index": [26, 26], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "O pre\u00e7o da a\u00e7\u00e3o foi definhando em cerca de 400 pence antes de 19 de setembro an\u00fancio da Ford de seu interesse em uma participa\u00e7\u00e3o minorit\u00e1ria .": [{"arg0": "O pre\u00e7o da a\u00e7\u00e3o", "arg0_index": [0, 3], "pred": "foi", "pred_index": [4, 4], "arg1": "definhando", "arg1_index": [5, 5], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "modernos m\u00e9todos educacionais foram mais amplamente espalhados por todo o Imp\u00e9rio , eo pa\u00eds embarcou em um esquema de desenvolvimento e planos de moderniza\u00e7\u00e3o , temperada por tradi\u00e7\u00f5es et\u00edopes , e no \u00e2mbito da antiga estrutura mon\u00e1rquica do Estado .": [{"arg0": "modernos m\u00e9todos educacionais", "arg0_index": [0, 2], "pred": "foram mais amplamente espalhados por todo", "pred_index": [3, 8], "arg1": "o Imp\u00e9rio", "arg1_index": [9, 10], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "pa\u00eds", "arg0_index": [13, 13], "pred": "embarcou em", "pred_index": [14, 15], "arg1": "um esquema de desenvolvimento e planos de moderniza\u00e7\u00e3o", "arg1_index": [16, 23], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "um esquema de desenvolvimento e planos", "arg0_index": [16, 21], "pred": "temperada por", "pred_index": [25, 26], "arg1": "tradi\u00e7\u00f5es et\u00edopes", "arg1_index": [27, 28], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Ele subiu 4,8% para os 12 meses encerrados em junho e 4,7% nos 12 meses findos em setembro de 1988 .": [{"arg0": "Ele", "arg0_index": [0, 0], "pred": "subiu", "pred_index": [1, 1], "arg1": "4,8%", "arg1_index": [2, 2], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Ele", "arg0_index": [0, 0], "pred": "encerrados em", "pred_index": [7, 8], "arg1": "junho", "arg1_index": [9, 9], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Ele", "arg0_index": [0, 0], "pred": "subiu", "pred_index": [1, 1], "arg1": "4,7%", "arg1_index": [11, 11], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Ele", "arg0_index": [0, 0], "pred": "findos em", "pred_index": [15, 16], "arg1": "setembro de 1988", "arg1_index": [17, 19], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Keibler , em seguida , pediu tempo para aparecer no `` Dan\u00e7ando com as Estrelas '' .": [{"arg0": "Keibler", "arg0_index": [0, 0], "pred": "pediu", "pred_index": [5, 5], "arg1": "tempo", "arg1_index": [6, 6], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Keibler", "arg0_index": [0, 0], "pred": "aparecer no", "pred_index": [8, 9], "arg1": "`` Dan\u00e7ando com as Estrelas ''", "arg1_index": [10, 15], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Voltando para casa , Ballard entrega seu relat\u00f3rio , que seus superiores se recusam a acreditar .": [{"arg0": "Ballard", "arg0_index": [4, 4], "pred": "Voltando para", "pred_index": [0, 1], "arg1": "casa", "arg1_index": [2, 2], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Ballard", "arg0_index": [4, 4], "pred": "entrega", "pred_index": [5, 5], "arg1": "seu relat\u00f3rio", "arg1_index": [6, 7], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "seus superiores", "arg0_index": [10, 11], "pred": "se recusam a acreditar", "pred_index": [12, 15], "arg1": "seu relat\u00f3rio", "arg1_index": [6, 7], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Considerado como um todo , o Sr. Lane disse , os registros exigidos nos termos das regras propostas `` ser\u00e1 pelo menos t\u00e3o eficaz , se n\u00e3o mais , para os investidores seguinte transa\u00e7\u00f5es . ''": [{"arg0": "Sr. Lane", "arg0_index": [6, 7], "pred": "disse", "pred_index": [8, 8], "arg1": "os registros exigidos nos termos das regras propostas `` ser\u00e1 pelo menos t\u00e3o eficaz , se n\u00e3o mais , para os investidores seguinte transa\u00e7\u00f5es . ''", "arg1_index": [10, 35], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "os registros exigidos nos termos das regras propostas", "arg0_index": [10, 17], "pred": "ser\u00e1", "pred_index": [19, 19], "arg1": "pelo menos t\u00e3o eficaz", "arg1_index": [20, 23], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "investidores", "arg0_index": [31, 31], "pred": "seguinte", "pred_index": [32, 32], "arg1": "transa\u00e7\u00f5es", "arg1_index": [33, 33], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "O processo Lone Star Steel tamb\u00e9m pede ao Tribunal de Justi\u00e7a que decide que Lone Star Technologies \u00e9 co-respons\u00e1vel por um pagamento de pens\u00e3o $ 4,5 milh\u00f5es de Lone Star Steel que foi devido , mas n\u00e3o foi pago , em Setembro e que a empresa-m\u00e3e n\u00e3o pode recuperar o montante de sua subsidi\u00e1ria se a empresa-m\u00e3e faz o pagamento .": [{"arg0": "O processo Lone Star Steel", "arg0_index": [0, 4], "pred": "pede", "pred_index": [6, 6], "arg1": "ao Tribunal de Justi\u00e7a", "arg1_index": [7, 10], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "ao Tribunal de Justi\u00e7a", "arg0_index": [7, 10], "pred": "decide", "pred_index": [12, 12], "arg1": "que Lone Star Technologies \u00e9 co-respons\u00e1vel por um pagamento de pens\u00e3o $ 4,5 milh\u00f5es de Lone Star Steel que foi devido , mas n\u00e3o foi pago , em Setembro e que a empresa-m\u00e3e n\u00e3o pode recuperar o montante de sua subsidi\u00e1ria se a empresa-m\u00e3e faz o pagamento", "arg1_index": [13, 59], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Lone Star Technologies", "arg0_index": [14, 16], "pred": "\u00e9 co-respons\u00e1vel por", "pred_index": [17, 19], "arg1": "um pagamento de pens\u00e3o $ 4,5 milh\u00f5es de Lone Star Steel", "arg1_index": [20, 30], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "um pagamento de pens\u00e3o $ 4,5 milh\u00f5es de Lone Star Steel", "arg0_index": [20, 30], "pred": "foi", "pred_index": [32, 32], "arg1": "devido", "arg1_index": [33, 33], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "um pagamento de pens\u00e3o $ 4,5 milh\u00f5es de Lone Star Steel", "arg0_index": [20, 30], "pred": "n\u00e3o foi pago", "pred_index": [36, 38], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "a empresa-m\u00e3e", "arg0_index": [44, 45], "pred": "n\u00e3o pode recuperar", "pred_index": [46, 48], "arg1": "o montante", "arg1_index": [49, 50], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "a empresa-m\u00e3e", "arg0_index": [55, 56], "pred": "faz", "pred_index": [57, 57], "arg1": "o pagamento", "arg1_index": [58, 59], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Os oficiais da companhia disse que a atual demanda dom\u00e9stica robusta que tem vindo a alimentar sustentada expans\u00e3o da economia ajudou a empurrar para cima as vendas de produtos como navios , estruturas met\u00e1licas , sistemas de energia e m\u00e1quinas e resultou em lucro acentuadamente mais elevados .": [{"arg0": "Os oficiais da companhia", "arg0_index": [0, 3], "pred": "disse", "pred_index": [4, 4], "arg1": "que a atual demanda dom\u00e9stica robusta que tem vindo a alimentar sustentada expans\u00e3o da economia ajudou a empurrar para cima as vendas de produtos como navios , estruturas met\u00e1licas , sistemas de energia e m\u00e1quinas e resultou em lucro acentuadamente mais elevados", "arg1_index": [5, 46], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "a atual demanda dom\u00e9stica robusta", "arg0_index": [6, 10], "pred": "tem vindo a alimentar", "pred_index": [12, 15], "arg1": "sustentada expans\u00e3o da economia", "arg1_index": [16, 19], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "atual demanda dom\u00e9stica robusta", "arg0_index": [7, 10], "pred": "ajudou a empurrar para cima", "pred_index": [20, 24], "arg1": "vendas de produtos como navios , estruturas met\u00e1licas , sistemas de energia e m\u00e1quinas", "arg1_index": [26, 39], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "atual demanda dom\u00e9stica robusta", "arg0_index": [7, 10], "pred": "resultou em", "pred_index": [41, 42], "arg1": "lucro acentuadamente mais elevados", "arg1_index": [43, 46], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Em 1972 , os pesquisadores descobriram condutividade met\u00e1lica na de transfer\u00eancia de carga complexa TTF-TCNQ .": [{"arg0": "pesquisadores", "arg0_index": [4, 4], "pred": "descobriram", "pred_index": [5, 5], "arg1": "condutividade met\u00e1lica", "arg1_index": [6, 7], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Mas , quando chegaram \u00e0 porta , todos tinham medo de entrar , temendo que eles estariam fora do lugar .": [{"arg0": "todos", "arg0_index": [7, 7], "pred": "chegaram \u00e0", "pred_index": [3, 4], "arg1": "porta", "arg1_index": [5, 5], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "todos", "arg0_index": [7, 7], "pred": "tinham medo de", "pred_index": [8, 10], "arg1": "entrar", "arg1_index": [11, 11], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "todos", "arg0_index": [7, 7], "pred": "temendo", "pred_index": [13, 13], "arg1": "que eles estariam fora do lugar", "arg1_index": [14, 19], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "eles", "arg0_index": [15, 15], "pred": "estariam", "pred_index": [16, 16], "arg1": "fora do lugar", "arg1_index": [17, 19], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Os boletins do PAC foram amplamente distribu\u00eddas nessas reuni\u00f5es .": [{"arg0": "Os boletins do PAC", "arg0_index": [0, 3], "pred": "foram amplamente distribu\u00eddas", "pred_index": [4, 6], "arg1": "nessas reuni\u00f5es", "arg1_index": [7, 8], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Um colector \u00e9 `` privilegiada '' se n\u00e3o pode ser apresentada como uma soma de ligado mais do que um colector , nenhum dos quais \u00e9 a esfera da mesma dimens\u00e3o .": [{"arg0": "Um colector", "arg0_index": [0, 1], "pred": "\u00e9", "pred_index": [2, 2], "arg1": "`` privilegiada ''", "arg1_index": [3, 5], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "", "arg0_index": [], "pred": "n\u00e3o pode ser apresentada como", "pred_index": [7, 11], "arg1": "uma soma de ligado mais do que um colector", "arg1_index": [12, 20], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "nenhum dos quais", "arg0_index": [22, 24], "pred": "\u00e9", "pred_index": [25, 25], "arg1": "a esfera da mesma dimens\u00e3o", "arg1_index": [26, 30], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Al\u00e9m disso , o conhecimento e os juros referentes ao evento , bem como o n\u00edvel de import\u00e2ncia , contribuem para a frequ\u00eancia de ensaio .": [{"arg0": "conhecimento e os juros referentes ao evento , bem como o n\u00edvel de import\u00e2ncia", "arg0_index": [4, 17], "pred": "contribuem para", "pred_index": [19, 20], "arg1": "a frequ\u00eancia de ensaio", "arg1_index": [21, 24], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "O \u00e1lbum , produzido por Roy Thomas Baker , foi promovido com passeios americanos e europeus .": [{"arg0": "O \u00e1lbum", "arg0_index": [0, 1], "pred": "produzido por", "pred_index": [3, 4], "arg1": "Roy Thomas Baker", "arg1_index": [5, 7], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "O \u00e1lbum", "arg0_index": [0, 1], "pred": "foi promovido com", "pred_index": [9, 11], "arg1": "passeios americanos e europeus", "arg1_index": [12, 15], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "E ele estava no ex\u00e9rcito de Ali na batalha de Jamal e depois foi Muhammad ibn Abu Bakr que acompanhavam Aisha volta para Madina .": [{"arg0": "ele", "arg0_index": [1, 1], "pred": "foi", "pred_index": [13, 13], "arg1": "no ex\u00e9rcito de Ali", "arg1_index": [3, 6], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "", "arg0_index": [], "pred": "foi", "pred_index": [13, 13], "arg1": "Muhammad ibn Abu Bakr", "arg1_index": [14, 17], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Muhammad ibn Abu Bakr", "arg0_index": [14, 17], "pred": "acompanhavam", "pred_index": [19, 19], "arg1": "Aisha", "arg1_index": [20, 20], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "n\u00f3dulos proliferativas s\u00e3o geralmente bi\u00f3psia e s\u00e3o regularmente mas n\u00e3o sistematicamente encontrado para ser benigno .": [{"arg0": "n\u00f3dulos proliferativas", "arg0_index": [0, 1], "pred": "s\u00e3o geralmente bi\u00f3psia", "pred_index": [2, 4], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "n\u00f3dulos proliferativas", "arg0_index": [0, 1], "pred": "s\u00e3o regularmente mas n\u00e3o sistematicamente encontrado para ser", "pred_index": [6, 13], "arg1": "benigno", "arg1_index": [14, 14], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Ontem , o Sr. Matthews , agora um consultor com o Stamford , Conn. , Empresa Matthews & Johnston , brincou : `` Eu acho que ele vai ser muito bom em que { novo emprego } .": [{"arg0": "Sr. Matthews", "arg0_index": [3, 4], "pred": "brincou", "pred_index": [20, 20], "arg1": "Eu acho que ele vai ser muito bom em que { novo emprego }", "arg1_index": [23, 36], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Sr. Matthews", "arg0_index": [3, 4], "pred": "", "pred_index": [-1, -1], "arg1": "um consultor com o Stamford , Conn. , Empresa Matthews & Johnston", "arg1_index": [7, 18], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Eu", "arg0_index": [23, 23], "pred": "acho", "pred_index": [24, 24], "arg1": "ele vai ser muito bom em que { novo emprego }", "arg1_index": [26, 36], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "ele", "arg0_index": [26, 26], "pred": "vai ser muito bom em", "pred_index": [27, 31], "arg1": "que { novo emprego }", "arg1_index": [32, 36], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "A fuselagem tinha uma sec\u00e7\u00e3o transversal oval e alojado um V-invertido motor V-12 refrigerado a \u00e1gua .": [{"arg0": "A fuselagem", "arg0_index": [0, 1], "pred": "tinha", "pred_index": [2, 2], "arg1": "uma sec\u00e7\u00e3o transversal oval", "arg1_index": [3, 6], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "A fuselagem", "arg0_index": [0, 1], "pred": "alojado", "pred_index": [8, 8], "arg1": "V-invertido motor V-12 refrigerado a \u00e1gua", "arg1_index": [10, 15], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "O alarme \u00e9 uma banda de onda rocha / nova alternativa que se formou em Rhyl , Gales do Norte , em 1981 .": [{"arg0": "O alarme", "arg0_index": [0, 1], "pred": "\u00e9", "pred_index": [2, 2], "arg1": "uma banda de onda rocha / nova alternativa", "arg1_index": [3, 10], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "uma banda de onda rocha / nova alternativa", "arg0_index": [3, 10], "pred": "formou em", "pred_index": [13, 14], "arg1": "Rhyl , Gales do Norte", "arg1_index": [15, 19], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Barbara , no entanto , incapaz de deixar para tr\u00e1s sua vida vigilante , lutou um assaltante e , finalmente , abortou seu filho .": [{"arg0": "Barbara", "arg0_index": [0, 0], "pred": "incapaz de deixar para tr\u00e1s", "pred_index": [5, 9], "arg1": "sua vida vigilante", "arg1_index": [10, 12], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Barbara", "arg0_index": [0, 0], "pred": "lutou", "pred_index": [14, 14], "arg1": "um assaltante", "arg1_index": [15, 16], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Barbara", "arg0_index": [0, 0], "pred": "finalmente , abortou", "pred_index": [19, 21], "arg1": "seu filho", "arg1_index": [22, 23], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "O governo venezuelano exigiu que todas as esta\u00e7\u00f5es de televis\u00e3o privadas dedicar pelo menos 25 % do seu tempo de antena a programas criados por grupos comunit\u00e1rios , organiza\u00e7\u00f5es sem fins lucrativos e outros produtores independentes .": [{"arg0": "O governo venezuelano", "arg0_index": [0, 2], "pred": "que todas", "pred_index": [4, 5], "arg1": "as esta\u00e7\u00f5es de televis\u00e3o privadas dedicar pelo menos 25 % do seu tempo de antena a programas criados por grupos comunit\u00e1rios , organiza\u00e7\u00f5es sem fins lucrativos e outros produtores independentes", "arg1_index": [6, 35], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "todas as esta\u00e7\u00f5es de televis\u00e3o privadas", "arg0_index": [5, 10], "pred": "dedicar", "pred_index": [11, 11], "arg1": "pelo menos 25 % do seu tempo de antena", "arg1_index": [12, 20], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "programas", "arg0_index": [22, 22], "pred": "criados por", "pred_index": [23, 24], "arg1": "grupos comunit\u00e1rios , organiza\u00e7\u00f5es sem fins lucrativos e outros produtores independentes", "arg1_index": [25, 35], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Uma edi\u00e7\u00e3o artista original limitado de 250 foi publicado em 1989 e foi uma multa de imprensa livro encaixotado-derrapantes de grandes dimens\u00f5es com placas de a\u00e7o inoxid\u00e1vel enfrentados e inser\u00e7\u00e3o rel\u00f3gio digital na tampa frontal .": [{"arg0": "Uma edi\u00e7\u00e3o artista original limitado de 250", "arg0_index": [0, 6], "pred": "foi publicado em", "pred_index": [7, 9], "arg1": "1989", "arg1_index": [10, 10], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Uma edi\u00e7\u00e3o artista original limitado de 250", "arg0_index": [0, 6], "pred": "foi", "pred_index": [7, 7], "arg1": "de imprensa livro encaixotado-derrapantes de grandes dimens\u00f5es", "arg1_index": [15, 21], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "rel\u00f3gio digital", "arg0_index": [30, 31], "pred": "limitado de", "pred_index": [4, 5], "arg1": "na tampa frontal", "arg1_index": [32, 34], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Em 16 de junho de 1944 , agente duplo brit\u00e2nico `` Garbo '' foi solicitado por seus controladores alem\u00e3es para dar informa\u00e7\u00f5es sobre os locais e hor\u00e1rios de V-1 impactos , com pedidos semelhantes feitos aos outros agentes alem\u00e3es na Gr\u00e3-Bretanha `` Brutus , '' e `` Tate '' .": [{"arg0": "`` Garbo ''", "arg0_index": [10, 12], "pred": "foi solicitado por", "pred_index": [13, 15], "arg1": "seus controladores alem\u00e3es", "arg1_index": [16, 18], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "`` Garbo ''", "arg0_index": [10, 12], "pred": "", "pred_index": [-1, -1], "arg1": "agente duplo brit\u00e2nico", "arg1_index": [7, 9], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "`` Garbo ''", "arg0_index": [10, 12], "pred": "dar", "pred_index": [20, 20], "arg1": "informa\u00e7\u00f5es sobre os locais e hor\u00e1rios de V-1 impactos", "arg1_index": [21, 29], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "seus controladores alem\u00e3es", "arg0_index": [16, 18], "pred": "feitos", "pred_index": [34, 34], "arg1": "pedidos semelhantes", "arg1_index": [32, 33], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "O Rev. William Alfred Quayle foi homenageado por sua alma mater , a Universidade Baker , com os graus Litt.D .": [{"arg0": "O Rev. William Alfred Quayle", "arg0_index": [0, 4], "pred": "foi homenageado por", "pred_index": [5, 7], "arg1": "Universidade Baker", "arg1_index": [13, 14], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Universidade Baker", "arg0_index": [13, 14], "pred": "", "pred_index": [-1, -1], "arg1": "sua alma mater", "arg1_index": [8, 10], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Na cren\u00e7a judaica , o seu cumprimento ser\u00e1 revelado na acumula\u00e7\u00e3o da Cria\u00e7\u00e3o , na era da ressurrei\u00e7\u00e3o , no mundo f\u00edsico .": [{"arg0": "seu cumprimento", "arg0_index": [5, 6], "pred": "ser\u00e1 revelado na", "pred_index": [7, 9], "arg1": "acumula\u00e7\u00e3o da Cria\u00e7\u00e3o , na era da ressurrei\u00e7\u00e3o , no mundo f\u00edsico", "arg1_index": [10, 21], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "O produto cesta , enquanto ele tem um in\u00edcio lento , est\u00e1 sendo apoiado por algumas grandes empresas de corretagem - outro membro da circunscri\u00e7\u00e3o lascada do Sr. Phelan .": [{"arg0": "est\u00e1", "arg0_index": [11, 11], "pred": "tem um", "pred_index": [6, 7], "arg1": "um in\u00edcio lento", "arg1_index": [7, 9], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "O produto cesta", "arg0_index": [0, 2], "pred": "est\u00e1 sendo apoiado por", "pred_index": [11, 14], "arg1": "algumas grandes empresas", "arg1_index": [15, 17], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "A dinastia Nadvorna \u00e9 not\u00e1vel na medida em que muitos dos seus descendentes se tornar rebbes .": [{"arg0": "A dinastia Nadvorna", "arg0_index": [0, 2], "pred": "\u00e9", "pred_index": [3, 3], "arg1": "not\u00e1vel", "arg1_index": [4, 4], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "muitos dos seus descendentes", "arg0_index": [9, 12], "pred": "tornar", "pred_index": [14, 14], "arg1": "rebbes", "arg1_index": [15, 15], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Em `` The Andromeda Strain '' , Michael Crichton 'primeiro romance s publicado sob seu nome real , apenas duas pessoas expostas a um micr\u00f3bio extraterrestre patog\u00eanico sobreviver .": [{"arg0": "`` The Andromeda Strain ''", "arg0_index": [1, 5], "pred": "", "pred_index": [-1, -1], "arg1": "'primeiro romance s publicado sob seu nome real", "arg1_index": [9, 16], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Michael Crichton 'primeiro romance s", "arg0_index": [7, 11], "pred": "publicado", "pred_index": [12, 12], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "apenas duas pessoas expostas a um micr\u00f3bio extraterrestre", "arg0_index": [18, 25], "pred": "sobreviver", "pred_index": [27, 27], "arg1": "Em `` The Andromeda Strain ''", "arg1_index": [0, 5], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "duas pessoas", "arg0_index": [19, 20], "pred": "expostas a", "pred_index": [21, 22], "arg1": "um micr\u00f3bio extraterrestre", "arg1_index": [23, 25], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Hofmann era um estudante abaixo da m\u00e9dia do ensino m\u00e9dio , mas ele tinha muitos hobbies incluindo magia , eletr\u00f4nica , qu\u00edmica , e carimbo e coleta de moeda .": [{"arg0": "Hofmann", "arg0_index": [0, 0], "pred": "era", "pred_index": [1, 1], "arg1": "um estudante abaixo da m\u00e9dia do ensino m\u00e9dio", "arg1_index": [2, 9], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "ele", "arg0_index": [12, 12], "pred": "tinha", "pred_index": [13, 13], "arg1": "muitos hobbies", "arg1_index": [14, 15], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "muitos hobbies", "arg0_index": [14, 15], "pred": "incluindo", "pred_index": [16, 16], "arg1": "magia , eletr\u00f4nica , qu\u00edmica , e carimbo e coleta de moeda", "arg1_index": [17, 28], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "O fundraiser foi bem sucedida , e que a viagem ocorreu de junho a setembro de 2014 .": [{"arg0": "O fundraiser", "arg0_index": [0, 1], "pred": "foi", "pred_index": [2, 2], "arg1": "bem sucedida", "arg1_index": [3, 4], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "a viagem", "arg0_index": [8, 9], "pred": "ocorreu", "pred_index": [10, 10], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "O campo decolou em 1985 , ap\u00f3s cientistas da Sheffield University da Gr\u00e3-Bretanha desenvolveu um \u00edm\u00e3 acess\u00edvel , compacto para estimula\u00e7\u00e3o cerebral .": [{"arg0": "O campo", "arg0_index": [0, 1], "pred": "decolou", "pred_index": [2, 2], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "cientistas da Sheffield University", "arg0_index": [7, 10], "pred": "desenvolveu", "pred_index": [13, 13], "arg1": "um \u00edm\u00e3 acess\u00edvel , compacto", "arg1_index": [14, 18], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Como outros conte\u00fados BBC de meados dos anos 1990 , que muitas vezes satirizado a qualidade de baixo or\u00e7amento de televis\u00e3o por sat\u00e9lite dispon\u00edveis no Reino Unido no momento .": [{"arg0": "que", "arg0_index": [10, 10], "pred": "muitas vezes satirizado", "pred_index": [11, 13], "arg1": "a qualidade de baixo or\u00e7amento de televis\u00e3o por sat\u00e9lite dispon\u00edveis", "arg1_index": [14, 23], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Certos qu\u00e2ntica fracionada fases Sal\u00e3o parecem ter as propriedades certas para a constru\u00e7\u00e3o de um computador qu\u00e2ntico topol\u00f3gico .": [{"arg0": "Certos qu\u00e2ntica fracionada fases Sal\u00e3o", "arg0_index": [0, 4], "pred": "parecem ter", "pred_index": [5, 6], "arg1": "as propriedades certas", "arg1_index": [7, 9], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Certos qu\u00e2ntica fracionada fases Sal\u00e3o", "arg0_index": [0, 4], "pred": "constru\u00e7\u00e3o", "pred_index": [12, 12], "arg1": "um computador qu\u00e2ntico topol\u00f3gico", "arg1_index": [14, 17], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "E ABS formou uma parceria com a Habitat for Humanity para dar uma B\u00edblia livre para cada um dos seus novos propriet\u00e1rios nos Estados Unidos .": [{"arg0": "ABS", "arg0_index": [1, 1], "pred": "formou", "pred_index": [2, 2], "arg1": "uma parceria", "arg1_index": [3, 4], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "ABS", "arg0_index": [1, 1], "pred": "dar", "pred_index": [11, 11], "arg1": "uma B\u00edblia livre", "arg1_index": [12, 14], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "No entanto , quando os antigenicidades das cepas de sementes e v\u00edrus selvagens n\u00e3o corresponderem , as vacinas n\u00e3o protegem os indiv\u00edduos vacinados .": [{"arg0": "vacinas", "arg0_index": [17, 17], "pred": "n\u00e3o protegem", "pred_index": [18, 19], "arg1": "as vacinas", "arg1_index": [16, 17], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "os antigenicidades das cepas de sementes e v\u00edrus selvagens", "arg0_index": [4, 12], "pred": "n\u00e3o corresponderem", "pred_index": [13, 14], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Kim formou-se Ballard High School , em Louisville , Kentucky , em 1989 , e de Oberlin College , em Ohio , em 1993 , onde ele double-se formou em Governo e Ingl\u00eas e jogou para o time da escola lacrosse .": [{"arg0": "Kim", "arg0_index": [0, 0], "pred": "formou-se", "pred_index": [1, 1], "arg1": "Ballard High School", "arg1_index": [2, 4], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Kim", "arg0_index": [0, 0], "pred": "formou", "pred_index": [28, 28], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "ele", "arg0_index": [26, 26], "pred": "double-se formou em", "pred_index": [27, 29], "arg1": "Governo e Ingl\u00eas", "arg1_index": [30, 32], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "ele", "arg0_index": [26, 26], "pred": "jogou para", "pred_index": [34, 35], "arg1": "o time da escola lacrosse", "arg1_index": [36, 40], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Em 54 aC , Marco Perperna \u00e9 mencionado como um dos c\u00f3nsules que levavam testemunho em nome de Marcus Aemilius Scaurus em seu julgamento .": [{"arg0": "Marco Perperna", "arg0_index": [4, 5], "pred": "\u00e9 mencionado como", "pred_index": [6, 8], "arg1": "um dos c\u00f3nsules que levavam testemunho em nome de Marcus Aemilius Scaurus em seu julgamento", "arg1_index": [9, 23], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "dos c\u00f3nsules", "arg0_index": [10, 11], "pred": "levavam", "pred_index": [13, 13], "arg1": "testemunho", "arg1_index": [14, 14], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Quando o governo civil foi introduzido em Romblon pelos americanos em 16 de mar\u00e7o de 1901 , Banton foi um dos 11 novos munic\u00edpios reintegrado ou criados .": [{"arg0": "Banton", "arg0_index": [17, 17], "pred": "foi", "pred_index": [18, 18], "arg1": "um dos 11 novos munic\u00edpios reintegrado ou criados", "arg1_index": [19, 26], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "governo civil", "arg0_index": [2, 3], "pred": "foi introduzido", "pred_index": [4, 5], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Em uma escala mais ampla , a decis\u00e3o pode incentivar os tribunais de outros estados a adotar a l\u00f3gica do tribunal de Nova York , n\u00e3o s\u00f3 em casos DES mas em outro produto - processos relacionados , bem .": [{"arg0": "a decis\u00e3o", "arg0_index": [6, 7], "pred": "pode incentivar", "pred_index": [8, 9], "arg1": "tribunais de outros estados", "arg1_index": [11, 14], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "outros estados", "arg0_index": [13, 14], "pred": "adotar", "pred_index": [16, 16], "arg1": "a l\u00f3gica do tribunal de Nova York", "arg1_index": [17, 23], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Dodo foi originalmente destinado a ter um '`` comum' sotaque , e \u00e9 retratado desta forma no final do `` The Massacre '' .": [{"arg0": "Dodo", "arg0_index": [0, 0], "pred": "foi originalmente destinado a ter", "pred_index": [1, 5], "arg1": "um '`` comum' sotaque", "arg1_index": [6, 9], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Dodo", "arg0_index": [0, 0], "pred": "\u00e9 retratado", "pred_index": [12, 13], "arg1": "desta forma", "arg1_index": [14, 15], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Duas vezes divorciado e casado atualmente , Ladd \u00e9 a m\u00e3e da atriz Laura Dern , por seu ex-marido , o ator Bruce Dern .": [{"arg0": "Ladd", "arg0_index": [7, 7], "pred": "\u00e9", "pred_index": [8, 8], "arg1": "a m\u00e3e da atriz Laura Dern", "arg1_index": [9, 14], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Bruce Dern", "arg0_index": [22, 23], "pred": "", "pred_index": [-1, -1], "arg1": "ator", "arg1_index": [21, 21], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Bruce Dern", "arg0_index": [22, 23], "pred": "", "pred_index": [-1, -1], "arg1": "seu ex-marido", "arg1_index": [17, 18], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Ladd", "arg0_index": [7, 7], "pred": "Duas vezes divorciado", "pred_index": [0, 2], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Ladd", "arg0_index": [7, 7], "pred": "casado atualmente", "pred_index": [4, 5], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Em 1988 , um ano e meio ap\u00f3s a Sra Marcos e seu falecido marido , Ferdinand Marcos , o presidente deposto das Filipinas , fugiram das Filipinas para o Hava\u00ed , eles foram acusados de extors\u00e3o , conspira\u00e7\u00e3o , obstru\u00e7\u00e3o da justi\u00e7a e fraude postal em um esquema em que supostamente desviado mais de $ 100 milh\u00f5es de sua terra natal .": [{"arg0": "Sra Marcos e seu falecido marido , Ferdinand Marcos , o presidente deposto das Filipinas", "arg0_index": [9, 23], "pred": "foram acusados de", "pred_index": [33, 35], "arg1": "extors\u00e3o , conspira\u00e7\u00e3o , obstru\u00e7\u00e3o da justi\u00e7a e fraude postal", "arg1_index": [36, 45], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Sra Marcos e seu falecido marido , Ferdinand Marcos , o presidente deposto das Filipinas", "arg0_index": [9, 23], "pred": "fugiram", "pred_index": [25, 25], "arg1": "das Filipinas", "arg1_index": [26, 27], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Ferdinand Marcos", "arg0_index": [16, 17], "pred": "", "pred_index": [-1, -1], "arg1": "seu falecido marido", "arg1_index": [12, 14], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Ferdinand Marcos", "arg0_index": [16, 17], "pred": "", "pred_index": [-1, -1], "arg1": "o presidente deposto das Filipinas", "arg1_index": [19, 23], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Sra Marcos e seu falecido marido , Ferdinand Marcos , o presidente deposto das Filipinas", "arg0_index": [9, 23], "pred": "supostamente desviado", "pred_index": [51, 52], "arg1": "mais de $ 100 milh\u00f5es", "arg1_index": [53, 57], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Foi nomeado para o general Eleazer Wheelock Ripley , um oficial da guerra de 1812 , que foi lembrado principalmente para a batalha de Lane 's Lundy eo cerco de Fort Erie , em 1814 .": [{"arg0": "", "arg0_index": [], "pred": "Foi nomeado para", "pred_index": [0, 2], "arg1": "general Eleazer Wheelock Ripley", "arg1_index": [4, 7], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "general Eleazer Wheelock Ripley", "arg0_index": [4, 7], "pred": "", "pred_index": [-1, -1], "arg1": "um oficial da guerra de 1812", "arg1_index": [9, 14], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "general Eleazer Wheelock Ripley", "arg0_index": [4, 7], "pred": "foi lembrado principalmente para", "pred_index": [17, 20], "arg1": "batalha de Lane 's Lundy eo cerco de Fort Erie", "arg1_index": [22, 31], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "As plantas foram plantadas marca\u00e7\u00e3o partes das funda\u00e7\u00f5es do castelo , ent\u00e3o as posi\u00e7\u00f5es de alguns dos edif\u00edcios ainda pode ser inferida .": [{"arg0": "plantas", "arg0_index": [1, 1], "pred": "foram plantadas", "pred_index": [2, 3], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "plantas", "arg0_index": [1, 1], "pred": "marca\u00e7\u00e3o", "pred_index": [4, 4], "arg1": "partes das funda\u00e7\u00f5es do castelo", "arg1_index": [5, 9], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "as posi\u00e7\u00f5es de alguns dos edif\u00edcios", "arg0_index": [12, 17], "pred": "ainda pode ser inferida", "pred_index": [18, 21], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Mr. Zayadi foi anteriormente presidente e diretor de opera\u00e7\u00f5es da Zellers Inc. , uma cadeia de varejo que \u00e9 propriedade de Toronto - Hudson base 's Bay Co. , Canad\u00e1' maior operadora de loja de departamento s .": [{"arg0": "Mr. Zayadi", "arg0_index": [0, 1], "pred": "foi anteriormente", "pred_index": [2, 3], "arg1": "presidente e diretor de opera\u00e7\u00f5es da Zellers Inc.", "arg1_index": [4, 11], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Zellers Inc.", "arg0_index": [10, 11], "pred": "", "pred_index": [-1, -1], "arg1": "uma cadeia de varejo que \u00e9 propriedade de Toronto - Hudson base 's Bay Co.", "arg1_index": [13, 27], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Toronto - Hudson base 's Bay Co.", "arg0_index": [21, 27], "pred": "", "pred_index": [-1, -1], "arg1": "Canad\u00e1' maior operadora de loja de departamento", "arg1_index": [29, 35], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Zellers Inc.", "arg0_index": [10, 11], "pred": "\u00e9 propriedade de", "pred_index": [18, 20], "arg1": "Toronto - Hudson base 's Bay Co.", "arg1_index": [21, 27], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Em recente depoimento no Capit\u00f3lio , funcion\u00e1rios do Tesouro disseram que estavam considerando os novos requisitos de informa\u00e7\u00e3o , ea publica\u00e7\u00e3o esperada da proposta no Federal Register hoje \u00e9 o primeiro passo oficial para a cria\u00e7\u00e3o de regulamentos finais .": [{"arg0": "funcion\u00e1rios do Tesouro", "arg0_index": [6, 8], "pred": "disseram", "pred_index": [9, 9], "arg1": "que estavam considerando os novos requisitos de informa\u00e7\u00e3o , ea publica\u00e7\u00e3o esperada da proposta no Federal Register hoje \u00e9 o primeiro passo oficial para a cria\u00e7\u00e3o de regulamentos finais", "arg1_index": [10, 38], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "funcion\u00e1rios do Tesouro", "arg0_index": [6, 8], "pred": "estavam considerando", "pred_index": [11, 12], "arg1": "os novos requisitos de informa\u00e7\u00e3o", "arg1_index": [13, 17], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "ea publica\u00e7\u00e3o esperada da proposta no Federal Register", "arg0_index": [19, 26], "pred": "\u00e9", "pred_index": [28, 28], "arg1": "o primeiro passo oficial", "arg1_index": [29, 32], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "A jogabilidade \u00e9 muito b\u00e1sico ; o jogador deve atirar constantemente em um fluxo cont\u00ednuo de inimigos , a fim de chegar ao final de cada n\u00edvel .": [{"arg0": "", "arg0_index": [], "pred": "", "pred_index": [], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "jogabilidade", "arg0_index": [1, 1], "pred": "\u00e9", "pred_index": [2, 2], "arg1": "muito b\u00e1sico", "arg1_index": [3, 4], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "o jogador", "arg0_index": [6, 7], "pred": "deve atirar constantemente em", "pred_index": [8, 11], "arg1": "um fluxo cont\u00ednuo de inimigos", "arg1_index": [12, 16], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "o jogador", "arg0_index": [6, 7], "pred": "chegar", "pred_index": [21, 21], "arg1": "ao final de cada n\u00edvel", "arg1_index": [22, 26], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Em 2011 , os principais fornecedores lan\u00e7ou v\u00e1rias placas-m\u00e3e orientada para o consumidor usando o Intel s\u00e9rie 6 LGA 1155 chipset e AMD 9 Series AM3 + chipsets com UEFI .": [{"arg0": "principais fornecedores", "arg0_index": [4, 5], "pred": "lan\u00e7ou", "pred_index": [6, 6], "arg1": "v\u00e1rias placas-m\u00e3e orientada para o consumidor", "arg1_index": [7, 12], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "v\u00e1rias placas-m\u00e3e orientada para o consumidor", "arg0_index": [7, 12], "pred": "usando", "pred_index": [13, 13], "arg1": "o Intel s\u00e9rie 6 LGA 1155 chipset e AMD 9 Series AM3 + chipsets com UEFI", "arg1_index": [14, 29], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Metromedia , liderado por John W. Kluge , tem interesses em telecomunica\u00e7\u00f5es , pintura rob\u00f3tica , software de computador , restaurantes e entretenimento .": [{"arg0": "Metromedia", "arg0_index": [0, 0], "pred": "liderado por", "pred_index": [2, 3], "arg1": "John W. Kluge", "arg1_index": [4, 6], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Metromedia", "arg0_index": [0, 0], "pred": "tem interesses em", "pred_index": [8, 10], "arg1": "telecomunica\u00e7\u00f5es , pintura rob\u00f3tica , software de computador , restaurantes e entretenimento", "arg1_index": [11, 22], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Roger M. Marino , presidente , foi nomeado para o novo cargo de vice-presidente .": [{"arg0": "Roger M. Marino", "arg0_index": [0, 2], "pred": "", "pred_index": [-1, -1], "arg1": "presidente", "arg1_index": [4, 4], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Roger M. Marino", "arg0_index": [0, 2], "pred": "foi nomeado para", "pred_index": [6, 8], "arg1": "o novo cargo de vice-presidente", "arg1_index": [9, 13], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Se lhe for dada esses dados , os alem\u00e3es seriam capazes de ajustar seu objetivo e corrigir qualquer d\u00e9ficit .": [{"arg0": "os alem\u00e3es", "arg0_index": [7, 8], "pred": "seriam capazes de", "pred_index": [9, 11], "arg1": "ajustar seu objetivo e corrigir qualquer d\u00e9ficit", "arg1_index": [12, 18], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "os alem\u00e3es", "arg0_index": [7, 8], "pred": "ajustar", "pred_index": [12, 12], "arg1": "seu objetivo", "arg1_index": [13, 14], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "os alem\u00e3es", "arg0_index": [7, 8], "pred": "corrigir", "pred_index": [16, 16], "arg1": "qualquer d\u00e9ficit", "arg1_index": [17, 18], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Embora o Tesouro vai anunciar detalhes de novembro reembolso amanh\u00e3 , poderia ser adiada se o Congresso eo presidente Bush n\u00e3o conseguem aumentar a capacidade de endividamento do Tesouro .": [{"arg0": "o Tesouro", "arg0_index": [1, 2], "pred": "vai anunciar", "pred_index": [3, 4], "arg1": "detalhes de novembro reembolso", "arg1_index": [5, 8], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "", "arg0_index": [], "pred": "poderia ser adiada", "pred_index": [11, 13], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Congresso eo presidente Bush", "arg0_index": [16, 19], "pred": "conseguem aumentar", "pred_index": [21, 22], "arg1": "capacidade de endividamento do Tesouro", "arg1_index": [24, 28], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Wakeboarding \u00e9 praticado por homens e mulheres a n\u00edvel competitivo , mas eles competem em categorias separadas .": [{"arg0": "Wakeboarding", "arg0_index": [0, 0], "pred": "\u00e9 praticado por", "pred_index": [1, 3], "arg1": "homens e mulheres", "arg1_index": [4, 6], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "eles", "arg0_index": [12, 12], "pred": "competem em", "pred_index": [13, 14], "arg1": "categorias separadas", "arg1_index": [15, 16], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Curley foi o primeiro organista cl\u00e1ssico para executar um recital solo de \u00f3rg\u00e3o na Casa Branca , e tamb\u00e9m jogou antes de v\u00e1rios chefes de Estado europeus .": [{"arg0": "Curley", "arg0_index": [0, 0], "pred": "foi", "pred_index": [1, 1], "arg1": "o primeiro organista cl\u00e1ssico", "arg1_index": [2, 5], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Curley", "arg0_index": [0, 0], "pred": "jogou antes", "pred_index": [19, 20], "arg1": "v\u00e1rios chefes de Estado europeus", "arg1_index": [22, 26], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "No entanto , durante o ensaio , Knievel perdeu o controle da moto e se chocou contra um cinegrafista .": [{"arg0": "Knievel", "arg0_index": [7, 7], "pred": "perdeu o controle da", "pred_index": [8, 11], "arg1": "da moto", "arg1_index": [11, 12], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Knievel", "arg0_index": [7, 7], "pred": "se chocou contra", "pred_index": [14, 16], "arg1": "um cinegrafista", "arg1_index": [17, 18], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Antes da temporada de 2012 , os Royals assinado Yost para uma extens\u00e3o de contrato at\u00e9 a temporada de 2013 .": [{"arg0": "os Royals", "arg0_index": [6, 7], "pred": "assinado", "pred_index": [8, 8], "arg1": "Yost", "arg1_index": [9, 9], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Como um grupo , a equipe foi consagrado no Hall da Fama do Basquete em 1959 .": [{"arg0": "a equipe", "arg0_index": [4, 5], "pred": "foi consagrado no", "pred_index": [6, 8], "arg1": "consagrado no Hall da Fama", "arg1_index": [7, 11], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Em seguida , os filetes s\u00e3o colocados em uma mistura de azeite , vinagre , a\u00e7\u00facar , alho , pimentas frio , e muita salsa ou aipo .": [{"arg0": "os filetes", "arg0_index": [3, 4], "pred": "s\u00e3o colocados em", "pred_index": [5, 7], "arg1": "uma mistura de azeite , vinagre , a\u00e7\u00facar , alho , pimentas frio , e muita salsa ou aipo", "arg1_index": [8, 26], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Estes foram muitas vezes relacionados com conflito europeu , como o Stuart Pretenders foram ajudados e incentivados pelos inimigos continentais da Gr\u00e3-Bretanha para os seus pr\u00f3prios fins .": [{"arg0": "Estes", "arg0_index": [0, 0], "pred": "foram muitas vezes relacionados com", "pred_index": [1, 5], "arg1": "conflito europeu", "arg1_index": [6, 7], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "o Stuart Pretenders", "arg0_index": [10, 12], "pred": "foram ajudados", "pred_index": [13, 14], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "o Stuart Pretenders", "arg0_index": [10, 12], "pred": "incentivados", "pred_index": [16, 16], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Por exemplo , um passageiro pode voar de Chardon , Neb. , Para Denver para o t\u00e3o pouco quanto $ 89 a US $ 109 , de acordo com os pre\u00e7os cotados pela empresa .": [{"arg0": "um passageiro", "arg0_index": [3, 4], "pred": "pode voar de", "pred_index": [5, 7], "arg1": "Chardon , Neb.", "arg1_index": [8, 10], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "F\u00e3s reagiram \u00e0 not\u00edcia da suspens\u00e3o por cancelar suas assinaturas de r\u00e1dio XM , com alguns f\u00e3s , mesmo indo t\u00e3o longe como esmagando suas unidades XM .": [{"arg0": "F\u00e3s", "arg0_index": [0, 0], "pred": "reagiram", "pred_index": [1, 1], "arg1": "\u00e0 not\u00edcia da suspens\u00e3o", "arg1_index": [2, 5], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "F\u00e3s", "arg0_index": [0, 0], "pred": "cancelar", "pred_index": [7, 7], "arg1": "suas assinaturas de r\u00e1dio XM", "arg1_index": [8, 12], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "alguns f\u00e3s", "arg0_index": [15, 16], "pred": "mesmo indo t\u00e3o longe como esmagando", "pred_index": [18, 23], "arg1": "suas unidades XM", "arg1_index": [24, 26], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Em 1975 , Barrie foi dirigido por Lee Grant no filme de televis\u00e3o `` Para o uso do Sal\u00e3o '' como `` Charlotte '' .": [{"arg0": "Barrie", "arg0_index": [3, 3], "pred": "foi dirigido por", "pred_index": [4, 6], "arg1": "Lee Grant", "arg1_index": [7, 8], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "`` The Cure '' chegou ao topo das paradas de m\u00fasica de vendas online .": [{"arg0": "`` The Cure ''", "arg0_index": [0, 3], "pred": "chegou ao topo", "pred_index": [4, 6], "arg1": "das paradas de m\u00fasica de vendas online", "arg1_index": [7, 13], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Isso envolve trade - offs e { o } cortes contra o gr\u00e3o de concep\u00e7\u00f5es provedor de consumo e at\u00e9 mesmo j\u00e1 existentes do que \u00e9 `necess\u00e1rio . ' ''": [{"arg0": "Isso", "arg0_index": [0, 0], "pred": "envolve", "pred_index": [1, 1], "arg1": "trade - offs", "arg1_index": [2, 4], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "{ o }", "arg0_index": [6, 8], "pred": "cortes contra", "pred_index": [9, 10], "arg1": "o gr\u00e3o de concep\u00e7\u00f5es provedor de consumo e at\u00e9 mesmo j\u00e1 existentes do que \u00e9 `necess\u00e1rio . '", "arg1_index": [11, 28], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Embora a campanha foi o Sr. Gibbons id\u00e9ia s , no entanto , ele n\u00e3o vai ser pagar por ele : As doa\u00e7\u00f5es v\u00e3o sair da cadeia' fundo de propaganda nacional s , que \u00e9 financiado pelos franqueados .": [{"arg0": "a campanha", "arg0_index": [1, 2], "pred": "foi", "pred_index": [3, 3], "arg1": "foi o Sr. Gibbons id\u00e9ia s", "arg1_index": [3, 8], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "ele", "arg0_index": [13, 13], "pred": "n\u00e3o vai ser pagar por", "pred_index": [14, 18], "arg1": "id\u00e9ia", "arg1_index": [7, 7], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "As doa\u00e7\u00f5es", "arg0_index": [21, 22], "pred": "sair", "pred_index": [24, 24], "arg1": "da cadeia' fundo de propaganda nacional", "arg1_index": [25, 30], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "da cadeia' fundo de propaganda nacional", "arg0_index": [25, 30], "pred": "\u00e9 financiado pelos", "pred_index": [34, 36], "arg1": "pelos franqueados", "arg1_index": [36, 37], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "32,7 % de todas as casas foram compostos dos indiv\u00edduos e 15.7 % tidos algu\u00e9m que vive sozinho quem era 65 anos de idade ou mais .": [{"arg0": "32,7 % de todas as casas", "arg0_index": [0, 5], "pred": "foram compostos dos", "pred_index": [6, 8], "arg1": "indiv\u00edduos", "arg1_index": [9, 9], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "15.7 %", "arg0_index": [11, 12], "pred": "tidos", "pred_index": [13, 13], "arg1": "algu\u00e9m que vive sozinho quem era 65 anos de idade ou mais", "arg1_index": [14, 25], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "algu\u00e9m que vive sozinho", "arg0_index": [14, 17], "pred": "era", "pred_index": [19, 19], "arg1": "65 anos de idade ou mais", "arg1_index": [20, 25], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "algu\u00e9m", "arg0_index": [14, 14], "pred": "vive sozinho", "pred_index": [16, 17], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Resultados como esses indicam complexos de mimetismo ac\u00fasticos , tanto Batesian e M\u00fclleriano , pode ser difundida no mundo auditivo .": [{"arg0": "Resultados como esses", "arg0_index": [0, 2], "pred": "indicam", "pred_index": [3, 3], "arg1": "complexos de mimetismo ac\u00fasticos , tanto Batesian e M\u00fclleriano , pode ser difundida no mundo auditivo", "arg1_index": [4, 19], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "complexos de mimetismo ac\u00fasticos , tanto Batesian e M\u00fclleriano", "arg0_index": [4, 12], "pred": "pode ser difundida no", "pred_index": [14, 17], "arg1": "no mundo auditivo", "arg1_index": [17, 19], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Sua miss\u00e3o era sempre para um mandato espec\u00edfico e durou por um per\u00edodo limitado .": [{"arg0": "Sua miss\u00e3o", "arg0_index": [0, 1], "pred": "era sempre para", "pred_index": [2, 4], "arg1": "um mandato espec\u00edfico", "arg1_index": [5, 7], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Sua miss\u00e3o", "arg0_index": [0, 1], "pred": "durou por", "pred_index": [9, 10], "arg1": "um per\u00edodo limitado", "arg1_index": [11, 13], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Esta linha foi estendida a leste pela Prahran & Malvern Tramways Confian\u00e7a de Hawthorn Estrada de Darling Road , Malvern East em 13 de novembro de 1913 .": [{"arg0": "Esta linha", "arg0_index": [0, 1], "pred": "foi estendida", "pred_index": [2, 3], "arg1": "leste", "arg1_index": [5, 5], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "As esta\u00e7\u00f5es foram ambos chamados `` Midsomer Norton e Welton '' ; sob British Railways , a esta\u00e7\u00e3o de S & D foi rebatizado como Midsomer Norton Sul ap\u00f3s um curto per\u00edodo como Midsomer Norton superior ; e atualmente est\u00e1 sendo restaurado com fins de semana abertos ocasionais com motores a vapor .": [{"arg0": "As esta\u00e7\u00f5es", "arg0_index": [0, 1], "pred": "foram ambos chamados", "pred_index": [2, 4], "arg1": "`` Midsomer Norton e Welton ''", "arg1_index": [5, 10], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "de S & D", "arg0_index": [18, 21], "pred": "foi rebatizado como", "pred_index": [22, 24], "arg1": "Midsomer Norton Sul", "arg1_index": [25, 27], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "a esta\u00e7\u00e3o de S & D", "arg0_index": [16, 21], "pred": "atualmente est\u00e1 sendo restaurado com", "pred_index": [38, 42], "arg1": "de semana abertos ocasionais", "arg1_index": [44, 47], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Os custos do trabalho est\u00e3o subindo a um ritmo muito mais r\u00e1pido na ind\u00fastria de cuidados de sa\u00fade do que em outras ind\u00fastrias .": [{"arg0": "custos do trabalho", "arg0_index": [1, 3], "pred": "est\u00e3o subindo a", "pred_index": [4, 6], "arg1": "um ritmo muito mais r\u00e1pido", "arg1_index": [7, 11], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "A uma curta dist\u00e2ncia para o leste , NC 111 diverge sobre Greenwood Boulevard .": [{"arg0": "NC 111", "arg0_index": [8, 9], "pred": "diverge sobre", "pred_index": [10, 11], "arg1": "Greenwood Boulevard", "arg1_index": [12, 13], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Nesse mesmo ano viu um surto de peste em Veneza , que durou dois anos e causou Franco a deixar a cidade e a perder muitas das suas posses .": [{"arg0": "Nesse mesmo ano", "arg0_index": [0, 2], "pred": "viu", "pred_index": [3, 3], "arg1": "um surto de peste", "arg1_index": [4, 7], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "", "arg0_index": [], "pred": "durou", "pred_index": [12, 12], "arg1": "dois anos", "arg1_index": [13, 14], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "", "arg0_index": [], "pred": "causou", "pred_index": [16, 16], "arg1": "Franco", "arg1_index": [17, 17], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Franco", "arg0_index": [17, 17], "pred": "deixar", "pred_index": [19, 19], "arg1": "a cidade", "arg1_index": [20, 21], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Franco", "arg0_index": [17, 17], "pred": "perder", "pred_index": [24, 24], "arg1": "muitas das suas posses", "arg1_index": [25, 28], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Os dois lados tamb\u00e9m est\u00e3o discutindo certos empreendimentos comerciais que envolvem os direitos de cabo para filmes Columbia 's .": [{"arg0": "Os dois lados", "arg0_index": [0, 2], "pred": "tamb\u00e9m est\u00e3o discutindo", "pred_index": [3, 5], "arg1": "certos empreendimentos", "arg1_index": [6, 7], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "empreendimentos comerciais", "arg0_index": [7, 8], "pred": "envolvem", "pred_index": [10, 10], "arg1": "direitos de cabo para filmes Columbia", "arg1_index": [12, 17], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Em 2010 , sites scam cooptados uma foto dela para promover tratamentos de sa\u00fade , o onipresente `` 1 estranho velha dica '' dietas ricas em gordura da barriga , e leil\u00f5es de um centavo , o uso n\u00e3o autorizado dos quais Theuriau era inicialmente inconsciente .": [{"arg0": "sites scam", "arg0_index": [3, 4], "pred": "cooptados", "pred_index": [5, 5], "arg1": "uma foto dela", "arg1_index": [6, 8], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "sites scam", "arg0_index": [3, 4], "pred": "promover", "pred_index": [10, 10], "arg1": "tratamentos de sa\u00fade , o onipresente `` 1 estranho velha dica '' dietas ricas em gordura da barriga , e leil\u00f5es", "arg1_index": [11, 31], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Theuriau", "arg0_index": [42, 42], "pred": "era inicialmente inconsciente", "pred_index": [43, 45], "arg1": "uso n\u00e3o autorizado", "arg1_index": [37, 39], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Em 2007 , a Sun anunciou `` Projeto Indiana '' com v\u00e1rios objetivos , incluindo o fornecimento de uma distribui\u00e7\u00e3o de bin\u00e1rio fonte aberta do projeto OpenSolaris , substituindo SXDE .": [{"arg0": "Sun", "arg0_index": [4, 4], "pred": "anunciou", "pred_index": [5, 5], "arg1": "`` Projeto Indiana ''", "arg1_index": [6, 9], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "v\u00e1rios objetivos", "arg0_index": [11, 12], "pred": "incluindo", "pred_index": [14, 14], "arg1": "fornecimento de uma distribui\u00e7\u00e3o de bin\u00e1rio fonte aberta do projeto OpenSolaris , substituindo SXDE", "arg1_index": [16, 29], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Sun", "arg0_index": [4, 4], "pred": "fornecimento", "pred_index": [16, 16], "arg1": "uma distribui\u00e7\u00e3o de bin\u00e1rio fonte aberta do projeto OpenSolaris", "arg1_index": [18, 26], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "uma distribui\u00e7\u00e3o de bin\u00e1rio fonte aberta do projeto OpenSolaris", "arg0_index": [18, 26], "pred": "substituindo", "pred_index": [28, 28], "arg1": "SXDE", "arg1_index": [29, 29], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Por este ponto , Simpson havia retornado para sua mans\u00e3o em Brentwood e tinha se entregou \u00e0 pol\u00edcia .": [{"arg0": "Simpson", "arg0_index": [4, 4], "pred": "havia retornado para", "pred_index": [5, 7], "arg1": "sua mans\u00e3o em Brentwood", "arg1_index": [8, 11], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Simpson", "arg0_index": [4, 4], "pred": "tinha se entregou", "pred_index": [13, 15], "arg1": "pol\u00edcia", "arg1_index": [17, 17], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "\u00c0s vezes , os pagamentos extras foram especificados pelo qual um escravo liberto poderia libertar-se destes direitos residuais .": [{"arg0": "pagamentos extras", "arg0_index": [4, 5], "pred": "foram especificados pelo", "pred_index": [6, 8], "arg1": "qual um escravo liberto poderia libertar-se destes direitos residuais", "arg1_index": [9, 17], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "um escravo liberto", "arg0_index": [10, 12], "pred": "poderia libertar-se", "pred_index": [13, 14], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Ao perseguir seu mestrado na Universidade de Columbia em Nova York , Scieszka pintado apartamentos .": [{"arg0": "Scieszka", "arg0_index": [12, 12], "pred": "pintado", "pred_index": [13, 13], "arg1": "apartamentos", "arg1_index": [14, 14], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Scieszka", "arg0_index": [12, 12], "pred": "perseguir", "pred_index": [1, 1], "arg1": "seu mestrado na Universidade", "arg1_index": [2, 5], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Depois de anos de falar sobre a venda no Jap\u00e3o , mais e mais empresas dos EUA est\u00e3o seriamente derramar dentro .": [{"arg0": "mais e mais empresas dos EUA", "arg0_index": [11, 16], "pred": "est\u00e3o seriamente derramar dentro", "pred_index": [17, 20], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "", "arg0_index": [], "pred": "falar sobre", "pred_index": [4, 5], "arg1": "venda no Jap\u00e3o", "arg1_index": [7, 9], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Seus n\u00fameros continuaram a aumentar a cada ano como rumores sobre restri\u00e7\u00f5es de imigra\u00e7\u00e3o apareceu em grande parte da m\u00eddia cipriotas .": [{"arg0": "Seus n\u00fameros", "arg0_index": [0, 1], "pred": "continuaram a aumentar", "pred_index": [2, 4], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "rumores sobre restri\u00e7\u00f5es de imigra\u00e7\u00e3o", "arg0_index": [9, 13], "pred": "apareceu em", "pred_index": [14, 15], "arg1": "grande parte da m\u00eddia cipriotas", "arg1_index": [16, 20], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Ele subiu 2 3 \\/ 4 - 6 em volume de mais de 1,7 milh\u00f5es de a\u00e7\u00f5es depois que a empresa concordou em ser adquirida pelo Jap\u00e3o 's Chugai Pharmaceutical para cerca de US $ 110 milh\u00f5es - quase o dobro do pre\u00e7o de mercado Gen - Probe' estoque s .": [{"arg0": "Ele", "arg0_index": [0, 0], "pred": "subiu", "pred_index": [1, 1], "arg1": "2 3 \\/ 4", "arg1_index": [2, 5], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "a empresa", "arg0_index": [19, 20], "pred": "concordou em ser adquirida pelo", "pred_index": [21, 25], "arg1": "Jap\u00e3o 's Chugai Pharmaceutical", "arg1_index": [26, 29], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "$ 110 milh\u00f5es", "arg0_index": [34, 36], "pred": "", "pred_index": [-1, -1], "arg1": "quase o dobro do pre\u00e7o de mercado Gen - Probe' estoque s", "arg1_index": [38, 49], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "O mercado de EUA , tamb\u00e9m , \u00e9 dominado por um gigante , International Business Machines Corp .": [{"arg0": "O mercado de EUA", "arg0_index": [0, 3], "pred": "\u00e9 dominado por", "pred_index": [7, 9], "arg1": "um gigante , International Business Machines Corp", "arg1_index": [10, 16], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "At\u00e9 ent\u00e3o , ela estava criando n\u00e3o s\u00f3 os seus pr\u00f3prios filhos , mas tamb\u00e9m seus sobrinhos , que haviam sido \u00f3rf\u00e3s pela praga .": [{"arg0": "ela", "arg0_index": [3, 3], "pred": "estava criando", "pred_index": [4, 5], "arg1": "n\u00e3o s\u00f3 os seus pr\u00f3prios filhos , mas tamb\u00e9m seus sobrinhos", "arg1_index": [6, 16], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "seus sobrinhos", "arg0_index": [15, 16], "pred": "haviam sido \u00f3rf\u00e3s pela", "pred_index": [19, 22], "arg1": "praga", "arg1_index": [23, 23], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Somente suas f\u00e1bricas no Jap\u00e3o e na Cor\u00e9ia , empregando seus seguidores a sal\u00e1rios de subsist\u00eancia e produzir tudo , desde rifles de ginseng para vasos de m\u00e1rmore car o , ficou com o dinheiro que flui para o oeste .": [{"arg0": "Somente suas f\u00e1bricas no Jap\u00e3o e na Cor\u00e9ia", "arg0_index": [0, 7], "pred": "ficou", "pred_index": [31, 31], "arg1": "o dinheiro", "arg1_index": [33, 34], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "suas f\u00e1bricas no Jap\u00e3o e na Cor\u00e9ia", "arg0_index": [1, 7], "pred": "empregando", "pred_index": [9, 9], "arg1": "seus seguidores", "arg1_index": [10, 11], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "suas f\u00e1bricas no Jap\u00e3o e na Cor\u00e9ia", "arg0_index": [1, 7], "pred": "produzir", "pred_index": [17, 17], "arg1": "tudo , desde rifles de ginseng para vasos de m\u00e1rmore car", "arg1_index": [18, 28], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "o dinheiro", "arg0_index": [33, 34], "pred": "flui", "pred_index": [36, 36], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Richard Newsom , um oficial do estado da Calif\u00f3rnia , que examinou no ano passado pai Lincoln 's , American Continental Corp. , disse que tamb\u00e9m serra evid\u00eancias que os crimes tinham sido cometidos .": [{"arg0": "Richard Newsom", "arg0_index": [0, 1], "pred": "", "pred_index": [-1, -1], "arg1": "oficial do estado da Calif\u00f3rnia", "arg1_index": [4, 8], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "pai Lincoln 's", "arg0_index": [15, 17], "pred": "", "pred_index": [-1, -1], "arg1": "American Continental Corp.", "arg1_index": [19, 21], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Richard Newsom", "arg0_index": [0, 1], "pred": "examinou", "pred_index": [11, 11], "arg1": "pai Lincoln 's , American Continental Corp.", "arg1_index": [15, 21], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Richard Newsom", "arg0_index": [0, 1], "pred": "disse", "pred_index": [23, 23], "arg1": "que tamb\u00e9m serra evid\u00eancias que os crimes tinham sido cometidos", "arg1_index": [24, 33], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "", "arg0_index": [], "pred": "serra", "pred_index": [26, 26], "arg1": "evid\u00eancias que os crimes tinham sido cometidos", "arg1_index": [27, 33], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "crimes", "arg0_index": [30, 30], "pred": "tinham sido cometidos", "pred_index": [31, 33], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Como o preg\u00e3o de Londres chegou ao fim , o mercado ainda estava ouvindo o debate parlamentar sobre a economia , com a nova Chanceler do Tesouro John Major esperado para esclarecer sua abordagem \u00e0s quest\u00f5es de economia e moeda brit\u00e2nica .": [{"arg0": "o mercado", "arg0_index": [9, 10], "pred": "ainda estava ouvindo", "pred_index": [11, 13], "arg1": "o debate parlamentar sobre a economia", "arg1_index": [14, 19], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "John Major", "arg0_index": [27, 28], "pred": "", "pred_index": [-1, -1], "arg1": "nova Chanceler do Tesouro", "arg1_index": [23, 26], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "preg\u00e3o de Londres", "arg0_index": [2, 4], "pred": "chegou", "pred_index": [5, 5], "arg1": "ao fim", "arg1_index": [6, 7], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "John Major", "arg0_index": [27, 28], "pred": "para esclarecer", "pred_index": [30, 31], "arg1": "sua abordagem", "arg1_index": [32, 33], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Cidad\u00e3os pela Responsabilidade e \u00c9tica em Washington apresentou uma queixa a Comiss\u00e3o de \u00c9tica contra de Bond sobre seu papel na derrubada de Graves .": [{"arg0": "Cidad\u00e3os pela Responsabilidade e \u00c9tica em Washington", "arg0_index": [0, 6], "pred": "derrubada", "pred_index": [21, 21], "arg1": "uma queixa a Comiss\u00e3o de \u00c9tica", "arg1_index": [8, 13], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Em particular , Cyprinidae da Am\u00e9rica sudoeste do Norte foram severamente afectadas ; um n\u00famero consider\u00e1vel foi totalmente extinta ap\u00f3s a liquida\u00e7\u00e3o pelos europeus .": [{"arg0": "Cyprinidae da Am\u00e9rica sudoeste", "arg0_index": [3, 6], "pred": "foram severamente afectadas", "pred_index": [9, 11], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "um n\u00famero consider\u00e1vel", "arg0_index": [13, 15], "pred": "foi", "pred_index": [16, 16], "arg1": "totalmente extinta", "arg1_index": [17, 18], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Ele era um membro da Conven\u00e7\u00e3o Europeia , que redigiu o texto da Constitui\u00e7\u00e3o Europeia que nunca entrou em vigor .": [{"arg0": "Ele", "arg0_index": [0, 0], "pred": "era", "pred_index": [1, 1], "arg1": "um membro da Conven\u00e7\u00e3o Europeia", "arg1_index": [2, 6], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Conven\u00e7\u00e3o Europeia", "arg0_index": [5, 6], "pred": "redigiu", "pred_index": [9, 9], "arg1": "o texto da Constitui\u00e7\u00e3o Europeia", "arg1_index": [10, 14], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "o texto da Constitui\u00e7\u00e3o Europeia", "arg0_index": [10, 14], "pred": "nunca entrou em", "pred_index": [16, 18], "arg1": "vigor", "arg1_index": [19, 19], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Ele apareceu no jogo ao lado de seu colega Arsenal meio-campo Brian Marwood , que se juntou-los do Sheffield Wednesday oito meses antes .": [{"arg0": "Ele", "arg0_index": [0, 0], "pred": "apareceu no", "pred_index": [1, 2], "arg1": "no jogo", "arg1_index": [2, 3], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Brian Marwood", "arg0_index": [11, 12], "pred": "", "pred_index": [-1, -1], "arg1": "seu colega Arsenal meio-campo", "arg1_index": [7, 10], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Brian Marwood", "arg0_index": [11, 12], "pred": "que se juntou-los", "pred_index": [14, 16], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Do resto da popula\u00e7\u00e3o , houve 1 indiv\u00edduo que pertencia \u00e0 f\u00e9 crist\u00e3 cat\u00f3lica .": [{"arg0": "", "arg0_index": [], "pred": "houve", "pred_index": [5, 5], "arg1": "1 indiv\u00edduo que pertencia \u00e0 f\u00e9 crist\u00e3 cat\u00f3lica", "arg1_index": [6, 13], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "1 indiv\u00edduo", "arg0_index": [6, 7], "pred": "pertencia \u00e0", "pred_index": [9, 10], "arg1": "f\u00e9 crist\u00e3 cat\u00f3lica", "arg1_index": [11, 13], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "O conjunto tamb\u00e9m tem grava\u00e7\u00f5es extensivas com Deutsche Grammophon , Dorian Recordings , Newport Classic , Navona Records , e sob a sua pr\u00f3pria marca .": [{"arg0": "O conjunto", "arg0_index": [0, 1], "pred": "tem grava\u00e7\u00f5es extensivas com", "pred_index": [3, 6], "arg1": "Deutsche Grammophon , Dorian Recordings , Newport Classic , Navona Records", "arg1_index": [7, 17], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Trumbull foi creditado frequentemente incorretamente na imprensa como sendo o \u00fanico criador de efeitos especiais para 2001 .": [{"arg0": "Trumbull", "arg0_index": [0, 0], "pred": "foi creditado frequentemente incorretamente na imprensa como sendo", "pred_index": [1, 8], "arg1": "o \u00fanico criador de efeitos especiais para 2001", "arg1_index": [9, 16], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Sob um acordo de fus\u00e3o chegou a 14 setembro , o conselho UAL concordou em reembolsar certa do buy - out grupo de despesas com recursos pr\u00f3prios , mesmo se a opera\u00e7\u00e3o n\u00e3o foi conclu\u00edda , desde que o grupo n\u00e3o violou o acordo .": [{"arg0": "o conselho UAL", "arg0_index": [10, 12], "pred": "concordou em reembolsar", "pred_index": [13, 15], "arg1": "certa do buy - out grupo de despesas com recursos pr\u00f3prios", "arg1_index": [16, 26], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "a opera\u00e7\u00e3o", "arg0_index": [30, 31], "pred": "n\u00e3o foi conclu\u00edda", "pred_index": [32, 34], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "o grupo", "arg0_index": [38, 39], "pred": "n\u00e3o violou", "pred_index": [40, 41], "arg1": "o acordo", "arg1_index": [42, 43], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "um acordo de fus\u00e3o", "arg0_index": [1, 4], "pred": "chegou", "pred_index": [5, 5], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "elementos cis-reguladoras s\u00e3o sequ\u00eancias que controlam a transcri\u00e7\u00e3o de um gene pr\u00f3ximo .": [{"arg0": "elementos cis-reguladoras", "arg0_index": [0, 1], "pred": "s\u00e3o", "pred_index": [2, 2], "arg1": "sequ\u00eancias que controlam a transcri\u00e7\u00e3o de um gene pr\u00f3ximo", "arg1_index": [3, 11], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "sequ\u00eancias", "arg0_index": [3, 3], "pred": "que controlam", "pred_index": [4, 5], "arg1": "a transcri\u00e7\u00e3o de um gene pr\u00f3ximo", "arg1_index": [6, 11], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Ao contr\u00e1rio de Tio Sam mais tarde , ele n\u00e3o \u00e9 uma figura de autoridade , mas sim um pequeno propriet\u00e1rio rural que prefere seu pequeno cerveja e paz dom\u00e9stica , possuidor de n\u00e3o poder patriarcal nem rebeldia her\u00f3ica .": [{"arg0": "ele", "arg0_index": [8, 8], "pred": "n\u00e3o \u00e9", "pred_index": [9, 10], "arg1": "uma figura de autoridade", "arg1_index": [11, 14], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "ele", "arg0_index": [8, 8], "pred": "\u00e9", "pred_index": [10, 10], "arg1": "um pequeno propriet\u00e1rio rural que prefere seu pequeno cerveja e paz dom\u00e9stica , possuidor de n\u00e3o poder patriarcal nem rebeldia her\u00f3ica", "arg1_index": [18, 38], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "um pequeno", "arg0_index": [18, 19], "pred": "prefere", "pred_index": [23, 23], "arg1": "seu pequeno cerveja e paz dom\u00e9stica", "arg1_index": [24, 29], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "um pequeno", "arg0_index": [18, 19], "pred": "possuidor de", "pred_index": [31, 32], "arg1": "n\u00e3o poder patriarcal nem rebeldia her\u00f3ica", "arg1_index": [33, 38], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Terceira s\u00e9rie de drama de TV foi transmitido em 2008 - , com Mao Inoue como Anmitsu .": [{"arg0": "s\u00e9rie de drama de TV", "arg0_index": [1, 5], "pred": "foi transmitido em", "pred_index": [6, 8], "arg1": "2008", "arg1_index": [9, 9], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "s\u00e9rie de drama de TV", "arg0_index": [1, 5], "pred": "", "pred_index": [], "arg1": "Mao Inoue", "arg1_index": [13, 14], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "A CEN constitui um importante mas pequena parte de uma Parceria Estrat\u00e9gica Local .": [{"arg0": "A CEN", "arg0_index": [0, 1], "pred": "mas", "pred_index": [5, 5], "arg1": "um importante mas pequena parte de uma Parceria Estrat\u00e9gica Local", "arg1_index": [3, 12], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Bom 1H Os espectros de RMN pode ser adquirido com 16 repeties , o qual leva apenas alguns minutos .": [{"arg0": "Bom 1H Os espectros", "arg0_index": [0, 3], "pred": "pode ser adquirido com", "pred_index": [6, 9], "arg1": "16 repeties", "arg1_index": [10, 11], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "16 repeties", "arg0_index": [10, 11], "pred": "leva", "pred_index": [15, 15], "arg1": "apenas alguns minutos", "arg1_index": [16, 18], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Robert Charles `` Jack '' Russell , MBE , \u00e9 um jogador de cr\u00edquete aposentado Ingl\u00eas internacional , agora conhecido por suas habilidades como artista , como treinador wicketkeeping cr\u00edquete , e uma bola de futebol guarda-redes treinador .": [{"arg0": "Robert Charles `` Jack '' Russell , MBE", "arg0_index": [0, 7], "pred": "\u00e9", "pred_index": [9, 9], "arg1": "um jogador de cr\u00edquete aposentado", "arg1_index": [10, 14], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Robert Charles `` Jack '' Russell , MBE", "arg0_index": [0, 7], "pred": "conhecido por", "pred_index": [19, 20], "arg1": "suas habilidades", "arg1_index": [21, 22], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Robert Charles `` Jack '' Russell , MBE", "arg0_index": [0, 7], "pred": "conhecido por", "pred_index": [19, 20], "arg1": "suas habilidades", "arg1_index": [21, 22], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "I foi com agrado que o 23 de outubro item de Centennial Jornal reconhecido o dinheiro - conceito fundo como um dos eventos importantes do s\u00e9culo passado .": [{"arg0": "I", "arg0_index": [0, 0], "pred": "foi com agrado", "pred_index": [1, 3], "arg1": "que o 23 de outubro item de Centennial Jornal reconhecido o dinheiro - conceito fundo como um dos eventos importantes do s\u00e9culo passado", "arg1_index": [4, 26], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "o 23 de outubro item de Centennial Jornal", "arg0_index": [5, 12], "pred": "reconhecido", "pred_index": [13, 13], "arg1": "o dinheiro - conceito fundo", "arg1_index": [14, 18], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Dr. Pim jogado para a Irlanda contra a Inglaterra em 1892 , 1893 , 1894 e 1896 .": [{"arg0": "Dr. Pim", "arg0_index": [0, 1], "pred": "jogado para", "pred_index": [2, 3], "arg1": "Irlanda", "arg1_index": [5, 5], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "O governo , j\u00e1 fustigada por altas taxas de juros e uma desacelera\u00e7\u00e3o da economia , foi gravemente ferido por semana passada 's shake - em Thatcher arm\u00e1rio de s .": [{"arg0": "O governo", "arg0_index": [0, 1], "pred": "j\u00e1 fustigada por", "pred_index": [3, 5], "arg1": "taxas de juros e uma desacelera\u00e7\u00e3o da economia", "arg1_index": [7, 14], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "O governo", "arg0_index": [0, 1], "pred": "foi gravemente ferido por", "pred_index": [16, 19], "arg1": "semana passada 's shake - em", "arg1_index": [20, 25], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Durante os \u00faltimos 25 anos , o n\u00famero de balonistas ( aqueles que passaram um isqueiro Autoridade Federal de Avia\u00e7\u00e3o - de - teste de ar ) t\u00eam aumentado a partir de um par de centenas a v\u00e1rios milhares , com algumas estimativas correr t\u00e3o elevada como 10.000 .": [{"arg0": "o n\u00famero de balonistas", "arg0_index": [6, 9], "pred": "t\u00eam aumentado a partir", "pred_index": [27, 30], "arg1": "um par de", "arg1_index": [32, 34], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "balonistas", "arg0_index": [9, 9], "pred": "passaram", "pred_index": [13, 13], "arg1": "Autoridade Federal de Avia\u00e7\u00e3o - de - teste de ar", "arg1_index": [16, 25], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "algumas", "arg0_index": [41, 41], "pred": "estimativas correr t\u00e3o elevada", "pred_index": [42, 45], "arg1": "10.000", "arg1_index": [47, 47], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Agachado no shortstop , Bert Campaneris , uma vez mestre ladr\u00e3o 's Oakland , sem esfor\u00e7o apanha um groundball e vira-la para segundo .": [{"arg0": "Bert Campaneris", "arg0_index": [4, 5], "pred": "", "pred_index": [-1, -1], "arg1": "uma vez mestre ladr\u00e3o 's Oakland", "arg1_index": [7, 12], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Bert Campaneris", "arg0_index": [4, 5], "pred": "Agachado no", "pred_index": [0, 1], "arg1": "shortstop", "arg1_index": [2, 2], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Bert Campaneris", "arg0_index": [4, 5], "pred": "sem esfor\u00e7o apanha", "pred_index": [14, 16], "arg1": "uma vez mestre", "arg1_index": [7, 9], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Bert Campaneris", "arg0_index": [4, 5], "pred": "vira-la", "pred_index": [20, 20], "arg1": "um groundball", "arg1_index": [17, 18], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "diversidade de culturas , juntamente com suas excentricidades 's San Francisco s\u00e3o t\u00e3o grandes que eles t\u00eam influenciado fortemente o pa\u00eds e do mundo em geral ao longo dos anos .": [{"arg0": "diversidade de culturas , juntamente com suas excentricidades", "arg0_index": [0, 7], "pred": "s\u00e3o", "pred_index": [11, 11], "arg1": "t\u00e3o grandes", "arg1_index": [12, 13], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "diversidade de culturas , juntamente com suas excentricidades", "arg0_index": [0, 7], "pred": "t\u00eam influenciado", "pred_index": [16, 17], "arg1": "o pa\u00eds e do mundo", "arg1_index": [19, 23], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Consequentemente , o Missal Romano de 1962 , a edi\u00e7\u00e3o cujo uso continuado como uma forma extraordin\u00e1ria do rito romano \u00e9 autorizado pelo motu proprio `` Summorum Pontificum '' , tamb\u00e9m n\u00e3o tem nenhuma men\u00e7\u00e3o a ela .": [{"arg0": "uso continuado como uma forma extraordin\u00e1ria do rito romano", "arg0_index": [11, 19], "pred": "\u00e9 autorizado pelo", "pred_index": [20, 22], "arg1": "motu proprio `` Summorum Pontificum ''", "arg1_index": [23, 28], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "o Missal Romano", "arg0_index": [2, 4], "pred": "tem", "pred_index": [32, 32], "arg1": "nenhuma men\u00e7\u00e3o a ela", "arg1_index": [33, 36], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "operadores de a\u00e7\u00f5es Takeover observou que com o lixo - mercado de t\u00edtulos em desordem , Georgia - bid 's Pacific \u00e9 uma indica\u00e7\u00e3o de onde o jogo aquisi\u00e7\u00e3o \u00e9 dirigida : ou seja , as empresas industriais podem continuar licita\u00e7\u00e3o para o outro , mas os compradores financeiros , tais como compra alavancada - empresas de fora vai estar em desvantagem na obten\u00e7\u00e3o de financiamento .": [{"arg0": "operadores de a\u00e7\u00f5es Takeover", "arg0_index": [0, 3], "pred": "observou", "pred_index": [4, 4], "arg1": "que com o lixo - mercado de t\u00edtulos em desordem , Georgia - bid 's Pacific \u00e9 uma indica\u00e7\u00e3o de onde o jogo aquisi\u00e7\u00e3o \u00e9 dirigida", "arg1_index": [5, 30], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Georgia - bid 's Pacific", "arg0_index": [16, 20], "pred": "\u00e9", "pred_index": [21, 21], "arg1": "uma indica\u00e7\u00e3o de onde o jogo aquisi\u00e7\u00e3o \u00e9 dirigida", "arg1_index": [22, 30], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "a\u00e7\u00f5es Takeover", "arg0_index": [2, 3], "pred": "\u00e9 dirigida", "pred_index": [29, 30], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "empresas industriais", "arg0_index": [36, 37], "pred": "podem continuar licita\u00e7\u00e3o para", "pred_index": [38, 41], "arg1": "o outro", "arg1_index": [42, 43], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "compradores financeiros , tais como compra alavancada - empresas", "arg0_index": [47, 55], "pred": "estar em desvantagem na", "pred_index": [59, 62], "arg1": "obten\u00e7\u00e3o de financiamento", "arg1_index": [63, 65], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "compradores financeiros , tais como compra alavancada - empresas", "arg0_index": [47, 55], "pred": "obten\u00e7\u00e3o", "pred_index": [63, 63], "arg1": "financiamento", "arg1_index": [65, 65], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "O porta-voz Chemical disse que o banco tenha examinado suas metodologias e os controlos internos .": [{"arg0": "O porta-voz Chemical", "arg0_index": [0, 2], "pred": "disse", "pred_index": [3, 3], "arg1": "o banco tenha examinado suas metodologias e os controlos internos", "arg1_index": [5, 14], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "o banco", "arg0_index": [5, 6], "pred": "tenha examinado", "pred_index": [7, 8], "arg1": "suas metodologias", "arg1_index": [9, 10], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "o banco", "arg0_index": [5, 6], "pred": "tenha examinado", "pred_index": [7, 8], "arg1": "suas metodologias e os controlos internos", "arg1_index": [9, 14], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Ele deixou apenas um pequeno contingente para proteger o desfiladeiro , e levou todo o seu ex\u00e9rcito para destruir a plan\u00edcie que estava \u00e0 frente do ex\u00e9rcito de Alexandre .": [{"arg0": "Ele", "arg0_index": [0, 0], "pred": "deixou", "pred_index": [1, 1], "arg1": "apenas um pequeno contingente", "arg1_index": [2, 5], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Ele", "arg0_index": [0, 0], "pred": "proteger", "pred_index": [7, 7], "arg1": "o desfiladeiro", "arg1_index": [8, 9], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Ele", "arg0_index": [0, 0], "pred": "levou", "pred_index": [12, 12], "arg1": "todo o seu ex\u00e9rcito", "arg1_index": [13, 16], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "todo o seu ex\u00e9rcito", "arg0_index": [13, 16], "pred": "destruir", "pred_index": [18, 18], "arg1": "a plan\u00edcie que estava \u00e0 frente do ex\u00e9rcito de Alexandre", "arg1_index": [19, 28], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "pequeno", "arg0_index": [4, 4], "pred": "frente do", "pred_index": [24, 25], "arg1": "ex\u00e9rcito de Alexandre", "arg1_index": [26, 28], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "$ 300 milh\u00f5es em b\u00f4nus com vencimento 16 de novembro , 1993 , com equidade - warrants de compra , indicando um cup\u00e3o 3 3 \\/ 4 % a par via Nomura International Ltd .": [{"arg0": "$ 300 milh\u00f5es em b\u00f4nus", "arg0_index": [0, 4], "pred": "vencimento", "pred_index": [6, 6], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "equidade - warrants de compra", "arg0_index": [14, 18], "pred": "indicando", "pred_index": [20, 20], "arg1": "cup\u00e3o 3 3 \\/ 4 % a par", "arg1_index": [22, 29], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "A reuni\u00e3o longa trilha da motocicleta estrada , um dos poucos realizada no Reino Unido , foi encenado em Ammanford .": [{"arg0": "A reuni\u00e3o longa trilha da motocicleta estrada", "arg0_index": [0, 6], "pred": "", "pred_index": [-1, -1], "arg1": "um dos poucos realizada no Reino Unido", "arg1_index": [8, 14], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "um dos poucos", "arg0_index": [8, 10], "pred": "realizada", "pred_index": [11, 11], "arg1": "no Reino Unido", "arg1_index": [12, 14], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "A reuni\u00e3o longa trilha da motocicleta estrada", "arg0_index": [0, 6], "pred": "foi encenado em", "pred_index": [16, 18], "arg1": "Ammanford", "arg1_index": [19, 19], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "A equipe oferece um estilo familiar , jantar caseiro cada noite , que \u00e9 frequentado n\u00e3o s\u00f3 por estudantes de Dartmouth , mas por membros da comunidade , Appalachian Trail thru-caminhantes , turistas , e at\u00e9 mesmo professores Dartmouth .": [{"arg0": "A equipe", "arg0_index": [0, 1], "pred": "oferece", "pred_index": [2, 2], "arg1": "um estilo familiar , jantar caseiro", "arg1_index": [3, 8], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "estilo familiar , jantar caseiro", "arg0_index": [4, 8], "pred": "\u00e9 frequentado", "pred_index": [13, 14], "arg1": "n\u00e3o s\u00f3 por estudantes de Dartmouth , mas por membros da comunidade , Appalachian Trail thru-caminhantes , turistas , e at\u00e9 mesmo professores Dartmouth", "arg1_index": [15, 38], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Na Guerra Civil , ele defendia forte acusa\u00e7\u00e3o do esfor\u00e7o de guerra da Uni\u00e3o , o fim da escravid\u00e3o , e direitos civis para libertados afro-americanos .": [{"arg0": "ele", "arg0_index": [4, 4], "pred": "forte acusa\u00e7\u00e3o do esfor\u00e7o de", "pred_index": [6, 10], "arg1": "esfor\u00e7o de guerra da Uni\u00e3o", "arg1_index": [9, 13], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "ele", "arg0_index": [4, 4], "pred": "forte acusa\u00e7\u00e3o do esfor\u00e7o de", "pred_index": [6, 10], "arg1": "do esfor\u00e7o de guerra da Uni\u00e3o , o fim da escravid\u00e3o , e direitos civis para libertados", "arg1_index": [8, 24], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Ap\u00f3s este ponto muitos dos republicanos foram presos em Free State `` ups redondas '' quando eles tinham sa\u00eddo de seu esconderijo e voltaram para casa .": [{"arg0": "muitos dos republicanos", "arg0_index": [3, 5], "pred": "foram presos", "pred_index": [6, 7], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "muitos dos republicanos", "arg0_index": [3, 5], "pred": "tinham sa\u00eddo de", "pred_index": [17, 19], "arg1": "esconderijo", "arg1_index": [21, 21], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "eles", "arg0_index": [16, 16], "pred": "redondas", "pred_index": [13, 13], "arg1": "casa", "arg1_index": [25, 25], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Li Hongzhi come\u00e7ou seus ensinamentos p\u00fablicos de Falun Gong em 13 de Maio de 1992 no Changchun , e , posteriormente , deu palestras e ensinou exerc\u00edcios do Falun Gong na China .": [{"arg0": "Li Hongzhi", "arg0_index": [0, 1], "pred": "come\u00e7ou", "pred_index": [2, 2], "arg1": "seus ensinamentos p\u00fablicos de Falun Gong", "arg1_index": [3, 8], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Li Hongzhi", "arg0_index": [0, 1], "pred": "posteriormente , deu", "pred_index": [20, 22], "arg1": "palestras", "arg1_index": [23, 23], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Li Hongzhi", "arg0_index": [0, 1], "pred": "ensinou", "pred_index": [25, 25], "arg1": "exerc\u00edcios do Falun Gong", "arg1_index": [26, 29], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "O equipamento Charles City foi transferido para Mason City para substituir equipamentos queimados na loja de fogo 24 de novembro de 1967 .": [{"arg0": "O equipamento Charles City", "arg0_index": [0, 3], "pred": "foi transferido para", "pred_index": [4, 6], "arg1": "Mason City", "arg1_index": [7, 8], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "O equipamento Charles City", "arg0_index": [0, 3], "pred": "substituir", "pred_index": [10, 10], "arg1": "equipamentos queimados na loja de fogo 24 de novembro de 1967", "arg1_index": [11, 21], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "equipamento", "arg0_index": [1, 1], "pred": "queimados", "pred_index": [12, 12], "arg1": "24 de novembro de 1967", "arg1_index": [17, 21], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "A extens\u00e3o da Biblioteca Universit\u00e1ria pode ser encontrado no segundo andar , e estacionamento para 120 carros no terceiro e sexto andares .": [{"arg0": "A extens\u00e3o da Biblioteca Universit\u00e1ria", "arg0_index": [0, 4], "pred": "pode ser encontrado", "pred_index": [5, 7], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "estacionamento para 120 carros", "arg0_index": [13, 16], "pred": "pode ser encontrado", "pred_index": [5, 7], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Outros sinais de subluxa\u00e7\u00e3o lente incluem leve vermelhid\u00e3o conjuntival , degenera\u00e7\u00e3o humor v\u00edtreo , prolapso do vtreo para a c\u00e2mara anterior , e um aumento ou diminui\u00e7\u00e3o da profundidade da c\u00e2mara anterior .": [{"arg0": "Outros sinais de subluxa\u00e7\u00e3o lente", "arg0_index": [0, 4], "pred": "incluem", "pred_index": [5, 5], "arg1": "leve vermelhid\u00e3o conjuntival , degenera\u00e7\u00e3o humor v\u00edtreo , prolapso do vtreo para a c\u00e2mara anterior , e um aumento ou diminui\u00e7\u00e3o da profundidade da c\u00e2mara anterior", "arg1_index": [6, 31], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Esses objetos s\u00e3o jogados fora se sua proje\u00e7\u00e3o tela \u00e9 pequena demais .": [{"arg0": "Esses objetos", "arg0_index": [0, 1], "pred": "s\u00e3o jogados fora", "pred_index": [2, 4], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "sua proje\u00e7\u00e3o tela", "arg0_index": [6, 8], "pred": "\u00e9", "pred_index": [9, 9], "arg1": "pequena", "arg1_index": [10, 10], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Os machos tiveram uma renda mediana de $ 36.016 contra $ 32.679 para f\u00eameas .": [{"arg0": "Os machos", "arg0_index": [0, 1], "pred": "tiveram", "pred_index": [2, 2], "arg1": "uma renda mediana de $ 36.016", "arg1_index": [3, 8], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "O Watson mais pr\u00f3ximo j\u00e1 recebi foi quando os republicanos tinham 12 assentos na casa do estado em 2003 .": [{"arg0": "O Watson mais pr\u00f3ximo j\u00e1 recebi", "arg0_index": [0, 5], "pred": "foi", "pred_index": [6, 6], "arg1": "quando os republicanos tinham 12 assentos na casa do estado em 2003", "arg1_index": [7, 18], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "republicanos", "arg0_index": [9, 9], "pred": "tinham", "pred_index": [10, 10], "arg1": "12 assentos", "arg1_index": [11, 12], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Tal como \u00e9 verdade para todos os sensores , a precis\u00e3o absoluta de uma medi\u00e7\u00e3o requer uma funcionalidade para a calibra\u00e7\u00e3o .": [{"arg0": "absoluta de uma medi\u00e7\u00e3o requer uma funcionalidade para a calibra\u00e7\u00e3o", "arg0_index": [11, 20], "pred": "\u00e9", "pred_index": [2, 2], "arg1": "verdade", "arg1_index": [3, 3], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "precis\u00e3o absoluta de uma medi\u00e7\u00e3o", "arg0_index": [10, 14], "pred": "requer", "pred_index": [15, 15], "arg1": "uma funcionalidade para a calibra\u00e7\u00e3o", "arg1_index": [16, 20], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Apesar dos ganhos modestos , os comerciantes disseram que o mercado continua a ser mon\u00f3tona , com os investidores permanecendo com cautela \u00e0 margem .": [{"arg0": "comerciantes", "arg0_index": [6, 6], "pred": "disseram", "pred_index": [7, 7], "arg1": "o mercado continua a ser mon\u00f3tona , com os investidores permanecendo com cautela \u00e0 margem", "arg1_index": [9, 23], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "o mercado", "arg0_index": [9, 10], "pred": "permanecendo", "pred_index": [19, 19], "arg1": "margem", "arg1_index": [23, 23], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "investidores", "arg0_index": [18, 18], "pred": "permanecendo com cautela", "pred_index": [19, 21], "arg1": "\u00e0 margem", "arg1_index": [22, 23], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Uma surpreendente 78 % das pessoas disseram que se exercitam regularmente , acima dos 73 % em 1981 .": [{"arg0": "Uma surpreendente 78 % das pessoas", "arg0_index": [0, 5], "pred": "disseram", "pred_index": [6, 6], "arg1": "se exercitam regularmente", "arg1_index": [8, 10], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "que", "arg0_index": [7, 7], "pred": "se exercitam regularmente", "pred_index": [8, 10], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "O Bureau de \u00c1lcool , Tabaco , Armas de Fogo e Explosivos , formado em 1886 , \u00e9 uma organiza\u00e7\u00e3o de aplica\u00e7\u00e3o da lei federal dentro do Departamento de Justi\u00e7a dos Estados Unidos .": [{"arg0": "O Bureau de \u00c1lcool , Tabaco , Armas de Fogo e Explosivos", "arg0_index": [0, 11], "pred": "formado em", "pred_index": [13, 14], "arg1": "1886", "arg1_index": [15, 15], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "O Bureau de \u00c1lcool , Tabaco , Armas de Fogo e Explosivos", "arg0_index": [0, 11], "pred": "\u00e9", "pred_index": [17, 17], "arg1": "\u00e9 uma organiza\u00e7\u00e3o de aplica\u00e7\u00e3o da lei federal", "arg1_index": [17, 24], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Durante a Segunda Guerra Mundial , o n\u00famero de caf\u00e9s run turcos aumentou de 20 em 1939 para 200 em 1945 , que criou uma demanda por trabalhadores cipriotas turcos mais .": [{"arg0": "o n\u00famero de caf\u00e9s run turcos", "arg0_index": [6, 11], "pred": "aumentou de", "pred_index": [12, 13], "arg1": "20 em 1939", "arg1_index": [14, 16], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "o n\u00famero de caf\u00e9s run turcos aumentou de 20 em 1939 para 200 em 1945", "arg0_index": [6, 20], "pred": "criou", "pred_index": [23, 23], "arg1": "uma demanda", "arg1_index": [24, 25], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "E , j\u00e1 que o p\u00fablico sempre foi fascinado por fofocas e voyeurismo , rep\u00f3rteres e editores vai esticar para \u00e2ngulos criativos para justificar a inclus\u00e3o dos fatos colaterais sobre a vida privada , incluindo atividades sexuais e rela\u00e7\u00f5es dom\u00e9sticas , atividades dos membros da fam\u00edlia , e todos os assuntos sobre mentais e sa\u00fade f\u00edsica .": [{"arg0": "o p\u00fablico", "arg0_index": [4, 5], "pred": "sempre foi fascinado por", "pred_index": [6, 9], "arg1": "fofocas e voyeurismo", "arg1_index": [10, 12], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "rep\u00f3rteres e editores", "arg0_index": [14, 16], "pred": "vai esticar para", "pred_index": [17, 19], "arg1": "\u00e2ngulos criativos", "arg1_index": [20, 21], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "fatos colaterais sobre a vida privada", "arg0_index": [27, 32], "pred": "incluindo", "pred_index": [34, 34], "arg1": "atividades sexuais e rela\u00e7\u00f5es dom\u00e9sticas , atividades dos membros da fam\u00edlia , e todos os assuntos sobre mentais e sa\u00fade f\u00edsica", "arg1_index": [35, 55], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "`` Black Water '' tornou-se um dos poucos registros por qualquer ato lan\u00e7ada como lado B para outro Hot 100 hit `` antes de '' no topo da Hot 100 em si .": [{"arg0": "`` Black Water ''", "arg0_index": [0, 3], "pred": "tornou-se", "pred_index": [4, 4], "arg1": "um dos poucos registros", "arg1_index": [5, 8], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "qualquer ato", "arg0_index": [10, 11], "pred": "lan\u00e7ada como", "pred_index": [12, 13], "arg1": "B para outro Hot 100 hit", "arg1_index": [15, 20], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "`` Black Water ''", "arg0_index": [0, 3], "pred": "outro", "pred_index": [17, 17], "arg1": "Hot 100", "arg1_index": [18, 19], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "`` Ningu\u00e9m nos disse ; ningu\u00e9m nos chamou '' , diz uma autoridade pr\u00f3xima ao caso , que pediu para n\u00e3o ser identificado .": [{"arg0": "uma autoridade pr\u00f3xima ao caso", "arg0_index": [11, 15], "pred": "diz", "pred_index": [10, 10], "arg1": "`` Ningu\u00e9m nos disse ; ningu\u00e9m nos chamou ''", "arg1_index": [0, 8], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "uma autoridade pr\u00f3xima ao caso", "arg0_index": [11, 15], "pred": "pediu para n\u00e3o ser identificado", "pred_index": [18, 22], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Ningu\u00e9m", "arg0_index": [1, 1], "pred": "disse", "pred_index": [3, 3], "arg1": "nos", "arg1_index": [2, 2], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "ningu\u00e9m", "arg0_index": [5, 5], "pred": "chamou", "pred_index": [7, 7], "arg1": "nos", "arg1_index": [6, 6], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Uma lista parcial de turbom\u00e1quinas que pode utilizar um ou mais compressores centr\u00edfugos dentro da m\u00e1quina s\u00e3o listados aqui .": [{"arg0": "Uma lista parcial de turbom\u00e1quinas que pode utilizar um ou mais compressores centr\u00edfugos dentro da m\u00e1quina", "arg0_index": [0, 15], "pred": "s\u00e3o listados", "pred_index": [16, 17], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Uma lista parcial de turbom\u00e1quinas", "arg0_index": [0, 4], "pred": "pode utilizar", "pred_index": [6, 7], "arg1": "um ou mais compressores centr\u00edfugos", "arg1_index": [8, 12], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Langford mantido Walcott \u00e0 dist\u00e2ncia com o seu maior alcance e usou seu footwork para evadir todos os ataques de Walcott .": [{"arg0": "Langford", "arg0_index": [0, 0], "pred": "mantido", "pred_index": [1, 1], "arg1": "Walcott", "arg1_index": [2, 2], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Langford", "arg0_index": [0, 0], "pred": "usou", "pred_index": [11, 11], "arg1": "seu footwork", "arg1_index": [12, 13], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "seu footwork", "arg0_index": [12, 13], "pred": "evadir", "pred_index": [15, 15], "arg1": "todos os ataques de Walcott", "arg1_index": [16, 20], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Aqui est\u00e3o as tend\u00eancias de pre\u00e7os no mundo de grandes mercados de a\u00e7\u00f5es , conforme calculado pelo Morgan Stanley Capital International Perspective , Genebra .": [{"arg0": "Aqui", "arg0_index": [0, 0], "pred": "est\u00e3o", "pred_index": [1, 1], "arg1": "tend\u00eancias de pre\u00e7os", "arg1_index": [3, 5], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "tend\u00eancias de pre\u00e7os no mundo de grandes mercados de a\u00e7\u00f5es", "arg0_index": [3, 12], "pred": "calculado pelo", "pred_index": [15, 16], "arg1": "Morgan Stanley Capital International Perspective , Genebra", "arg1_index": [17, 23], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Mas totalmente 90 % dos entrevistados sentiram que n\u00e3o tinha necessidade de pertencer a um clube de sa\u00fade .": [{"arg0": "totalmente 90 % dos entrevistados", "arg0_index": [1, 5], "pred": "sentiram", "pred_index": [6, 6], "arg1": "necessidade de pertencer a um clube de sa\u00fade", "arg1_index": [10, 17], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "", "arg0_index": [], "pred": "n\u00e3o tinha necessidade de pertencer a", "pred_index": [8, 13], "arg1": "um clube de sa\u00fade", "arg1_index": [14, 17], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "t\u00edtulos do governo brit\u00e2nico terminou moderadamente mais altos , incentivado por uma libra mais est\u00e1vel e um aumento nos estoques brit\u00e2nicos .": [{"arg0": "t\u00edtulos do governo brit\u00e2nico", "arg0_index": [0, 3], "pred": "terminou", "pred_index": [4, 4], "arg1": "moderadamente mais", "arg1_index": [5, 6], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "t\u00edtulos do governo brit\u00e2nico", "arg0_index": [0, 3], "pred": "incentivado por", "pred_index": [9, 10], "arg1": "uma libra mais est\u00e1vel e um aumento nos estoques brit\u00e2nicos", "arg1_index": [11, 20], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Modifica\u00e7\u00e3o do rio come\u00e7ou a s\u00e9rio com a chegada da Florida East Coast Railway em Miami em 1896 .": [{"arg0": "Modifica\u00e7\u00e3o do rio", "arg0_index": [0, 2], "pred": "come\u00e7ou a", "pred_index": [3, 4], "arg1": "s\u00e9rio", "arg1_index": [5, 5], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Watson serviu como l\u00edder da minoria , uma vez eleito por seu caucus em Novembro de 1998 .": [{"arg0": "Watson", "arg0_index": [0, 0], "pred": "serviu como", "pred_index": [1, 2], "arg1": "l\u00edder da minoria", "arg1_index": [3, 5], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Watson", "arg0_index": [0, 0], "pred": "eleito por", "pred_index": [9, 10], "arg1": "seu caucus", "arg1_index": [11, 12], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Daimler disse que teve conversas com Jaguar sobre poss\u00edveis joint ventures .": [{"arg0": "Daimler", "arg0_index": [0, 0], "pred": "disse", "pred_index": [1, 1], "arg1": "que teve conversas com Jaguar sobre poss\u00edveis joint ventures", "arg1_index": [2, 10], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "que", "arg0_index": [2, 2], "pred": "teve conversas com", "pred_index": [3, 5], "arg1": "Jaguar", "arg1_index": [6, 6], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "ele foi um dos poucos organistas de concertos em todo o mundo que se ap\u00f3iam exclusivamente , dando recitais , concertos e master classes , sem qualquer suplemento de ensino ou a posi\u00e7\u00e3o da igreja .": [{"arg0": "ele", "arg0_index": [0, 0], "pred": "foi", "pred_index": [1, 1], "arg1": "um dos poucos organistas de concertos em todo o mundo que se ap\u00f3iam exclusivamente , dando recitais , concertos e master classes , sem qualquer suplemento de ensino ou a posi\u00e7\u00e3o", "arg1_index": [2, 32], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "organistas de concertos", "arg0_index": [5, 7], "pred": "se ap\u00f3iam", "pred_index": [13, 14], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "organistas de concertos", "arg0_index": [5, 7], "pred": "dando", "pred_index": [17, 17], "arg1": "recitais , concertos e master classes", "arg1_index": [18, 23], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Um porta-voz disse HealthVest pagou dois dos tr\u00eas bancos que devidos interesse em Outubro e est\u00e1 em negocia\u00e7\u00f5es com o terceiro banco .": [{"arg0": "Um porta-voz", "arg0_index": [0, 1], "pred": "disse", "pred_index": [2, 2], "arg1": "HealthVest pagou dois dos tr\u00eas bancos que devidos interesse em Outubro e est\u00e1 em negocia\u00e7\u00f5es com o terceiro banco", "arg1_index": [3, 21], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "HealthVest", "arg0_index": [3, 3], "pred": "pagou", "pred_index": [4, 4], "arg1": "dois dos tr\u00eas bancos que devidos interesse", "arg1_index": [5, 11], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "HealthVest", "arg0_index": [3, 3], "pred": "est\u00e1 em negocia\u00e7\u00f5es com", "pred_index": [15, 18], "arg1": "o terceiro banco", "arg1_index": [19, 21], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "HealthVest", "arg0_index": [3, 3], "pred": "devidos interesse em", "pred_index": [10, 12], "arg1": "dos tr\u00eas bancos", "arg1_index": [6, 8], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Esta semana , New York City anunciou a 10 - pol\u00edtica de ponto modelada no projeto de lei federal de direitos para os contribuintes .": [{"arg0": "New York City", "arg0_index": [3, 5], "pred": "anunciou", "pred_index": [6, 6], "arg1": "a 10 - pol\u00edtica de ponto modelada", "arg1_index": [7, 13], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Devido \u00e0 natureza oposta das duas can\u00e7\u00f5es , eles podem ser vistos como um debate sobre as atitudes opostas sobre o amor encontrados em todo o jogo .": [{"arg0": "duas can\u00e7\u00f5es", "arg0_index": [5, 6], "pred": "podem ser vistos como", "pred_index": [9, 12], "arg1": "um debate", "arg1_index": [13, 14], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "amor", "arg0_index": [21, 21], "pred": "encontrados", "pred_index": [22, 22], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "O contingente persa que era para proteger a defile logo abandonou , e Alexander atravessou sem quaisquer problemas .": [{"arg0": "O contingente persa que era para proteger a defile", "arg0_index": [0, 8], "pred": "logo abandonou", "pred_index": [9, 10], "arg1": "que", "arg1_index": [3, 3], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "O contingente persa", "arg0_index": [0, 2], "pred": "que era para proteger", "pred_index": [3, 6], "arg1": "a defile", "arg1_index": [7, 8], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Alexander", "arg0_index": [13, 13], "pred": "atravessou", "pred_index": [14, 14], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "James Arthur Hogue \u00e9 um impostor norte-americano que mais famosa entrou na Universidade de Princeton , colocando como um \u00f3rf\u00e3o de auto-didata .": [{"arg0": "James Arthur Hogue", "arg0_index": [0, 2], "pred": "\u00e9", "pred_index": [3, 3], "arg1": "um impostor norte-americano", "arg1_index": [4, 6], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "James Arthur Hogue", "arg0_index": [0, 2], "pred": "mais famosa entrou", "pred_index": [8, 10], "arg1": "Universidade de Princeton", "arg1_index": [12, 14], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "James Arthur Hogue", "arg0_index": [0, 2], "pred": "colocando como", "pred_index": [16, 17], "arg1": "um \u00f3rf\u00e3o de auto-didata", "arg1_index": [18, 21], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "V\u00e1rios is\u00f3meros de octeno s\u00e3o conhecidos , dependendo da posi\u00e7\u00e3o e a geometria da liga\u00e7\u00e3o dupla na cadeia de carbono .": [{"arg0": "V\u00e1rios is\u00f3meros de octeno", "arg0_index": [0, 3], "pred": "s\u00e3o conhecidos", "pred_index": [4, 5], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "V\u00e1rios is\u00f3meros de octeno", "arg0_index": [0, 3], "pred": "dependendo", "pred_index": [7, 7], "arg1": "da posi\u00e7\u00e3o e a geometria da liga\u00e7\u00e3o dupla", "arg1_index": [8, 15], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "A s\u00e9rie de tr\u00eas emendas constitucionais em 1933 reduziram severamente o papel do Governador-Geral do Estado Livre Irland\u00eas .": [{"arg0": "A s\u00e9rie de tr\u00eas emendas constitucionais em 1933", "arg0_index": [0, 7], "pred": "reduziram severamente", "pred_index": [8, 9], "arg1": "o papel do Governador-Geral do Estado Livre Irland\u00eas", "arg1_index": [10, 17], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Byers afirma que a cidadania global \u00e9 um `` poderoso termo '' , porque `` as pessoas que invoc\u00e1-lo faz\u00ea-lo para provocar e justificar a a\u00e7\u00e3o , '' e incentiva os participantes de sua palestra para re-apropriar-se dela para que o seu significado de ter um prop\u00f3sito positivo , com base nos valores idealistas .": [{"arg0": "Byers", "arg0_index": [0, 0], "pred": "afirma", "pred_index": [1, 1], "arg1": "que a cidadania global \u00e9 um `` poderoso termo '' , porque `` as pessoas que invoc\u00e1-lo faz\u00ea-lo para provocar e justificar a a\u00e7\u00e3o", "arg1_index": [2, 25], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Byers", "arg0_index": [0, 0], "pred": "incentiva", "pred_index": [29, 29], "arg1": "os participantes de sua palestra", "arg1_index": [30, 34], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "cidadania global", "arg0_index": [4, 5], "pred": "\u00e9", "pred_index": [6, 6], "arg1": "um `` poderoso termo ''", "arg1_index": [7, 11], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "pessoas que invoc\u00e1-lo", "arg0_index": [16, 18], "pred": "faz\u00ea-lo", "pred_index": [19, 19], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "pessoas", "arg0_index": [16, 16], "pred": "provocar", "pred_index": [21, 21], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "pessoas que invoc\u00e1-lo", "arg0_index": [16, 18], "pred": "provocar", "pred_index": [21, 21], "arg1": "a\u00e7\u00e3o", "arg1_index": [25, 25], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "pessoas que invoc\u00e1-lo", "arg0_index": [16, 18], "pred": "justificar", "pred_index": [23, 23], "arg1": "a\u00e7\u00e3o", "arg1_index": [25, 25], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "participantes de sua palestra", "arg0_index": [31, 34], "pred": "re-apropriar-se", "pred_index": [36, 36], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "seu significado", "arg0_index": [41, 42], "pred": "ter", "pred_index": [44, 44], "arg1": "um prop\u00f3sito positivo", "arg1_index": [45, 47], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "um prop\u00f3sito positivo", "arg0_index": [45, 47], "pred": "base nos", "pred_index": [50, 51], "arg1": "valores idealistas", "arg1_index": [52, 53], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Mas ele faz isso \u00e0 custa de aprofundar a exposi\u00e7\u00e3o do contribuinte 's se o FHA \u00e9 for\u00e7ado a pagar por mais empr\u00e9stimos vai azedar .": [{"arg0": "ele", "arg0_index": [1, 1], "pred": "faz", "pred_index": [2, 2], "arg1": "isso", "arg1_index": [3, 3], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "o FHA", "arg0_index": [14, 15], "pred": "\u00e9 for\u00e7ado a pagar por", "pred_index": [16, 20], "arg1": "mais empr\u00e9stimos vai azedar", "arg1_index": [21, 24], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "mais empr\u00e9stimos", "arg0_index": [21, 22], "pred": "vai", "pred_index": [23, 23], "arg1": "azedar", "arg1_index": [24, 24], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "", "arg0_index": [], "pred": "aprofundar", "pred_index": [7, 7], "arg1": "exposi\u00e7\u00e3o do contribuinte 's", "arg1_index": [9, 12], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "", "arg0_index": [], "pred": "", "pred_index": [], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Em 1926 , `` The News and Courier '' foi comprado pelos propriet\u00e1rios de Charleston 'papel de noite principal s , `` The Evening Post . ''": [{"arg0": "News and Courier ''", "arg0_index": [5, 8], "pred": "foi comprado pelos", "pred_index": [9, 11], "arg1": "propriet\u00e1rios de Charleston", "arg1_index": [12, 14], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Charleston 'papel de noite principal s", "arg0_index": [14, 19], "pred": "", "pred_index": [-1, -1], "arg1": "`` The Evening Post . ''", "arg1_index": [21, 26], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Mr. Mulford disse relatos de tens\u00f5es entre o Tesouro e Fed ter sido exagerada , insistindo que eles envolvidos `` nuances . ''": [{"arg0": "Mr. Mulford", "arg0_index": [0, 1], "pred": "disse", "pred_index": [2, 2], "arg1": "relatos de tens\u00f5es entre o Tesouro e Fed ter sido exagerada", "arg1_index": [3, 13], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Mr. Mulford", "arg0_index": [0, 1], "pred": "insistindo", "pred_index": [15, 15], "arg1": "que eles envolvidos `` nuances . ''", "arg1_index": [16, 22], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "relatos de tens\u00f5es entre o Tesouro e Fed", "arg0_index": [3, 10], "pred": "ter sido exagerada", "pred_index": [11, 13], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "eles", "arg0_index": [17, 17], "pred": "envolvidos", "pred_index": [18, 18], "arg1": "`` nuances . ''", "arg1_index": [19, 22], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Com especialistas no mercado imobili\u00e1rio Olympia & York e Itel de Samuel Zell possuir cerca de 40% das a\u00e7\u00f5es da Santa Fe , gest\u00e3o estava sob press\u00e3o - em uma frase favorecido de Wall Street - de forma r\u00e1pida `` valores Maximizar . ''": [{"arg0": "Olympia & York e Itel de Samuel Zell", "arg0_index": [5, 12], "pred": "possuir cerca de", "pred_index": [13, 15], "arg1": "40% das a\u00e7\u00f5es da Santa Fe", "arg1_index": [16, 21], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "gest\u00e3o", "arg0_index": [23, 23], "pred": "estava sob", "pred_index": [24, 25], "arg1": "press\u00e3o", "arg1_index": [26, 26], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Olympia & York", "arg0_index": [5, 7], "pred": "", "pred_index": [-1, -1], "arg1": "especialistas no mercado imobili\u00e1rio", "arg1_index": [1, 4], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Itel de Samuel Zell", "arg0_index": [9, 12], "pred": "", "pred_index": [-1, -1], "arg1": "especialistas no mercado imobili\u00e1rio", "arg1_index": [1, 4], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Wall Street", "arg0_index": [33, 34], "pred": "Maximizar", "pred_index": [41, 41], "arg1": "valores", "arg1_index": [40, 40], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Rosen argumenta que uma das disposi\u00e7\u00f5es mais importantes da Constitui\u00e7\u00e3o in Exile \u00e9 limita\u00e7\u00f5es sobre a cl\u00e1usula de com\u00e9rcio interestadual , que foram prejudicados por a interpreta\u00e7\u00e3o expansiva da Suprema Corte do poder do Congresso de regular o com\u00e9rcio interestadual ... estendido para incluir quaisquer atividades que possam afetar o com\u00e9rcio indiretamente durante o New Deal .": [{"arg0": "Rosen", "arg0_index": [0, 0], "pred": "argumenta", "pred_index": [1, 1], "arg1": "que uma das disposi\u00e7\u00f5es mais importantes da Constitui\u00e7\u00e3o in Exile \u00e9 limita\u00e7\u00f5es sobre a cl\u00e1usula de com\u00e9rcio interestadual , que foram prejudicados por a interpreta\u00e7\u00e3o expansiva da Suprema Corte do poder do Congresso de regular o com\u00e9rcio interestadual ... estendido para incluir quaisquer atividades que possam afetar o com\u00e9rcio indiretamente durante o New Deal", "arg1_index": [2, 55], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "uma das disposi\u00e7\u00f5es mais importantes da Constitui\u00e7\u00e3o in Exile", "arg0_index": [3, 11], "pred": "\u00e9", "pred_index": [12, 12], "arg1": "limita\u00e7\u00f5es sobre a cl\u00e1usula de com\u00e9rcio interestadual", "arg1_index": [13, 19], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "limita\u00e7\u00f5es sobre a cl\u00e1usula de com\u00e9rcio interestadual", "arg0_index": [13, 19], "pred": "foram prejudicados por", "pred_index": [22, 24], "arg1": "a interpreta\u00e7\u00e3o expansiva da Suprema Corte do poder do Congresso", "arg1_index": [25, 34], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "a interpreta\u00e7\u00e3o expansiva da Suprema Corte do poder do Congresso", "arg0_index": [25, 34], "pred": "regular", "pred_index": [36, 36], "arg1": "com\u00e9rcio interestadual", "arg1_index": [38, 39], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "", "arg0_index": [], "pred": "estendido para incluir", "pred_index": [41, 43], "arg1": "atividades que possam afetar o com\u00e9rcio indiretamente", "arg1_index": [45, 51], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "quaisquer atividades", "arg0_index": [44, 45], "pred": "possam afetar", "pred_index": [47, 48], "arg1": "com\u00e9rcio", "arg1_index": [50, 50], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "O remetente indicador \u00e9 geralmente um arranjo magneticamente acoplado , com um bra\u00e7o de flutua\u00e7\u00e3o no interior do tanque de rota\u00e7\u00e3o de um \u00edman , o qual roda um calibre externo .": [{"arg0": "O remetente indicador", "arg0_index": [0, 2], "pred": "\u00e9 geralmente", "pred_index": [3, 4], "arg1": "um arranjo magneticamente acoplado", "arg1_index": [5, 8], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "um bra\u00e7o de flutua\u00e7\u00e3o no interior do tanque", "arg0_index": [11, 18], "pred": "rota\u00e7\u00e3o", "pred_index": [20, 20], "arg1": "um \u00edman", "arg1_index": [22, 23], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "um \u00edman", "arg0_index": [22, 23], "pred": "roda", "pred_index": [27, 27], "arg1": "um calibre externo", "arg1_index": [28, 30], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "O `` Charleston Courier '' , fundada em 1803 , e `` Charleston Daily News '' , fundada em 1865 , se fundiram para formar o `` News and Courier '' em 1873 .": [{"arg0": "O `` Charleston Courier ''", "arg0_index": [0, 4], "pred": "fundada em", "pred_index": [6, 7], "arg1": "1803", "arg1_index": [8, 8], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "`` Charleston Daily News ''", "arg0_index": [11, 15], "pred": "fundada em", "pred_index": [17, 18], "arg1": "1865", "arg1_index": [19, 19], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "O `` Charleston Courier '' , fundada em 1803 , e `` Charleston Daily News '' , fundada em 1865", "arg0_index": [0, 19], "pred": "fundiram para formar", "pred_index": [22, 24], "arg1": "o `` News and Courier ''", "arg1_index": [25, 30], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "A campanha , uma celebra\u00e7\u00e3o patri\u00f3tica do 200\u00ba anivers\u00e1rio da Declara\u00e7\u00e3o de Direitos , n\u00e3o menciona cigarros ou fumar ; an\u00fancios de cigarro foram proibidas na televis\u00e3o desde 1971 .": [{"arg0": "A campanha", "arg0_index": [0, 1], "pred": "", "pred_index": [-1, -1], "arg1": "uma celebra\u00e7\u00e3o patri\u00f3tica do 200\u00ba anivers\u00e1rio da Declara\u00e7\u00e3o de Direitos", "arg1_index": [3, 12], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "A campanha", "arg0_index": [0, 1], "pred": "n\u00e3o menciona", "pred_index": [14, 15], "arg1": "cigarros ou fumar", "arg1_index": [16, 18], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "an\u00fancios de cigarro", "arg0_index": [20, 22], "pred": "foram proibidas na", "pred_index": [23, 25], "arg1": "televis\u00e3o", "arg1_index": [26, 26], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "A diretora de elenco no momento disse Scott que ele tinha desejado que ele a conheceu uma semana antes ; ele estava lan\u00e7ando para o `` G. I. Joe '' desenho animado .": [{"arg0": "A diretora de elenco", "arg0_index": [0, 3], "pred": "disse", "pred_index": [6, 6], "arg1": "Scott", "arg1_index": [7, 7], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "ele", "arg0_index": [9, 9], "pred": "tinha desejado", "pred_index": [10, 11], "arg1": "que ele a conheceu uma semana antes", "arg1_index": [12, 18], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "ele", "arg0_index": [13, 13], "pred": "a conheceu", "pred_index": [14, 15], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "ele", "arg0_index": [20, 20], "pred": "estava lan\u00e7ando para", "pred_index": [21, 23], "arg1": "o `` G. I. Joe '' desenho animado", "arg1_index": [24, 31], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Team Racing \u00e9 uma equipe NASCAR Craftsman Truck Series .": [{"arg0": "Team Racing", "arg0_index": [0, 1], "pred": "\u00e9", "pred_index": [2, 2], "arg1": "uma equipe NASCAR Craftsman Truck Series", "arg1_index": [3, 8], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "O longo e caro treinamento m\u00e9dico de Keats com Hammond e no hospital de Guy levou sua fam\u00edlia para supor que ele iria prosseguir uma carreira ao longo da vida na medicina , garantindo a seguran\u00e7a financeira , e parece que neste momento Keats teve um desejo genu\u00edno de se tornar um m\u00e9dico .": [{"arg0": "O longo e caro treinamento m\u00e9dico de Keats com Hammond e no hospital de Guy", "arg0_index": [0, 14], "pred": "levou", "pred_index": [15, 15], "arg1": "sua fam\u00edlia", "arg1_index": [16, 17], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "sua fam\u00edlia", "arg0_index": [16, 17], "pred": "supor", "pred_index": [19, 19], "arg1": "ele iria prosseguir uma carreira ao longo da vida na medicina", "arg1_index": [21, 31], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "ele", "arg0_index": [21, 21], "pred": "iria prosseguir", "pred_index": [22, 23], "arg1": "uma carreira ao longo da vida", "arg1_index": [24, 29], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "uma carreira ao longo da vida na medicina", "arg0_index": [24, 31], "pred": "garantindo", "pred_index": [33, 33], "arg1": "seguran\u00e7a financeira", "arg1_index": [35, 36], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "", "arg0_index": [], "pred": "parece", "pred_index": [39, 39], "arg1": "que neste momento Keats teve um desejo genu\u00edno de se tornar um m\u00e9dico", "arg1_index": [40, 52], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Keats", "arg0_index": [43, 43], "pred": "teve", "pred_index": [44, 44], "arg1": "um desejo genu\u00edno", "arg1_index": [45, 47], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Keats", "arg0_index": [43, 43], "pred": "tornar", "pred_index": [50, 50], "arg1": "um m\u00e9dico", "arg1_index": [51, 52], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Da auto - come\u00e7ando aspirador , ele diz : `` Poderia ser Afagos , { c\u00e3o da Sra Stinnett } . ''": [{"arg0": "Afagos", "arg0_index": [12, 12], "pred": "", "pred_index": [-1, -1], "arg1": "c\u00e3o da Sra Stinnett", "arg1_index": [15, 18], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "ele", "arg0_index": [6, 6], "pred": "diz", "pred_index": [7, 7], "arg1": "`` Poderia ser Afagos , { c\u00e3o da Sra Stinnett } . ''", "arg1_index": [9, 21], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "", "arg0_index": [], "pred": "Poderia ser", "pred_index": [10, 11], "arg1": "Afagos", "arg1_index": [12, 12], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "No entanto , c\u00f3mica ajudante al\u00edvio `` Mike McGurk '' tem algumas semelhan\u00e7as com parceiro de Tracy a partir da tira , Pat Patton ; secret\u00e1ria de Tracy , Gwen Andrews , oferece o mesmo tipo de interesse feminino como Tess Trueheart ; e diretor do FBI , Clive Anderson \u00e9 o mesmo tipo de avuncular superior como chefe Brandon .": [{"arg0": "`` Mike McGurk ''", "arg0_index": [6, 9], "pred": "", "pred_index": [-1, -1], "arg1": "c\u00f3mica ajudante al\u00edvio", "arg1_index": [3, 5], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "`` Mike McGurk ''", "arg0_index": [6, 9], "pred": "tem", "pred_index": [10, 10], "arg1": "algumas semelhan\u00e7as", "arg1_index": [11, 12], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Pat Patton", "arg0_index": [22, 23], "pred": "", "pred_index": [-1, -1], "arg1": "parceiro de Tracy a partir da tira", "arg1_index": [14, 20], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Gwen Andrews", "arg0_index": [29, 30], "pred": "", "pred_index": [-1, -1], "arg1": "secret\u00e1ria de Tracy", "arg1_index": [25, 27], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Gwen Andrews", "arg0_index": [29, 30], "pred": "oferece", "pred_index": [32, 32], "arg1": "o mesmo tipo de interesse feminino", "arg1_index": [33, 38], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Clive Anderson", "arg0_index": [48, 49], "pred": "", "pred_index": [-1, -1], "arg1": "diretor do FBI", "arg1_index": [44, 46], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Clive Anderson", "arg0_index": [48, 49], "pred": "\u00e9", "pred_index": [50, 50], "arg1": "o mesmo tipo de avuncular superior", "arg1_index": [51, 56], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Eles inclu\u00edram alguns dos mais assassinos perigosos do mundo , incluindo Lady Shiva , David Cain , e Merlyn .": [{"arg0": "Eles", "arg0_index": [0, 0], "pred": "incluindo", "pred_index": [10, 10], "arg1": "alguns dos mais assassinos perigosos do mundo", "arg1_index": [2, 8], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "alguns dos mais assassinos perigosos do mundo", "arg0_index": [2, 8], "pred": "incluindo", "pred_index": [10, 10], "arg1": "Lady Shiva , David Cain , e Merlyn", "arg1_index": [11, 18], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Ele disse que espera que a empresa tem US $ 500 milh\u00f5es em vendas para este ano .": [{"arg0": "Ele", "arg0_index": [0, 0], "pred": "disse", "pred_index": [1, 1], "arg1": "que espera que a empresa tem US $ 500 milh\u00f5es em vendas para este ano", "arg1_index": [2, 16], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Ele", "arg0_index": [0, 0], "pred": "espera", "pred_index": [3, 3], "arg1": "a empresa", "arg1_index": [5, 6], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "a empresa", "arg0_index": [5, 6], "pred": "tem", "pred_index": [7, 7], "arg1": "$ 500 milh\u00f5es em vendas", "arg1_index": [9, 13], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Como procurador-geral que entraram em confronto com Daniel O'Connell , quando ele insistiu , contra a vontade O'Connell 's , sobre a nomea\u00e7\u00e3o de Abraham Brewster como Assessor Jur\u00eddico para o senhor tenente de Ireland .": [{"arg0": "ele", "arg0_index": [11, 11], "pred": "", "pred_index": [-1, -1], "arg1": "procurador-geral", "arg1_index": [1, 1], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "ele", "arg0_index": [11, 11], "pred": "entraram em confronto com", "pred_index": [3, 6], "arg1": "Daniel O'Connell", "arg1_index": [7, 8], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "ele", "arg0_index": [11, 11], "pred": "insistiu , contra", "pred_index": [12, 14], "arg1": "vontade O'Connell 's", "arg1_index": [16, 18], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Nada se sabe ao certo sobre sua vida antes sobre 1580 , mas relatos contempor\u00e2neos ou quase contempor\u00e2neos sugerem que ele foi criado como um membro da Igreja da Esc\u00f3cia , passou algum tempo em Argyll antes de partir para o continente , e foi convertido ao catolicismo na Espanha .": [{"arg0": "Nada", "arg0_index": [0, 0], "pred": "se sabe ao certo sobre", "pred_index": [1, 5], "arg1": "sua vida antes sobre 1580", "arg1_index": [6, 10], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "relatos contempor\u00e2neos ou quase contempor\u00e2neos", "arg0_index": [13, 17], "pred": "sugerem", "pred_index": [18, 18], "arg1": "que ele foi criado como um membro da Igreja da Esc\u00f3cia , passou algum tempo em Argyll antes de partir para o continente , e foi convertido ao catolicismo na Espanha", "arg1_index": [19, 49], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "ele", "arg0_index": [20, 20], "pred": "foi criado como", "pred_index": [21, 23], "arg1": "como um membro da Igreja da Esc\u00f3cia", "arg1_index": [23, 29], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "ele", "arg0_index": [20, 20], "pred": "passou", "pred_index": [31, 31], "arg1": "algum tempo", "arg1_index": [32, 33], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "ele", "arg0_index": [20, 20], "pred": "foi convertido ao", "pred_index": [44, 46], "arg1": "catolicismo", "arg1_index": [47, 47], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "O fracasso da 1\u00aa Blindada chegar intacto e implantar como uma \u00fanica entidade teria consequ\u00eancias importantes em a\u00e7\u00e3o mais tarde contra as for\u00e7as alem\u00e3s na Tun\u00edsia .": [{"arg0": "O fracasso da 1\u00aa Blindada chegar intacto e implantar como uma \u00fanica entidade", "arg0_index": [0, 12], "pred": "teria", "pred_index": [13, 13], "arg1": "consequ\u00eancias importantes", "arg1_index": [14, 15], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "1\u00aa Blindada", "arg0_index": [3, 4], "pred": "chegar", "pred_index": [5, 5], "arg1": "intacto", "arg1_index": [6, 6], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "1\u00aa Blindada", "arg0_index": [3, 4], "pred": "implantar como", "pred_index": [8, 9], "arg1": "uma \u00fanica entidade", "arg1_index": [10, 12], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Modelos , tendo em conta o tamanho e quarto n\u00famero dos blocos caserna em fortes Gorgan de parede e densidade de ocupa\u00e7\u00e3o provavelmente , produzir valores entre 15.000 e 36.000 soldados .": [{"arg0": "Modelos", "arg0_index": [0, 0], "pred": "produzir", "pred_index": [24, 24], "arg1": "valores", "arg1_index": [25, 25], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Modelos", "arg0_index": [0, 0], "pred": "tendo em conta", "pred_index": [2, 4], "arg1": "o tamanho e quarto n\u00famero dos blocos caserna em fortes Gorgan de parede e densidade de ocupa\u00e7\u00e3o provavelmente", "arg1_index": [5, 22], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "DC Comics realizou um servi\u00e7o memorial no Lower East Side de Manhattan , um bairro Eisner frequentemente visitado em seu trabalho , na Funda\u00e7\u00e3o Anjo Orensanz em Norfolk Street .": [{"arg0": "DC Comics", "arg0_index": [0, 1], "pred": "realizou", "pred_index": [2, 2], "arg1": "um servi\u00e7o memorial", "arg1_index": [3, 5], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Eisner", "arg0_index": [15, 15], "pred": "frequentemente visitado em", "pred_index": [16, 18], "arg1": "seu trabalho", "arg1_index": [19, 20], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Eisner", "arg0_index": [15, 15], "pred": "", "pred_index": [-1, -1], "arg1": "um bairro", "arg1_index": [13, 14], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Mantendo a feliz japon\u00eas vai ser uma das tarefas mais importantes para o l\u00edder conservador Ernesto Ruffo , quando ele toma posse 01 de novembro , como o primeiro governador de oposi\u00e7\u00e3o na hist\u00f3ria moderna do M\u00e9xico .": [{"arg0": "Mantendo a feliz japon\u00eas", "arg0_index": [0, 3], "pred": "vai ser", "pred_index": [4, 5], "arg1": "uma das tarefas mais importantes", "arg1_index": [6, 10], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Ernesto Ruffo", "arg0_index": [15, 16], "pred": "", "pred_index": [-1, -1], "arg1": "l\u00edder conservador", "arg1_index": [13, 14], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "", "arg0_index": [], "pred": "Mantendo", "pred_index": [0, 0], "arg1": "japon\u00eas", "arg1_index": [3, 3], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Ernesto Ruffo", "arg0_index": [15, 16], "pred": "toma posse", "pred_index": [20, 21], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Ele descobriu um 75 - discrep\u00e2ncia cento nas acusa\u00e7\u00f5es feitas a v\u00e1rios departamentos para tempo de computador e tra\u00e7ou-lo para um usu\u00e1rio chamado `` Hunter , '' que n\u00e3o tinha endere\u00e7o de cobran\u00e7a v\u00e1lido .": [{"arg0": "Ele", "arg0_index": [0, 0], "pred": "descobriu", "pred_index": [1, 1], "arg1": "um 75 - discrep\u00e2ncia cento", "arg1_index": [2, 6], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Ele", "arg0_index": [0, 0], "pred": "tra\u00e7ou-lo", "pred_index": [18, 18], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "um usu\u00e1rio", "arg0_index": [20, 21], "pred": "chamado", "pred_index": [22, 22], "arg1": "`` Hunter , ''", "arg1_index": [23, 26], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "um usu\u00e1rio", "arg0_index": [20, 21], "pred": "n\u00e3o tinha", "pred_index": [28, 29], "arg1": "endere\u00e7o de cobran\u00e7a v\u00e1lido", "arg1_index": [30, 33], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "acusa\u00e7\u00f5es", "arg0_index": [8, 8], "pred": "feitas a", "pred_index": [9, 10], "arg1": "v\u00e1rios departamentos", "arg1_index": [11, 12], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Inicialmente voando a A-4B Skyhawk , o esquadr\u00e3o mais tarde transferida para a A-4L Skyhawk .": [{"arg0": "o esquadr\u00e3o", "arg0_index": [6, 7], "pred": "transferida para", "pred_index": [10, 11], "arg1": "a A-4L Skyhawk", "arg1_index": [12, 14], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "o esquadr\u00e3o", "arg0_index": [6, 7], "pred": "Inicialmente voando", "pred_index": [0, 1], "arg1": "a A-4B Skyhawk", "arg1_index": [2, 4], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Pelo menos 11 moradores desapareceram e 8 pessoas morreram no tsunami que se seguiu , dois dos quais est\u00e3o presos em uma das pris\u00f5es Permisan .": [{"arg0": "Pelo menos 11 moradores", "arg0_index": [0, 3], "pred": "desapareceram", "pred_index": [4, 4], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "8 pessoas", "arg0_index": [6, 7], "pred": "morreram", "pred_index": [8, 8], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "dois dos quais", "arg0_index": [15, 17], "pred": "est\u00e3o", "pred_index": [18, 18], "arg1": "presos em uma das pris\u00f5es Permisan", "arg1_index": [19, 24], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "subluxa\u00e7\u00e3o lente tamb\u00e9m \u00e9 visto em c\u00e3es e \u00e9 caracterizado por um deslocamento parcial da lente .": [{"arg0": "subluxa\u00e7\u00e3o lente", "arg0_index": [0, 1], "pred": "tamb\u00e9m \u00e9 visto em", "pred_index": [2, 5], "arg1": "c\u00e3es", "arg1_index": [6, 6], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "subluxa\u00e7\u00e3o lente", "arg0_index": [0, 1], "pred": "\u00e9 caracterizado por", "pred_index": [8, 10], "arg1": "um deslocamento parcial da lente", "arg1_index": [11, 15], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "No entanto , tornou-se muito menos seguro para os Nationals de 1983 em diante , e forte crescimento populacional ao longo das \u00faltimas tr\u00eas d\u00e9cadas tem visto progressivamente perder o seu territ\u00f3rio rural e reduziu-\u00e0 uma divis\u00e3o mais costeira baseada e urbanizada .": [{"arg0": "", "arg0_index": [], "pred": "tornou-se", "pred_index": [3, 3], "arg1": "muito menos seguro", "arg1_index": [4, 6], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "forte crescimento populacional ao longo das \u00faltimas tr\u00eas d\u00e9cadas", "arg0_index": [16, 24], "pred": "tem visto", "pred_index": [25, 26], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "", "arg0_index": [], "pred": "progressivamente perder", "pred_index": [27, 28], "arg1": "seu territ\u00f3rio rural", "arg1_index": [30, 32], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "forte crescimento populacional ao longo das \u00faltimas tr\u00eas d\u00e9cadas", "arg0_index": [16, 24], "pred": "reduziu-\u00e0", "pred_index": [34, 34], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Avery Inc. disse que concluiu a venda de Uniroyal Chemical Holding Co. para um grupo liderado pela gest\u00e3o da Uniroyal Chemical Co. , a unidade de neg\u00f3cio principal .": [{"arg0": "Avery Inc.", "arg0_index": [0, 1], "pred": "disse", "pred_index": [2, 2], "arg1": "que concluiu a venda de Uniroyal Chemical Holding Co. para um grupo liderado pela gest\u00e3o da Uniroyal Chemical Co.", "arg1_index": [3, 21], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Avery Inc.", "arg0_index": [0, 1], "pred": "concluiu", "pred_index": [4, 4], "arg1": "a venda de Uniroyal Chemical Holding Co.", "arg1_index": [5, 11], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "um grupo", "arg0_index": [13, 14], "pred": "liderado pela", "pred_index": [15, 16], "arg1": "gest\u00e3o da Uniroyal Chemical Co.", "arg1_index": [17, 21], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "gest\u00e3o da Uniroyal Chemical Co.", "arg0_index": [17, 21], "pred": "", "pred_index": [-1, -1], "arg1": "a unidade de neg\u00f3cio principal", "arg1_index": [23, 27], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Em 1964 , Barrie apareceu em dois epis\u00f3dios de `` Alfred Hitchcock Presents '' .": [{"arg0": "Barrie", "arg0_index": [3, 3], "pred": "apareceu em", "pred_index": [4, 5], "arg1": "dois epis\u00f3dios de `` Alfred Hitchcock Presents '' .", "arg1_index": [6, 14], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Para a escola medieval de filosofia judaica , que emoldurava o juda\u00edsmo \u00e0 luz do pensamento grego e intelecto humano , Deus o Infinito n\u00e3o tem necessidades .": [{"arg0": "Deus o Infinito", "arg0_index": [21, 23], "pred": "n\u00e3o tem", "pred_index": [24, 25], "arg1": "necessidades", "arg1_index": [26, 26], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "a escola medieval de filosofia judaica", "arg0_index": [1, 6], "pred": "emoldurava", "pred_index": [9, 9], "arg1": "juda\u00edsmo", "arg1_index": [11, 11], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Para aumentar a sua quota de que o neg\u00f3cio , os fabricantes de j\u00f3ias , como Trifari e Monet unidades de cristal Brands Inc. e Swank Inc. , fabricante de Anne Klein j\u00f3ias , est\u00e3o lan\u00e7ando novas linhas com tanto alarde como as empresas de fragr\u00e2ncia .": [{"arg0": "fabricantes de j\u00f3ias , como Trifari e Monet unidades de cristal Brands Inc. e Swank Inc. , fabricante de Anne Klein j\u00f3ias", "arg0_index": [11, 32], "pred": "aumentar", "pred_index": [1, 1], "arg1": "sua quota de que o neg\u00f3cio", "arg1_index": [3, 8], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "fabricantes de j\u00f3ias , como Trifari e Monet unidades de cristal Brands Inc. e Swank Inc. , fabricante de Anne Klein j\u00f3ias", "arg0_index": [11, 32], "pred": "est\u00e3o lan\u00e7ando", "pred_index": [34, 35], "arg1": "novas linhas", "arg1_index": [36, 37], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "`` Agora tudo '' - como o com\u00e9rcio de programa e oscila\u00e7\u00f5es do mercado de a\u00e7\u00f5es de largura - `` que todos tinham empurrado para tr\u00e1s em sua consci\u00eancia \u00e9 apenas sentado ali . ''": [{"arg0": "`` Agora tudo ''", "arg0_index": [0, 3], "pred": "\u00e9 apenas sentado", "pred_index": [29, 31], "arg1": "ali", "arg1_index": [32, 32], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "todos", "arg0_index": [21, 21], "pred": "tinham empurrado para tr\u00e1s", "pred_index": [22, 25], "arg1": "tudo", "arg1_index": [2, 2], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "A convic\u00e7\u00e3o resultou de acusa\u00e7\u00f5es federais de fraude contra o consumidor para venda de falso suco de ma\u00e7\u00e3 infantil entre 1978 e 1983 .": [{"arg0": "A convic\u00e7\u00e3o", "arg0_index": [0, 1], "pred": "resultou de", "pred_index": [2, 3], "arg1": "acusa\u00e7\u00f5es federais de fraude contra o consumidor para venda de falso suco de ma\u00e7\u00e3 infantil entre 1978 e 1983", "arg1_index": [4, 22], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Em uma apresenta\u00e7\u00e3o no hangar do Aeroporto Internacional Toronto Pearson , Celine Dion ajudou a companhia a\u00e9rea rec\u00e9m-solvente estrear sua nova imagem .": [{"arg0": "Celine Dion", "arg0_index": [11, 12], "pred": "ajudou", "pred_index": [13, 13], "arg1": "a companhia a\u00e9rea rec\u00e9m-solvente", "arg1_index": [14, 17], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "rec\u00e9m-solvente", "arg0_index": [17, 17], "pred": "estrear", "pred_index": [18, 18], "arg1": "sua nova imagem", "arg1_index": [19, 21], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Essas orienta\u00e7\u00f5es permitem f\u00e1cil circula\u00e7\u00e3o , ou seja graus de liberdade , e , assim , diminui a entropia minimamente .": [{"arg0": "Essas orienta\u00e7\u00f5es", "arg0_index": [0, 1], "pred": "permitem", "pred_index": [2, 2], "arg1": "f\u00e1cil circula\u00e7\u00e3o", "arg1_index": [3, 4], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Essas orienta\u00e7\u00f5es", "arg0_index": [0, 1], "pred": "diminui", "pred_index": [16, 16], "arg1": "entropia", "arg1_index": [18, 18], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Segundo a acusa\u00e7\u00e3o , Gonzalez \u00e9 acusado de fraudar o Ocidente Bronx Bairro Association Inc. , uma corpora\u00e7\u00e3o sem fins lucrativos , usando fundos doados para a organiza\u00e7\u00e3o , a fim de pagar por mais de US $ 37.000 em despesas pessoais .": [{"arg0": "Gonzalez", "arg0_index": [4, 4], "pred": "\u00e9 acusado de", "pred_index": [5, 7], "arg1": "fraudar o Ocidente Bronx Bairro Association Inc.", "arg1_index": [8, 14], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Gonzalez", "arg0_index": [4, 4], "pred": "fraudar", "pred_index": [8, 8], "arg1": "o Ocidente Bronx Bairro Association Inc.", "arg1_index": [9, 14], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Gonzalez", "arg0_index": [4, 4], "pred": "usando", "pred_index": [22, 22], "arg1": "fundos doados para a organiza\u00e7\u00e3o", "arg1_index": [23, 27], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Gonzalez", "arg0_index": [4, 4], "pred": "pagar por", "pred_index": [32, 33], "arg1": "mais de US $ 37.000 em despesas pessoais", "arg1_index": [34, 41], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "fundos", "arg0_index": [23, 23], "pred": "doados para", "pred_index": [24, 25], "arg1": "a organiza\u00e7\u00e3o", "arg1_index": [26, 27], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Ocidente Bronx Bairro Association Inc.", "arg0_index": [10, 14], "pred": "", "pred_index": [-1, -1], "arg1": "uma corpora\u00e7\u00e3o sem fins lucrativos", "arg1_index": [16, 20], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "E n\u00e3o espere muitos jogos completos por jarros - talvez tr\u00eas em cada 288 , ri Mr. Fingers , o ex-apaziguador Oakland .": [{"arg0": "Mr. Fingers", "arg0_index": [16, 17], "pred": "", "pred_index": [-1, -1], "arg1": "o ex-apaziguador Oakland", "arg1_index": [19, 21], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Mr. Fingers", "arg0_index": [16, 17], "pred": "ri", "pred_index": [15, 15], "arg1": "E n\u00e3o espere muitos jogos completos por jarros - talvez tr\u00eas em cada 288", "arg1_index": [0, 13], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "", "arg0_index": [], "pred": "n\u00e3o espere", "pred_index": [1, 2], "arg1": "muitos jogos completos", "arg1_index": [3, 5], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "A defini\u00e7\u00e3o operativa de noticiabilidade favorecer\u00e1 o uso praticamente irrestrito de fatos pessoais , sens\u00edveis e \u00edntimas .": [{"arg0": "A defini\u00e7\u00e3o operativa de noticiabilidade", "arg0_index": [0, 4], "pred": "favorecer\u00e1", "pred_index": [5, 5], "arg1": "o uso praticamente irrestrito de fatos pessoais , sens\u00edveis e \u00edntimas", "arg1_index": [6, 16], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Paquist\u00e3o Chrome Mines Ltd. \u00e9 uma empresa de minera\u00e7\u00e3o constitu\u00eddas na Rep\u00fablica Isl\u00e2mica do Paquist\u00e3o .": [{"arg0": "Paquist\u00e3o Chrome Mines Ltd.", "arg0_index": [0, 3], "pred": "\u00e9", "pred_index": [4, 4], "arg1": "uma empresa de minera\u00e7\u00e3o constitu\u00eddas na Rep\u00fablica Isl\u00e2mica do Paquist\u00e3o", "arg1_index": [5, 14], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "uma empresa de minera\u00e7\u00e3o", "arg0_index": [5, 8], "pred": "constitu\u00eddas na", "pred_index": [9, 10], "arg1": "Rep\u00fablica Isl\u00e2mica do Paquist\u00e3o", "arg1_index": [11, 14], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "O campo na parte Lake Elsinore diamante \u00e9 chamado de Pete Lehr campo .": [{"arg0": "O campo na parte Lake Elsinore diamante", "arg0_index": [0, 6], "pred": "\u00e9 chamado", "pred_index": [7, 8], "arg1": "de Pete Lehr campo", "arg1_index": [9, 12], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Apesar das temperaturas abaixo de zero , Beuerlein era vermelho-quente , fora-duelando Brett Favre e ligar em 29 de 42 tentativas , com 3 DT e n\u00e3o h\u00e1 INTs , e passando por uma ent\u00e3o franquia-ficha 373 jardas .": [{"arg0": "Beuerlein", "arg0_index": [7, 7], "pred": "era", "pred_index": [8, 8], "arg1": "vermelho-quente", "arg1_index": [9, 9], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Beuerlein", "arg0_index": [7, 7], "pred": "fora-duelando", "pred_index": [11, 11], "arg1": "Brett Favre", "arg1_index": [12, 13], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Beuerlein", "arg0_index": [7, 7], "pred": "ligar em", "pred_index": [15, 16], "arg1": "29 de 42 tentativas", "arg1_index": [17, 20], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Beuerlein", "arg0_index": [7, 7], "pred": "passando por", "pred_index": [31, 32], "arg1": "ent\u00e3o franquia-ficha 373 jardas", "arg1_index": [34, 37], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "\u00c9 essencialmente o mesmo que o dialeto falado em Xiamen , e \u00e9 inintelig\u00edvel com padr\u00e3o chin\u00eas .": [{"arg0": "", "arg0_index": [], "pred": "\u00c9 essencialmente o mesmo que", "pred_index": [0, 4], "arg1": "o dialeto falado em Xiamen", "arg1_index": [5, 9], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "o dialeto", "arg0_index": [5, 6], "pred": "falado em", "pred_index": [7, 8], "arg1": "Xiamen", "arg1_index": [9, 9], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "", "arg0_index": [], "pred": "\u00e9 inintelig\u00edvel com", "pred_index": [12, 14], "arg1": "padr\u00e3o chin\u00eas", "arg1_index": [15, 16], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Enquanto isso , a Divis\u00e3o de Mason City continuou a operar como de costume .": [{"arg0": "a Divis\u00e3o de Mason City", "arg0_index": [3, 7], "pred": "continuou a operar", "pred_index": [8, 10], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Moore brevemente caiu Marciano na segunda rodada , mas Marciano recuperou e bateu Moore para baixo cinco vezes , nocauteando-o no nono para reter o cinto .": [{"arg0": "Moore", "arg0_index": [0, 0], "pred": "brevemente caiu", "pred_index": [1, 2], "arg1": "Marciano", "arg1_index": [3, 3], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Marciano", "arg0_index": [9, 9], "pred": "recuperou", "pred_index": [10, 10], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Marciano", "arg0_index": [9, 9], "pred": "bateu", "pred_index": [12, 12], "arg1": "Moore", "arg1_index": [13, 13], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Marciano", "arg0_index": [9, 9], "pred": "nocauteando-o", "pred_index": [19, 19], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Marciano", "arg0_index": [9, 9], "pred": "reter", "pred_index": [23, 23], "arg1": "o cinto", "arg1_index": [24, 25], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Mas , com a oferta estado apenas US $ 39.000 por ano e alto padr\u00e3o de vida da Calif\u00f3rnia , `` n\u00e3o h\u00e1 tamb\u00e9m muitos para escolher '' , diz Brent Scott , um oficial de recrutamento .": [{"arg0": "Brent Scott", "arg0_index": [30, 31], "pred": "", "pred_index": [-1, -1], "arg1": "um oficial de recrutamento", "arg1_index": [33, 36], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Brent Scott", "arg0_index": [30, 31], "pred": "diz", "pred_index": [29, 29], "arg1": "`` n\u00e3o h\u00e1 tamb\u00e9m muitos para escolher ''", "arg1_index": [20, 27], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "estado", "arg0_index": [5, 5], "pred": "oferta", "pred_index": [4, 4], "arg1": "apenas US $ 39.000", "arg1_index": [6, 9], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "", "arg0_index": [], "pred": "n\u00e3o h\u00e1", "pred_index": [21, 22], "arg1": "tamb\u00e9m muitos", "arg1_index": [23, 24], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "", "arg0_index": [], "pred": "escolher", "pred_index": [26, 26], "arg1": "tamb\u00e9m muitos", "arg1_index": [23, 24], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Esta pol\u00edtica foi , no entanto , a oposi\u00e7\u00e3o dos mineiros que exigiam que as inspec\u00e7\u00f5es ser realizado pela Colliers experientes .": [{"arg0": "Esta pol\u00edtica", "arg0_index": [0, 1], "pred": "foi , no entanto , a oposi\u00e7\u00e3o dos", "pred_index": [2, 9], "arg1": "mineiros", "arg1_index": [10, 10], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "mineiros", "arg0_index": [10, 10], "pred": "exigiam", "pred_index": [12, 12], "arg1": "que as inspec\u00e7\u00f5es ser realizado pela Colliers experientes", "arg1_index": [13, 20], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "as inspec\u00e7\u00f5es", "arg0_index": [14, 15], "pred": "ser realizado pela", "pred_index": [16, 18], "arg1": "Colliers experientes", "arg1_index": [19, 20], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Em 1005 , por exemplo , o regulador da porta Adri\u00e1tico importante de Dyrrhachium se renderam a cidade de manjeric\u00e3o II .": [{"arg0": "o regulador da porta Adri\u00e1tico importante de Dyrrhachium", "arg0_index": [6, 13], "pred": "se renderam", "pred_index": [14, 15], "arg1": "a cidade", "arg1_index": [16, 17], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "postagens de emprego estudante na Universidade de Boston escorregar 10% este ano , ap\u00f3s uma queda de 10% em 1988 .": [{"arg0": "postagens de emprego estudante na Universidade de Boston", "arg0_index": [0, 7], "pred": "escorregar", "pred_index": [8, 8], "arg1": "10%", "arg1_index": [9, 9], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "10%", "arg0_index": [9, 9], "pred": "ap\u00f3s", "pred_index": [13, 13], "arg1": "uma queda de 10% em 1988", "arg1_index": [14, 19], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Num caso t\u00edpico de interfer\u00eancia substrato , um idioma A ocupa um dado territ\u00f3rio e outro idioma B chega no mesmo territ\u00f3rio .": [{"arg0": "idioma A", "arg0_index": [8, 9], "pred": "ocupa", "pred_index": [10, 10], "arg1": "um dado territ\u00f3rio", "arg1_index": [11, 13], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "outro idioma B", "arg0_index": [15, 17], "pred": "chega no", "pred_index": [18, 19], "arg1": "mesmo territ\u00f3rio", "arg1_index": [20, 21], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "julgamento da Sra Marcos est\u00e1 prevista para come\u00e7ar em mar\u00e7o .": [{"arg0": "julgamento da Sra Marcos", "arg0_index": [0, 3], "pred": "est\u00e1 prevista para come\u00e7ar em", "pred_index": [4, 8], "arg1": "mar\u00e7o", "arg1_index": [9, 9], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Dois assentos foram vencidas pelo Partido Trabalhista-Progressive por conta pr\u00f3pria com a re-elei\u00e7\u00e3o de A. A. MacLeod e J. B. Salsberg .": [{"arg0": "Dois assentos", "arg0_index": [0, 1], "pred": "foram vencidas pelo", "pred_index": [2, 4], "arg1": "Partido Trabalhista-Progressive", "arg1_index": [5, 6], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Superboy Prime , vendo uma oportunidade de derrotar o agora debilitado Anti-Monitor , voou atrav\u00e9s do peito do Anti-Monitor e arremessou seu corpo despeda\u00e7ado para o espa\u00e7o .": [{"arg0": "Superboy Prime", "arg0_index": [0, 1], "pred": "voou atrav\u00e9s", "pred_index": [13, 14], "arg1": "peito do Anti-Monitor", "arg1_index": [16, 18], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Superboy Prime", "arg0_index": [0, 1], "pred": "arremessou", "pred_index": [20, 20], "arg1": "seu corpo despeda\u00e7ado", "arg1_index": [21, 23], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Superboy Prime", "arg0_index": [0, 1], "pred": "vendo", "pred_index": [3, 3], "arg1": "uma oportunidade", "arg1_index": [4, 5], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Superboy Prime", "arg0_index": [0, 1], "pred": "derrotar", "pred_index": [7, 7], "arg1": "o agora debilitado Anti-Monitor", "arg1_index": [8, 11], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Sob a d\u00edvida - programa de equidade , os potenciais investidores apresentar\u00e1 propostas seladas no percentual de desconto que eles est\u00e3o dispostos a comprar a d\u00edvida a , e os lances ser\u00e3o alocados com base nessas ofertas de desconto .": [{"arg0": "potenciais investidores", "arg0_index": [9, 10], "pred": "apresentar\u00e1", "pred_index": [11, 11], "arg1": "propostas seladas", "arg1_index": [12, 13], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "eles", "arg0_index": [19, 19], "pred": "est\u00e3o dispostos a comprar", "pred_index": [20, 23], "arg1": "a d\u00edvida", "arg1_index": [24, 25], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "os lances", "arg0_index": [29, 30], "pred": "ser\u00e3o alocados", "pred_index": [31, 32], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "os lances ser\u00e3o alocados", "arg0_index": [29, 32], "pred": "base", "pred_index": [34, 34], "arg1": "nessas ofertas de desconto", "arg1_index": [35, 38], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "No entanto , o l\u00edder sovi\u00e9tico 's de prontid\u00e3o para embarcar em visitas estrangeiras e acumula\u00e7\u00e3o constante de poder pessoal , particularmente desde a \u00faltima remodela\u00e7\u00e3o do Politburo em 30 de setembro , n\u00e3o sugerem que o Sr. Gorbachev est\u00e1 \u00e0 beira de ser derrubado ; nem ele parece prov\u00e1vel para reverter os poderes da perestroika .": [{"arg0": "o l\u00edder sovi\u00e9tico 's de prontid\u00e3o para embarcar em visitas estrangeiras e acumula\u00e7\u00e3o constante de poder pessoal", "arg0_index": [3, 19], "pred": "n\u00e3o sugerem", "pred_index": [33, 34], "arg1": "que o Sr. Gorbachev est\u00e1 \u00e0 beira de ser derrubado", "arg1_index": [35, 44], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "l\u00edder sovi\u00e9tico", "arg0_index": [4, 5], "pred": "embarcar em", "pred_index": [10, 11], "arg1": "visitas estrangeiras", "arg1_index": [12, 13], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Sr. Gorbachev", "arg0_index": [37, 38], "pred": "est\u00e1 \u00e0 beira de", "pred_index": [39, 42], "arg1": "ser derrubado", "arg1_index": [43, 44], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Sr. Gorbachev", "arg0_index": [37, 38], "pred": "ser derrubado", "pred_index": [43, 44], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "ele", "arg0_index": [47, 47], "pred": "parece prov\u00e1vel para reverter", "pred_index": [48, 51], "arg1": "os poderes da perestroika", "arg1_index": [52, 55], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Entre pisca , certas \u00e1reas em c\u00e9rebros dos sujeitos s\u00e3o sacudidos com um estimulador magnico .": [{"arg0": "certas \u00e1reas em c\u00e9rebros dos sujeitos", "arg0_index": [3, 8], "pred": "s\u00e3o sacudidos com", "pred_index": [9, 11], "arg1": "um estimulador magnico", "arg1_index": [12, 14], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Em franc\u00eas , `` droit '' pode significar `` o corpo inteiro da lei '' , como no lema `` dieu et mon droit '' , o que quer dizer `` Deus e meu corpo todo da Lei . ''": [{"arg0": "`` droit ''", "arg0_index": [3, 5], "pred": "pode significar", "pred_index": [6, 7], "arg1": "`` o corpo inteiro da lei ''", "arg1_index": [8, 14], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "`` dieu et mon droit ''", "arg0_index": [19, 24], "pred": "quer dizer", "pred_index": [28, 29], "arg1": "`` Deus e meu corpo todo da Lei . ''", "arg1_index": [30, 39], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Embora Knievel quebrou os bra\u00e7os , ele estava mais perturbada com uma les\u00e3o permanente de seu acidente causado ao cinegrafista .": [{"arg0": "Knievel", "arg0_index": [1, 1], "pred": "quebrou", "pred_index": [2, 2], "arg1": "os bra\u00e7os", "arg1_index": [3, 4], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "ele", "arg0_index": [6, 6], "pred": "estava", "pred_index": [7, 7], "arg1": "mais perturbada", "arg1_index": [8, 9], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "seu acidente", "arg0_index": [15, 16], "pred": "causado", "pred_index": [17, 17], "arg1": "uma les\u00e3o permanente", "arg1_index": [11, 13], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "E Dewar 's deu descontos em mercadorias escoc\u00eas para pessoas que enviaram em r\u00f3tulos de garrafas .": [{"arg0": "Dewar", "arg0_index": [1, 1], "pred": "deu", "pred_index": [3, 3], "arg1": "descontos em mercadorias escoc\u00eas", "arg1_index": [4, 7], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "pessoas", "arg0_index": [9, 9], "pred": "enviaram em", "pred_index": [11, 12], "arg1": "r\u00f3tulos de garrafas", "arg1_index": [13, 15], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Luke Robert Ravenstahl \u00e9 um pol\u00edtico americano que serviu como 59th prefeito de Pittsburgh a partir de 2006 at\u00e9 2014 .": [{"arg0": "Luke Robert Ravenstahl", "arg0_index": [0, 2], "pred": "\u00e9", "pred_index": [3, 3], "arg1": "um pol\u00edtico americano que serviu como 59th prefeito de Pittsburgh a partir de 2006 at\u00e9 2014", "arg1_index": [4, 19], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Luke Robert Ravenstahl", "arg0_index": [0, 2], "pred": "serviu como", "pred_index": [8, 9], "arg1": "59th prefeito de Pittsburgh", "arg1_index": [10, 13], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Erotica e pornografia envolvendo sexo entre mulheres foram predominantemente produzido por homens para um p\u00fablico masculino e feminino .": [{"arg0": "Erotica e pornografia envolvendo sexo entre mulheres", "arg0_index": [0, 6], "pred": "foram predominantemente produzido por", "pred_index": [7, 10], "arg1": "homens", "arg1_index": [11, 11], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Wright foi objecto de `` This Is Your Life '' em duas ocasi\u00f5es : em maio de 1961 , quando ele foi surpreendido por Eamonn Andrews , e em janeiro de 1990 , quando Michael Aspel o surpreendeu na Television Thames 's Teddington Studios .": [{"arg0": "Wright", "arg0_index": [0, 0], "pred": "foi", "pred_index": [1, 1], "arg1": "objecto de `` This Is Your Life ''", "arg1_index": [2, 9], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "ele", "arg0_index": [20, 20], "pred": "foi surpreendido por", "pred_index": [21, 23], "arg1": "Eamonn Andrews", "arg1_index": [24, 25], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Michael Aspel", "arg0_index": [34, 35], "pred": "surpreendido", "pred_index": [22, 22], "arg1": "o", "arg1_index": [36, 36], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "`` \u00c9 um super - conjunto emocionante de descobertas '' , diz Bert Vogelstein , pesquisador da Universidade Johns Hopkins , que acaba de encontrar um pivot gene para o desencadeamento do c\u00e2ncer de c\u00f3lon .": [{"arg0": "Bert Vogelstein", "arg0_index": [12, 13], "pred": "", "pred_index": [-1, -1], "arg1": "pesquisador da Universidade Johns Hopkins", "arg1_index": [15, 19], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Bert Vogelstein", "arg0_index": [12, 13], "pred": "diz", "pred_index": [11, 11], "arg1": "`` \u00c9 um super - conjunto emocionante de descobertas ''", "arg1_index": [0, 9], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Bert Vogelstein", "arg0_index": [12, 13], "pred": "acaba de encontrar", "pred_index": [22, 24], "arg1": "um pivot gene", "arg1_index": [25, 27], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "", "arg0_index": [], "pred": "\u00c9", "pred_index": [1, 1], "arg1": "um super - conjunto emocionante de descobertas", "arg1_index": [2, 8], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "No Gigante bicicleta Inc. , Rancho Dominguez , Calif\u00f3rnia , as vendas triplicaram desde que a empresa entrou na montanha EUA - neg\u00f3cio moto em 1987 .": [{"arg0": "vendas", "arg0_index": [11, 11], "pred": "triplicaram", "pred_index": [12, 12], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "a empresa", "arg0_index": [15, 16], "pred": "entrou", "pred_index": [17, 17], "arg1": "na montanha EUA - neg\u00f3cio moto", "arg1_index": [18, 23], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Por causa de seus talentos e forma\u00e7\u00e3o , Besta pode superar qualquer atleta de n\u00edvel ol\u00edmpico , contorcendo seu corpo e realizando proezas a\u00e9reas graciosamente .": [{"arg0": "Besta", "arg0_index": [8, 8], "pred": "pode superar", "pred_index": [9, 10], "arg1": "qualquer atleta de n\u00edvel ol\u00edmpico", "arg1_index": [11, 15], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Besta", "arg0_index": [8, 8], "pred": "contorcendo", "pred_index": [17, 17], "arg1": "seu corpo", "arg1_index": [18, 19], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Besta", "arg0_index": [8, 8], "pred": "realizando", "pred_index": [21, 21], "arg1": "proezas a\u00e9reas", "arg1_index": [22, 23], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Edison Irm\u00e3os Stores Inc. disse que concordou em comprar 229 Foxmoor lojas de vestu\u00e1rio das mulheres de Foxmoor lojas especializadas Corp. , uma unidade da Dylex Ltd. de Toronto .": [{"arg0": "Edison Irm\u00e3os Stores Inc.", "arg0_index": [0, 3], "pred": "disse", "pred_index": [4, 4], "arg1": "que concordou em comprar 229 Foxmoor lojas de vestu\u00e1rio das mulheres de Foxmoor lojas especializadas Corp.", "arg1_index": [5, 20], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Edison Irm\u00e3os Stores Inc.", "arg0_index": [0, 3], "pred": "concordou em comprar", "pred_index": [6, 8], "arg1": "229 Foxmoor lojas de vestu\u00e1rio das mulheres", "arg1_index": [9, 15], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Foxmoor lojas especializadas Corp.", "arg0_index": [17, 20], "pred": "", "pred_index": [-1, -1], "arg1": "uma unidade da Dylex Ltd. de Toronto", "arg1_index": [22, 28], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Mas esta pr\u00e1tica simplesmente reduz os custos de juros do governo , em vez de realmente cancelar d\u00edvida do governo , e pode resultar em hiperinfla\u00e7\u00e3o se usado unsparingly .": [{"arg0": "esta pr\u00e1tica", "arg0_index": [1, 2], "pred": "simplesmente reduz", "pred_index": [3, 4], "arg1": "custos de juros do governo", "arg1_index": [6, 10], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "esta pr\u00e1tica", "arg0_index": [1, 2], "pred": "realmente cancelar", "pred_index": [15, 16], "arg1": "d\u00edvida do governo", "arg1_index": [17, 19], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "esta pr\u00e1tica", "arg0_index": [1, 2], "pred": "pode resultar em", "pred_index": [22, 24], "arg1": "hiperinfla\u00e7\u00e3o", "arg1_index": [25, 25], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "esta pr\u00e1tica", "arg0_index": [1, 2], "pred": "usado", "pred_index": [27, 27], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Ampla aceita\u00e7\u00e3o da tecnologia de constru\u00e7\u00e3o de energia zero pode exigir mais incentivos governamentais ou regulamentos do c\u00f3digo de constru\u00e7\u00e3o , o desenvolvimento de normas reconhecidas , ou aumentos significativos no custo da energia convencional .": [{"arg0": "Ampla aceita\u00e7\u00e3o da tecnologia de constru\u00e7\u00e3o de energia zero", "arg0_index": [0, 8], "pred": "pode exigir", "pred_index": [9, 10], "arg1": "mais incentivos governamentais ou regulamentos do c\u00f3digo de constru\u00e7\u00e3o , o desenvolvimento de normas reconhecidas , ou aumentos significativos no custo da energia convencional", "arg1_index": [11, 34], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Nem todo mundo confiava completamente vis\u00e3o Vakama's - Matau foi particularmente frustrado em seguir o que ele considerava os del\u00edrios de um `` fogo-spitter '' - mas com mais nada para continuar a eles decidiram acompanhar o Matoran para baixo .": [{"arg0": "Nem todo mundo", "arg0_index": [0, 2], "pred": "confiava completamente", "pred_index": [3, 4], "arg1": "vis\u00e3o Vakama's", "arg1_index": [5, 6], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Matau", "arg0_index": [8, 8], "pred": "foi particularmente frustrado em", "pred_index": [9, 12], "arg1": "seguir o que ele considerava os del\u00edrios de um `` fogo-spitter ''", "arg1_index": [13, 24], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Matau", "arg0_index": [8, 8], "pred": "seguir", "pred_index": [13, 13], "arg1": "o que ele considerava os del\u00edrios de um `` fogo-spitter", "arg1_index": [14, 23], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "ele", "arg0_index": [16, 16], "pred": "considerava", "pred_index": [17, 17], "arg1": "os del\u00edrios de um `` fogo-spitter", "arg1_index": [18, 23], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "mais nada", "arg0_index": [28, 29], "pred": "continuar", "pred_index": [31, 31], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "eles", "arg0_index": [33, 33], "pred": "decidiram acompanhar", "pred_index": [34, 35], "arg1": "o Matoran", "arg1_index": [36, 37], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Justi\u00e7a Lord hom\u00f3logo de Bruce foi casado com a Mulher Maravilha bem at\u00e9 que sua Justi\u00e7a Lord contrapartida o matou .": [{"arg0": "Justi\u00e7a Lord hom\u00f3logo de Bruce", "arg0_index": [0, 4], "pred": "foi casado com", "pred_index": [5, 7], "arg1": "Mulher Maravilha", "arg1_index": [9, 10], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "sua Justi\u00e7a Lord contrapartida", "arg0_index": [14, 17], "pred": "o matou", "pred_index": [18, 19], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Em uma tarde recente , o Sr. Baker e um rep\u00f3rter ir fantasma - rebentando , visitando Kathleen Stinnett , uma mulher Lexington que telefonou para a Universidade de Kentucky para relatar acontecimentos misteriosos em sua casa .": [{"arg0": "Sr. Baker e um rep\u00f3rter", "arg0_index": [6, 10], "pred": "ir fantasma - rebentando", "pred_index": [11, 14], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Sr. Baker e um rep\u00f3rter", "arg0_index": [6, 10], "pred": "visitando", "pred_index": [16, 16], "arg1": "Kathleen Stinnett", "arg1_index": [17, 18], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Kathleen Stinnett", "arg0_index": [17, 18], "pred": "", "pred_index": [-1, -1], "arg1": "mulher Lexington", "arg1_index": [21, 22], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Kathleen Stinnett", "arg0_index": [17, 18], "pred": "telefonou", "pred_index": [24, 24], "arg1": "a Universidade de Kentucky", "arg1_index": [26, 29], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Kathleen Stinnett", "arg0_index": [17, 18], "pred": "relatar", "pred_index": [31, 31], "arg1": "acontecimentos misteriosos em sua casa", "arg1_index": [32, 36], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Embora sob constante ataque dos kamikazes , bem como ca\u00e7as e bombardeiros de mergulho , `` Hazelwood '' veio atrav\u00e9s da invas\u00e3o intocado e na noite de 25 de Fevereiro afundou dois pequenos cargueiros inimigos com suas armas .": [{"arg0": "`` Hazelwood ''", "arg0_index": [15, 17], "pred": "veio atrav\u00e9s", "pred_index": [18, 19], "arg1": "invas\u00e3o intocado", "arg1_index": [21, 22], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "`` Hazelwood ''", "arg0_index": [15, 17], "pred": "afundou", "pred_index": [30, 30], "arg1": "dois pequenos cargueiros inimigos", "arg1_index": [31, 34], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Os Bourbons constru\u00eddas salas de recep\u00e7\u00e3o adicionais e reconstruiu a Sala d'Ercole , nomeado para seus frescos mostrava o her\u00f3i mitol\u00f3gico , H\u00e9rcules .": [{"arg0": "Os Bourbons", "arg0_index": [0, 1], "pred": "constru\u00eddas", "pred_index": [2, 2], "arg1": "salas de recep\u00e7\u00e3o adicionais", "arg1_index": [3, 6], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Os Bourbons", "arg0_index": [0, 1], "pred": "reconstruiu", "pred_index": [8, 8], "arg1": "a Sala d'Ercole", "arg1_index": [9, 11], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "a Sala d'Ercole", "arg0_index": [9, 11], "pred": "nomeado para", "pred_index": [13, 14], "arg1": "seus frescos mostrava o her\u00f3i mitol\u00f3gico , H\u00e9rcules", "arg1_index": [15, 22], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "seus frescos", "arg0_index": [15, 16], "pred": "mostrava", "pred_index": [17, 17], "arg1": "o her\u00f3i mitol\u00f3gico , H\u00e9rcules", "arg1_index": [18, 22], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "H\u00e9rcules", "arg0_index": [22, 22], "pred": "", "pred_index": [-1, -1], "arg1": "o her\u00f3i mitol\u00f3gico", "arg1_index": [18, 20], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "capas poison pill 's Pennzoil cinco anos , a fim de dar atual gest\u00e3o tempo suficiente para colocar esses recursos para trabalho de uma forma prudente .": [{"arg0": "poison pill 's Pennzoil", "arg0_index": [1, 4], "pred": "capas", "pred_index": [0, 0], "arg1": "cinco anos", "arg1_index": [5, 6], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "cinco anos", "arg0_index": [5, 6], "pred": "dar", "pred_index": [11, 11], "arg1": "atual gest\u00e3o", "arg1_index": [12, 13], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "atual gest\u00e3o", "arg0_index": [12, 13], "pred": "colocar", "pred_index": [17, 17], "arg1": "esses recursos", "arg1_index": [18, 19], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "esses recursos", "arg0_index": [18, 19], "pred": "trabalho", "pred_index": [21, 21], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Separadamente , Ford e Mazda Motor Corp. U.S. 's vendas bra\u00e7o disseram que est\u00e3o recordando sobre 88500 1988 - modelo de Merc\u00fario marcadores e 220000 1986 , 1987 e 1988 modelo 323S Mazda equipado com 1,6 - combust\u00edvel litros - motores de injec\u00e7\u00e3o para substituir a tampa de enchimento de \u00f3leo .": [{"arg0": "Ford e Mazda Motor Corp. U.S. 's vendas bra\u00e7o", "arg0_index": [2, 10], "pred": "disseram", "pred_index": [11, 11], "arg1": "que est\u00e3o recordando sobre 88500 1988 - modelo de Merc\u00fario marcadores e 220000 1986 , 1987 e 1988 modelo 323S Mazda equipado com 1,6 - combust\u00edvel litros - motores de injec\u00e7\u00e3o para substituir a tampa de enchimento de \u00f3leo", "arg1_index": [12, 50], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Ford e Mazda Motor Corp. U.S. 's vendas bra\u00e7o", "arg0_index": [2, 10], "pred": "est\u00e3o recordando", "pred_index": [13, 14], "arg1": "sobre 88500 1988 - modelo de Merc\u00fario marcadores e 220000 1986 , 1987 e 1988 modelo 323S Mazda equipado com 1,6 - combust\u00edvel litros - motores de injec\u00e7\u00e3o", "arg1_index": [15, 42], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "1986 , 1987 e 1988 modelo 323S Mazda", "arg0_index": [25, 32], "pred": "equipado com", "pred_index": [33, 34], "arg1": "1,6 - combust\u00edvel litros - motores de injec\u00e7\u00e3o", "arg1_index": [35, 42], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Ford e Mazda Motor Corp. U.S. 's vendas bra\u00e7o", "arg0_index": [2, 10], "pred": "substituir", "pred_index": [44, 44], "arg1": "a tampa de enchimento de \u00f3leo", "arg1_index": [45, 50], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Nos \u00faltimos cinco anos , os sindicatos n\u00e3o conseguiram ganhar aumentos salariais t\u00e3o grande quanto as concedidas aos trabalhadores n\u00e3o sindicalizados .": [{"arg0": "sindicatos", "arg0_index": [6, 6], "pred": "n\u00e3o conseguiram ganhar", "pred_index": [7, 9], "arg1": "aumentos salariais", "arg1_index": [10, 11], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "as", "arg0_index": [15, 15], "pred": "concedidas aos", "pred_index": [16, 17], "arg1": "trabalhadores n\u00e3o sindicalizados", "arg1_index": [18, 20], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Sem nenhum custo para os pais , estes servi\u00e7os s\u00e3o prestados em conformidade com a lei estadual e federal ; e s\u00e3o razoavelmente calculadas para produzir benef\u00edcio educacional significativo e progresso do aluno .": [{"arg0": "estes servi\u00e7os", "arg0_index": [7, 8], "pred": "s\u00e3o prestados em conformidade com", "pred_index": [9, 13], "arg1": "lei estadual e federal", "arg1_index": [15, 18], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "estes servi\u00e7os", "arg0_index": [7, 8], "pred": "s\u00e3o razoavelmente calculadas para produzir", "pred_index": [21, 25], "arg1": "benef\u00edcio educacional significativo", "arg1_index": [26, 28], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Ele foi originalmente destinado a candidatos maduros para a profiss\u00e3o docente , que n\u00e3o podiam dar ao luxo de deixar de trabalhar e realizar um m\u00e9todo tradicional de forma\u00e7\u00e3o de professores , como o PGCE .": [{"arg0": "Ele", "arg0_index": [0, 0], "pred": "foi originalmente destinado a", "pred_index": [1, 4], "arg1": "candidatos maduros para a profiss\u00e3o docente", "arg1_index": [5, 10], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "candidatos maduros para a profiss\u00e3o docente", "arg0_index": [5, 10], "pred": "n\u00e3o podiam dar ao luxo de deixar de", "pred_index": [13, 20], "arg1": "trabalhar", "arg1_index": [21, 21], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "candidatos maduros para a profiss\u00e3o docente", "arg0_index": [5, 10], "pred": "realizar", "pred_index": [23, 23], "arg1": "um m\u00e9todo tradicional de forma\u00e7\u00e3o de professores", "arg1_index": [24, 30], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "As primeiras cinco voltas seria adicionado \u00e0 segunda parte da corrida e o resultado global seria decidido no agregado .": [{"arg0": "As primeiras cinco voltas", "arg0_index": [0, 3], "pred": "seria adicionado \u00e0", "pred_index": [4, 6], "arg1": "\u00e0 segunda parte da corrida", "arg1_index": [6, 10], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "o resultado global", "arg0_index": [12, 14], "pred": "seria decidido", "pred_index": [15, 16], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Ele foi o mais ativo do 100 - \u00edndice de a\u00e7\u00f5es em 8,3 milh\u00f5es de a\u00e7\u00f5es , 6,5 milh\u00f5es dos quais foram negociados por meio-dia .": [{"arg0": "Ele", "arg0_index": [0, 0], "pred": "foi", "pred_index": [1, 1], "arg1": "o mais ativo do 100 - \u00edndice de a\u00e7\u00f5es em 8,3 milh\u00f5es de a\u00e7\u00f5es", "arg1_index": [2, 15], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "6,5 milh\u00f5es dos quais", "arg0_index": [17, 20], "pred": "foram negociados", "pred_index": [21, 22], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Como em seu primeiro romance , Armah contrasta os dois mundos do materialismo e os valores morais , a corrup\u00e7\u00e3o e sonhos , dois mundos de integridade e press\u00e3o social .": [{"arg0": "Armah", "arg0_index": [6, 6], "pred": "contrasta", "pred_index": [7, 7], "arg1": "os dois mundos do materialismo e os valores morais , a corrup\u00e7\u00e3o e sonhos , dois mundos de integridade e press\u00e3o social", "arg1_index": [8, 29], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Seu cultivo at\u00e9 diminuiu em favor das esp\u00e9cies asi\u00e1ticas , que foi introduzido para a \u00c1frica Oriental no in\u00edcio da \u00e9poca e se espalhou para o oeste comum .": [{"arg0": "Seu cultivo", "arg0_index": [0, 1], "pred": "at\u00e9 diminuiu em favor das", "pred_index": [2, 6], "arg1": "esp\u00e9cies asi\u00e1ticas", "arg1_index": [7, 8], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "esp\u00e9cies asi\u00e1ticas", "arg0_index": [7, 8], "pred": "foi introduzido para", "pred_index": [11, 13], "arg1": "\u00c1frica Oriental", "arg1_index": [15, 16], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "esp\u00e9cies asi\u00e1ticas", "arg0_index": [7, 8], "pred": "espalhou", "pred_index": [23, 23], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Os pilares muito grandes no cruzamento significa que houve uma torre .": [{"arg0": "Os pilares muito grandes no cruzamento", "arg0_index": [0, 5], "pred": "significa", "pred_index": [6, 6], "arg1": "que houve uma torre", "arg1_index": [7, 10], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "", "arg0_index": [], "pred": "houve", "pred_index": [8, 8], "arg1": "uma torre", "arg1_index": [9, 10], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "A primeira biblioteca em Huntington Beach abriu em 1909 e , desde ent\u00e3o , evoluiu para um sistema de biblioteca local cinco : Central , Main Street , Oak View , Helen Murphy , e Banning .": [{"arg0": "A primeira biblioteca em Huntington Beach", "arg0_index": [0, 5], "pred": "abriu em", "pred_index": [6, 7], "arg1": "1909", "arg1_index": [8, 8], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "A primeira biblioteca em Huntington Beach", "arg0_index": [0, 5], "pred": "evoluiu para", "pred_index": [14, 15], "arg1": "um sistema de biblioteca local cinco : Central , Main Street , Oak View , Helen Murphy , e Banning", "arg1_index": [16, 35], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "O imposto aumentou menos de um bilh\u00e3o de marcas ( $ 545,3 milh\u00f5es ) por ano nos \u00faltimos anos , mas o governo tem sido relutante em abolir a taxa de preocupa\u00e7\u00f5es or\u00e7amentais .": [{"arg0": "O imposto", "arg0_index": [0, 1], "pred": "aumentou menos de", "pred_index": [2, 4], "arg1": "um bilh\u00e3o de marcas ( $ 545,3 milh\u00f5es ) por ano", "arg1_index": [5, 15], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "o governo", "arg0_index": [21, 22], "pred": "tem sido relutante em abolir", "pred_index": [23, 27], "arg1": "a taxa", "arg1_index": [28, 29], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Ap\u00f3s a batalha , Battra descansou no Oceano \u00c1rtico , enquanto Mothra retirou-se para Infant Island , acompanhado dos dois Cosmos .": [{"arg0": "Battra", "arg0_index": [4, 4], "pred": "descansou no", "pred_index": [5, 6], "arg1": "Oceano \u00c1rtico", "arg1_index": [7, 8], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Mothra", "arg0_index": [11, 11], "pred": "retirou-se para", "pred_index": [12, 13], "arg1": "Infant Island", "arg1_index": [14, 15], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Mothra", "arg0_index": [11, 11], "pred": "acompanhado dos", "pred_index": [17, 18], "arg1": "dois Cosmos", "arg1_index": [19, 20], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Antes da ferramenta Playmaker , o jogador s\u00f3 poderia chamar um dos quatro dispon\u00edveis `` rotas quentes . ''": [{"arg0": "o jogador", "arg0_index": [5, 6], "pred": "s\u00f3 poderia chamar", "pred_index": [7, 9], "arg1": "um dos quatro dispon\u00edveis `` rotas quentes . ''", "arg1_index": [10, 18], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Mr. Rifenburgh disse que o conselho ainda n\u00e3o agiu na maior parte do relat\u00f3rio interno 's recomenda\u00e7\u00f5es , enquanto se aguarda corre\u00e7\u00e3o do balan\u00e7o .": [{"arg0": "Mr. Rifenburgh", "arg0_index": [0, 1], "pred": "disse", "pred_index": [2, 2], "arg1": "o conselho ainda n\u00e3o agiu na maior parte do relat\u00f3rio interno 's recomenda\u00e7\u00f5es , enquanto se aguarda corre\u00e7\u00e3o do balan\u00e7o", "arg1_index": [4, 23], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "o conselho", "arg0_index": [4, 5], "pred": "ainda n\u00e3o agiu na", "pred_index": [6, 9], "arg1": "maior parte do relat\u00f3rio interno 's recomenda\u00e7\u00f5es", "arg1_index": [10, 16], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Os US $ 150 milh\u00f5es em seniores flutuante subordinadas - rate notes foram alvo a ser oferecido a um pre\u00e7o flutuar quatro pontos percentuais acima da tr\u00eas - m\u00eas LIBOR .": [{"arg0": "Os US $ 150 milh\u00f5es em seniores flutuante subordinadas - rate notes", "arg0_index": [0, 11], "pred": "foram alvo a ser oferecido", "pred_index": [12, 16], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "um pre\u00e7o", "arg0_index": [18, 19], "pred": "flutuar", "pred_index": [20, 20], "arg1": "quatro pontos percentuais acima da tr\u00eas - m\u00eas LIBOR", "arg1_index": [21, 29], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "A seguradora patrocinou o torneio de golfe conhecido como o New Orleans Abrir come\u00e7ando em 1981 .": [{"arg0": "A seguradora", "arg0_index": [0, 1], "pred": "patrocinou", "pred_index": [2, 2], "arg1": "o torneio de golfe", "arg1_index": [3, 6], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "o torneio de golfe", "arg0_index": [3, 6], "pred": "conhecido como", "pred_index": [7, 8], "arg1": "o New Orleans Abrir", "arg1_index": [9, 12], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "o torneio de golfe", "arg0_index": [3, 6], "pred": "come\u00e7ando em", "pred_index": [13, 14], "arg1": "1981", "arg1_index": [15, 15], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Com mais de 15 milh\u00f5es de bicicletas de exerc\u00edcio vendidos nos \u00faltimos cinco anos , acrescenta ele , `` um monte de garagens , por\u00f5es e s\u00f3t\u00e3os deve ser preenchido com eles . ''": [{"arg0": "mais de 15 milh\u00f5es de bicicletas de exerc\u00edcio", "arg0_index": [1, 8], "pred": "vendidos", "pred_index": [9, 9], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "ele", "arg0_index": [16, 16], "pred": "acrescenta", "pred_index": [15, 15], "arg1": "`` um monte de garagens , por\u00f5es e s\u00f3t\u00e3os deve ser preenchido com eles . ''", "arg1_index": [18, 33], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "um monte de garagens , por\u00f5es e s\u00f3t\u00e3os", "arg0_index": [19, 26], "pred": "deve ser preenchido com", "pred_index": [27, 30], "arg1": "bicicletas de exerc\u00edcio", "arg1_index": [6, 8], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Um especialista \u00e9 um membro de c\u00e2mbio designados para manter um justo e mercado ordenado em um estoque especificado .": [{"arg0": "Um especialista", "arg0_index": [0, 1], "pred": "\u00e9", "pred_index": [2, 2], "arg1": "um membro de c\u00e2mbio designados para manter um justo e mercado ordenado em um estoque especificado", "arg1_index": [3, 18], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "um membro de c\u00e2mbio", "arg0_index": [3, 6], "pred": "designados para manter", "pred_index": [7, 9], "arg1": "um justo e mercado ordenado", "arg1_index": [10, 14], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Em 15 de maio de 2007 , XM suspensa Opie & Anthony por 30 dias , em resposta a uma transmiss\u00e3o que caracteriza um homem sem-teto que entrou no est\u00fadio .": [{"arg0": "XM", "arg0_index": [7, 7], "pred": "suspensa", "pred_index": [8, 8], "arg1": "Opie & Anthony", "arg1_index": [9, 11], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "uma transmiss\u00e3o", "arg0_index": [19, 20], "pred": "caracteriza", "pred_index": [22, 22], "arg1": "um homem sem-teto que entrou no est\u00fadio", "arg1_index": [23, 29], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "homem sem-teto", "arg0_index": [24, 25], "pred": "entrou", "pred_index": [27, 27], "arg1": "no est\u00fadio", "arg1_index": [28, 29], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Nixon , no quarto dia de uma visita privada a China , disse que os preju\u00edzos para rela\u00e7\u00f5es sino - americanas foi `` muito grande '' , chamando a situa\u00e7\u00e3o `` o mais s\u00e9rio '' desde 1972 .": [{"arg0": "Nixon", "arg0_index": [0, 0], "pred": "disse", "pred_index": [12, 12], "arg1": "que os preju\u00edzos para rela\u00e7\u00f5es sino - americanas foi `` muito grande", "arg1_index": [13, 24], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "preju\u00edzos para rela\u00e7\u00f5es sino - americanas", "arg0_index": [15, 20], "pred": "foi", "pred_index": [21, 21], "arg1": "`` muito grande ''", "arg1_index": [22, 25], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Nixon", "arg0_index": [0, 0], "pred": "chamando", "pred_index": [27, 27], "arg1": "a situa\u00e7\u00e3o", "arg1_index": [28, 29], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "`` Le Griffon '' \u00e9 relatado para ser o `` Holy Grail '' de ca\u00e7adores Grandes Lagos naufr\u00e1gio .": [{"arg0": "`` Le Griffon ''", "arg0_index": [0, 3], "pred": "\u00e9 relatado para ser", "pred_index": [4, 7], "arg1": "o `` Holy Grail '' de ca\u00e7adores Grandes Lagos naufr\u00e1gio", "arg1_index": [8, 17], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "a\u00e7\u00f5es de tecnologia suportou o peso do OTC mercado 's recente sell - off , e os comerciantes dizem que \u00e9 natural que eles se recuperar acentuadamente agora que o mercado deu uma volta .": [{"arg0": "a\u00e7\u00f5es de tecnologia", "arg0_index": [0, 2], "pred": "suportou", "pred_index": [3, 3], "arg1": "o peso do OTC mercado 's recente sell - off", "arg1_index": [4, 13], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "comerciantes", "arg0_index": [17, 17], "pred": "dizem", "pred_index": [18, 18], "arg1": "que \u00e9 natural que eles se recuperar acentuadamente agora que o mercado deu uma volta", "arg1_index": [19, 33], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "que", "arg0_index": [19, 19], "pred": "\u00e9", "pred_index": [20, 20], "arg1": "natural", "arg1_index": [21, 21], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "a\u00e7\u00f5es de tecnologia", "arg0_index": [0, 2], "pred": "recuperar", "pred_index": [25, 25], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "o mercado", "arg0_index": [29, 30], "pred": "deu uma volta", "pred_index": [31, 33], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "George Bluth Sr. , patriarca da fam\u00edlia Bluth , \u00e9 o fundador e ex-CEO da Bluth Company , que mercados e constr\u00f3i mini-mans\u00f5es , entre muitas outras actividades .": [{"arg0": "George Bluth Sr.", "arg0_index": [0, 2], "pred": "", "pred_index": [-1, -1], "arg1": "patriarca da fam\u00edlia Bluth", "arg1_index": [4, 7], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "George Bluth Sr.", "arg0_index": [0, 2], "pred": "\u00e9", "pred_index": [9, 9], "arg1": "o fundador e ex-CEO da Bluth Company", "arg1_index": [10, 16], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Bluth Company", "arg0_index": [15, 16], "pred": "mercados", "pred_index": [19, 19], "arg1": "mini-mans\u00f5es", "arg1_index": [22, 22], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Bluth Company", "arg0_index": [15, 16], "pred": "constr\u00f3i", "pred_index": [21, 21], "arg1": "mini-mans\u00f5es", "arg1_index": [22, 22], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}]}
\ No newline at end of file
diff --git a/3-NLP_services/src/Multi2OIE/evaluate/Re-OIE2016-Portuguese.json b/3-NLP_services/src/Multi2OIE/evaluate/Re-OIE2016-Portuguese.json
deleted file mode 100644
index 50fe77d..0000000
--- a/3-NLP_services/src/Multi2OIE/evaluate/Re-OIE2016-Portuguese.json
+++ /dev/null
@@ -1 +0,0 @@
-{"Poucas pessoas no neg\u00f3cio de publicidade t\u00eam levantado tantas hackles como Alvin A. Achenbaum .": [{"arg0": "Poucas pessoas no neg\u00f3cio de publicidade", "arg0_index": [0, 5], "pred": "levantado", "pred_index": [7, 7], "arg1": "tantas hackles", "arg1_index": [8, 9], "arg2": "como Alvin A. Achenbaum", "arg2_index": [10, 13], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Stoll suspeita que o intruso era um desses alunos precoces que tem quebra divers\u00e3o em computadores .": [{"arg0": "o intruso", "arg0_index": [3, 4], "pred": "era", "pred_index": [5, 5], "arg1": "um desses alunos precoces que tem quebra divers\u00e3o em computadores", "arg1_index": [6, 15], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "Stoll suspeita", "context_index": [0, 1]}, {"arg0": "Stoll", "arg0_index": [0, 0], "pred": "suspeita", "pred_index": [1, 1], "arg1": "o intruso era um desses alunos precoces que tem quebra divers\u00e3o em computadores", "arg1_index": [3, 15], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "alunos precoces", "arg0_index": [8, 9], "pred": "tem quebra divers\u00e3o em", "pred_index": [11, 14], "arg1": "computadores", "arg1_index": [15, 15], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Havia 143 casas fora de que 30.1% tiveram as crian\u00e7as sob a idade de 18 que vivem com eles , 49,7% eram casais vivendo juntos , 11,9% tiveram um householder f\u00eamea com nenhum presente do marido , e 36,4% eram n\u00e3o-fam\u00edlias .": [{"arg0": "30.1%", "arg0_index": [6, 6], "pred": "tiveram", "pred_index": [7, 7], "arg1": "crian\u00e7as sob a idade de 18 que vivem com eles", "arg1_index": [9, 18], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "49,7%", "arg0_index": [20, 20], "pred": "eram", "pred_index": [21, 21], "arg1": "casais vivendo juntos", "arg1_index": [22, 24], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "11,9%", "arg0_index": [26, 26], "pred": "tiveram", "pred_index": [27, 27], "arg1": "um householder f\u00eamea com nenhum presente do marido", "arg1_index": [28, 35], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "36,4%", "arg0_index": [38, 38], "pred": "eram", "pred_index": [39, 39], "arg1": "n\u00e3o-fam\u00edlias", "arg1_index": [40, 40], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "A fam\u00edlia Steinbrenner adicionado um monumento ao Monument Park em 20 de setembro de 2010 para honrar Steinbrenner .": [{"arg0": "A fam\u00edlia Steinbrenner", "arg0_index": [0, 2], "pred": "adicionado", "pred_index": [3, 3], "arg1": "um monumento", "arg1_index": [4, 5], "arg2": "ao Monument Park", "arg2_index": [6, 8], "arg3": "para honrar Steinbrenner", "arg3_index": [15, 17], "loc": "", "loc_index": [], "temp": "em 20 de setembro de 2010", "temp_index": [9, 14], "context": "", "context_index": []}, {"arg0": "A fam\u00edlia Steinbrenner", "arg0_index": [0, 2], "pred": "honrar", "pred_index": [16, 16], "arg1": "Steinbrenner", "arg1_index": [17, 17], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Um espectro de um \u00fanico FID tem uma baixa rela\u00e7\u00e3o de sinal-para-ru\u00eddo , mas felizmente , melhora prontamente com m\u00e9dia de aquisi\u00e7\u00f5es repetidas .": [{"arg0": "Um espectro de um \u00fanico FID", "arg0_index": [0, 5], "pred": "tem", "pred_index": [6, 6], "arg1": "uma baixa rela\u00e7\u00e3o de sinal-para-ru\u00eddo", "arg1_index": [7, 11], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Um espectro de um \u00fanico FID", "arg0_index": [0, 5], "pred": "melhora prontamente", "pred_index": [16, 17], "arg1": "", "arg1_index": [], "arg2": "com m\u00e9dia de aquisi\u00e7\u00f5es repetidas", "arg2_index": [18, 22], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "A empresa opera\u00e7\u00f5es de explora\u00e7\u00e3o e mergulho de petr\u00f3leo e g\u00e1s de New Orleans acrescentou que n\u00e3o espera qualquer impacto adicional financeiro adverso da reestrutura\u00e7\u00e3o .": [{"arg0": "empresa opera\u00e7\u00f5es de explora\u00e7\u00e3o e mergulho de petr\u00f3leo e g\u00e1s de New Orleans", "arg0_index": [1, 13], "pred": "adicional", "pred_index": [20, 20], "arg1": "que n\u00e3o espera qualquer impacto adicional financeiro adverso da reestrutura\u00e7\u00e3o", "arg1_index": [15, 24], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "que", "arg0_index": [15, 15], "pred": "n\u00e3o espera", "pred_index": [16, 17], "arg1": "qualquer impacto adicional financeiro adverso da reestrutura\u00e7\u00e3o", "arg1_index": [18, 24], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "`` Para permitir este n\u00edvel maci\u00e7a de empr\u00e9stimos federais sem restri\u00e7\u00f5es , sem a aprova\u00e7\u00e3o do Congresso antes seria irrespons\u00e1vel '' , disse Rep. Fortney Stark (D. , Calif.) , Que introduziu um projeto de lei para limitar a RTC 'autoridade s \u00e0 d\u00edvida quest\u00e3o .": [{"arg0": "permitir este n\u00edvel maci\u00e7a de empr\u00e9stimos federais sem restri\u00e7\u00f5es , sem a aprova\u00e7\u00e3o do Congresso", "arg0_index": [2, 16], "pred": "seria", "pred_index": [18, 18], "arg1": "irrespons\u00e1vel", "arg1_index": [19, 19], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "disse Rep. Fortney Stark (D. , Calif.)", "context_index": [22, 28]}, {"arg0": "Rep. Fortney Stark (D. , Calif.)", "arg0_index": [23, 28], "pred": "disse", "pred_index": [22, 22], "arg1": "permitir este n\u00edvel maci\u00e7a de empr\u00e9stimos federais sem restri\u00e7\u00f5es , sem a aprova\u00e7\u00e3o do Congresso antes seria irrespons\u00e1vel", "arg1_index": [2, 19], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Rep. Fortney Stark (D. , Calif.)", "arg0_index": [23, 28], "pred": "introduziu", "pred_index": [31, 31], "arg1": "um projeto", "arg1_index": [32, 33], "arg2": "para limitar a RTC 'autoridade s \u00e0 d\u00edvida quest\u00e3o", "arg2_index": [36, 44], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "um projeto", "arg0_index": [32, 33], "pred": "limitar", "pred_index": [37, 37], "arg1": "RTC 'autoridade s \u00e0 d\u00edvida quest\u00e3o", "arg1_index": [39, 44], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "", "arg0_index": [], "pred": "quest\u00e3o", "pred_index": [44, 44], "arg1": "d\u00edvida", "arg1_index": [43, 43], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "A Democrata , ele se tornou o prefeito mais jovem da hist\u00f3ria Pittsburgh 's em setembro de 2006 com a idade de 26 .": [{"arg0": "ele", "arg0_index": [3, 3], "pred": "tornou", "pred_index": [5, 5], "arg1": "o prefeito mais jovem da hist\u00f3ria Pittsburgh 's", "arg1_index": [6, 13], "arg2": "com a idade de 26", "arg2_index": [18, 22], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "em setembro de 2006", "temp_index": [14, 17], "context": "", "context_index": []}], "O caldeir\u00e3o deve ser refrigerada e a massa s\u00f3lida de gotejamento que se estabelece quando refrigerado deve ser raspados e re-refrigerados para uso futuro .": [{"arg0": "O caldeir\u00e3o", "arg0_index": [0, 1], "pred": "deve ser refrigerada", "pred_index": [2, 4], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "a massa s\u00f3lida de gotejamento", "arg0_index": [6, 10], "pred": "deve ser raspados e re-refrigerados", "pred_index": [16, 20], "arg1": "", "arg1_index": [], "arg2": "para uso futuro", "arg2_index": [21, 23], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "a massa s\u00f3lida de gotejamento", "arg0_index": [6, 10], "pred": "re-refrigerados", "pred_index": [20, 20], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "a massa s\u00f3lida de gotejamento", "arg0_index": [6, 10], "pred": "se estabelece", "pred_index": [12, 13], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "quando refrigerado", "temp_index": [14, 15], "context": "", "context_index": []}], "No atletismo , Boston College deixou a Confer\u00eancia Big East e se juntou ao Atlantic Coast Conference on 01 de julho de 2005 .": [{"arg0": "Boston College", "arg0_index": [3, 4], "pred": "deixou", "pred_index": [5, 5], "arg1": "Confer\u00eancia Big East", "arg1_index": [7, 9], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "No atletismo", "loc_index": [0, 1], "temp": "on 01 de julho de 2005", "temp_index": [17, 22], "context": "", "context_index": []}, {"arg0": "Boston College", "arg0_index": [3, 4], "pred": "juntou", "pred_index": [12, 12], "arg1": "Atlantic Coast Conference", "arg1_index": [14, 16], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "No atletismo", "loc_index": [0, 1], "temp": "on 01 de julho de 2005", "temp_index": [17, 22], "context": "", "context_index": []}], "Em 30 de setembro , American Brands tinha 95,2 milh\u00f5es de a\u00e7\u00f5es em circula\u00e7\u00e3o .": [{"arg0": "American Brands", "arg0_index": [5, 6], "pred": "tinha", "pred_index": [7, 7], "arg1": "95,2 milh\u00f5es de a\u00e7\u00f5es em circula\u00e7\u00e3o", "arg1_index": [8, 13], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "Em 30 de setembro", "temp_index": [0, 3], "context": "", "context_index": []}], "No an\u00fancio da UTV foi feito sobre a decis\u00e3o de fechar a esta\u00e7\u00e3o antes do planejado .": [{"arg0": "No an\u00fancio da UTV", "arg0_index": [0, 3], "pred": "foi feito", "pred_index": [4, 5], "arg1": "", "arg1_index": [], "arg2": "sobre a decis\u00e3o de fechar a esta\u00e7\u00e3o antes do planejado", "arg2_index": [6, 15], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "a decis\u00e3o", "arg0_index": [7, 8], "pred": "fechar", "pred_index": [10, 10], "arg1": "a esta\u00e7\u00e3o", "arg1_index": [11, 12], "arg2": "antes do planejado", "arg2_index": [13, 15], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "No entanto , StatesWest n\u00e3o est\u00e1 abandonando sua busca do bem - maior Mesa .": [{"arg0": "StatesWest", "arg0_index": [3, 3], "pred": "n\u00e3o est\u00e1 abandonando", "pred_index": [4, 6], "arg1": "sua busca do bem - maior Mesa", "arg1_index": [7, 13], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "O resto do grupo chegar a uma pequena loja , onde Brady tentativas de telefone do Sheriff , mas o crocodilo rompe uma parede e devora Annabelle .": [{"arg0": "O resto do grupo", "arg0_index": [0, 3], "pred": "chegar", "pred_index": [4, 4], "arg1": "uma pequena loja", "arg1_index": [6, 8], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Brady", "arg0_index": [11, 11], "pred": "tentativas de telefone", "pred_index": [12, 14], "arg1": "do Sheriff", "arg1_index": [15, 16], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "o crocodilo", "arg0_index": [19, 20], "pred": "rompe", "pred_index": [21, 21], "arg1": "uma parede", "arg1_index": [22, 23], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "o crocodilo", "arg0_index": [19, 20], "pred": "devora", "pred_index": [25, 25], "arg1": "Annabelle", "arg1_index": [26, 26], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Ele deu entrada perto do hospital em 28 de St Street 's Thomas em Southwark , com outros estudantes de medicina , incluindo Henry Stephens , que se tornou um famoso inventor e tinta magnata .": [{"arg0": "Ele", "arg0_index": [0, 0], "pred": "deu entrada", "pred_index": [1, 2], "arg1": "", "arg1_index": [], "arg2": "com outros estudantes de medicina", "arg2_index": [16, 20], "arg3": "", "arg3_index": [], "loc": "perto do hospital em 28 de St Street 's Thomas em Southwark", "loc_index": [3, 14], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Henry Stephens", "arg0_index": [23, 24], "pred": "se tornou", "pred_index": [27, 28], "arg1": "um famoso inventor e tinta magnata", "arg1_index": [29, 34], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Para manter a fam\u00edlia unida , Michael pede que sua irm\u00e3 egoc\u00eantrica g\u00eameo Lindsay , seu marido Tobias e sua filha Maeby para juntos ao vivo no modelo de casa Bluth com ele e George Michael .": [{"arg0": "Michael", "arg0_index": [6, 6], "pred": "pede", "pred_index": [7, 7], "arg1": "sua irm\u00e3 egoc\u00eantrica g\u00eameo Lindsay , seu marido Tobias e sua filha Maeby", "arg1_index": [9, 21], "arg2": "para juntos ao vivo no modelo de casa Bluth com ele e George Michael", "arg2_index": [22, 35], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "A Rodovia Wilbur Cruz anteriormente terminou em Sturbridge ; locals \u00e0s vezes chamam Haynes rua e por\u00e7\u00f5es de Mashapaug Estrada `` Old Route 15 '' .": [{"arg0": "A Rodovia Wilbur Cruz", "arg0_index": [0, 3], "pred": "anteriormente terminou em", "pred_index": [4, 6], "arg1": "Sturbridge", "arg1_index": [7, 7], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "locals", "arg0_index": [9, 9], "pred": "\u00e0s vezes chamam", "pred_index": [10, 12], "arg1": "Haynes rua e por\u00e7\u00f5es de Mashapaug Estrada", "arg1_index": [13, 19], "arg2": "`` Old Route 15 ''", "arg2_index": [20, 24], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Ele tem patas traseiras compridas e uma longa , fina , cauda escamosa que ele usa para se comunicar , fazendo ru\u00eddos bateria .": [{"arg0": "Ele", "arg0_index": [0, 0], "pred": "tem", "pred_index": [1, 1], "arg1": "patas traseiras compridas e uma longa , fina , cauda escamosa", "arg1_index": [2, 12], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Ele", "arg0_index": [0, 0], "pred": "usa", "pred_index": [15, 15], "arg1": "uma longa , fina , cauda escamosa", "arg1_index": [6, 12], "arg2": "comunicar", "arg2_index": [18, 18], "arg3": "fazendo ru\u00eddos bateria", "arg3_index": [20, 22], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Ryukichi Imai , embaixador Jap\u00e3o 's para o M\u00e9xico , concorda que o M\u00e9xico pode ser muito ansioso .": [{"arg0": "Ryukichi", "arg0_index": [0, 0], "pred": "", "pred_index": [-1, -1], "arg1": "embaixador Jap\u00e3o 's para o M\u00e9xico", "arg1_index": [3, 8], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Ryukichi Imai", "arg0_index": [0, 1], "pred": "concorda", "pred_index": [10, 10], "arg1": "que o M\u00e9xico pode ser muito ansioso", "arg1_index": [11, 17], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "M\u00e9xico", "arg0_index": [13, 13], "pred": "pode ser", "pred_index": [14, 15], "arg1": "muito ansioso", "arg1_index": [16, 17], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "Ryukichi Imai , embaixador Jap\u00e3o 's para o M\u00e9xico , concorda", "context_index": [0, 10]}], "A quest\u00e3o \u00e9 apoiado por uma carta de 12% do cr\u00e9dito do Credit Suisse .": [{"arg0": "A quest\u00e3o", "arg0_index": [0, 1], "pred": "\u00e9 apoiado por", "pred_index": [2, 4], "arg1": "uma carta de 12% do cr\u00e9dito do Credit Suisse", "arg1_index": [5, 13], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Dentro de duas horas , os espectadores se comprometeu mais de US $ 400.000 , de acordo com um executivo da Cruz Vermelha .": [{"arg0": "os espectadores", "arg0_index": [5, 6], "pred": "se comprometeu", "pred_index": [7, 8], "arg1": "$ 400.000", "arg1_index": [12, 13], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "Dentro de duas horas", "temp_index": [0, 3], "context": "acordo com um executivo da Cruz Vermelha", "context_index": [16, 22]}], "Johns tamb\u00e9m apareceu como um oficial Imperial em 1980 `` Star Wars sequela '' , `` The Empire Strikes Back '' .": [{"arg0": "Johns", "arg0_index": [0, 0], "pred": "apareceu como", "pred_index": [2, 3], "arg1": "um oficial Imperial", "arg1_index": [4, 6], "arg2": "em 1980 `` Star Wars sequela '' , `` The Empire Strikes Back ''", "arg2_index": [7, 20], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "No entanto , um funcion\u00e1rio da Embaixada do Canad\u00e1 em Tel Aviv disse que o Canad\u00e1 era improv\u00e1vel para vender a pesada Candu - reator de \u00e1gua para Israel desde que Israel n\u00e3o assinou o Non Nuclear - Prolifera\u00e7\u00e3o Nuclear .": [{"arg0": "um funcion\u00e1rio da Embaixada do Canad\u00e1 em Tel Aviv", "arg0_index": [3, 11], "pred": "disse", "pred_index": [12, 12], "arg1": "que o Canad\u00e1 era improv\u00e1vel para vender a pesada Candu - reator de \u00e1gua para Israel desde que Israel n\u00e3o assinou o Non Nuclear - Prolifera\u00e7\u00e3o Nuclear", "arg1_index": [13, 39], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Canad\u00e1", "arg0_index": [15, 15], "pred": "era improv\u00e1vel para vender", "pred_index": [16, 19], "arg1": "a pesada Candu - reator de \u00e1gua", "arg1_index": [20, 26], "arg2": "para Israel", "arg2_index": [27, 28], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "funcion\u00e1rio da Embaixada do Canad\u00e1 em Tel Aviv disse", "context_index": [4, 12]}, {"arg0": "Israel", "arg0_index": [31, 31], "pred": "n\u00e3o assinou", "pred_index": [32, 33], "arg1": "o Non Nuclear - Prolifera\u00e7\u00e3o Nuclear", "arg1_index": [34, 39], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Seus classifica o recente relat\u00f3rio de a\u00e7\u00f5es como um `` hold . ''": [{"arg0": "o recente relat\u00f3rio", "arg0_index": [2, 4], "pred": "classifica", "pred_index": [1, 1], "arg1": "Seus", "arg1_index": [0, 0], "arg2": "como um `` hold . ''", "arg2_index": [7, 12], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Hawker Pacific Aerospace \u00e9 uma empresa de MRO-Service , que oferece desembarque servi\u00e7os de transmiss\u00e3o e de MRO hidr\u00e1ulica para todos os principais tipos de aeronaves .": [{"arg0": "Hawker Pacific Aerospace", "arg0_index": [0, 2], "pred": "\u00e9", "pred_index": [3, 3], "arg1": "uma empresa de MRO-Service", "arg1_index": [4, 7], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Hawker Pacific Aerospace", "arg0_index": [0, 2], "pred": "oferece", "pred_index": [10, 10], "arg1": "desembarque servi\u00e7os de transmiss\u00e3o e de MRO", "arg1_index": [11, 17], "arg2": "para todos os principais tipos de aeronaves", "arg2_index": [19, 25], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "O primeiro vem de quando da Su\u00e9cia casal real viveu l\u00e1 durante os Jogos Ol\u00edmpicos de Ver\u00e3o de 1992 em Barcelona .": [{"arg0": "O primeiro", "arg0_index": [0, 1], "pred": "vem de", "pred_index": [2, 3], "arg1": "quando da Su\u00e9cia casal real viveu l\u00e1 durante os Jogos Ol\u00edmpicos de Ver\u00e3o de 1992 em Barcelona", "arg1_index": [4, 20], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "da Su\u00e9cia casal real", "arg0_index": [5, 8], "pred": "viveu", "pred_index": [9, 9], "arg1": "l\u00e1", "arg1_index": [10, 10], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "durante os Jogos Ol\u00edmpicos de Ver\u00e3o de 1992 em Barcelona", "temp_index": [11, 20], "context": "", "context_index": []}], "A modernidade tem sido misturado sem sacrificar sobre o ethos tradicional budista .": [{"arg0": "modernidade", "arg0_index": [1, 1], "pred": "tem sido misturado", "pred_index": [2, 4], "arg1": "", "arg1_index": [], "arg2": "sem sacrificar sobre o ethos tradicional budista", "arg2_index": [5, 11], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "", "arg0_index": [], "pred": "sacrificar", "pred_index": [6, 6], "arg1": "o ethos tradicional budista", "arg1_index": [8, 11], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "A terceira vers\u00e3o conhecida faz parte n\u00famero 2189014-00-212 , com pelo menos um modelo a ser produzido em Fevereiro de 1993 .": [{"arg0": "A terceira vers\u00e3o conhecida", "arg0_index": [0, 3], "pred": "faz", "pred_index": [4, 4], "arg1": "parte n\u00famero 2189014-00-212", "arg1_index": [5, 7], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "pelo menos um modelo", "arg0_index": [10, 13], "pred": "ser produzido", "pred_index": [15, 16], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "em Fevereiro de 1993", "temp_index": [17, 20], "context": "", "context_index": []}], "Embora as autoridades Heathrow foram assistir um grupo de carregadores de bagagem supostamente curvado por algum tempo , o Gauguin pode ser `` perdidos . ''": [{"arg0": "autoridades Heathrow", "arg0_index": [2, 3], "pred": "foram assistir", "pred_index": [4, 5], "arg1": "um grupo de carregadores de bagagem supostamente curvado", "arg1_index": [6, 13], "arg2": "por algum tempo", "arg2_index": [14, 16], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "o Gauguin", "arg0_index": [18, 19], "pred": "pode ser", "pred_index": [20, 21], "arg1": "`` perdidos . ''", "arg1_index": [22, 25], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Mr. Ridley a decis\u00e3o do dispara a pistola de partida para talvez um concurso caro entre o mundo 's auto gigantes por liderar luxo da Gr\u00e3-Bretanha - fabricante de carro .": [{"arg0": "Mr. Ridley a decis\u00e3o", "arg0_index": [0, 3], "pred": "dispara", "pred_index": [5, 5], "arg1": "a pistola de partida", "arg1_index": [6, 9], "arg2": "para talvez um concurso caro entre o mundo 's auto gigantes por liderar luxo da Gr\u00e3-Bretanha - fabricante de carro", "arg2_index": [10, 29], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Quando a explos\u00e3o rasgou atrav\u00e9s da cabana , Stauffenberg estava convencido de que ningu\u00e9m na sala poderia ter sobrevivido .": [{"arg0": "a explos\u00e3o", "arg0_index": [1, 2], "pred": "rasgou", "pred_index": [3, 3], "arg1": "cabana", "arg1_index": [6, 6], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Stauffenberg", "arg0_index": [8, 8], "pred": "estava convencido", "pred_index": [9, 10], "arg1": "que ningu\u00e9m na sala poderia ter sobrevivido", "arg1_index": [12, 18], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "Quando a explos\u00e3o rasgou atrav\u00e9s da cabana", "temp_index": [0, 6], "context": "", "context_index": []}, {"arg0": "ningu\u00e9m na sala", "arg0_index": [13, 15], "pred": "poderia ter sobrevivido", "pred_index": [16, 18], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "Stauffenberg estava convencido de que", "context_index": [8, 12]}], "Ap\u00f3s cinco anos de pesquisa , os colonos encontraram um novo mundo primitivo , exuberante e vibrante e nomeou-o Terra .": [{"arg0": "os colonos", "arg0_index": [6, 7], "pred": "encontraram", "pred_index": [8, 8], "arg1": "um novo mundo primitivo , exuberante e vibrante", "arg1_index": [9, 16], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "Ap\u00f3s cinco anos de pesquisa", "temp_index": [0, 4], "context": "", "context_index": []}, {"arg0": "os colonos", "arg0_index": [6, 7], "pred": "nomeou-o", "pred_index": [18, 18], "arg1": "", "arg1_index": [], "arg2": "Terra", "arg2_index": [19, 19], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Esta muta\u00e7\u00e3o lhe d\u00e1 for\u00e7a sobre-humana , velocidade , reflexos , agilidade , flexibilidade , agilidade , coordena\u00e7\u00e3o , equil\u00edbrio e resist\u00eancia .": [{"arg0": "Esta muta\u00e7\u00e3o", "arg0_index": [0, 1], "pred": "d\u00e1", "pred_index": [3, 3], "arg1": "lhe", "arg1_index": [2, 2], "arg2": "sobre-humana , velocidade , reflexos , agilidade , flexibilidade , agilidade , coordena\u00e7\u00e3o , equil\u00edbrio e resist\u00eancia", "arg2_index": [5, 21], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Mas , em meio as duas dezenas de burocratas e secret\u00e1rios senta apenas um verdadeiro - vida PC .": [{"arg0": "apenas um verdadeiro - vida PC", "arg0_index": [12, 17], "pred": "senta", "pred_index": [11, 11], "arg1": "", "arg1_index": [], "arg2": "meio as duas dezenas de burocratas e secret\u00e1rios", "arg2_index": [3, 10], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "As fortes vendas at\u00e9 agora este ano est\u00e3o determinados a virar o jogo , mas mesmo a quota de mercado de 25% que espera Nissan em 1989 , vai deix\u00e1-lo muito abaixo da sua posi\u00e7\u00e3o no in\u00edcio da d\u00e9cada .": [{"arg0": "As fortes vendas", "arg0_index": [0, 2], "pred": "est\u00e3o determinados a virar", "pred_index": [7, 10], "arg1": "o jogo", "arg1_index": [11, 12], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "at\u00e9 agora este ano", "temp_index": [3, 6], "context": "", "context_index": []}, {"arg0": "mas mesmo a quota de mercado de 25% que espera Nissan em 1989", "arg0_index": [14, 26], "pred": "vai deix\u00e1-lo", "pred_index": [28, 29], "arg1": "este", "arg1_index": [5, 5], "arg2": "muito abaixo da sua posi\u00e7\u00e3o no in\u00edcio da d\u00e9cada", "arg2_index": [30, 38], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Nissan", "arg0_index": [24, 24], "pred": "espera", "pred_index": [23, 23], "arg1": "quota de mercado", "arg1_index": [17, 19], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "em 1989", "temp_index": [25, 26], "context": "", "context_index": []}], "Mas parece ser o tipo de reten\u00e7\u00e3o uma faz enquanto se dirigiam para a porta .": [{"arg0": "", "arg0_index": [], "pred": "parece ser", "pred_index": [1, 2], "arg1": "o tipo de reten\u00e7\u00e3o uma faz enquanto se dirigiam para a porta", "arg1_index": [3, 14], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "uma", "arg0_index": [7, 7], "pred": "faz", "pred_index": [8, 8], "arg1": "o tipo de reten\u00e7\u00e3o", "arg1_index": [3, 6], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "enquanto se dirigiam para a porta", "temp_index": [9, 14], "context": "", "context_index": []}, {"arg0": "uma", "arg0_index": [7, 7], "pred": "dirigiam para", "pred_index": [11, 12], "arg1": "a porta", "arg1_index": [13, 14], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Ele conversou com McGee sobre o uso de seu nome e recebido permiss\u00e3o , o que \u00e9 confirmado pela correspond\u00eancia entre McGee e sua fam\u00edlia .": [{"arg0": "Ele", "arg0_index": [0, 0], "pred": "conversou com", "pred_index": [1, 2], "arg1": "McGee", "arg1_index": [3, 3], "arg2": "sobre o uso de seu nome e recebido permiss\u00e3o", "arg2_index": [4, 12], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "o uso de seu nome e recebido permiss\u00e3o", "arg0_index": [5, 12], "pred": "\u00e9 confirmado pela", "pred_index": [16, 18], "arg1": "correspond\u00eancia entre McGee e sua fam\u00edlia", "arg1_index": [19, 24], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Mas transfer\u00eancias eletr\u00f4nicas de uma conta permanente - incluindo aquelas maiores que US $ 10.000 - n\u00e3o s\u00e3o relatadas .": [{"arg0": "transfer\u00eancias eletr\u00f4nicas de uma conta permanente", "arg0_index": [1, 6], "pred": "n\u00e3o s\u00e3o relatadas", "pred_index": [16, 18], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Um exemplo poderia ser `` Time '' , a quinta can\u00e7\u00e3o do Pink Floyd '1973 album s `` The Dark Side Of The Moon '' , que cont\u00e9m uma reprise de `` respirar '' , a primeira m\u00fasica do mesmo \u00e1lbum .": [{"arg0": "`` Time ''", "arg0_index": [4, 6], "pred": "", "pred_index": [-1, -1], "arg1": "a quinta can\u00e7\u00e3o do Pink Floyd '1973 album s `` The Dark Side Of The Moon ''", "arg1_index": [8, 24], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Um exemplo", "arg0_index": [0, 1], "pred": "poderia ser", "pred_index": [2, 3], "arg1": "`` Time ''", "arg1_index": [4, 6], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "`` The Dark Side Of The Moon ''", "arg0_index": [17, 24], "pred": "cont\u00e9m", "pred_index": [27, 27], "arg1": "uma reprise de `` respirar ''", "arg1_index": [28, 33], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "`` respirar ''", "arg0_index": [31, 33], "pred": "", "pred_index": [-1, -1], "arg1": "a primeira m\u00fasica do mesmo \u00e1lbum", "arg1_index": [35, 40], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "`` The Dark Side Of The Moon ''", "arg0_index": [17, 24], "pred": "", "pred_index": [-1, -1], "arg1": "Pink Floyd '1973 album", "arg1_index": [12, 15], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "As tr\u00eas plantas existentes e sua terra ser\u00e1 vendida .": [{"arg0": "As tr\u00eas plantas existentes e sua terra", "arg0_index": [0, 6], "pred": "ser\u00e1 vendida", "pred_index": [7, 8], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Embora h\u00e1 acordos espec\u00edficos s\u00e3o esperados , o Sr. Shevardnadze disse `` isso n\u00e3o significa que eles v\u00e3o ficar sem uma agenda . ''": [{"arg0": "h\u00e1 acordos espec\u00edficos", "arg0_index": [1, 3], "pred": "s\u00e3o esperados", "pred_index": [4, 5], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Sr. Shevardnadze", "arg0_index": [8, 9], "pred": "disse", "pred_index": [10, 10], "arg1": "`` isso n\u00e3o significa que eles v\u00e3o ficar sem uma agenda . ''", "arg1_index": [11, 23], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "que", "arg0_index": [15, 15], "pred": "n\u00e3o significa", "pred_index": [13, 14], "arg1": "eles v\u00e3o ficar sem uma agenda", "arg1_index": [16, 21], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "Sr. Shevardnadze disse", "context_index": [8, 10]}, {"arg0": "eles", "arg0_index": [16, 16], "pred": "v\u00e3o ficar sem", "pred_index": [17, 19], "arg1": "uma agenda", "arg1_index": [20, 21], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "isso n\u00e3o significa", "context_index": [12, 14]}], "De acordo com a samaritana tradi\u00e7\u00e3o , no entanto , o ethnonym Samaritano n\u00e3o \u00e9 derivada da regi\u00e3o de Samaria , mas do fato de que eles eram os `` Guardians '' da verdadeira religi\u00e3o israelita .": [{"arg0": "o ethnonym Samaritano", "arg0_index": [10, 12], "pred": "n\u00e3o \u00e9 derivada", "pred_index": [13, 15], "arg1": "da regi\u00e3o de Samaria", "arg1_index": [16, 19], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "acordo com a samaritana tradi\u00e7\u00e3o", "context_index": [1, 5]}, {"arg0": "eles", "arg0_index": [26, 26], "pred": "eram", "pred_index": [27, 27], "arg1": "os `` Guardians '' da verdadeira religi\u00e3o israelita", "arg1_index": [28, 35], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Em 1990 Kelsang Gyatso se tornou tamb\u00e9m aberta contra o Programa de Estudos de Geshe , e `` fez a busca de seus novos programas obrigat\u00f3rios . ''": [{"arg0": "Kelsang Gyatso", "arg0_index": [2, 3], "pred": "tornou", "pred_index": [5, 5], "arg1": "aberta contra o Programa de Estudos de Geshe", "arg1_index": [7, 14], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "Em 1990", "temp_index": [0, 1], "context": "", "context_index": []}, {"arg0": "Kelsang Gyatso", "arg0_index": [2, 3], "pred": "fez", "pred_index": [18, 18], "arg1": "a busca de", "arg1_index": [19, 21], "arg2": "seus novos programas obrigat\u00f3rios", "arg2_index": [22, 25], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "Em 1990", "temp_index": [0, 1], "context": "", "context_index": []}], "A pousada est\u00e1 aberta de meados de Maio a meados de outubro , com duas semanas a partir do final de agosto reservados para as viagens Dartmouth primeiro ano .": [{"arg0": "A pousada", "arg0_index": [0, 1], "pred": "est\u00e1 aberta", "pred_index": [2, 3], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "de meados de Maio a meados de outubro", "temp_index": [4, 11], "context": "", "context_index": []}, {"arg0": "duas semanas", "arg0_index": [14, 15], "pred": "partir do", "pred_index": [17, 18], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "do final de agosto", "temp_index": [18, 21], "context": "", "context_index": []}, {"arg0": "duas semanas", "arg0_index": [14, 15], "pred": "reservados para", "pred_index": [22, 23], "arg1": "as viagens Dartmouth primeiro ano", "arg1_index": [24, 28], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "First Boston incorridos milh\u00f5es de d\u00f3lares de perdas em t\u00edtulos Campeau que possu\u00eda , bem como em t\u00edtulos especiais que n\u00e3o poderia vender .": [{"arg0": "First Boston", "arg0_index": [0, 1], "pred": "incorridos", "pred_index": [2, 2], "arg1": "milh\u00f5es de d\u00f3lares de perdas em t\u00edtulos Campeau que possu\u00eda , bem como em t\u00edtulos especiais que n\u00e3o poderia vender", "arg1_index": [3, 22], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "que", "arg0_index": [11, 11], "pred": "possu\u00eda", "pred_index": [12, 12], "arg1": "t\u00edtulos Campeau", "arg1_index": [9, 10], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "que", "arg0_index": [19, 19], "pred": "n\u00e3o poderia vender", "pred_index": [20, 22], "arg1": "t\u00edtulos especiais", "arg1_index": [17, 18], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "No Canad\u00e1 , existem duas organiza\u00e7\u00f5es que regulam a universidade e atletismo escolar .": [{"arg0": "duas organiza\u00e7\u00f5es", "arg0_index": [4, 5], "pred": "regulam", "pred_index": [7, 7], "arg1": "universidade e atletismo escolar", "arg1_index": [9, 12], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "No Canad\u00e1", "loc_index": [0, 1], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Os dialetos que eles falam s\u00e3o semelhantes , mas t\u00eam diferentes entona\u00e7\u00f5es .": [{"arg0": "Os dialetos que eles falam", "arg0_index": [0, 4], "pred": "s\u00e3o", "pred_index": [5, 5], "arg1": "semelhantes", "arg1_index": [6, 6], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Os dialetos que eles falam", "arg0_index": [0, 4], "pred": "t\u00eam", "pred_index": [9, 9], "arg1": "diferentes entona\u00e7\u00f5es", "arg1_index": [10, 11], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "eles", "arg0_index": [3, 3], "pred": "falam", "pred_index": [4, 4], "arg1": "Os dialetos", "arg1_index": [0, 1], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Sukhum funcionou como a capital do `` tratado da Uni\u00e3o '' Abkhaz Rep\u00fablica Socialista Sovi\u00e9tica associado \u00e0 SSR Georgian de 1921 at\u00e9 1931 , quando se tornou a capital do Sovi\u00e9tica Aut\u00f3noma da Rep\u00fablica da Abkhazia Socialista dentro do SSR Georgian .": [{"arg0": "Sukhum", "arg0_index": [0, 0], "pred": "funcionou como", "pred_index": [1, 2], "arg1": "a capital do `` tratado da Uni\u00e3o '' Abkhaz Rep\u00fablica Socialista Sovi\u00e9tica associado \u00e0 SSR Georgian", "arg1_index": [3, 18], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "Georgian de 1921 at\u00e9 1931", "temp_index": [18, 22], "context": "", "context_index": []}, {"arg0": "`` tratado da Uni\u00e3o '' Abkhaz Rep\u00fablica Socialista Sovi\u00e9tica", "arg0_index": [6, 14], "pred": "associado \u00e0", "pred_index": [15, 16], "arg1": "\u00e0 SSR Georgian", "arg1_index": [16, 18], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "se", "arg0_index": [25, 25], "pred": "tornou", "pred_index": [26, 26], "arg1": "a capital do Sovi\u00e9tica Aut\u00f3noma da Rep\u00fablica da Abkhazia Socialista dentro do SSR Georgian", "arg1_index": [27, 40], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "Georgian de 1921 at\u00e9 1931", "temp_index": [18, 22], "context": "", "context_index": []}], "Sua imagem erguida significa a terra , que `` paira no ar '' .": [{"arg0": "Sua imagem erguida", "arg0_index": [0, 2], "pred": "significa", "pred_index": [3, 3], "arg1": "a terra", "arg1_index": [4, 5], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "a terra", "arg0_index": [4, 5], "pred": "paira", "pred_index": [9, 9], "arg1": "no ar", "arg1_index": [10, 11], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Ele vendeu-os bem abaixo do valor de mercado para dinheiro raise `` para saldar montagem de cr\u00e9dito - d\u00edvidas de cart\u00e3o , '' incorrido para comprar presentes para sua namorada , seu advogado , Philip Russell , disse IFAR .": [{"arg0": "Ele", "arg0_index": [0, 0], "pred": "vendeu-os", "pred_index": [1, 1], "arg1": "", "arg1_index": [], "arg2": "bem abaixo do valor de mercado", "arg2_index": [2, 7], "arg3": "para dinheiro raise", "arg3_index": [8, 10], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "seu advogado , Philip Russell , disse IFAR", "context_index": [31, 38]}, {"arg0": "Ele", "arg0_index": [0, 0], "pred": "incorrido para comprar", "pred_index": [23, 25], "arg1": "presentes", "arg1_index": [26, 26], "arg2": "para sua namorada", "arg2_index": [27, 29], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "seu advogado , Philip Russell , disse IFAR", "context_index": [31, 38]}, {"arg0": "Philip Russell", "arg0_index": [34, 35], "pred": "", "pred_index": [-1, -1], "arg1": "seu advogado", "arg1_index": [31, 32], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "`` Para obter uma lista de todos os medalhistas , por favor consulte a lista de medalhistas grande festival de cerveja americano ''": [{"arg0": "", "arg0_index": [], "pred": "consulte", "pred_index": [12, 12], "arg1": "a lista de medalhistas grande festival de cerveja americano", "arg1_index": [13, 21], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Desde que a unidade imobili\u00e1rio tamb\u00e9m inclui a d\u00edvida , o valor imputado do real pr\u00f3pria fazenda \u00e9 cerca de US $ 3 bilh\u00f5es .": [{"arg0": "imobili\u00e1rio", "arg0_index": [4, 4], "pred": "tamb\u00e9m inclui", "pred_index": [5, 6], "arg1": "d\u00edvida", "arg1_index": [8, 8], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "o valor imputado do real pr\u00f3pria fazenda", "arg0_index": [10, 16], "pred": "\u00e9 cerca de", "pred_index": [17, 19], "arg1": "$ 3 bilh\u00f5es", "arg1_index": [21, 23], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Cerca de US $ 70 bilh\u00f5es s\u00e3o estimados para ser amarrado no curto - prazo do mercado monet\u00e1rio , que atua tanto como um hedge contra a infla\u00e7\u00e3o para os consumidores e um acelerador da infla\u00e7\u00e3o e d\u00e9ficits para o governo .": [{"arg0": "Cerca de US $ 70 bilh\u00f5es", "arg0_index": [0, 5], "pred": "s\u00e3o estimados", "pred_index": [6, 7], "arg1": "", "arg1_index": [], "arg2": "para ser amarrado", "arg2_index": [8, 10], "arg3": "no curto - prazo do mercado monet\u00e1rio", "arg3_index": [11, 17], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Cerca de US $ 70 bilh\u00f5es", "arg0_index": [0, 5], "pred": "atua", "pred_index": [20, 20], "arg1": "tanto como um hedge contra a infla\u00e7\u00e3o para os consumidores e um acelerador da infla\u00e7\u00e3o e d\u00e9ficits para o governo", "arg1_index": [21, 40], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Burnham morreu de insufici\u00eancia card\u00edaca na idade de 86 , em 01 de setembro de 1947 em sua casa em Santa Barbara , Calif\u00f3rnia .": [{"arg0": "Burnham", "arg0_index": [0, 0], "pred": "morreu de", "pred_index": [1, 2], "arg1": "insufici\u00eancia card\u00edaca", "arg1_index": [3, 4], "arg2": "na idade de 86", "arg2_index": [5, 8], "arg3": "", "arg3_index": [], "loc": "em sua casa em Santa Barbara , Calif\u00f3rnia", "loc_index": [16, 23], "temp": "em 01 de setembro de 1947", "temp_index": [10, 15], "context": "", "context_index": []}], "No estudo Van Howe 's , todos os casos de estenose meatal estavam entre meninos circuncidados .": [{"arg0": "todos os casos de estenose meatal", "arg0_index": [6, 11], "pred": "estavam", "pred_index": [12, 12], "arg1": "entre meninos circuncidados", "arg1_index": [13, 15], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Em 13 de maio de 2010 , Yost foi nomeado gerente do Kansas City Royals , substituindo Trey Hillman .": [{"arg0": "Yost", "arg0_index": [7, 7], "pred": "foi nomeado", "pred_index": [8, 9], "arg1": "gerente do Kansas City Royals", "arg1_index": [10, 14], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "Em 13 de maio de 2010", "temp_index": [0, 5], "context": "", "context_index": []}, {"arg0": "Yost", "arg0_index": [7, 7], "pred": "substituindo", "pred_index": [16, 16], "arg1": "Trey Hillman", "arg1_index": [17, 18], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "Em 13 de maio de 2010", "temp_index": [0, 5], "context": "", "context_index": []}], "defesas pr\u00f3prias da Jaguar contra uma oferta hostil est\u00e3o enfraquecidos , os analistas acrescentar , porque menos de 3% de suas a\u00e7\u00f5es s\u00e3o de propriedade de empregados e administradores .": [{"arg0": "defesas pr\u00f3prias da Jaguar contra uma oferta hostil", "arg0_index": [0, 7], "pred": "est\u00e3o enfraquecidos", "pred_index": [8, 9], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "analistas acrescentar", "context_index": [12, 13]}, {"arg0": "analistas", "arg0_index": [12, 12], "pred": "acrescentar", "pred_index": [13, 13], "arg1": "defesas pr\u00f3prias da Jaguar contra uma oferta hostil est\u00e3o enfraquecidos", "arg1_index": [0, 9], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "menos de 3% de suas a\u00e7\u00f5es", "arg0_index": [16, 21], "pred": "s\u00e3o de propriedade de", "pred_index": [22, 25], "arg1": "empregados e administradores", "arg1_index": [26, 28], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "O res\u00edduo pode ser reprocessada para mais gotejamento e filtrada atrav\u00e9s de uma gaze alinhado peneira como um ingrediente para um estoque fina carne .": [{"arg0": "O res\u00edduo", "arg0_index": [0, 1], "pred": "pode ser reprocessada", "pred_index": [2, 4], "arg1": "", "arg1_index": [], "arg2": "para mais gotejamento", "arg2_index": [5, 7], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "O res\u00edduo", "arg0_index": [0, 1], "pred": "filtrada atrav\u00e9s", "pred_index": [9, 10], "arg1": "uma gaze alinhado peneira", "arg1_index": [12, 15], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Chevalier cumpriu sua promessa no ano seguinte ao erguer um santu\u00e1rio dedicado \u00e0 honra de Maria sob o t\u00edtulo de `` Nossa Senhora do Sagrado Cora\u00e7\u00e3o '' .": [{"arg0": "Chevalier", "arg0_index": [0, 0], "pred": "cumpriu", "pred_index": [1, 1], "arg1": "sua promessa", "arg1_index": [2, 3], "arg2": "ao erguer um santu\u00e1rio dedicado \u00e0 honra de Maria sob o t\u00edtulo de `` Nossa Senhora do Sagrado Cora\u00e7\u00e3o ''", "arg2_index": [7, 26], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "no ano seguinte", "temp_index": [4, 6], "context": "", "context_index": []}, {"arg0": "um santu\u00e1rio", "arg0_index": [9, 10], "pred": "dedicado \u00e0", "pred_index": [11, 12], "arg1": "\u00e0 honra de Maria", "arg1_index": [12, 15], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Desde ent\u00e3o , os membros restantes foram desesperados para os Estados Unidos para se reunir este grupo terr\u00edvel .": [{"arg0": "os membros restantes", "arg0_index": [3, 5], "pred": "foram", "pred_index": [6, 6], "arg1": "desesperados", "arg1_index": [7, 7], "arg2": "para os Estados Unidos", "arg2_index": [8, 11], "arg3": "para se reunir este grupo terr\u00edvel", "arg3_index": [12, 17], "loc": "", "loc_index": [], "temp": "Desde ent\u00e3o", "temp_index": [0, 1], "context": "", "context_index": []}, {"arg0": "os Estados Unidos", "arg0_index": [9, 11], "pred": "reunir", "pred_index": [14, 14], "arg1": "este grupo terr\u00edvel", "arg1_index": [15, 17], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Nos EUA , mais de metade do software PC vendido ou \u00e9 para planilhas ou para an\u00e1lise de banco de dados , de acordo com a Lotus .": [{"arg0": "mais de metade do software PC vendido", "arg0_index": [3, 9], "pred": "\u00e9", "pred_index": [11, 11], "arg1": "ou \u00e9 para planilhas ou para an\u00e1lise", "arg1_index": [10, 16], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "Nos EUA", "loc_index": [0, 1], "temp": "", "temp_index": [], "context": "acordo com a Lotus", "context_index": [23, 26]}], "De acordo com o United States Census Bureau , a cidade tem uma \u00e1rea total de , todo ele pousar .": [{"arg0": "a cidade", "arg0_index": [9, 10], "pred": "tem", "pred_index": [11, 11], "arg1": "uma \u00e1rea total de , todo ele pousar", "arg1_index": [12, 19], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "De acordo com o United States Census Bureau", "context_index": [0, 7]}], "Em 1987 , Rodan se tornou presidente da Sociedade Americana de Pesquisa Mineral e \u00d3ssea .": [{"arg0": "Rodan", "arg0_index": [3, 3], "pred": "tornou", "pred_index": [5, 5], "arg1": "presidente da Sociedade Americana de Pesquisa Mineral e \u00d3ssea", "arg1_index": [6, 14], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "Em 1987", "temp_index": [0, 1], "context": "", "context_index": []}], "Procter & Gamble Co. introduziu recentemente vers\u00f5es recarreg\u00e1veis de quatro produtos , incluindo Tide e Mr. Clean , no Canad\u00e1 , mas n\u00e3o tem planos de traz\u00ea-los para os EUA .": [{"arg0": "Procter & Gamble Co.", "arg0_index": [0, 3], "pred": "introduziu", "pred_index": [4, 4], "arg1": "vers\u00f5es recarreg\u00e1veis de quatro produtos , incluindo Tide e Mr. Clean", "arg1_index": [6, 16], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "no Canad\u00e1", "loc_index": [18, 19], "temp": "recentemente", "temp_index": [5, 5], "context": "", "context_index": []}, {"arg0": "vers\u00f5es recarreg\u00e1veis de quatro produtos", "arg0_index": [6, 10], "pred": "incluindo", "pred_index": [12, 12], "arg1": "Tide e Mr. Clean", "arg1_index": [13, 16], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Procter & Gamble Co.", "arg0_index": [0, 3], "pred": "n\u00e3o tem planos de traz\u00ea-los", "pred_index": [22, 26], "arg1": "", "arg1_index": [], "arg2": "para os EUA", "arg2_index": [27, 29], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "investimento parental \u00e9 qualquer disp\u00eandio de recursos para beneficiar uma prole .": [{"arg0": "investimento parental", "arg0_index": [0, 1], "pred": "\u00e9", "pred_index": [2, 2], "arg1": "qualquer disp\u00eandio de recursos para beneficiar uma prole", "arg1_index": [3, 10], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "qualquer disp\u00eandio de recursos", "arg0_index": [3, 6], "pred": "beneficiar", "pred_index": [8, 8], "arg1": "uma prole", "arg1_index": [9, 10], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "No in\u00edcio deste ano , Blackstone Group , um banco de investimentos de Nova York , tinha nenhuma venda problemas fora uma hipoteca especial de $ 570 milh\u00f5es - valores mobili\u00e1rios confiar nele criado para investidores japoneses .": [{"arg0": "Blackstone Group", "arg0_index": [5, 6], "pred": "tinha nenhuma venda problemas fora", "pred_index": [16, 20], "arg1": "uma hipoteca especial de $ 570 milh\u00f5es - valores mobili\u00e1rios confiar nele criado para investidores japoneses", "arg1_index": [21, 36], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "No in\u00edcio deste ano", "temp_index": [0, 3], "context": "", "context_index": []}, {"arg0": "nele", "arg0_index": [32, 32], "pred": "criado", "pred_index": [33, 33], "arg1": "uma hipoteca especial de $ 570 milh\u00f5es - valores mobili\u00e1rios confiar", "arg1_index": [21, 31], "arg2": "para investidores japoneses", "arg2_index": [34, 36], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "A comunidade \u00e9 servida pela United States Postal Service Hinsdale Correios .": [{"arg0": "A comunidade", "arg0_index": [0, 1], "pred": "\u00e9 servida pela", "pred_index": [2, 4], "arg1": "pela United States Postal Service Hinsdale Correios", "arg1_index": [4, 10], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Total de `Fresh Food Story 'constru\u00eddo no final do Norte Shopping .": [{"arg0": "Total de `Fresh Food Story", "arg0_index": [0, 4], "pred": "'constru\u00eddo", "pred_index": [5, 5], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "no final do Norte Shopping", "loc_index": [6, 10], "temp": "", "temp_index": [], "context": "", "context_index": []}], "O segundo foi intitulado `` considera os seus caminhos '' e tamb\u00e9m estrelou Barrie como o chumbo chamada Jane Waterleigh .": [{"arg0": "O segundo", "arg0_index": [0, 1], "pred": "foi intitulado", "pred_index": [2, 3], "arg1": "`` considera os seus caminhos ''", "arg1_index": [4, 9], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "O segundo", "arg0_index": [0, 1], "pred": "estrelou", "pred_index": [12, 12], "arg1": "Barrie", "arg1_index": [13, 13], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "o chumbo", "arg0_index": [15, 16], "pred": "chamada", "pred_index": [17, 17], "arg1": "Jane Waterleigh", "arg1_index": [18, 19], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Esta disposi\u00e7\u00e3o conheceu cedo e forte resist\u00eancia dos banqueiros de investimento preocupado com interrup\u00e7\u00f5es em carteiras de seus clientes .": [{"arg0": "Esta disposi\u00e7\u00e3o", "arg0_index": [0, 1], "pred": "conheceu cedo", "pred_index": [2, 3], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "forte resist\u00eancia dos banqueiros de investimento", "arg0_index": [5, 10], "pred": "preocupado com", "pred_index": [11, 12], "arg1": "interrup\u00e7\u00f5es", "arg1_index": [13, 13], "arg2": "em carteiras de seus clientes", "arg2_index": [14, 18], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Isto teve implica\u00e7\u00f5es consider\u00e1veis para a l\u00edngua galesa como era a l\u00edngua principal das igrejas n\u00e3o-conformistas no Pa\u00eds de Gales .": [{"arg0": "Isto", "arg0_index": [0, 0], "pred": "teve", "pred_index": [1, 1], "arg1": "implica\u00e7\u00f5es consider\u00e1veis", "arg1_index": [2, 3], "arg2": "para a l\u00edngua galesa", "arg2_index": [4, 7], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "", "arg0_index": [], "pred": "era", "pred_index": [9, 9], "arg1": "a l\u00edngua principal das igrejas n\u00e3o-conformistas no Pa\u00eds de Gales", "arg1_index": [10, 19], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "De acordo com uma pessoa familiarizada com a companhia a\u00e9rea , o buy - grupo fora - liderado por pilotos uni\u00e3o de Estados e Presidente UAL Stephen Wolf - come\u00e7ou faturamento UAL para honor\u00e1rios e despesas que ela deve ao banqueiros de investimento , escrit\u00f3rios de advocacia e bancos .": [{"arg0": "o buy - grupo fora -", "arg0_index": [11, 16], "pred": "liderado por", "pred_index": [17, 18], "arg1": "pilotos uni\u00e3o de Estados e Presidente UAL Stephen Wolf", "arg1_index": [19, 27], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "o buy - grupo fora - liderado por pilotos uni\u00e3o de Estados e Presidente UAL Stephen Wolf -", "arg0_index": [11, 28], "pred": "come\u00e7ou faturamento", "pred_index": [29, 30], "arg1": "UAL", "arg1_index": [31, 31], "arg2": "para honor\u00e1rios e despesas que ela deve ao banqueiros de investimento , escrit\u00f3rios de advocacia e bancos", "arg2_index": [32, 48], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "acordo com uma pessoa familiarizada com a companhia a\u00e9rea", "context_index": [1, 9]}, {"arg0": "ela", "arg0_index": [37, 37], "pred": "deve", "pred_index": [38, 38], "arg1": "honor\u00e1rios e despesas", "arg1_index": [33, 35], "arg2": "banqueiros de investimento , escrit\u00f3rios de advocacia e bancos", "arg2_index": [40, 48], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Shea nasceu em 5 de setembro de 1900 em San Francisco , Calif\u00f3rnia .": [{"arg0": "Shea", "arg0_index": [0, 0], "pred": "nasceu", "pred_index": [1, 1], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "em San Francisco , Calif\u00f3rnia", "loc_index": [8, 12], "temp": "em 5 de setembro de 1900", "temp_index": [2, 7], "context": "", "context_index": []}], "Como os pacientes exigem menos aten\u00e7\u00e3o dos enfermeiros e outros funcion\u00e1rios , cobran\u00e7a s\u00e3o mais baixos - cerca de US $ 100 a menos por dia do que um quarto normal no hospital Vermont .": [{"arg0": "pacientes", "arg0_index": [2, 2], "pred": "exigem", "pred_index": [3, 3], "arg1": "menos aten\u00e7\u00e3o dos enfermeiros e outros funcion\u00e1rios", "arg1_index": [4, 10], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "cobran\u00e7a", "arg0_index": [12, 12], "pred": "s\u00e3o", "pred_index": [13, 13], "arg1": "mais baixos", "arg1_index": [14, 15], "arg2": "cerca de US $ 100 a menos por dia", "arg2_index": [17, 25], "arg3": "do que um quarto normal", "arg3_index": [26, 30], "loc": "no hospital Vermont", "loc_index": [31, 33], "temp": "", "temp_index": [], "context": "", "context_index": []}], "cooperativas m\u00e9dicas , entre os mais bem sucedidos no U.R.S.S. , est\u00e3o proibidos de fornecer geral - servi\u00e7os praticante ( a sua principal fonte de renda ) , a realiza\u00e7\u00e3o de cirurgia , e tratar pacientes com c\u00e2ncer , toxicodependentes e mulheres gr\u00e1vidas .": [{"arg0": "cooperativas m\u00e9dicas", "arg0_index": [0, 1], "pred": "", "pred_index": [-1, -1], "arg1": "entre os mais bem sucedidos no U.R.S.S.", "arg1_index": [3, 9], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "cooperativas m\u00e9dicas", "arg0_index": [0, 1], "pred": "fornecer", "pred_index": [14, 14], "arg1": "geral - servi\u00e7os praticante", "arg1_index": [15, 18], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "cooperativas m\u00e9dicas", "arg0_index": [0, 1], "pred": "a realiza\u00e7\u00e3o", "pred_index": [28, 29], "arg1": "cirurgia", "arg1_index": [31, 31], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "cooperativas m\u00e9dicas", "arg0_index": [0, 1], "pred": "tratar", "pred_index": [34, 34], "arg1": "pacientes com c\u00e2ncer , toxicodependentes e mulheres gr\u00e1vidas", "arg1_index": [35, 42], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "cooperativas m\u00e9dicas", "arg0_index": [0, 1], "pred": "est\u00e3o proibidos de", "pred_index": [11, 13], "arg1": "de fornecer geral - servi\u00e7os praticante ( a sua principal fonte de renda ) , a realiza\u00e7\u00e3o de cirurgia , e tratar pacientes com c\u00e2ncer , toxicodependentes e mulheres gr\u00e1vidas", "arg1_index": [13, 42], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "geral - servi\u00e7os praticante", "arg0_index": [15, 18], "pred": "", "pred_index": [-1, -1], "arg1": "a sua principal fonte de renda", "arg1_index": [20, 25], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Finalmente , Mitsubishi Estate n\u00e3o tem planos para interferir com a gest\u00e3o Rockefeller 's al\u00e9m de tomar um lugar no conselho .": [{"arg0": "Mitsubishi Estate", "arg0_index": [2, 3], "pred": "n\u00e3o tem planos para interferir com", "pred_index": [4, 9], "arg1": "gest\u00e3o Rockefeller 's", "arg1_index": [11, 13], "arg2": "al\u00e9m de tomar um lugar no conselho", "arg2_index": [14, 20], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "No in\u00edcio da manh\u00e3 o Sr. Sider , um advogado imobili\u00e1rio , debru\u00e7a sobre testamentos .": [{"arg0": "Sr. Sider", "arg0_index": [5, 6], "pred": "debru\u00e7a sobre", "pred_index": [12, 13], "arg1": "debru\u00e7a sobre testamentos", "arg1_index": [12, 14], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "debru\u00e7a sobre testamentos", "temp_index": [12, 14], "context": "", "context_index": []}, {"arg0": "Sr. Sider", "arg0_index": [5, 6], "pred": "", "pred_index": [-1, -1], "arg1": "um advogado imobili\u00e1rio", "arg1_index": [8, 10], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Este motor foi equipado com um carburador controlado eletronicamente .": [{"arg0": "Este motor", "arg0_index": [0, 1], "pred": "foi equipado com", "pred_index": [2, 4], "arg1": "um carburador controlado eletronicamente", "arg1_index": [5, 8], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Kostabi 's outros lan\u00e7amentos incluem : `` Can\u00e7\u00f5es para Sumera '' , `` New Alliance '' e `` o espectro do Modernismo '' .": [{"arg0": "Kostabi 's outros lan\u00e7amentos", "arg0_index": [0, 3], "pred": "incluem", "pred_index": [4, 4], "arg1": "`` Can\u00e7\u00f5es para Sumera '' , `` New Alliance '' e `` o espectro do Modernismo ''", "arg1_index": [6, 22], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "USG Corp. concordou em vender sua sede construindo aqui para Fabricantes Life Insurance Co. de Toronto , e arrendar\u00e1 a 19 - instala\u00e7\u00e3o de hist\u00f3ria at\u00e9 que ele se move para uma nova sede em 1992 .": [{"arg0": "USG Corp.", "arg0_index": [0, 1], "pred": "concordou em vender", "pred_index": [2, 4], "arg1": "sua sede construindo aqui", "arg1_index": [5, 8], "arg2": "para Fabricantes Life Insurance Co. de Toronto", "arg2_index": [9, 15], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "USG Corp.", "arg0_index": [0, 1], "pred": "arrendar\u00e1", "pred_index": [18, 18], "arg1": "19 - instala\u00e7\u00e3o de hist\u00f3ria", "arg1_index": [20, 24], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "at\u00e9 que ele se move para uma nova sede em 1992", "temp_index": [25, 35], "context": "", "context_index": []}, {"arg0": "sua", "arg0_index": [5, 5], "pred": "move para", "pred_index": [29, 30], "arg1": "uma nova sede", "arg1_index": [31, 33], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "em 1992", "temp_index": [34, 35], "context": "", "context_index": []}], "No entanto , ap\u00f3s campanhas de press\u00e3o de v\u00e1rios grupos de direitos humanos , a BAE Systems declarou recentemente que deixou de produzir minas terrestres ou bombas de fragmenta\u00e7\u00e3o .": [{"arg0": "BAE Systems", "arg0_index": [15, 16], "pred": "declarou", "pred_index": [17, 17], "arg1": "que deixou de produzir minas terrestres ou bombas de fragmenta\u00e7\u00e3o", "arg1_index": [19, 28], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "ap\u00f3s campanhas de press\u00e3o de v\u00e1rios grupos de direitos humanos", "temp_index": [3, 12], "context": "", "context_index": []}, {"arg0": "", "arg0_index": [], "pred": "deixou de produzir", "pred_index": [20, 22], "arg1": "minas terrestres ou bombas de fragmenta\u00e7\u00e3o", "arg1_index": [23, 28], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Um m\u00eas atr\u00e1s , quando Beatrice primeiro apresentou \u00e0 d\u00edvida venda , a empresa havia planejado para oferecer US $ 200 milh\u00f5es de seus seniores notas de reset subordinadas com um rendimento de 12 3 \\ / 4% .": [{"arg0": "a empresa", "arg0_index": [12, 13], "pred": "havia planejado para oferecer", "pred_index": [14, 17], "arg1": "$ 200 milh\u00f5es de seus seniores notas de reset subordinadas", "arg1_index": [19, 28], "arg2": "com um rendimento de 12 3 \\ / 4%", "arg2_index": [29, 37], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "Um m\u00eas atr\u00e1s , quando Beatrice primeiro apresentou \u00e0 d\u00edvida venda", "temp_index": [0, 10], "context": "", "context_index": []}], "No mercado corporativo , uma oferta de d\u00edvida esperado hoje pela International Business Machines Corp. gerado consider\u00e1vel aten\u00e7\u00e3o .": [{"arg0": "uma oferta de d\u00edvida esperado hoje pela International Business Machines Corp.", "arg0_index": [4, 14], "pred": "gerado", "pred_index": [15, 15], "arg1": "consider\u00e1vel aten\u00e7\u00e3o", "arg1_index": [16, 17], "arg2": "No mercado corporativo", "arg2_index": [0, 2], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "De fato , os ajustadores de seguro j\u00e1 tinha aparafusado fora do tribunal .": [{"arg0": "os ajustadores de seguro", "arg0_index": [3, 6], "pred": "j\u00e1 tinha aparafusado fora", "pred_index": [7, 10], "arg1": "do tribunal", "arg1_index": [11, 12], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Ele disse CS First Boston `` tem sido consistentemente um dos mais empresas agressivos na banca comercial '' e que `` uma parte muito significativa '' da empresa 's lucro nos \u00faltimos anos tem vindo de merchant banking - neg\u00f3cios relacionados .": [{"arg0": "Ele", "arg0_index": [0, 0], "pred": "disse", "pred_index": [1, 1], "arg1": "CS First Boston `` tem sido consistentemente um dos mais empresas agressivos na banca comercial ''", "arg1_index": [2, 17], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Ele", "arg0_index": [0, 0], "pred": "disse", "pred_index": [1, 1], "arg1": "que `` uma parte muito significativa '' da empresa 's lucro nos \u00faltimos anos tem vindo de merchant banking - neg\u00f3cios relacionados", "arg1_index": [19, 40], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "CS First Boston", "arg0_index": [2, 4], "pred": "tem sido consistentemente", "pred_index": [6, 8], "arg1": "um dos mais empresas agressivos na banca comercial", "arg1_index": [9, 16], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "Ele disse", "context_index": [0, 1]}, {"arg0": "`` uma parte muito significativa '' da empresa 's lucro nos \u00faltimos anos", "arg0_index": [20, 32], "pred": "tem vindo de", "pred_index": [33, 35], "arg1": "merchant banking - neg\u00f3cios relacionados", "arg1_index": [36, 40], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "Ele disse", "context_index": [0, 1]}], "O Hamburgo Concatedral com chapterhouse e quadras residenciais capitulares formado um `` Imunidade Catedral Distrito '' do Pr\u00edncipe-Arcebispo de Bremen tamb\u00e9m .": [{"arg0": "O Hamburgo Concatedral com chapterhouse e quadras residenciais capitulares", "arg0_index": [0, 8], "pred": "formado", "pred_index": [9, 9], "arg1": "um `` Imunidade Catedral Distrito '' do Pr\u00edncipe-Arcebispo de Bremen", "arg1_index": [10, 19], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Para meu conhecimento , h\u00e1 entidades governamentais , incluindo a EPA , est\u00e3o buscando UV - medi\u00e7\u00f5es B .": [{"arg0": "h\u00e1 entidades governamentais , incluindo a EPA", "arg0_index": [4, 10], "pred": "est\u00e3o buscando", "pred_index": [12, 13], "arg1": "UV - medi\u00e7\u00f5es B", "arg1_index": [14, 17], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "Para meu conhecimento", "context_index": [0, 2]}, {"arg0": "entidades governamentais", "arg0_index": [5, 6], "pred": "incluindo", "pred_index": [8, 8], "arg1": "a EPA", "arg1_index": [9, 10], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Cada um dos Matoran trouxeram sua pedra Toa e se conheceram no Grande Templo .": [{"arg0": "Cada um dos Matoran", "arg0_index": [0, 3], "pred": "trouxeram", "pred_index": [4, 4], "arg1": "sua pedra Toa", "arg1_index": [5, 7], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Cada um dos Matoran", "arg0_index": [0, 3], "pred": "conheceram", "pred_index": [10, 10], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "no Grande Templo", "loc_index": [11, 13], "temp": "", "temp_index": [], "context": "", "context_index": []}], "RedHat engenheiros identificados problemas com ProPolice entanto , e em 2005 reimplementou a prote\u00e7\u00e3o contra quebra de pilha para inclus\u00e3o no GCC 4.1 .": [{"arg0": "RedHat engenheiros", "arg0_index": [0, 1], "pred": "identificados", "pred_index": [2, 2], "arg1": "problemas", "arg1_index": [3, 3], "arg2": "com ProPolice", "arg2_index": [4, 5], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "RedHat engenheiros", "arg0_index": [0, 1], "pred": "reimplementou", "pred_index": [11, 11], "arg1": "prote\u00e7\u00e3o contra quebra de pilha para inclus\u00e3o no GCC 4.1", "arg1_index": [13, 22], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "em 2005", "temp_index": [9, 10], "context": "", "context_index": []}], "edif\u00edcios de apartamentos , lojas , cl\u00ednicas m\u00e9dicas , cinemas etc. foram constru\u00eddos em estreita proximidade com a planta MAZ , fornecendo trabalhadores da f\u00e1brica com as necessidades locais .": [{"arg0": "edif\u00edcios de apartamentos , lojas , cl\u00ednicas m\u00e9dicas , cinemas etc.", "arg0_index": [0, 10], "pred": "foram constru\u00eddos", "pred_index": [11, 12], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "em estreita proximidade com a planta MAZ", "loc_index": [13, 19], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "edif\u00edcios de apartamentos , lojas , cl\u00ednicas m\u00e9dicas , cinemas etc.", "arg0_index": [0, 10], "pred": "fornecendo", "pred_index": [21, 21], "arg1": "trabalhadores da f\u00e1brica", "arg1_index": [22, 24], "arg2": "com as necessidades locais", "arg2_index": [25, 28], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "O efeito \u00e9 que os processos que poderiam ter sido barrado porque eles foram arquivados tarde demais poderia prosseguir por causa do um - extens\u00e3o ano .": [{"arg0": "O efeito", "arg0_index": [0, 1], "pred": "\u00e9", "pred_index": [2, 2], "arg1": "que os processos que poderiam ter sido barrado porque eles foram arquivados tarde demais poderia prosseguir por causa do um - extens\u00e3o ano", "arg1_index": [3, 25], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "os processos", "arg0_index": [4, 5], "pred": "ter sido barrado", "pred_index": [8, 10], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "os processos", "arg0_index": [4, 5], "pred": "foram arquivados", "pred_index": [13, 14], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "tarde demais", "temp_index": [15, 16], "context": "", "context_index": []}, {"arg0": "os processos", "arg0_index": [4, 5], "pred": "poderia prosseguir", "pred_index": [17, 18], "arg1": "", "arg1_index": [], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "A cidade foi anteriormente servido por uma esta\u00e7\u00e3o na Somerset e Dorset Railway mas este fechou em 1966 , e por uma segunda esta\u00e7\u00e3o no Bristol e North Somerset Railway em Welton no vale .": [{"arg0": "A cidade", "arg0_index": [0, 1], "pred": "foi anteriormente servido por", "pred_index": [2, 5], "arg1": "uma esta\u00e7\u00e3o na Somerset e Dorset Railway", "arg1_index": [6, 12], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "este", "arg0_index": [14, 14], "pred": "fechou em", "pred_index": [15, 16], "arg1": "1966", "arg1_index": [17, 17], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "O canal foi represado fora do rio durante a maior parte do per\u00edodo de constru\u00e7\u00e3o .": [{"arg0": "O canal", "arg0_index": [0, 1], "pred": "foi represado fora", "pred_index": [2, 4], "arg1": "", "arg1_index": [], "arg2": "do rio", "arg2_index": [5, 6], "arg3": "a maior parte do per\u00edodo de constru\u00e7\u00e3o", "arg3_index": [8, 14], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Anos atr\u00e1s , ele colaborou com os novos gurus da m\u00fasica Peter Serkin e Fred Sherry no grupo de c\u00e2mara muito contracultural Tashi , que ganhou audi\u00eancias superiores a pontua\u00e7\u00e3o contempor\u00e2neos temidas como `` Quarteto 's Messiaen para o fim dos tempos . ''": [{"arg0": "ele", "arg0_index": [3, 3], "pred": "colaborou com", "pred_index": [4, 5], "arg1": "os novos gurus da m\u00fasica Peter Serkin e Fred Sherry", "arg1_index": [6, 15], "arg2": "no grupo de c\u00e2mara muito contracultural Tashi", "arg2_index": [16, 22], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "Anos atr\u00e1s", "temp_index": [0, 1], "context": "", "context_index": []}, {"arg0": "ele colaborou com os novos gurus da m\u00fasica Peter Serkin e Fred Sherry no grupo de c\u00e2mara muito contracultural Tashi", "arg0_index": [3, 22], "pred": "ganhou", "pred_index": [25, 25], "arg1": "audi\u00eancias", "arg1_index": [26, 26], "arg2": "superiores a pontua\u00e7\u00e3o contempor\u00e2neos temidas como `` Quarteto 's Messiaen para o fim dos tempos . ''", "arg2_index": [27, 43], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Shaw Industries , que concordou em adquirir as opera\u00e7\u00f5es do tapete Armstrong World Industries por um pre\u00e7o n\u00e3o revelado , subiu 2 1\\/4 para 26 janeiro\\/8 .": [{"arg0": "Shaw Industries", "arg0_index": [0, 1], "pred": "concordou em adquirir", "pred_index": [4, 6], "arg1": "opera\u00e7\u00f5es do tapete Armstrong World Industries", "arg1_index": [8, 13], "arg2": "por um pre\u00e7o n\u00e3o revelado", "arg2_index": [14, 18], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Shaw Industries", "arg0_index": [0, 1], "pred": "subiu", "pred_index": [20, 20], "arg1": "2 1\\/4", "arg1_index": [21, 22], "arg2": "para 26 janeiro\\/8", "arg2_index": [23, 25], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "presidente , h\u00e1 seis anos , o juiz O'Kicki foi votado da Confer\u00eancia Pensilv\u00e2nia do Estado de julgamento ju\u00edzes pelo Estado \u00e9 de 400 ju\u00edzes .": [{"arg0": "juiz O'Kicki", "arg0_index": [7, 8], "pred": "foi votado", "pred_index": [9, 10], "arg1": "da Confer\u00eancia Pensilv\u00e2nia do Estado de julgamento ju\u00edzes", "arg1_index": [11, 18], "arg2": "pelo Estado \u00e9 de 400 ju\u00edzes", "arg2_index": [19, 24], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "h\u00e1 seis anos", "temp_index": [2, 4], "context": "", "context_index": []}], "H\u00e1 luz no fim do t\u00fanel para munic\u00edpios , '' disse ele , acrescentando que ele espera que os pre\u00e7os para `` polegada up '' no curto prazo .": [{"arg0": "ele", "arg0_index": [11, 11], "pred": "disse", "pred_index": [10, 10], "arg1": "H\u00e1 luz no fim do t\u00fanel para munic\u00edpios , ''", "arg1_index": [0, 9], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "ele", "arg0_index": [11, 11], "pred": "acrescentando", "pred_index": [13, 13], "arg1": "que ele espera que os pre\u00e7os para `` polegada up '' no curto prazo", "arg1_index": [14, 27], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "H\u00e1", "arg0_index": [0, 0], "pred": "", "pred_index": [], "arg1": "luz", "arg1_index": [1, 1], "arg2": "para munic\u00edpios", "arg2_index": [6, 7], "arg3": "", "arg3_index": [], "loc": "no fim do t\u00fanel", "loc_index": [2, 5], "temp": "", "temp_index": [], "context": "disse ele", "context_index": [10, 11]}, {"arg0": "ele", "arg0_index": [15, 15], "pred": "espera", "pred_index": [16, 16], "arg1": "pre\u00e7os", "arg1_index": [19, 19], "arg2": "para `` polegada up '' no curto prazo", "arg2_index": [20, 27], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "Banco Industrial do Jap\u00e3o , que afirma ser o maior comprador japon\u00eas de t\u00edtulos hipotec\u00e1rios norte-americanos , diz que vai mais que dobrar suas compras este ano , a uma quantidade um coloca oficiais a v\u00e1rios bilh\u00f5es de d\u00f3lares .": [{"arg0": "Banco Industrial do Jap\u00e3o", "arg0_index": [0, 3], "pred": "afirma ser", "pred_index": [6, 7], "arg1": "o maior comprador japon\u00eas de t\u00edtulos hipotec\u00e1rios norte-americanos", "arg1_index": [8, 15], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "Banco Industrial do Jap\u00e3o", "arg0_index": [0, 3], "pred": "diz", "pred_index": [17, 17], "arg1": "que vai mais que dobrar suas compras este ano , a uma quantidade um coloca oficiais a v\u00e1rios bilh\u00f5es de d\u00f3lares", "arg1_index": [18, 38], "arg2": "", "arg2_index": [], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}, {"arg0": "este", "arg0_index": [25, 25], "pred": "vai mais que dobrar", "pred_index": [19, 22], "arg1": "suas compras", "arg1_index": [23, 24], "arg2": "a uma quantidade um coloca oficiais a v\u00e1rios bilh\u00f5es de d\u00f3lares", "arg2_index": [28, 38], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "este ano", "temp_index": [25, 26], "context": "", "context_index": []}, {"arg0": "oficiais", "arg0_index": [33, 33], "pred": "coloca", "pred_index": [32, 32], "arg1": "uma quantidade", "arg1_index": [29, 30], "arg2": "a v\u00e1rios bilh\u00f5es de d\u00f3lares", "arg2_index": [34, 38], "arg3": "", "arg3_index": [], "loc": "", "loc_index": [], "temp": "", "temp_index": [], "context": "", "context_index": []}], "O primeiro-ministro Lee Kuan Yew , l\u00edder s e um dos \u00c1sia Singapore principais estadistas s por 30 anos , anunciou recentemente a sua inten\u00e7\u00e3o de se aposentar no pr\u00f3ximo ano - embora n\u00e3o necessariamente para acabar com sua influ\u00eancia .": [{"arg0": "Lee Kuan Yew", "arg0_index": [2, 4], "pred": "