Commit 7884a7b9

Ted Sanders <95656834+ted-at-openai@users.noreply.github.com>
2022-07-26 21:35:13
Ted/move examples to openai cookbook (#112) tag: v0.22.0
* removes examples (which can now be found in the OpenAI Cookbook repo) * Update numpy requirements due to vuln in 1.21.6 * adds api_type to ErrorObject * formats by Black
1 parent a7e3edf
examples/azure/embeddings.ipynb
@@ -4,174 +4,13 @@
    "cell_type": "markdown",
    "metadata": {},
    "source": [
-    "# Azure embeddings example\n",
-    "In this example we'll try to go over all operations for embeddings that can be done using the Azure endpoints. \\\n",
-    "This example focuses on finetuning but touches on the majority of operations that are also available using the API. This example is meant to be a quick way of showing simple operations and is not meant as a tutorial."
-   ]
-  },
-  {
-   "cell_type": "code",
-   "execution_count": null,
-   "metadata": {},
-   "outputs": [],
-   "source": [
-    "import openai\n",
-    "from openai import cli"
-   ]
-  },
-  {
-   "cell_type": "markdown",
-   "metadata": {},
-   "source": [
-    "## Setup\n",
-    "In the following section the endpoint and key need to be set up of the next sections to work. \\\n",
-    "Please go to https://portal.azure.com, find your resource and then under \"Resource Management\" -> \"Keys and Endpoints\" look for the \"Endpoint\" value and one of the Keys. They will act as api_base and api_key in the code below."
-   ]
-  },
-  {
-   "cell_type": "code",
-   "execution_count": null,
-   "metadata": {},
-   "outputs": [],
-   "source": [
-    "openai.api_key = ''  # Please add your api key here\n",
-    "openai.api_base = '' # Please add your endpoint here\n",
-    "\n",
-    "openai.api_type = 'azure'\n",
-    "openai.api_version = '2022-03-01-preview' # this may change in the future"
-   ]
-  },
-  {
-   "cell_type": "markdown",
-   "metadata": {},
-   "source": [
-    "## Deployments\n",
-    "In this section we are going to create a deployment using the finetune model that we just adapted and then used the deployment to create a simple completion operation."
-   ]
-  },
-  {
-   "cell_type": "markdown",
-   "metadata": {},
-   "source": [
-    "### Deployments: Create Manually\n",
-    "Let's create a deployment using the text-similarity-curie-001 engine. You can create a new deployment by going to your Resource in your portal under \"Resource Management\" -> \"Deployments\"."
-   ]
-  },
-  {
-   "cell_type": "markdown",
-   "metadata": {},
-   "source": [
-    "### (Optional) Deployments: Create Programatically\n",
-    "We can also create a deployment using code:"
-   ]
-  },
-  {
-   "cell_type": "code",
-   "execution_count": null,
-   "metadata": {},
-   "outputs": [],
-   "source": [
-    "model = \"text-similarity-curie-001\"\n",
-    "\n",
-    "# Now let's create the deployment\n",
-    "print(f'Creating a new deployment with model: {model}')\n",
-    "result = openai.Deployment.create(model=model, scale_settings={\"scale_type\":\"manual\", \"capacity\": 1})\n",
-    "deployment_id = result[\"id\"]"
-   ]
-  },
-  {
-   "cell_type": "markdown",
-   "metadata": {},
-   "source": [
-    "### (Optional) Deployments: Retrieving\n",
-    "Now let's check the status of the newly created deployment"
-   ]
-  },
-  {
-   "cell_type": "code",
-   "execution_count": null,
-   "metadata": {},
-   "outputs": [],
-   "source": [
-    "print(f'Checking for deployment status.')\n",
-    "resp = openai.Deployment.retrieve(id=deployment_id)\n",
-    "status = resp[\"status\"]\n",
-    "print(f'Deployment {deployment_id} is with status: {status}')"
-   ]
-  },
-  {
-   "cell_type": "markdown",
-   "metadata": {},
-   "source": [
-    "### Deployments: Listing\n",
-    "Now because creating a new deployment takes a long time, let's look in the subscription for an already finished deployment that succeeded."
-   ]
-  },
-  {
-   "cell_type": "code",
-   "execution_count": null,
-   "metadata": {},
-   "outputs": [],
-   "source": [
-    "print('While deployment running, selecting a completed one.')\n",
-    "deployment_id = None\n",
-    "result = openai.Deployment.list()\n",
-    "for deployment in result.data:\n",
-    "    if deployment[\"status\"] == \"succeeded\":\n",
-    "        deployment_id = deployment[\"id\"]\n",
-    "        break\n",
-    "\n",
-    "if not deployment_id:\n",
-    "    print('No deployment with status: succeeded found.')\n",
-    "else:\n",
-    "    print(f'Found a successful deployment with id: {deployment_id}.')"
-   ]
-  },
-  {
-   "cell_type": "markdown",
-   "metadata": {},
-   "source": [
-    "### Embeddings\n",
-    "Now let's send a sample embedding to the deployment."
-   ]
-  },
-  {
-   "cell_type": "code",
-   "execution_count": null,
-   "metadata": {},
-   "outputs": [],
-   "source": [
-    "embeddings = openai.Embedding.create(deployment_id=deployment_id,\n",
-    "                                     input=\"The food was delicious and the waiter...\")\n",
-    "                                \n",
-    "print(embeddings)"
-   ]
-  },
-  {
-   "cell_type": "markdown",
-   "metadata": {},
-   "source": [
-    "### (Optional) Deployments: Delete\n",
-    "Finally let's delete the deployment"
-   ]
-  },
-  {
-   "cell_type": "code",
-   "execution_count": null,
-   "metadata": {},
-   "outputs": [],
-   "source": [
-    "print(f'Deleting deployment: {deployment_id}')\n",
-    "openai.Deployment.delete(sid=deployment_id)"
+    "This code example has moved. You can now find it in the [OpenAI Cookbook](https://github.com/openai/openai-cookbook) at [examples/azure/embeddings.ipynb](https://github.com/openai/openai-cookbook/tree/main/examples/azure/embeddings.ipynb)."
    ]
   }
  ],
  "metadata": {
-  "interpreter": {
-   "hash": "31f2aee4e71d21fbe5cf8b01ff0e069b9275f58929596ceb00d14d90e3e16cd6"
-  },
   "kernelspec": {
-   "display_name": "Python 3.8.10 64-bit",
+   "display_name": "Python 3.9.9 ('openai')",
    "language": "python",
    "name": "python3"
   },
@@ -185,9 +24,14 @@
    "name": "python",
    "nbconvert_exporter": "python",
    "pygments_lexer": "ipython3",
-   "version": "3.8.10"
+   "version": "3.9.9"
   },
-  "orig_nbformat": 4
+  "orig_nbformat": 4,
+  "vscode": {
+   "interpreter": {
+    "hash": "365536dcbde60510dc9073d6b991cd35db2d9bac356a11f5b64279a5e6708b97"
+   }
+  }
  },
  "nbformat": 4,
  "nbformat_minor": 2
examples/azure/finetuning.ipynb
@@ -4,453 +4,13 @@
    "cell_type": "markdown",
    "metadata": {},
    "source": [
-    "# Azure Fune tuning example\n",
-    "In this example we'll try to go over all operations that can be done using the Azure endpoints and their differences with the openAi endpoints (if any).<br>\n",
-    "This example focuses on finetuning but touches on the majority of operations that are also available using the API. This example is meant to be a quick way of showing simple operations and is not meant as a finetune model adaptation tutorial.\n"
-   ]
-  },
-  {
-   "cell_type": "code",
-   "execution_count": null,
-   "metadata": {},
-   "outputs": [],
-   "source": [
-    "import openai\n",
-    "from openai import cli"
-   ]
-  },
-  {
-   "cell_type": "markdown",
-   "metadata": {},
-   "source": [
-    "## Setup\n",
-    "In the following section the endpoint and key need to be set up of the next sections to work.<br> Please go to https://portal.azure.com, find your resource and then under \"Resource Management\" -> \"Keys and Endpoints\" look for the \"Endpoint\" value and one of the Keys. They will act as api_base and api_key in the code below."
-   ]
-  },
-  {
-   "cell_type": "code",
-   "execution_count": null,
-   "metadata": {},
-   "outputs": [],
-   "source": [
-    "openai.api_key = ''  # Please add your api key here\n",
-    "openai.api_base = '' # Please add your endpoint here\n",
-    "\n",
-    "openai.api_type = 'azure'\n",
-    "openai.api_version = '2022-03-01-preview' # this may change in the future"
-   ]
-  },
-  {
-   "cell_type": "markdown",
-   "metadata": {},
-   "source": [
-    "## Microsoft Active Directory Authentication\n",
-    "Instead of key based authentication, you can use Active Directory to authenticate using credential tokens. Uncomment the next code section to use credential based authentication:"
-   ]
-  },
-  {
-   "cell_type": "code",
-   "execution_count": null,
-   "metadata": {},
-   "outputs": [],
-   "source": [
-    "\"\"\"\n",
-    "from azure.identity import DefaultAzureCredential\n",
-    "\n",
-    "default_credential = DefaultAzureCredential()\n",
-    "token = default_credential.get_token(\"https://cognitiveservices.azure.com\")\n",
-    "\n",
-    "openai.api_type = 'azure_ad'\n",
-    "openai.api_key = token.token\n",
-    "openai.api_version = '2022-03-01-preview' # this may change in the future\n",
-    "\n",
-    "\n",
-    "openai.api_base = '' # Please add your endpoint here\n",
-    "\"\"\""
-   ]
-  },
-  {
-   "cell_type": "markdown",
-   "metadata": {},
-   "source": [
-    "## Files\n",
-    "In the next section we will focus on the files operations: importing, listing, retrieving, deleting. For this we need to create 2 temporary files with some sample data. For the sake of simplicity, we will use the same data for training and validation."
-   ]
-  },
-  {
-   "cell_type": "code",
-   "execution_count": null,
-   "metadata": {},
-   "outputs": [],
-   "source": [
-    "import shutil\n",
-    "import json\n",
-    "\n",
-    "training_file_name = 'training.jsonl'\n",
-    "validation_file_name = 'validation.jsonl'\n",
-    "\n",
-    "sample_data = [{\"prompt\": \"When I go to the store, I want an\", \"completion\": \"apple\"},\n",
-    "    {\"prompt\": \"When I go to work, I want a\", \"completion\": \"coffe\"},\n",
-    "    {\"prompt\": \"When I go home, I want a\", \"completion\": \"soda\"}]\n",
-    "\n",
-    "print(f'Generating the training file: {training_file_name}')\n",
-    "with open(training_file_name, 'w') as training_file:\n",
-    "    for entry in sample_data:\n",
-    "        json.dump(entry, training_file)\n",
-    "        training_file.write('\\n')\n",
-    "\n",
-    "print(f'Copying the training file to the validation file')\n",
-    "shutil.copy(training_file_name, validation_file_name)"
-   ]
-  },
-  {
-   "cell_type": "markdown",
-   "metadata": {},
-   "source": [
-    "### Files: Listing\n",
-    "List all of the uploaded files and check for the ones that are named \"training.jsonl\" or \"validation.jsonl\""
-   ]
-  },
-  {
-   "cell_type": "code",
-   "execution_count": null,
-   "metadata": {},
-   "outputs": [],
-   "source": [
-    "print('Checking for existing uploaded files.')\n",
-    "results = []\n",
-    "files = openai.File.list().data\n",
-    "print(f'Found {len(files)} total uploaded files in the subscription.')\n",
-    "for item in files:\n",
-    "    if item[\"filename\"] in [training_file_name, validation_file_name]:\n",
-    "        results.append(item[\"id\"])\n",
-    "print(f'Found {len(results)} already uploaded files that match our names.')\n"
-   ]
-  },
-  {
-   "cell_type": "markdown",
-   "metadata": {},
-   "source": [
-    "### Files: Deleting\n",
-    "Let's now delete those found files (if any) since we're going to be re-uploading them next."
-   ]
-  },
-  {
-   "cell_type": "code",
-   "execution_count": null,
-   "metadata": {},
-   "outputs": [],
-   "source": [
-    "print(f'Deleting already uploaded files.')\n",
-    "for id in results:\n",
-    "    openai.File.delete(sid = id)\n"
-   ]
-  },
-  {
-   "cell_type": "markdown",
-   "metadata": {},
-   "source": [
-    "### Files: Importing & Retrieving\n",
-    "Now, let's import our two files ('training.jsonl' and 'validation.jsonl') and keep those IDs since we're going to use them later for finetuning.<br>\n",
-    "For this operation we are going to use the cli wrapper which does a bit more checks before uploading and also gives us progress. In addition, after uploading we're going to check the status our import until it has succeeded (or failed if something goes wrong)"
-   ]
-  },
-  {
-   "cell_type": "code",
-   "execution_count": null,
-   "metadata": {},
-   "outputs": [],
-   "source": [
-    "import time\n",
-    "\n",
-    "def check_status(training_id, validation_id):\n",
-    "    train_status = openai.File.retrieve(training_id)[\"status\"]\n",
-    "    valid_status = openai.File.retrieve(validation_id)[\"status\"]\n",
-    "    print(f'Status (training_file | validation_file): {train_status} | {valid_status}')\n",
-    "    return (train_status, valid_status)\n",
-    "\n",
-    "#importing our two files\n",
-    "training_id = cli.FineTune._get_or_upload(training_file_name, True)\n",
-    "validation_id = cli.FineTune._get_or_upload(validation_file_name, True)\n",
-    "\n",
-    "#checking the status of the imports\n",
-    "(train_status, valid_status) = check_status(training_id, validation_id)\n",
-    "\n",
-    "while train_status not in [\"succeeded\", \"failed\"] or valid_status not in [\"succeeded\", \"failed\"]:\n",
-    "    time.sleep(1)\n",
-    "    (train_status, valid_status) = check_status(training_id, validation_id)\n"
-   ]
-  },
-  {
-   "cell_type": "markdown",
-   "metadata": {},
-   "source": [
-    "### Files: Downloading\n",
-    "Now let's download one of the files, the training file for example, to check that everything was in order during importing and all bits are there."
-   ]
-  },
-  {
-   "cell_type": "code",
-   "execution_count": null,
-   "metadata": {},
-   "outputs": [],
-   "source": [
-    "print(f'Downloading training file: {training_id}')\n",
-    "result = openai.File.download(training_id)\n",
-    "print(result)"
-   ]
-  },
-  {
-   "cell_type": "markdown",
-   "metadata": {},
-   "source": [
-    "## Finetune\n",
-    "In this section we are going to use the two training and validation files that we imported in the previous section, to train a finetune model."
-   ]
-  },
-  {
-   "cell_type": "markdown",
-   "metadata": {},
-   "source": [
-    "### Finetune: Adapt\n",
-    "First let's create the finetune adaptation job."
-   ]
-  },
-  {
-   "cell_type": "code",
-   "execution_count": null,
-   "metadata": {},
-   "outputs": [],
-   "source": [
-    "create_args = {\n",
-    "    \"training_file\": training_id,\n",
-    "    \"validation_file\": validation_id,\n",
-    "    \"model\": \"curie\",\n",
-    "    \"compute_classification_metrics\": True,\n",
-    "    \"classification_n_classes\": 3\n",
-    "}\n",
-    "resp = openai.FineTune.create(**create_args)\n",
-    "job_id = resp[\"id\"]\n",
-    "status = resp[\"status\"]\n",
-    "\n",
-    "print(f'Fine-tunning model with jobID: {job_id}.')"
-   ]
-  },
-  {
-   "cell_type": "markdown",
-   "metadata": {},
-   "source": [
-    "### Finetune: Streaming\n",
-    "While the job runs, we can subscribe to the streaming events to check the progress of the operation."
-   ]
-  },
-  {
-   "cell_type": "code",
-   "execution_count": null,
-   "metadata": {},
-   "outputs": [],
-   "source": [
-    "import signal\n",
-    "import datetime\n",
-    "\n",
-    "def signal_handler(sig, frame):\n",
-    "    status = openai.FineTune.retrieve(job_id).status\n",
-    "    print(f\"Stream interrupted. Job is still {status}.\")\n",
-    "    return\n",
-    "\n",
-    "print('Streaming events for the fine-tuning job: {job_id}')\n",
-    "signal.signal(signal.SIGINT, signal_handler)\n",
-    "\n",
-    "events = openai.FineTune.stream_events(job_id)\n",
-    "try:\n",
-    "    for event in events:\n",
-    "        print(f'{datetime.datetime.fromtimestamp(event[\"created_at\"])} {event[\"message\"]}')\n",
-    "\n",
-    "except Exception:\n",
-    "    print(\"Stream interrupted (client disconnected).\")"
-   ]
-  },
-  {
-   "cell_type": "markdown",
-   "metadata": {},
-   "source": [
-    "### Finetune: Listing and Retrieving\n",
-    "Now let's check that our operation was successful and in addition we can look at all of the finetuning operations using a list operation."
-   ]
-  },
-  {
-   "cell_type": "code",
-   "execution_count": null,
-   "metadata": {},
-   "outputs": [],
-   "source": [
-    "status = openai.FineTune.retrieve(id=job_id)[\"status\"]\n",
-    "if status not in [\"succeeded\", \"failed\"]:\n",
-    "    print(f'Job not in terminal status: {status}. Waiting.')\n",
-    "    while status not in [\"succeeded\", \"failed\"]:\n",
-    "        time.sleep(2)\n",
-    "        status = openai.FineTune.retrieve(id=job_id)[\"status\"]\n",
-    "        print(f'Status: {status}')\n",
-    "else:\n",
-    "    print(f'Finetune job {job_id} finished with status: {status}')\n",
-    "\n",
-    "print('Checking other finetune jobs in the subscription.')\n",
-    "result = openai.FineTune.list()\n",
-    "print(f'Found {len(result)} finetune jobs.')"
-   ]
-  },
-  {
-   "cell_type": "markdown",
-   "metadata": {},
-   "source": [
-    "### Finetune: Deleting\n",
-    "Finally we can delete our finetune job.<br>\n",
-    "WARNING: Please skip this step if you want to continue with the next section as the finetune model is needed. (The delete code is commented out by default)"
-   ]
-  },
-  {
-   "cell_type": "code",
-   "execution_count": null,
-   "metadata": {},
-   "outputs": [],
-   "source": [
-    "# openai.FineTune.delete(sid=job_id)"
-   ]
-  },
-  {
-   "cell_type": "markdown",
-   "metadata": {},
-   "source": [
-    "## Deployments\n",
-    "In this section we are going to create a deployment using the finetune model that we just adapted and then used the deployment to create a simple completion operation."
-   ]
-  },
-  {
-   "cell_type": "markdown",
-   "metadata": {},
-   "source": [
-    "### Deployments: Create\n",
-    "Let's create a deployment using the fine-tune model."
-   ]
-  },
-  {
-   "cell_type": "code",
-   "execution_count": null,
-   "metadata": {},
-   "outputs": [],
-   "source": [
-    "#Fist let's get the model of the previous job:\n",
-    "result = openai.FineTune.retrieve(id=job_id)\n",
-    "if result[\"status\"] == 'succeeded':\n",
-    "    model = result[\"fine_tuned_model\"]\n",
-    "\n",
-    "# Now let's create the deployment\n",
-    "print(f'Creating a new deployment with model: {model}')\n",
-    "result = openai.Deployment.create(model=model, scale_settings={\"scale_type\":\"manual\", \"capacity\": 1})\n",
-    "deployment_id = result[\"id\"]\n"
-   ]
-  },
-  {
-   "cell_type": "markdown",
-   "metadata": {},
-   "source": [
-    "### Deployments: Retrieving\n",
-    "Now let's check the status of the newly created deployment"
-   ]
-  },
-  {
-   "cell_type": "code",
-   "execution_count": null,
-   "metadata": {},
-   "outputs": [],
-   "source": [
-    "print(f'Checking for deployment status.')\n",
-    "resp = openai.Deployment.retrieve(id=deployment_id)\n",
-    "status = resp[\"status\"]\n",
-    "print(f'Deployment {deployment_id} is with status: {status}')\n"
-   ]
-  },
-  {
-   "cell_type": "markdown",
-   "metadata": {},
-   "source": [
-    "### Deployments: Listing\n",
-    "Now because creating a new deployment takes a long time, let's look in the subscription for an already finished deployment that succeeded."
-   ]
-  },
-  {
-   "cell_type": "code",
-   "execution_count": null,
-   "metadata": {},
-   "outputs": [],
-   "source": [
-    "print('While deployment running, selecting a completed one.')\n",
-    "deployment_id = None\n",
-    "result = openai.Deployment.list()\n",
-    "for deployment in result.data:\n",
-    "    if deployment[\"status\"] == \"succeeded\":\n",
-    "        deployment_id = deployment[\"id\"]\n",
-    "        break\n",
-    "\n",
-    "if not deployment_id:\n",
-    "    print('No deployment with status: succeeded found.')\n",
-    "else:\n",
-    "    print(f'Found a successful deployment with id: {deployment_id}.')\n"
-   ]
-  },
-  {
-   "cell_type": "markdown",
-   "metadata": {},
-   "source": [
-    "### Completions\n",
-    "Now let's send a sample completion to the deployment."
-   ]
-  },
-  {
-   "cell_type": "code",
-   "execution_count": null,
-   "metadata": {},
-   "outputs": [],
-   "source": [
-    "print('Sending a test completion job')\n",
-    "start_phrase = 'When I go to the store, I want a'\n",
-    "response = openai.Completion.create(deployment_id=deployment_id, prompt=start_phrase, max_tokens=4)\n",
-    "text = response['choices'][0]['text'].replace('\\n', '').replace(' .', '.').strip()\n",
-    "print(f'\"{start_phrase} {text}\"')\n"
-   ]
-  },
-  {
-   "cell_type": "markdown",
-   "metadata": {},
-   "source": [
-    "### Deployments: Delete\n",
-    "Finally let's delete the deployment"
-   ]
-  },
-  {
-   "cell_type": "code",
-   "execution_count": null,
-   "metadata": {},
-   "outputs": [],
-   "source": [
-    "print(f'Deleting deployment: {deployment_id}')\n",
-    "openai.Deployment.delete(sid=deployment_id)"
-   ]
-  },
-  {
-   "cell_type": "markdown",
-   "metadata": {},
-   "source": [
-    "Thank you"
+    "This code example has moved. You can now find it in the [OpenAI Cookbook](https://github.com/openai/openai-cookbook) at [examples/azure/finetuning.ipynb](https://github.com/openai/openai-cookbook/tree/main/examples/azure/finetuning.ipynb)."
    ]
   }
  ],
  "metadata": {
-  "interpreter": {
-   "hash": "31f2aee4e71d21fbe5cf8b01ff0e069b9275f58929596ceb00d14d90e3e16cd6"
-  },
   "kernelspec": {
-   "display_name": "Python 3.8.10 64-bit",
+   "display_name": "Python 3.9.9 ('openai')",
    "language": "python",
    "name": "python3"
   },
@@ -464,9 +24,14 @@
    "name": "python",
    "nbconvert_exporter": "python",
    "pygments_lexer": "ipython3",
-   "version": "3.8.10"
+   "version": "3.9.9"
   },
-  "orig_nbformat": 4
+  "orig_nbformat": 4,
+  "vscode": {
+   "interpreter": {
+    "hash": "365536dcbde60510dc9073d6b991cd35db2d9bac356a11f5b64279a5e6708b97"
+   }
+  }
  },
  "nbformat": 4,
  "nbformat_minor": 2
examples/codex/backtranslation.py
@@ -1,189 +1,1 @@
-from typing import List, Union
-
-from smokey import Smokey
-
-import openai
-
-
-def get_candidates(
-    prompt: str,
-    stop: List[str],
-    temperature: float,
-    priming_prefix: str,
-    engine: str,
-    n: int = 5,
-) -> List[str]:
-    """
-    Generate N candidate completions based on the prompt, generated with a specific temperature.
-
-    :param prompt: The prompt to start the conversation with.
-    :param stop: A list of tokens that indicate the end of the generation.
-    :param temperature: The temperature of the generation.
-    :param priming_prefix: The prefix to use for the priming.
-    :param engine: The engine to use for the generation.
-    :param n: The number of completions to generate.
-    :return: A list of completions.
-    """
-    response = openai.Completion.create(
-        engine=engine,
-        prompt=prompt,
-        temperature=temperature,
-        max_tokens=150,
-        top_p=1,
-        frequency_penalty=0,
-        presence_penalty=0,
-        stop=stop,
-        n=n,
-    )
-    responses = [priming_prefix + choice.text for choice in response.choices]
-    return responses
-
-
-def rindex(lst: List, value: str) -> int:
-    """
-    Return the index of the last occurence of a value in a list.
-
-    :param lst: The list to search in.
-    :param value: The value to search for.
-    :return: The index of the last occurence of the value.
-    """
-    try:
-        return len(lst) - lst[::-1].index(value) - 1
-    except ValueError:
-        raise ValueError(f"Answer start token `{value}` not found in the eval template")
-
-
-def eval_candidate(
-    candidate_answer: str,
-    original_instruction: str,
-    eval_template: str,
-    answer_start_token: str,
-    engine: str,
-) -> float:
-    """
-    Evaluate a candidate answer by calculating the average log probability
-    of the original instruction, given the candidate answer with a specific
-    evaluation template, aimed at reconstructing the original instruction.
-
-    :param candidate_answer: The candidate answer to evaluate.
-    :param original_instruction: The original instruction.
-    :param eval_template: The template to use for the evaluation.
-    :param answer_start_token: The token to use to indicate the start of the answer.
-    :param engine: The engine to use for the evaluation.
-    :return: The evaluation of the candidate answer.
-    """
-    response = openai.Completion.create(
-        engine=engine,
-        prompt=eval_template.format(candidate_answer, original_instruction),
-        temperature=0,
-        max_tokens=0,
-        top_p=1,
-        frequency_penalty=0,
-        presence_penalty=0,
-        logprobs=1,
-        echo=True,
-    )
-
-    answer_start = rindex(
-        response["choices"][0]["logprobs"]["tokens"], answer_start_token
-    )
-    logprobs = response["choices"][0]["logprobs"]["token_logprobs"][answer_start + 1 :]
-    return sum(logprobs) / len(logprobs)
-
-
-def backtranslation(
-    prompt_template: str,
-    additional_info: str,
-    instruction: str,
-    eval_template: str,
-    priming_prefix: str = "SELECT",
-    stop1: List[str] = ["#", ";"],
-    answer_start_token: str = "--",
-    n: int = 5,
-    temperature: float = 0.5,
-    return_all_results: bool = False,
-    engine: str = "davinci-codex",
-) -> Union[str, List[str, float]]:
-    """
-    Generate a number of SQL queries given a natural language instruction,
-    and pick the best one based on the average log probability of explaining the
-    candidate SQL query with the exact original instruction, when prompted for
-    a natural language explanation of the candidate SQL query.
-
-    :param prompt_template: The template to use for the prompt to generate SQL.
-    :param additional_info: Additional information to include in the prompt
-                            (SQL Tables, and their properties).
-    :param instruction: The instruction in natural language.
-    :param eval_template: The template to use for the evaluation.
-    :param priming_prefix: The prefix to use for the priming of the SQL query.
-    :param stop1: A list of tokens that indicate the end of the generation.
-    :param answer_start_token: The token to use to indicate the start of the
-                               natural answer.
-    :param n: The number of candidates to generate.
-    :param temperature: The temperature of the generation.
-    :param return_all_results: Whether to return all results or just the best one.
-    :param engine: The engine to use for the generation and evaluation.
-    :return: The best SQL query, or a list of all scored generated SQL queries.
-    """
-    prompt_template = prompt_template.format(
-        additional_info, instruction, priming_prefix
-    )
-
-    candidates = []
-    responses = get_candidates(
-        prompt_template, stop1, temperature, priming_prefix, engine=engine, n=n
-    )
-    for i in range(n):
-        quality = eval_candidate(
-            responses[i],
-            instruction,
-            eval_template,
-            answer_start_token,
-            engine=engine,
-        )
-        candidates.append((responses[i], quality))
-
-    candidates.sort(key=lambda x: x[1], reverse=True)
-    if return_all_results:
-        return candidates
-    return candidates[0][0]
-
-
-def main(
-    nl_query: str = "Return the name of each department that had more than 10 employees in June 2021",
-    eval_template: str = "{};\n-- Explanation of the above query in human readable format\n-- {}",
-    table_definitions: str = "# Employee(id, name, department_id)\n# Department(id, name, address)\n# Salary_Payments(id, employee_id, amount, date)\n",
-    prompt_template: str = "### Postgres SQL tables, with their properties:\n#\n{}#\n### {}\n{}",
-    n: int = 3,
-    temperature: float = 0.3,
-    engine: str = "davinci-codex",
-):
-    """
-    Generate a number of SQL queries given a natural language instruction,
-    and pick the best one based on the highest backtranslation score.
-
-    :param nl_query: The natural language query.
-    :param eval_template: The template to use for the evaluation.
-    :param table_definitions: The definitions of the tables used in the query.
-    :param prompt_template: The template to use for the prompt to generate SQL.
-    :param n: The number of candidates to generate.
-    :param temperature: The temperature of the generation.
-    :param engine: The engine to use for the generation and evaluation.
-    :return: The best SQL query, or a list of all scored generated SQL queries.
-    """
-
-    result = backtranslation(
-        prompt_template,
-        table_definitions,
-        nl_query,
-        eval_template,
-        priming_prefix="SELECT",
-        temperature=temperature,
-        n=n,
-        engine=engine,
-    )
-    print(result)
-
-
-if __name__ == "__main__":
-    Smokey(main)
+# this example has moved to https://github.com/openai/openai-cookbook/blob/main/examples/Backtranslation_of_SQL_queries.py
examples/embeddings/Classification.ipynb
@@ -4,111 +4,14 @@
    "cell_type": "markdown",
    "metadata": {},
    "source": [
-    "## Classification using the embeddings\n",
-    "\n",
-    "In the classification task we predict one of the predefined categories given an input. We will predict the score based on the embedding of the review's text, where the algorithm is correct only if it guesses the exact number of stars. We split the dataset into a training and a testing set for all the following tasks, so we can realistically evaluate performance on unseen data. The dataset is created in the [Obtain_dataset Notebook](Obtain_dataset.ipynb).\n",
-    "\n",
-    "In the following example we're predicting the number of stars in a review, from 1 to 5."
-   ]
-  },
-  {
-   "cell_type": "code",
-   "execution_count": 1,
-   "metadata": {},
-   "outputs": [
-    {
-     "name": "stdout",
-     "output_type": "stream",
-     "text": [
-      "              precision    recall  f1-score   support\n",
-      "\n",
-      "           1       0.82      0.67      0.74        21\n",
-      "           2       0.50      0.50      0.50         6\n",
-      "           3       1.00      0.46      0.63        13\n",
-      "           4       0.75      0.35      0.48        17\n",
-      "           5       0.88      1.00      0.93       143\n",
-      "\n",
-      "    accuracy                           0.86       200\n",
-      "   macro avg       0.79      0.60      0.66       200\n",
-      "weighted avg       0.86      0.86      0.84       200\n",
-      "\n"
-     ]
-    }
-   ],
-   "source": [
-    "import pandas as pd\n",
-    "import numpy as np\n",
-    "\n",
-    "from sklearn.ensemble import RandomForestClassifier\n",
-    "from sklearn.model_selection import train_test_split\n",
-    "from sklearn.metrics import classification_report, accuracy_score\n",
-    "\n",
-    "df = pd.read_csv('output/embedded_1k_reviews.csv')\n",
-    "df['babbage_similarity'] = df.babbage_similarity.apply(eval).apply(np.array)\n",
-    "\n",
-    "X_train, X_test, y_train, y_test = train_test_split(list(df.babbage_similarity.values), df.Score, test_size = 0.2, random_state=42)\n",
-    "\n",
-    "clf = RandomForestClassifier(n_estimators=100)\n",
-    "clf.fit(X_train, y_train)\n",
-    "preds = clf.predict(X_test)\n",
-    "probas = clf.predict_proba(X_test)\n",
-    "\n",
-    "report = classification_report(y_test, preds)\n",
-    "print(report)"
-   ]
-  },
-  {
-   "cell_type": "markdown",
-   "metadata": {},
-   "source": [
-    "We can see that the model has learnt to distinguish between the categories decently. 5-star reviews show the best performance overall, and this is not too surprising, since they are the most common in the dataset."
-   ]
-  },
-  {
-   "cell_type": "code",
-   "execution_count": 2,
-   "metadata": {},
-   "outputs": [
-    {
-     "name": "stdout",
-     "output_type": "stream",
-     "text": [
-      "RandomForestClassifier() - Average precision score over all classes: 0.93\n"
-     ]
-    },
-    {
-     "data": {
-      "image/png": "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I+9ynph431RPPvlk1qxZw1tvvcXixYv55S9/2ahNn3/+Oddccw0Ad911F/Pnt1+SKYPBELvohsNh/P5jgVc2m61W24ULF7Jq1Sq+++47LrzwQkATTL/5zW9i9tXkiy++4O233+a3v/0ts2bN4rbbbms3uzsDIQTUESQyECDw3VFCrnKtjcmEsXdv9JFhOEX3xGQykZGRQWlpKWVlZWSoOCiFIqFQnph2Zv/+/fTo0YOrr76aq666ii+++ILJkyfzn//8h+LiYkKhEM899xwzZsxgypQpbN68mc2bN7dawJxyyim8+OKLlETylUSHkwYMGMCmTZsAbZiqqQDFCy+8kOeff55Vq1axcOFCAObMmcOTTz6J2+0G4PDhwzGPTUpKCj/60Y9YsmQJX3yRnMXjavpigiUl+PLzNQEjBIacHMxDhigBowDAbDaTlpaGz+ejvLxcTTtWKBKILueJiTeffPIJ999/P0ajEbvdztNPP02vXr247777+MEPfoCUknnz5nH22Wcft68NGzawYMECysrKePPNN/n973/PN998U6tNXl4et956KzNmzECv13PiiSeyfPlyrr76as4++2zGjh3L3Llz63lf6vZRWVlJbm4uvXr1AuC0005j+/btTJs2DdACg//1r3+xa9culixZgk6nw2g08uijj7Zhb8UPodNETLi6mnB1NQD61FQMvXqhM5niaZoiAbFarYRCISoqKtDpdHH3+CoUCo0uUTtp+/btjBgxIk4WdTzRVPnRKsyKthOqqsK/Zw8AwmjE2KsXutTUDh8qUGUHmknh9kjZgeGxsgNR4nm+V1RU4Ha7SUlJwdlEeYlkZ8N3G7jivSuY2GMiT819Kt7mKBKdfZPBuwH6f96qwN5uXztJoWgpOosFXWoqmEyYcnJUtl1Fs3A4HAghqKysREpJmiozoVDEFSViFN0SodNh7NuXYDCIbGK2kkJRl9SIx66iogIpJenp6UrIKBRxQo1NKLot7VEMUtE9sdvtOJ1OvF4vpaWl6hhSKOKEEjGKbosQAp1Op/J/KFqFzWYjPT0dv99PSUmJOo4UijigREwSoDwGHYcQAiml2reKVmG1WklPTycQCCgho1DEASViuil6vT5W32nhwoVUVVW1uc/bbruN1atXN7p+2bJlPP30023eTnsSne0VvflEa0zt27ePUaNGNfiZgoICzjzzzM4xsB3x+XxceOGFDBkyhClTprBv374G2z300EOMGjWKvLw8Hnzwwdj7v/vd7xgzZgzjxo3jtNNO48iRIwC8+eabSZfwsD2xWCxkZGQQDAZjuaAUCkXnoERMAtORF0Or1crmzZvZunUrJpOJZcuW1VrfmvpTd911F6eeemqj66+99louu+yyFvd7PNpSK0sIEfPGNJe//OUvXH311a3eZnPoiKKD//znP0lPT2fXrl384he/aLAQ6datW3niiSdYv349X331FW+++Sa7du0CYMmSJWzZsoXNmzdz5plnctdddwEwb9483njjjXYRwsmK2WwmMzOTcDhMSUlJtywaqVDEgw4VMUKIuUKIb4UQu4QQSxtpc4EQYpsQ4hshxL870p6O5JxzzmHChAnk5eXx+OOPA5rnYcmSJbE2y5cv5/rrrwfgX//6F5MnT2bcuHFcc801McFit9v51a9+xdixY1m3bh133XUXkydP5sQTT+Taa6+N3Ww3bNgQ+1e8ZMmSmNcgFAqxZMmSWPXpxx577Li2T58+nV27dtWrcN1UX3/84x8ZPXo0Y8eOZelS7aetWTl76dKljBw5kjFjxnDTTTcBtStkb968malTpzJmzJhYQj+AmTNncvPNNzN58mSGDRsWqwJel5kzZ3LjjTcyceJEHnroITZt2sSMGTOYMGECc+bMoaCgAIBdu3Zx6qmnMnbsWMaPH8/u3btxu93MmjWL8ePHM3r0aN58803C4XCzhcxLL73E3LlzAc1jM336dMaPH8/48eP59NNPAS3pYU1vzfXXX8/y5csBGD5nDjffdhujR49m8uTJMZGwePFirr32WqZMmcKvf/3rBm1vC6+99hqLFi0C4Pzzz+fDDz+s9523b9/OlClTSElJwWAwMGPGDF5++WVAm14cxePxxIY5hRDMnDmTN998s032JTvREgVKyCgUnUg0HqC9H4Ae2A0MAkzAV8DIOm2GAl8C6ZHXOcfrd8KECbIu27Ztq/deZ1NSUiKllLKqqkrm5eXJ4uJiWVhYKAcPHhxrM3fuXLl27Vq5bds2eeaZZ0q/3y+llPK6666TK1askFJKCciVK1fW69fn88lLLrlEvv7661JKKfPy8uSnn34qpZTy5ptvlnl5eVJKKR977DH5+9//XkoppdfrlRMmTJB79uypZ6/NZpNSShkIBOT8+fPl3//+d/nxxx/LlJSUWPvG+nr77bfltGnTpMfjqWXjokWL5IsvviiLi4vlsGHDZDgcllJKWVZWJqWU8vbbb5f333+/lFLK0aNHy08++URKKeXvfvc7+fOf/1xKKeWMGTPkL3/5SymllG+99ZacNWtWg/t7xowZ8rrrrpNSSun3++W0adNkYWGhlFLK559/Xl5++eVSSiknT54sX375ZSmllNXV1dLj8chAICBdLpeUUsqioiI5ePBg6fV6ZSgUiu2XvXv3xvZpTfbs2SPHjx8fe+3xeGR1dbWUUsqdO3fK6PH58ccfy3nz5sXa/fSnP5VPPfWU9O3fL/v17i3v+u1vpZRSrlixItZu0aJFct68eTIYDDZqe12+//3vy7Fjx9Z7fPDBB/Xa5uXlyYMHD8ZeDxo0SBYVFdVqs23bNjl06FBZXFwsPR6PnDp1qrz++utj62+55RbZp08fmZeXF9vfUkr5r3/9q1a7NnN0m5SHv5DSX1VvVSKc703h9/vld999JwsKCqTP54u3Oa1ifcF6OWr5KLn4ncXxNkWRDOydJOV2pKz6vFUfBzbKVmqNjswTMxnYJaXcAyCEeB44G9hWo83VwN+klGURQVXY5q3u6KB8DcOb/pf+17/+lVdeeQWAgwcPkp+fz9SpUxk0aBCfffYZQ4cOZceOHZx00kn87W9/Y9OmTUyaNAmA6upqcnJyAC1W5bzzzov1+/HHH/OnP/0Jj8dDWVkZo0aNYvr06VRWVsZKAlx88cWxf8Hvv/8+W7ZsiXlEXC4X+fn5sarVUaqrqxk3bhygeWKuvPJKPv3001oVrhvra/Xq1Vx++eWkpKQA9StnO51OLBYLV155JWeeeWa9+BGXy0V5eTkzZswAYNGiRbGaTQDnnnsuABMmTGg0bgOIFav89ttv2bp1K7NnzwY0b1SvXr2orKzk8OHDLFiwANBiFwACgQC33HILa9asQafTxepCRUsuNEVBQQHZ2dmx14FAgOuvv57Nmzej1+vZuXPncfsAuOj88wH44Q9/yC9+8YvY+wsXLkSv1zdqe10a81S1lhEjRnDzzTdz2mmnYbPZGDduHPoaiQDvuece7rnnHv7whz/wyCOPcOeddwKQk5MTi5Hp7hiNRjIzMyktLaWkpASn0xk7VxQKRfvSkSImFzhY4/UhYEqdNsMAhBD/Q/Pc3CGlfLcDbeoQPvnkE1avXs26detISUlh5syZeL1eAC666CJeeOEFhg8fzoIFC2LxF4sWLeIPf/hDvb4sFkvspuH1evnJT37Cxo0b6dmzJ7///e9j/TaGlJKHH36YOXPmNNkuGhNTl5o1lhrr67333muyb4PBwPr16/nwww9ZtWoVjzzyCB999FGTn6mJ2WwGNEEXdclffvnlfPnll/Tu3Zu33367lq1SSvLy8li3bl2tfiorKxvs/9lnn6WoqIhNmzZhNBoZMGAAPp+vWcNJVqu11m/wf//3f/To0YOvvvqKcDgcExs1q4gD9X63mlK7ZqK0pmpcNURU0NblgQceqBeflJuby8GDB+nTpw/BYBCXy0VmZma9z1555ZVceeWVANxyyy306dOnXptLLrmEM844IyZivF4vVqu1XrvuisFgICsri7KyMsrLywkGg7EkeQqFov2Id2CvAW1IaSbwQ+AJIURa3UZCiB8LITYKITYWFRU13eNw2TGPJnC5XKSnp5OSksKOHTv47LPPYusWLFjAa6+9xnPPPcdFF10EwKxZs1i1ahWFhZrjqbS0lP3799frN3rjy8rKwu12x2IT0tLSSE1N5fPPPwfg+eefj31mzpw5PProo7Gq1Tt37sTj8TS9zxqhsb5mz57NU089FQvkjFbOjuJ2u3G5XJxxxhn83//9H1999VWt9U6nk/T09JgX4Zlnnol5ZRrjqaeeYvPmzTEBU5MTTjiBoqKimIgJBAJ88803pKam0qdPH1599VVAm51TVVWFy+UiJycHo9HIxx9/zP79+9HpdM0SMcOGDavlHXK5XPTq1QudTsczzzwTi23q378/27Zti1U+/vDDD2v180LEa7dy5cqYR60mjdlel7Vr18Yqodd8NBRgPX/+fFasWAHAqlWrOOWUUxq8qUaPywMHDvDyyy9z8cUXA5Cfnx9r89prrzF8+PDY6507dzY6m6u7otPpyMjIwGaz4Xa7KS0tVVOwFV2czj++O9ITcxjoW+N1n8h7NTkEfC6lDAB7hRA70UTNhpqNpJSPA4+DVgCywyxuJXPnzmXZsmWMGDGCE044galTp8bWpaenM2LECLZt28bkyVphrJEjR3L33Xdz2mmnEQ6HMRqN/O1vf6N///61+k1LS+Pqq69m1KhR9OjRgwkTJsTW/fOf/+Tqq69Gp9MxY8aMWFXdq666in379jF+/HiklGRnZ8duhC2l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bBEREcbtN954Q997771648aN+mc/+5meOHGi7tGjh3a5XPqRRx7Rqampunfv3nrZsmXGYxYtWqR79eqlU1JS9OOPP6611nrGjBn6ww8/1Fpr/fjjj+urrrpK9+rVSz/00ENaa62ffvpp/eKLL2qttf7+++/14MGDde/evfWUKVN0Tk6O1lrrkSNH6scee0wPHDhQ9+jRQ3/99ddVln/kyJH6gQce0AMGDNBLlizRO3fu1CNGjND9+/fX1157rT516pTWWuuDBw/qsWPH6pSUFN2vXz996NAhXVBQoMeMGaP79eune/XqpdesWVPpuBw9elQnJydXet6JEydqk8mk+/Tpo99//3199OhRPXr0aN27d289ZswYfezYMeNY3HPPPXrQoEHG3+/jcrn0ww8/rJOTk3Xv3r31q6++avxNO3bs0FprPXfuXD1gwADds2dPvWDBAuOxvuPau3dv/fDDD2uttV61apVOTk7WKSkpevjw4dW95JW4XC5tt9v12bNndefOnfXJkycDetwTTzyh33nnHeN+dWW99NJLdWZmptZa6x07duiRI0dqrb3vg9tuu00PGTJEd+/eXS9fvlxrrY3334033KC7X3qpLty7t8rjVFd//vOf9d13323cv/vuu/Wf//znarf3eDy6U6dO+sCBA1rr6t8TWmudk5NT7brm8P8eVHLStX46WuuXegX8kO2nt+teK3rpmetmNmDBqldaWqpzcnL0qVOn9MmTJ3VGRobOz8/XTqezScoj6knpD1r/GKn1PrTO/l9jMbBT1zETBPpz9nFgDvBv4B7gM+D3Fx+hWh6Xy8W6deu4/vrrAfjuu+/Ys2cPXbt2Zfny5cTExLBjxw7sdjvDhg3j2muvZf/+/axdu5Zt27YZE/P5y87OZvXq1ezbtw+Xy1XlbNJ33HEHS5cuZeTIkSxYsICFCxfy8ssvG2Xavn07n332GQsXLmTDhg1Vlt3hcLBz506cTicjR45k7dq1JCQk8MEHH/DUU0/xdtnkgfPmzWPq1KnGXE42m43Vq1cTHR1NVlYWQ4YMYdKkSQFVBX/yySdERkYav8YnTpzIjBkzmDFjBm+//Tb3338/a9asAbyzJG/ZsqVSjc3y5ctJT09n165dxgSQFT333HO0adMGt9vN2LFj2b17Nx07dmT16tXs378fpRS5ubmAtwZs/fr1dOzY0VgW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+jQAhw4dMobH79+/P4cPH6awsJCxY8fSv39/evfuzdq1awM+VpMmTaKwsJABAwbwwQcfkJ6ezpgxY0hJSWHs2LEcP37cOBZz585l8ODB5Wa2Bm8weOSRR+jVqxcpKSksXbq00vPce++9pKamkpyczNNPP20s9x3XlJQU40v2ww8/pFevXvTp06dSIKlJWloaGRkZXHvttdVu4xsvxr9Z6b333ivXBl1dWbt06UJWVhbgreb1TT3wzDPPcPvtt3P11VfTo0cP3nrLO9m87/03+T/+g/5TpgR0nC7E+vXrGTduHG3atCEuLo5x48bx+eefX9A+1qxZQ9euXUlOTi63fMqUKVWGRCGCgcViISIigri4ONq1a0dCQgIxMTHYbLZyNTVnzpwhJyeHwsJCnE6nNDXXgcTAeuZyuVi3bh3XX389AN999x179uyha9euLF++nJiYGHbs2IHdbmfYsGFce+217N+/n7Vr17Jt2zZjAkh/2dnZrF69mv379+PxeMjOzq70vHfccQdLly5l5MiRLFiwgIULF/Lyyy8bZdq+fTufffYZCxcurNRE5eNwONi5cydOp5ORI0eydu1aEhIS+OCDD3jqqad4++23mT59OvPmzWPq1KnGXE42m43Vq1cTHR1NVlYWQ4YMYdKkSQH12v/kk0+IjIw0arEmTpzIjBkzmDFjBm+//Tb333+/MQLliRMn2LJlS6Uam+XLl5Oens6uXbuMiQ0reu6552jTpg1ut5uxY8eye/duOnbsaBxXpZQx18qzzz7L+vXr6dixo7GsNh6Ph4cffpg//elP1R5fwJgywuVyGTVKmzdvLjevUFVlTUlJqfH5d+/ezbfffktRURH9+vXjhhtuALzvv91paXRwuXirLCTWdJwuZBbrkydP0rlzZ+N+p06dOHnyZJXle+211/jjH/9Iamoqv/3tb4mLi6OwsJDFixfzxRdfGGHcp1evXuzYsaPGv1mIYOEbPdg3q7zL5cLhcBgX36z0vr43votvXjFRvRYXYvZd2TBzqly1f1+N60tKSujbty/grYmZPXs2W7ZsYdCgQXTt2hXwzvK7e/duo3YlLy/PaIO88847jarIijMLx8TEEBoayuzZs5kwYYIRkHzy8vLIzc01Zq6eMWMG06ZNM9bfdNNNAAwYMID09PRq/4Zbb70VgB9//JE9e/YYIzO63W7at29P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deumDx8+rO12u05JSdE//PBDpe1uvvlmvWLFCq211l9++aW+7bbbtNZab968WQ8dOlS7XC7tcrn0kCFD9MaNG7XWWq9YsUL/+te/rvJ5m8P/e1DJSdf66WitX+rV1CWpF//vn/9P91rRS3984OOmLoqoq6JvtN6H1unDtNZaAzt1HTOB1MQ0gOHDh3Po0CE2bdrE8OHDmTRpEj179sTtdvPoo48ycOBAUlJSyg2/vnjxYnr37k2fPn2YN28eADNnzjRmvJ43bx49e/YkJSWFxx9/HPCOD7JkyRIAdu3axZAhQ0hJSWHq1KnGr9hRo0bx+OOPM2jQIC6//PJy89X4GzVqFA8++CCpqam88sorpKWlMXLkSAYMGMB1113H6dOnATh06BDXXHMNffr0oX///hw+fJjCwkLGjh1L//796d27N2vXrg34WE2aNInCwkIGDBjABx98QHp6OmPGjCElJYWxY8dy/Phx41jMnTuXwYMHl5vZGrydzB555BF69epFSkoKS5curfQ89957L6mpqSQnJ/P0008by/2Pq2/E2w8//JBevXrRp08fRowYEfDfUld//etfy81M/uyzzzJw4EB69erFPffcg8lkQillzE4NkJWVRZcuXQDvXE2TJ09m1KhR9OjRg4ULFwLe2q8rrriCGbNmkTp1Kj+dPl3l+6yutm/fTvfu3enWrRs2m43//M//rPK137t3L2PGjAFg9OjRxjZKKUpLS3E4HNjtdpxOpzFZ5KRJk/jLX/5yUeUTQrR80rG3nrlcLtatW2d8KX333Xfs2bOHrl27snz5cmJiYtixYwd2u51hw4Zx7bXXsn//ftauXcu2bduMCSD9ZWdns3r1avbv349SiqysrEp9Yu644w6WLl3KyJEjWbBgAQsXLuTll182yrR9+3Y+++wzFi5cWG0TlcPhYOfOnTidTkaOHMnatWtJSEjggw8+4KmnnuLtt99m+vTpzJs3j6lTp1JaWorH48Fms7F69Wqio6PJyspiyJAhTJo0KaBOyJ988gmRkZHGDOATJ05kxowZzJgxg7fffpv777+fNWvWAN5Zkrds2VKpo+vy5ctJT09n165dxsSGFT333HO0adMGt9vN2LFj2b17Nx07dix3XHNzcwFviFi/fj0dO3Y0lgWitLSU1NRULBYL8+bNY8qUKQE9bvPmzdx8883G/fvuu48FCxYAcPvtt/Ppp58aMz9X17S0fft29uzZQ3h4OAMHDuSGG24gPj6egwcP8s5bb9HviSf4+9atNb7PwDuR5Ysvvlhpeffu3Y1A7XPy5Ek6d+5s3O/UqRPbtm2r9Ng+ffrw8ccf88ADD7B69WoKCgrIzs7m6quvZvTo0bRv3x6tNffdd58xnUBcXBx2u53s7OxaJ98UQrReLS7E/G7uVw2y318uG1Pj+pKSEvr27Qt4a2Jmz57Nli1bGDRoEF27dgW8s/zu3r3b+DLIy8vj4MGDbNiwgTvvvNOY2KtiG2FMTAyhoaHMnj2bG2+8kfHjxxtVab795ObmGjNXz5gxg2nTphmPv+mmmwAYMGAA6enp1f4Nt956KwA//vgje/bsYdw479kAbreb9u3bU1BQwMmTJ5k6dSqAMVCS0+nkySef5Ouvv8ZkMnHy5EkyMjJo165djcesKlu3buXjjz8GvF/g/rUu06ZNq/JMnQ0bNjB37lzjdOSq2lhXrVrF8uXLcblcnD59mr1799KzZ89yx9UXFIYNG8bMmTO55ZZbjGMXiGPHjtGxY0eOHDnCmDFj6N27N5dddlmtjzt9+jQJCQnG/Y0bN/LCCy9QXFxMTk4OycnJTJw40RgAz+VyVQoy48aNM77sb7rpJv75z38yZcoULr30UoYMHoz94EG+2rq1xvcZwPTp05k+fXrAf3MglixZwn333ceKFSsYMWIEHTt2xGw2c+jQIfbt22f0kRk3bpwxEztAYmIip06dkhAjhKhWiwsxTSUsLMyoTfAXEXF+yGytNUuXLuW6664rt8369etr3LfFYmH79u18+eWXfPTRRyxdurTWx/jznQbnG38E4M477+T777+nQ4cOfPbZZ+XKqrUmOTmZrVvLj5zpP/W7v/fee4/MzEzS0tKwWq106dKF0tLSgMsXKP9jeSGOHj3KkiVL2LFjB3FxccycOZPS0tJKx/W1117jq6++YtmyZWzbto1PP/2UAQMGkJaWFtAXaceOHQHo1q0bo0aN4vvvvw8oxISFhRnHq7S0lP/6r/9i586ddO7cmWeeecZY5xv8TilFYWFhuX1UrPXy3b/QY3YhNTEdO3bkp59+Mu6fOHHCOAb+OnToYATTwsJC/vrXvxIbG8tbb73FkCFDjM7f48ePZ+vWrUaIKS0tLTdUuhBCVNTiQkxtNSZN6brrruONN95gzJgxWK1WDhw4QMeOHRk3bhzPPvss06dPN6r5/X8lFxYWUlxczIQJExg2bBjdunUrt9+YmBji4uKMX7HvvvuuUStTnXfeeafadVdccQWZmZls3bqVq6++GqfTyYEDB0hOTqZTp06sWbOGKVOmYLfbcbvd5OXlkZiYiNVqZePGjRw7dqzOx2jo0KG8//773H777bz33nvGF1pNxo0bx5tvvsno0aON5iT/45efn09ERAQxMTFkZGSwbt06Ro0aVe1xPXz4MIMHD2bw4MGsW7eOn376qdYQc+7cOcLDwwkJCSErK4vNmzdX6rtTnauuuopDhw4xatQoI7DEx8dTWFjIRx99ZDQ1denShe+++45BgwaxevVqAKNG5osvviAnJ4ewsDDWrFnD22+/Xel5xg4dyqKyJsGq3mdwYTUxAwcO5ODBgxw9epSOHTvy/vvv8+c//7nSdllZWbRp0waTycRvfvMbZs2aBcAll1zCW2+9xRNPPIHWmn/84x88+OCDgDdInzlzxuj3I4QQVWlxIaY5mzNnDunp6fTv3x+tNQkJCaxZs4brr7+eXbt2kZqais1mY8KECTz//PPG4woKCpg8eTKlpaVorfntb38LlJ8EcuXKlcydO5fi4mK6detWY0ipjc1m46OPPuL+++8nLy8Pl8vFgw8+SHJyMu+++y733HMPCxYswGq18uGHHzJ9+nQmTpxI7969SU1N5corr6zzcy9dupQ777yTF198kYSEhID+jjlz5nDgwAFSUlKwWq3cdddd3Hfffcb6Pn360K9fP6688ko6d+7MsGHDgMrH9aWXXgK8p3wfPHgQrTVjx46lT58+tZZh3759Ridcj8djdBgOxA033MCbb77JnDlziI2N5a677qJXr160a9eOgQMHGts98sgj3HLLLSxfvpwJEyYAGE1LgwYN4j/+4z84ceIEt912G6mpqZWaDq8dMYK9WVnVvs8ulMVi4bXXXuO6667D7XYza9YskpOTAe/wAKmpqUyaNIlNmzbxxBNPoJRixIgR/O53vwPg5ptv5quvvqJ3794opbj++uuZOHEiAGlpaQwZMkRGLBZC1EhV7CBarztX6nrgFcAM/F5rXeVAEkqp/wA+AgZqrWsc2CM1NVVXHPtj3759RofA1sLpdBrn34vg97Of/Yy//e1vxMbGBvwYXTavycqVK/n++++NcFCRx27H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",
-      "text/plain": [
-       "<Figure size 648x720 with 1 Axes>"
-      ]
-     },
-     "metadata": {
-      "needs_background": "light"
-     },
-     "output_type": "display_data"
-    }
-   ],
-   "source": [
-    "from openai.embeddings_utils import plot_multiclass_precision_recall\n",
-    "\n",
-    "plot_multiclass_precision_recall(probas, y_test, [1,2,3,4,5], clf)"
-   ]
-  },
-  {
-   "cell_type": "markdown",
-   "metadata": {},
-   "source": [
-    "Unsurprisingly 5-star and 1-star reviews seem to be easier to predict. Perhaps with more data, the nuances between 2-4 stars could be better predicted, but there's also probably more subjectivity in how people use the inbetween scores."
+    "This code example has moved. You can now find it in the [OpenAI Cookbook](https://github.com/openai/openai-cookbook) at [examples/Classification_using_embeddings.ipynb](https://github.com/openai/openai-cookbook/blob/main/examples/Classification_using_embeddings.ipynb)."
    ]
   }
  ],
  "metadata": {
-  "interpreter": {
-   "hash": "be4b5d5b73a21c599de40d6deb1129796d12dc1cc33a738f7bac13269cfcafe8"
-  },
   "kernelspec": {
-   "display_name": "Python 3.7.3 64-bit ('base': conda)",
+   "display_name": "Python 3.9.9 ('openai')",
+   "language": "python",
    "name": "python3"
   },
   "language_info": {
@@ -121,9 +24,14 @@
    "name": "python",
    "nbconvert_exporter": "python",
    "pygments_lexer": "ipython3",
-   "version": "3.7.3"
+   "version": "3.9.9"
   },
-  "orig_nbformat": 4
+  "orig_nbformat": 4,
+  "vscode": {
+   "interpreter": {
+    "hash": "365536dcbde60510dc9073d6b991cd35db2d9bac356a11f5b64279a5e6708b97"
+   }
+  }
  },
  "nbformat": 4,
  "nbformat_minor": 2
examples/embeddings/Clustering.ipynb
@@ -4,243 +4,14 @@
    "cell_type": "markdown",
    "metadata": {},
    "source": [
-    "## Clustering\n",
-    "\n",
-    "We use a simple k-means algorithm to demonstrate how clustering can be done. Clustering can help discover valuable, hidden groupings within the data. The dataset is created in the [Obtain_dataset Notebook](Obtain_dataset.ipynb)."
-   ]
-  },
-  {
-   "cell_type": "code",
-   "execution_count": 31,
-   "metadata": {},
-   "outputs": [
-    {
-     "data": {
-      "text/plain": [
-       "(1000, 2048)"
-      ]
-     },
-     "execution_count": 31,
-     "metadata": {},
-     "output_type": "execute_result"
-    }
-   ],
-   "source": [
-    "import pandas as pd\n",
-    "import numpy as np\n",
-    "\n",
-    "\n",
-    "df = pd.read_csv('output/embedded_1k_reviews.csv')\n",
-    "df['text-similarity-babbage-001'] = df.babbage_similarity.apply(eval).apply(np.array)\n",
-    "matrix = np.vstack(df.babbage_similarity.values)\n",
-    "matrix.shape"
-   ]
-  },
-  {
-   "cell_type": "markdown",
-   "metadata": {},
-   "source": [
-    "### 1. Find the clusters using K-means"
-   ]
-  },
-  {
-   "cell_type": "markdown",
-   "metadata": {},
-   "source": [
-    "We show the simplest use of K-means. You can pick the number of clusters that fits your use case best."
-   ]
-  },
-  {
-   "cell_type": "code",
-   "execution_count": 34,
-   "metadata": {},
-   "outputs": [
-    {
-     "data": {
-      "text/plain": [
-       "Cluster\n",
-       "2    2.543478\n",
-       "3    4.374046\n",
-       "0    4.709402\n",
-       "1    4.832099\n",
-       "Name: Score, dtype: float64"
-      ]
-     },
-     "execution_count": 34,
-     "metadata": {},
-     "output_type": "execute_result"
-    }
-   ],
-   "source": [
-    "from sklearn.cluster import KMeans\n",
-    "\n",
-    "n_clusters = 4\n",
-    "\n",
-    "kmeans = KMeans(n_clusters = n_clusters,init='k-means++',random_state=42)\n",
-    "kmeans.fit(matrix)\n",
-    "labels = kmeans.labels_\n",
-    "df['Cluster'] = labels\n",
-    "\n",
-    "df.groupby('Cluster').Score.mean().sort_values()"
-   ]
-  },
-  {
-   "cell_type": "markdown",
-   "metadata": {},
-   "source": [
-    "It looks like cluster 2 focused on negative reviews, while cluster 0 and 1 focused on positive reviews."
-   ]
-  },
-  {
-   "cell_type": "code",
-   "execution_count": 40,
-   "metadata": {},
-   "outputs": [
-    {
-     "data": {
-      "text/plain": [
-       "Text(0.5, 1.0, 'Clusters identified visualized in language 2d using t-SNE')"
-      ]
-     },
-     "execution_count": 40,
-     "metadata": {},
-     "output_type": "execute_result"
-    },
-    {
-     "data": {
-      "image/png": "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",
-      "text/plain": [
-       "<Figure size 432x288 with 1 Axes>"
-      ]
-     },
-     "metadata": {
-      "needs_background": "light"
-     },
-     "output_type": "display_data"
-    }
-   ],
-   "source": [
-    "from sklearn.manifold import TSNE\n",
-    "import matplotlib\n",
-    "import matplotlib.pyplot as plt\n",
-    "\n",
-    "tsne = TSNE(n_components=2, perplexity=15, random_state=42, init='random', learning_rate=200)\n",
-    "vis_dims2 = tsne.fit_transform(matrix)\n",
-    "\n",
-    "x = [x for x,y in vis_dims2]\n",
-    "y = [y for x,y in vis_dims2]\n",
-    "\n",
-    "for category, color in enumerate(['purple', 'green', 'red', 'blue']):\n",
-    "    xs = np.array(x)[df.Cluster==category]\n",
-    "    ys = np.array(y)[df.Cluster==category]\n",
-    "    plt.scatter(xs, ys, color=color, alpha=0.3)\n",
-    "\n",
-    "    avg_x = xs.mean()\n",
-    "    avg_y = ys.mean()\n",
-    "    \n",
-    "    plt.scatter(avg_x, avg_y, marker='x', color=color, s=100)\n",
-    "plt.title(\"Clusters identified visualized in language 2d using t-SNE\")"
-   ]
-  },
-  {
-   "cell_type": "markdown",
-   "metadata": {},
-   "source": [
-    "Visualization of clusters in a 2d projection. The red cluster clearly represents negative reviews. The blue cluster seems quite different from the others. Let's see a few samples from each cluster."
-   ]
-  },
-  {
-   "cell_type": "markdown",
-   "metadata": {},
-   "source": [
-    "### 2. Text samples in the clusters & naming the clusters\n",
-    "\n",
-    "Let's show random samples from each cluster. We'll use davinci-instruct-beta-v3 to name the clusters, based on a random sample of 6 reviews from that cluster."
-   ]
-  },
-  {
-   "cell_type": "code",
-   "execution_count": 39,
-   "metadata": {},
-   "outputs": [
-    {
-     "name": "stdout",
-     "output_type": "stream",
-     "text": [
-      "Cluster 0 Theme:  All of the customer reviews mention the great flavor of the product.\n",
-      "5, French Vanilla Cappuccino:   Great price.  Really love the the flavor.  No need to add anything to \n",
-      "5, great coffee:   A bit pricey once you add the S & H but this is one of the best flavor\n",
-      "5, Love It:   First let me say I'm new to drinking tea. So you're not getting a well\n",
-      "----------------------------------------------------------------------------------------------------\n",
-      "Cluster 1 Theme:  All three reviews mention the quality of the product.\n",
-      "5, Beautiful:   I don't plan to grind these, have plenty other peppers for that.  I go\n",
-      "5, Awesome:   I can't find this in the stores and thought I would like it.  So I bou\n",
-      "5, Came as expected:   It was tasty and fresh. The other one I bought was old and tasted mold\n",
-      "----------------------------------------------------------------------------------------------------\n",
-      "Cluster 2 Theme:  All reviews are about customer's disappointment.\n",
-      "1, Disappointed...:   I should read the fine print, I guess.  I mostly went by the picture a\n",
-      "5, Excellent but Price?:   I first heard about this on America's Test Kitchen where it won a blin\n",
-      "1, Disappointed:   I received the offer from Amazon and had never tried this brand before\n",
-      "----------------------------------------------------------------------------------------------------\n",
-      "Cluster 3 Theme: The reviews for these products have in common that the customers' dogs love them.\n",
-      "5, My Dog's Favorite Snack!:   I was first introduced to this snack at my dog's training classes at p\n",
-      "4, Fruitables Crunchy Dog Treats:   My lab goes wild for these and I am almost tempted to have a go at som\n",
-      "5, Happy with the product:   My dog was suffering with itchy skin.  He had been eating Natural Choi\n",
-      "----------------------------------------------------------------------------------------------------\n"
-     ]
-    }
-   ],
-   "source": [
-    "import openai\n",
-    "\n",
-    "# Reading a review which belong to each group.\n",
-    "rev_per_cluster = 3\n",
-    "\n",
-    "for i in range(n_clusters):\n",
-    "    print(f\"Cluster {i} Theme:\", end=\" \")\n",
-    "    \n",
-    "    reviews = \"\\n\".join(df[df.Cluster == i].combined.str.replace(\"Title: \", \"\").str.replace(\"\\n\\nContent: \", \":  \").sample(rev_per_cluster, random_state=42).values)\n",
-    "    response = openai.Completion.create(\n",
-    "        engine=\"davinci-instruct-beta-v3\",\n",
-    "        prompt=f\"What do the following customer reviews have in common?\\n\\nCustomer reviews:\\n\\\"\\\"\\\"\\n{reviews}\\n\\\"\\\"\\\"\\n\\nTheme:\",\n",
-    "        temperature=0,\n",
-    "        max_tokens=64,\n",
-    "        top_p=1,\n",
-    "        frequency_penalty=0,\n",
-    "        presence_penalty=0\n",
-    "    )\n",
-    "    print(response[\"choices\"][0][\"text\"].replace('\\n',''))\n",
-    "\n",
-    "    sample_cluster_rows = df[df.Cluster == i].sample(rev_per_cluster, random_state=42) \n",
-    "    for j in range(rev_per_cluster):\n",
-    "        print(sample_cluster_rows.Score.values[j], end=\", \")\n",
-    "        print(sample_cluster_rows.Summary.values[j], end=\":   \")\n",
-    "        print(sample_cluster_rows.Text.str[:70].values[j])\n",
-    "        \n",
-    "    print(\"-\" * 100)"
-   ]
-  },
-  {
-   "cell_type": "markdown",
-   "metadata": {},
-   "source": [
-    "We can see based on the average ratings per cluster, that Cluster 2 contains mostly negative reviews. Cluster 0 and 1 contain mostly positive reviews, whilst Cluster 3 appears to contain reviews about dog products."
-   ]
-  },
-  {
-   "cell_type": "markdown",
-   "metadata": {},
-   "source": [
-    "It's important to note that clusters will not necessarily match what you intend to use them for. A larger amount of clusters will focus on more specific patterns, whereas a small number of clusters will usually focus on largest discrepencies in the data."
+    "This code example has moved. You can now find it in the [OpenAI Cookbook](https://github.com/openai/openai-cookbook) at [examples/Clustering.ipynb](https://github.com/openai/openai-cookbook/blob/main/examples/Clustering.ipynb)."
    ]
   }
  ],
  "metadata": {
-  "interpreter": {
-   "hash": "be4b5d5b73a21c599de40d6deb1129796d12dc1cc33a738f7bac13269cfcafe8"
-  },
   "kernelspec": {
-   "display_name": "Python 3.7.3 64-bit ('base': conda)",
+   "display_name": "Python 3.9.9 ('openai')",
+   "language": "python",
    "name": "python3"
   },
   "language_info": {
@@ -255,7 +26,12 @@
    "pygments_lexer": "ipython3",
    "version": "3.9.9"
   },
-  "orig_nbformat": 4
+  "orig_nbformat": 4,
+  "vscode": {
+   "interpreter": {
+    "hash": "365536dcbde60510dc9073d6b991cd35db2d9bac356a11f5b64279a5e6708b97"
+   }
+  }
  },
  "nbformat": 4,
  "nbformat_minor": 2
examples/embeddings/Code_search.ipynb
@@ -4,377 +4,14 @@
    "cell_type": "markdown",
    "metadata": {},
    "source": [
-    "## Code search\n",
-    "\n",
-    "We index our own openai-python code repository, and show how it can be searched. We implement a simple version of file parsing and extracting of functions from python files. The dataset is created in the [Obtain_dataset Notebook](Obtain_dataset.ipynb)."
-   ]
-  },
-  {
-   "cell_type": "code",
-   "execution_count": 1,
-   "metadata": {},
-   "outputs": [
-    {
-     "name": "stdout",
-     "output_type": "stream",
-     "text": [
-      "Total number of py files: 40\n",
-      "Total number of functions extracted: 64\n"
-     ]
-    }
-   ],
-   "source": [
-    "import os\n",
-    "from glob import glob\n",
-    "import pandas as pd\n",
-    "\n",
-    "def get_function_name(code):\n",
-    "    \"\"\"\n",
-    "    Extract function name from a line beginning with \"def \"\n",
-    "    \"\"\"\n",
-    "    assert code.startswith(\"def \")\n",
-    "    return code[len(\"def \"): code.index(\"(\")]\n",
-    "\n",
-    "def get_until_no_space(all_lines, i) -> str:\n",
-    "    \"\"\"\n",
-    "    Get all lines until a line outside the function definition is found.\n",
-    "    \"\"\"\n",
-    "    ret = [all_lines[i]]\n",
-    "    for j in range(i + 1, i + 10000):\n",
-    "        if j < len(all_lines):\n",
-    "            if len(all_lines[j]) == 0 or all_lines[j][0] in [\" \", \"\\t\", \")\"]:\n",
-    "                ret.append(all_lines[j])\n",
-    "            else:\n",
-    "                break\n",
-    "    return \"\\n\".join(ret)\n",
-    "\n",
-    "def get_functions(filepath):\n",
-    "    \"\"\"\n",
-    "    Get all functions in a Python file.\n",
-    "    \"\"\"\n",
-    "    whole_code = open(filepath).read().replace(\"\\r\", \"\\n\")\n",
-    "    all_lines = whole_code.split(\"\\n\")\n",
-    "    for i, l in enumerate(all_lines):\n",
-    "        if l.startswith(\"def \"):\n",
-    "            code = get_until_no_space(all_lines, i)\n",
-    "            function_name = get_function_name(code)\n",
-    "            yield {\"code\": code, \"function_name\": function_name, \"filepath\": filepath}\n",
-    "\n",
-    "\n",
-    "# get user root directory\n",
-    "root_dir = os.path.expanduser(\"~\")\n",
-    "\n",
-    "# path to code repository directory\n",
-    "code_root = root_dir + \"/openai-python\"\n",
-    "code_files = [y for x in os.walk(code_root) for y in glob(os.path.join(x[0], '*.py'))]\n",
-    "print(\"Total number of py files:\", len(code_files))\n",
-    "all_funcs = []\n",
-    "for code_file in code_files:\n",
-    "    funcs = list(get_functions(code_file))\n",
-    "    for func in funcs:\n",
-    "        all_funcs.append(func)\n",
-    "\n",
-    "print(\"Total number of functions extracted:\", len(all_funcs))\n"
-   ]
-  },
-  {
-   "cell_type": "markdown",
-   "metadata": {},
-   "source": [
-    "For code search models we use code-search-{model}-code to obtain embeddings for code snippets, and code-search-{model}-text to embed natural language queries."
-   ]
-  },
-  {
-   "cell_type": "code",
-   "execution_count": 2,
-   "metadata": {},
-   "outputs": [
-    {
-     "data": {
-      "text/html": [
-       "<div>\n",
-       "<style scoped>\n",
-       "    .dataframe tbody tr th:only-of-type {\n",
-       "        vertical-align: middle;\n",
-       "    }\n",
-       "\n",
-       "    .dataframe tbody tr th {\n",
-       "        vertical-align: top;\n",
-       "    }\n",
-       "\n",
-       "    .dataframe thead th {\n",
-       "        text-align: right;\n",
-       "    }\n",
-       "</style>\n",
-       "<table border=\"1\" class=\"dataframe\">\n",
-       "  <thead>\n",
-       "    <tr style=\"text-align: right;\">\n",
-       "      <th></th>\n",
-       "      <th>code</th>\n",
-       "      <th>function_name</th>\n",
-       "      <th>filepath</th>\n",
-       "      <th>code_embedding</th>\n",
-       "    </tr>\n",
-       "  </thead>\n",
-       "  <tbody>\n",
-       "    <tr>\n",
-       "      <th>0</th>\n",
-       "      <td>def semantic_search(engine, query, documents):...</td>\n",
-       "      <td>semantic_search</td>\n",
-       "      <td>/examples/semanticsearch/semanticsearch.py</td>\n",
-       "      <td>[-0.038976121693849564, -0.0031428150832653046...</td>\n",
-       "    </tr>\n",
-       "    <tr>\n",
-       "      <th>1</th>\n",
-       "      <td>def main():\\n    parser = argparse.ArgumentPar...</td>\n",
-       "      <td>main</td>\n",
-       "      <td>/examples/semanticsearch/semanticsearch.py</td>\n",
-       "      <td>[-0.024289356544613838, -0.017748363316059113,...</td>\n",
-       "    </tr>\n",
-       "    <tr>\n",
-       "      <th>2</th>\n",
-       "      <td>def get_candidates(\\n    prompt: str,\\n    sto...</td>\n",
-       "      <td>get_candidates</td>\n",
-       "      <td>/examples/codex/backtranslation.py</td>\n",
-       "      <td>[-0.04161201789975166, -0.0169310811907053, 0....</td>\n",
-       "    </tr>\n",
-       "    <tr>\n",
-       "      <th>3</th>\n",
-       "      <td>def rindex(lst: List, value: str) -&gt; int:\\n   ...</td>\n",
-       "      <td>rindex</td>\n",
-       "      <td>/examples/codex/backtranslation.py</td>\n",
-       "      <td>[-0.027255680412054062, -0.007931121625006199,...</td>\n",
-       "    </tr>\n",
-       "    <tr>\n",
-       "      <th>4</th>\n",
-       "      <td>def eval_candidate(\\n    candidate_answer: str...</td>\n",
-       "      <td>eval_candidate</td>\n",
-       "      <td>/examples/codex/backtranslation.py</td>\n",
-       "      <td>[-0.00999179296195507, -0.01640152558684349, 0...</td>\n",
-       "    </tr>\n",
-       "  </tbody>\n",
-       "</table>\n",
-       "</div>"
-      ],
-      "text/plain": [
-       "                                                code    function_name  \\\n",
-       "0  def semantic_search(engine, query, documents):...  semantic_search   \n",
-       "1  def main():\\n    parser = argparse.ArgumentPar...             main   \n",
-       "2  def get_candidates(\\n    prompt: str,\\n    sto...   get_candidates   \n",
-       "3  def rindex(lst: List, value: str) -> int:\\n   ...           rindex   \n",
-       "4  def eval_candidate(\\n    candidate_answer: str...   eval_candidate   \n",
-       "\n",
-       "                                     filepath  \\\n",
-       "0  /examples/semanticsearch/semanticsearch.py   \n",
-       "1  /examples/semanticsearch/semanticsearch.py   \n",
-       "2          /examples/codex/backtranslation.py   \n",
-       "3          /examples/codex/backtranslation.py   \n",
-       "4          /examples/codex/backtranslation.py   \n",
-       "\n",
-       "                                      code_embedding  \n",
-       "0  [-0.038976121693849564, -0.0031428150832653046...  \n",
-       "1  [-0.024289356544613838, -0.017748363316059113,...  \n",
-       "2  [-0.04161201789975166, -0.0169310811907053, 0....  \n",
-       "3  [-0.027255680412054062, -0.007931121625006199,...  \n",
-       "4  [-0.00999179296195507, -0.01640152558684349, 0...  "
-      ]
-     },
-     "execution_count": 2,
-     "metadata": {},
-     "output_type": "execute_result"
-    }
-   ],
-   "source": [
-    "from openai.embeddings_utils import get_embedding\n",
-    "\n",
-    "df = pd.DataFrame(all_funcs)\n",
-    "df['code_embedding'] = df['code'].apply(lambda x: get_embedding(x, engine='code-search-babbage-code-001'))\n",
-    "df['filepath'] = df['filepath'].apply(lambda x: x.replace(code_root, \"\"))\n",
-    "df.to_csv(\"output/code_search_openai-python.csv\", index=False)\n",
-    "df.head()"
-   ]
-  },
-  {
-   "cell_type": "code",
-   "execution_count": 5,
-   "metadata": {},
-   "outputs": [
-    {
-     "name": "stdout",
-     "output_type": "stream",
-     "text": [
-      "/openai/tests/test_endpoints.py:test_completions_multiple_prompts  score=0.681\n",
-      "def test_completions_multiple_prompts():\n",
-      "    result = openai.Completion.create(\n",
-      "        prompt=[\"This was a test\", \"This was another test\"], n=5, engine=\"ada\"\n",
-      "    )\n",
-      "    assert len(result.choices) == 10\n",
-      "\n",
-      "----------------------------------------------------------------------\n",
-      "/openai/tests/test_endpoints.py:test_completions  score=0.675\n",
-      "def test_completions():\n",
-      "    result = openai.Completion.create(prompt=\"This was a test\", n=5, engine=\"ada\")\n",
-      "    assert len(result.choices) == 5\n",
-      "\n",
-      "\n",
-      "----------------------------------------------------------------------\n",
-      "/openai/tests/test_api_requestor.py:test_requestor_sets_request_id  score=0.635\n",
-      "def test_requestor_sets_request_id(mocker: MockerFixture) -> None:\n",
-      "    # Fake out 'requests' and confirm that the X-Request-Id header is set.\n",
-      "\n",
-      "    got_headers = {}\n",
-      "\n",
-      "    def fake_request(self, *args, **kwargs):\n",
-      "        nonlocal got_headers\n",
-      "----------------------------------------------------------------------\n"
-     ]
-    }
-   ],
-   "source": [
-    "from openai.embeddings_utils import cosine_similarity\n",
-    "\n",
-    "def search_functions(df, code_query, n=3, pprint=True, n_lines=7):\n",
-    "    embedding = get_embedding(code_query, engine='code-search-babbage-text-001')\n",
-    "    df['similarities'] = df.code_embedding.apply(lambda x: cosine_similarity(x, embedding))\n",
-    "\n",
-    "    res = df.sort_values('similarities', ascending=False).head(n)\n",
-    "    if pprint:\n",
-    "        for r in res.iterrows():\n",
-    "            print(r[1].filepath+\":\"+r[1].function_name + \"  score=\" + str(round(r[1].similarities, 3)))\n",
-    "            print(\"\\n\".join(r[1].code.split(\"\\n\")[:n_lines]))\n",
-    "            print('-'*70)\n",
-    "    return res\n",
-    "res = search_functions(df, 'Completions API tests', n=3)\n"
-   ]
-  },
-  {
-   "cell_type": "code",
-   "execution_count": 6,
-   "metadata": {},
-   "outputs": [
-    {
-     "name": "stdout",
-     "output_type": "stream",
-     "text": [
-      "/openai/validators.py:format_inferrer_validator  score=0.655\n",
-      "def format_inferrer_validator(df):\n",
-      "    \"\"\"\n",
-      "    This validator will infer the likely fine-tuning format of the data, and display it to the user if it is classification.\n",
-      "    It will also suggest to use ada and explain train/validation split benefits.\n",
-      "    \"\"\"\n",
-      "    ft_type = infer_task_type(df)\n",
-      "    immediate_msg = None\n",
-      "----------------------------------------------------------------------\n",
-      "/openai/validators.py:long_examples_validator  score=0.649\n",
-      "def long_examples_validator(df):\n",
-      "    \"\"\"\n",
-      "    This validator will suggest to the user to remove examples that are too long.\n",
-      "    \"\"\"\n",
-      "    immediate_msg = None\n",
-      "    optional_msg = None\n",
-      "    optional_fn = None\n",
-      "----------------------------------------------------------------------\n",
-      "/openai/validators.py:non_empty_completion_validator  score=0.646\n",
-      "def non_empty_completion_validator(df):\n",
-      "    \"\"\"\n",
-      "    This validator will ensure that no completion is empty.\n",
-      "    \"\"\"\n",
-      "    necessary_msg = None\n",
-      "    necessary_fn = None\n",
-      "    immediate_msg = None\n",
-      "----------------------------------------------------------------------\n"
-     ]
-    }
-   ],
-   "source": [
-    "res = search_functions(df, 'fine-tuning input data validation logic', n=3)"
-   ]
-  },
-  {
-   "cell_type": "code",
-   "execution_count": 7,
-   "metadata": {},
-   "outputs": [
-    {
-     "name": "stdout",
-     "output_type": "stream",
-     "text": [
-      "/openai/validators.py:common_completion_suffix_validator  score=0.665\n",
-      "def common_completion_suffix_validator(df):\n",
-      "    \"\"\"\n",
-      "    This validator will suggest to add a common suffix to the completion if one doesn't already exist in case of classification or conditional generation.\n",
-      "    \"\"\"\n",
-      "    error_msg = None\n",
-      "    immediate_msg = None\n",
-      "    optional_msg = None\n",
-      "    optional_fn = None\n",
-      "\n",
-      "    ft_type = infer_task_type(df)\n",
-      "----------------------------------------------------------------------\n",
-      "/openai/validators.py:get_outfnames  score=0.66\n",
-      "def get_outfnames(fname, split):\n",
-      "    suffixes = [\"_train\", \"_valid\"] if split else [\"\"]\n",
-      "    i = 0\n",
-      "    while True:\n",
-      "        index_suffix = f\" ({i})\" if i > 0 else \"\"\n",
-      "        candidate_fnames = [\n",
-      "            fname.split(\".\")[0] + \"_prepared\" + suffix + index_suffix + \".jsonl\"\n",
-      "            for suffix in suffixes\n",
-      "        ]\n",
-      "        if not any(os.path.isfile(f) for f in candidate_fnames):\n",
-      "----------------------------------------------------------------------\n"
-     ]
-    }
-   ],
-   "source": [
-    "res = search_functions(df, 'find common suffix', n=2, n_lines=10)"
-   ]
-  },
-  {
-   "cell_type": "code",
-   "execution_count": 8,
-   "metadata": {},
-   "outputs": [
-    {
-     "name": "stdout",
-     "output_type": "stream",
-     "text": [
-      "/openai/cli.py:tools_register  score=0.651\n",
-      "def tools_register(parser):\n",
-      "    subparsers = parser.add_subparsers(\n",
-      "        title=\"Tools\", help=\"Convenience client side tools\"\n",
-      "    )\n",
-      "\n",
-      "    def help(args):\n",
-      "        parser.print_help()\n",
-      "\n",
-      "    parser.set_defaults(func=help)\n",
-      "\n",
-      "    sub = subparsers.add_parser(\"fine_tunes.prepare_data\")\n",
-      "    sub.add_argument(\n",
-      "        \"-f\",\n",
-      "        \"--file\",\n",
-      "        required=True,\n",
-      "        help=\"JSONL, JSON, CSV, TSV, TXT or XLSX file containing prompt-completion examples to be analyzed.\"\n",
-      "        \"This should be the local file path.\",\n",
-      "    )\n",
-      "    sub.add_argument(\n",
-      "        \"-q\",\n",
-      "----------------------------------------------------------------------\n"
-     ]
-    }
-   ],
-   "source": [
-    "res = search_functions(df, 'Command line interface for fine-tuning', n=1, n_lines=20)"
+    "This code example has moved. You can now find it in the [OpenAI Cookbook](https://github.com/openai/openai-cookbook) at [examples/Code_search.ipynb](https://github.com/openai/openai-cookbook/blob/main/examples/Code_search.ipynb)."
    ]
   }
  ],
  "metadata": {
-  "interpreter": {
-   "hash": "be4b5d5b73a21c599de40d6deb1129796d12dc1cc33a738f7bac13269cfcafe8"
-  },
   "kernelspec": {
-   "display_name": "Python 3.7.3 64-bit ('base': conda)",
+   "display_name": "Python 3.9.9 ('openai')",
+   "language": "python",
    "name": "python3"
   },
   "language_info": {
@@ -387,9 +24,14 @@
    "name": "python",
    "nbconvert_exporter": "python",
    "pygments_lexer": "ipython3",
-   "version": "3.7.3"
+   "version": "3.9.9"
   },
-  "orig_nbformat": 4
+  "orig_nbformat": 4,
+  "vscode": {
+   "interpreter": {
+    "hash": "365536dcbde60510dc9073d6b991cd35db2d9bac356a11f5b64279a5e6708b97"
+   }
+  }
  },
  "nbformat": 4,
  "nbformat_minor": 2
examples/embeddings/dbpedia_samples.jsonl
@@ -1,200 +0,0 @@
-{"text": " Morada Limited is a textile company based in Altham Lancashire. Morada specializes in curtains.", "category": "Company"}
-{"text": " The Armenian Mirror-Spectator is a newspaper published by the Baikar Association in Watertown Massachusetts.", "category": "WrittenWork"}
-{"text": " Mt. Kinka (\u91d1\u83ef\u5c71 Kinka-zan) also known as Kinkazan is located in the heart of the city of Gifu Gifu Prefecture Japan and rises to a height of 329 m (1079 ft). Previously called Mt. Inaba (\u7a32\u8449\u5c71 Inaba-yama) it has long served as the representative symbol of Gifu. It stands along the Nagara River creating bountiful nature within the city. Though it is the most famous mountain in the city Mount Dodo to the north is the tallest.", "category": "NaturalPlace"}
-{"text": " Planning the Play of a Bridge Hand is a book on contract bridge co-written by Canadian teacher and author Barbara Seagram and British author David Bird. It was published by Master Point Press in 2009.The book teaches novice bridge players some basic techniques of declarer play including suit establishment ruffing losers and the finesse.", "category": "WrittenWork"}
-{"text": " Wang Yuanping (born 8 December 1976) is a retired Chinese athlete who specialised in the 800 metres. She won several medals at the regional level.Her personal bests in the event are 2:00.63 seconds outdoors (Jinzhou 2000) and 2:03.41 seconds indoors (Yokohama 2004).", "category": "Athlete"}
-{"text": " The Incorporated VIllage of Westhampton Beach is an incorporated village in the Town of Southampton Suffolk County New York United States. As of the 2010 census the village population was 1721.", "category": "Village"}
-{"text": " Andersons Creek is a creek in Warrandyte and Park Orchards east of Melbourne Victoria Australia. It is a tributary of the Yarra River.", "category": "NaturalPlace"}
-{"text": " The Three Horseshoes is a public house in Drybridge Street in the Overmonnow area of Monmouth Wales. The pub has also been used as an Inn and also known as The Three Horse Shoes Inn. The building has been a Grade II Listed building since 15 August 1974. 19th century 2 storeys roughcast as stone with a hooded doorway", "category": "Building"}
-{"text": " The Brewer's Art is a Baltimore Maryland brewpub and restaurant. Opened on Friday September 13 1996. In 2008 it was named by Esquire magazine as the #1 Best Bar in America.", "category": "Company"}
-{"text": " The P\u00e2r\u00e2ul S\u0103r\u0103\u021bii is a tributary of the Cibin River in Romania.", "category": "NaturalPlace"}
-{"text": " Jean-Fran\u00e7ois Imbernon (born October 17 1951 in Perpignan France is a retired French international rugby union player.He played as a Lock for USA Perpignan. He earned his first cap with the French national team on 7 February 1976 against Ireland at Parc des Princes.", "category": "Athlete"}
-{"text": " Le Cadeau released in Italy as Il regalo is a 1982 French and Italian film. It stars Claudia Cardinale.", "category": "Film"}
-{"text": " Mykola Kanevets (Ukrainian: \u041c\u0438\u043a\u043e\u043b\u0430 \u041a\u0430\u043d\u0456\u0432\u0435\u0446\u044c) is the Artistic Director and Ballet Master of the Cheremosh Ukrainian Dance Company in Edmonton Alberta Canada.A native of Kiev Ukraine Mykola attended the National University of Culture and Performing Arts in Kiev Ukraine where he graduated from the Faculty of Choreography with the distinction of Ballet Master and Choreographer.", "category": "Artist"}
-{"text": " Jenna Rose Swerdlow (born September 28 1998) is an American teenage singer who gained media attention as a pre-teen with her single My Jeans. After the video went viral on YouTube and received 14 million views Swerdlow is considered a semi-viral star.", "category": "Artist"}
-{"text": " The Spice of Life is a smooth jazz studio album by Earl Klugh released in April 2008. The album received a Grammy nomination for Best Pop Instrumental Album at the 51st Grammy Awards in 2009.", "category": "Album"}
-{"text": " Lomatium macrocarpum is a perennial flowering plant in the carrot family known by the common names bigseed lomatium biscuit root or even bigseed biscuitroot. It is native to much of western North America where it can be found in various types of habitat including the grasslands of the Great Plains. It is spreading or erect perennial herb growing up to about half a meter long with hairy gray-green herbage.", "category": "Plant"}
-{"text": " Physena is the sole genus of the flowering plant family Physenaceae. It contains two species of shrubs and small trees which are endemic to Madagascar. The APG II system of 2003 (unchanged from the APG system of 1998) does recognize this family and assigns it to the order Caryophyllales in the clade core eudicots.", "category": "Plant"}
-{"text": " David John Weatherley (born 1 March 1939) is a New Zealander actor known for his roles as Spencer the butler and the voice of Benglo the Fearcat in Power Rangers Operation Overdrive and Barliman Butterbur in The Lord of the Rings: The Fellowship of the Ring.Weatherley was born in London England and moved to Canada for a military career. He eventually moved to New Zealand to engage in a theatre acting career.", "category": "Artist"}
-{"text": " Draba incrassata is an uncommon species of flowering plant in the mustard family known by the common name Sweetwater Mountains draba. It is endemic to California where it is known mainly from the Sweetwater Mountains of Mono County. It grows in alpine rock fields on the barren high mountain peaks. Draba incrassata is a small perennial herb forming mats of thick oval-shaped leaves.", "category": "Plant"}
-{"text": " Pimelea ferruginea is a small shrub native to southwest Western Australia. It was described by Labillardiere in 1805.", "category": "Plant"}
-{"text": " Lindsay Ell is a country music singer songwriter and guitarist from Calgary Alberta.She performed at the South by Southwest music festival held in Austin Texas in March 2009 the welcome reception of the 2009 Juno Awards held in Vancouver British Columbia and was also a featured artist at the 2010 Winter Olympics.", "category": "Artist"}
-{"text": " Scopula fuscata is a moth of the Geometridae family. It is found from south-western Saskatchewan west to British Columbia and south to California and Arizona. The habitat consists of montane areas including foothills.The wingspan is 24-28 mm. The wings and body are light tan sprinkled with darker yellow-brown or grey-brown scales. There is one generation per year with adults on wing in late June and early July in the northern part of the range.", "category": "Animal"}
-{"text": " Oxmoor Center is a Louisville Kentucky shopping mall located at 7900 Shelbyville Road in eastern Louisville.", "category": "Building"}
-{"text": " Ghostquake (also known as Haunted High) is a 2012 American made-for-television horror film produced by Syfy. The film was directed by Jeffrey Lando and written by Paul A. Birkett and Anthony C. Ferrante. The film stars Danny Trejo and MC Gainey. It follows a group of high school students trying to escape the wrath of a few ghastly spirits following an earthquake at their school Holloman High School.", "category": "Film"}
-{"text": " The Masonic Temple in Great Falls Montana is a building from 1914. It was listed on the National Register of Historic Places in 2000.Address is 821 Central Avenue Great Falls Motana 59401 Phone number is 453-9080.Cascade No. 34 meets 2nd and 4th Tuesdays at 7:30pm Sept-June.Euclid No. 58 meets year-round 1st and 3rd Tuesdays at 7:30pm Sept-May 3rd Tuesdays at 7:30pm June-Aug. Delta No. 128 meets 2nd Wednesdays at 7:30pm Sept-June.", "category": "Building"}
-{"text": " Harold Frederick Weaver Hawkins (1893-1977) was an English painter who specialized in ambitious sometimes mural-sized modernist allegories of morality for an age of atomic warfare and global over-population.", "category": "Artist"}
-{"text": " Robert Murray Waddington (24 October 1927 \u2013 15 March 2007) was Dean of Manchester in the last quarter of the 20th century.Born in Bognor Regis on 24 October 1927 he was educated at Dulwich College Selwyn College Cambridge and Ely Theological College. Ordained in 1954 he began his career at St John\u2019s Bethnal Green. Afterwards he was Chaplain at Slade School in Warwick Queensland. He returned to England in 1959 to join the Oratory of the Good Shepherd an order of celibate priests.", "category": "OfficeHolder"}
-{"text": " Jason Gary King (born 13 April 1985 in Maidstone England) is a speedway rider who was formerly the club captain of Newcastle Diamonds in the British Premier League. His brother Daniel is also a speedway rider.", "category": "Athlete"}
-{"text": " The African Queen is a 1951 adventure film adapted from the 1935 novel of the same name by C. S. Forester. The film was directed by John Huston and produced by Sam Spiegel and John Woolf. The screenplay was adapted by James Agee John Huston John Collier and Peter Viertel. It was photographed in Technicolor by Jack Cardiff and had a music score by Allan Gray.", "category": "Film"}
-{"text": " The Fiat Barchetta (Italian pronunciation: [\u02c8fiat bar\u02c8ketta]) (Type 183) is a roadster produced by the Italian manufacturer Fiat from 1995 to 2005 (though production was paused between May 2002 and 2004). Barchetta in Italian means 'little boat'.", "category": "MeanOfTransportation"}
-{"text": " Sardar Vallabhbhai Patel National Memorial is a museum and exhibition centre dedicated to Sardar Vallabhbhai Patel at Moti Shahi Mahal located in Shahibaug Ahmedabad Gujarat. Moti Shahi Mahal was constructed by Mughal emperor Shahjahan between 1618 and 1622. It is surrounded by a garden.", "category": "Building"}
-{"text": " Under Cover 2 is the 5th solo album of Joe Lynn Turner released in 1999. Just like Under Cover the album consists mainly of covers of Turner's favourite artists.", "category": "Album"}
-{"text": " The Atakora River is a tributary of Lake Volta in Ghana it flows about 60 km east to the Lake Volta. Its entire course is in south Ghana.", "category": "NaturalPlace"}
-{"text": " Death from Above is a 2011 horror film by director Bruce Koehler. The film features professional wrestling stars Kurt Angle Sid Eudy James Storm Matt Morgan Terry Gerin and Jessica Kresa.", "category": "Film"}
-{"text": " Portraits of Cuba is an album by Cuban musician Paquito D'Rivera released through Chesky Records in 1996. In 1997 the album won D'Rivera the Grammy Award for Best Latin Jazz Performance.", "category": "Album"}
-{"text": " Jimmy Cross (17 November 1938 - 8 October 1978) was an American radio producer and singer who attained a minor Billboard Hot 100 hit with the novelty song I Want My Baby Back in 1965. He was born in Dothan Alabama[citation needed] and became the producer of the syndicated radio series Country Concert.I Want My Baby Back was originally issued on the Tollie label and reached #92 on the Billboard Hot 100 in February 1965.", "category": "Artist"}
-{"text": " Timothy Floyd Tim Burchett (born August 25 1964) is an American Republican politician currently the mayor of Knox County Tennessee. He previously served in Tennessee General Assembly first in the Tennessee House of Representatives and later in the Tennessee State Senate in which he represented Tennessee's District 7 part of Knox County. On August 5 2010 Burchett was elected mayor of Knox County replacing Mike Ragsdale.", "category": "OfficeHolder"}
-{"text": " Daniel Lawrence Dan Whitney (born February 17 1963) best known by his stage name and character Larry the Cable Guy is an American stand-up comedian actor voice actor and former radio personality.", "category": "Artist"}
-{"text": " Renealmia is a plant genus in the family Zingiberaceae. Species include: Renealmia alpinia Renealmia aurantifera Renealmia cernua Renealmia dolichocalyx Renealmia oligotricha Renealmia sessilifolia Renealmia thrysoidesE.g. Alpinia nutans was formerly placed herein too.", "category": "Plant"}
-{"text": " Jeff Chapman (born July 17 1969 in Brunswick Georgia) is the bass singer for the Kingdom Heirs. He has been a member of the group since 2002. He has previously traveled with Bob Wills The Sound The Anchormen and The Blackwoods.He has twice been nominated as favorite bass in the Singing News fan awards.Chapman has a wife Angie two sons Justin and Sean and daughter Taylor.", "category": "Artist"}
-{"text": " Arenaria ursina is a species of flowering plant in the pink family known by the common name Bear Valley sandwort.", "category": "Plant"}
-{"text": " Living Fossil is a classic science fiction story on the concepts of human extinction and future evolution by L. Sprague de Camp. It was first published in the magazine Astounding Science-Fiction for February 1939. It first appeared in book form in the anthology A Treasury of Science Fiction (Crown Publishers 1948); it later appeared in the anthologies Gates to Tomorrow (Atheneum 1973) and The SFWA Grand Masters Volume 1 (Tor Books 1999).", "category": "WrittenWork"}
-{"text": " Brachyglottis huntii commonly called rautini or Chatham Island Christmas tree is a species in the Asteraceae family and is found only on the Chatham Islands in New Zealand.", "category": "Plant"}
-{"text": " Luktvatnet is a lake that lies in the northern part of the municipality of Vefsn in Nordland county Norway. The lake lies between the mountains Korgfjellet and Lukttinden about 5 kilometres (3.1 mi) south of Elsfjord. The European route E06 highway passes along the northern shore of the lake.", "category": "NaturalPlace"}
-{"text": " The IAR 79 is a bi-engine bomber military reconnaissance aircraft with a wood and metal structure that saw service in World War II built under licence in Brasov Romania by Industria Aeronautic\u0103 Rom\u00e2n\u0103", "category": "MeanOfTransportation"}
-{"text": " Enrico Perucconi (born 4 January 1925 in Morazzone Varese Italy) was an Italian athlete who competed mainly in the 100 metres.", "category": "Athlete"}
-{"text": " Central National-Gottesman Inc. is one of the world's largest distributors of pulp paper paperboard and newsprint. The firm's products are sold in over 75 countries through a network of 43 offices located in the United States and abroad. With annual revenues exceeding $3 billion Forbes ranked Central National-Gottesman 137th in its annual list of The Largest Private Companies.", "category": "Company"}
-{"text": " The Kout Food Group is a Kuwaiti-based conglomerate founded in 1982.In Kuwait it operates franchises of Burger King Pizza Hut and Taco Bell.Its UK arm Kout Food Group Restaurants UK it operates under brands such as Burger King KFC and Maison Blanc. In August 2013 it acquired the Little Chef chain for \u00a315 million.", "category": "Company"}
-{"text": " Fab Five: The Texas Cheerleader Scandal is a Lifetime Television made-for-TV drama film starring Jenna Dewan Ashley Benson and Tatum O'Neal and directed by Tom McLoughlin. The film premiered on August 2 2008. It is based on a true story which occurred at McKinney North High School in McKinney Texas in 2006 in which five teenage cheerleaders became notorious for bullying truancies violations of the school dress code and general disrespect to the school community and authority.", "category": "Film"}
-{"text": " Qadi Mahalleh (Persian: \u0642\u0627\u062f\u064a \u0645\u062d\u0644\u0647\u200e also Romanized as Q\u0101d\u012b Ma\u1e29alleh) is a village in Pazevar Rural District Rudbast District Babolsar County Mazandaran Province Iran. At the 2006 census its population was 228 in 59 families.", "category": "Village"}
-{"text": " Eungella Dam is one of Queensland's more established freshwater fisheries. Eungella has made a name for producing extra oversized Sooty grunter and more recently Barramundi.Eungella Dam was constructed in 1969 to meet the requirements of a thermal power station at Collinsville and the town water requirement of Collinsville and Scottsville.", "category": "NaturalPlace"}
-{"text": " The American Motor Car Company was a short-lived company in the automotive industry founded in 1906 lasting until 1913. It was based in Indianapolis Indiana United States. The American Motor Car Company pioneered the underslung design.", "category": "Company"}
-{"text": " Hawkeye & Mockingbird was a comic book ongoing series published by Marvel Comics starring superheroes Hawkeye and Mockingbird.", "category": "WrittenWork"}
-{"text": " Margaret Anderson Kelliher (born March 11 1968) is a Minnesota politician and a former member of the Minnesota House of Representatives. A member of the Minnesota Democratic\u2013Farmer\u2013Labor Party she represented District 60A which includes portions of the city of Minneapolis in Hennepin County located in the Twin Cities metropolitan area. First elected in 1999 she served until 2011 also serving as the Speaker from 2007 to 2011.", "category": "OfficeHolder"}
-{"text": " John Whitlow Wyatt (September 27 1907 \u2013 July 16 1999) was a professional baseball pitcher. He played all or part of sixteen seasons in Major League Baseball for the Detroit Tigers (1929\u201333) Chicago White Sox (1933\u201336) Cleveland Indians (1937) Brooklyn Dodgers (1939\u201344) and Philadelphia Phillies (1945). While injuries sidetracked much of Wyatt's early career he is most famous for his performance in 1941 when his team (the Dodgers) won the National League pennant.", "category": "Athlete"}
-{"text": " William Thomas Burton (31 January 1878 in Black Rock St Michael Barbados \u2013 22 August 1946 St Michael Barbados) was a coloured West Indian cricketer best known as a member of the 1900 and 1906 West Indian tourists to England. He is generally known as Tommie Burton.He was the son of a black mother and a white father. He was brought up in Barbados and served for some years there as a practice bowler and in trial matches.", "category": "Athlete"}
-{"text": " Tulemalu Lake is a lake in Kivalliq Region Nunavut Canada.", "category": "NaturalPlace"}
-{"text": " Sten Stjernqvist is a Swedish former footballer who played as a forward.", "category": "Athlete"}
-{"text": " David Parlett (born 1939) is a games scholar from South London who has studied both card games and board games. His published works include many popular books on games and the more academic volumes The Oxford Guide to Card Games and The Oxford History of Board Games both now out of print. Parlett also invented a number of board games the most successful of which is Hare and Tortoise (1974). The German edition was awarded Spiel des Jahres (Game of the Year) in 1979.", "category": "Artist"}
-{"text": " Karl Nabersberg (sometimes written as Carl Nabersberg) was a German youth leader.Nabersberg was the son of a Crefeld shopkeeper. In 1923 he joined the Jugendorganisation the forerunner of the Hitler Youth in his home town. On 28 December 1925 he was admitted as a member of the National Socialist German Workers' Party (member number 26269) and as a member of the Sturmabteilung.", "category": "OfficeHolder"}
-{"text": " \u0160etonje is a village situated in Petrovac na Mlavi municipality in Serbia.", "category": "Village"}
-{"text": " Dr. Joseph de Graft-Johnson (1933\u20131999) was an engineer academic and politician. He became the Vice-President of Ghana between 1979 and 1981.", "category": "OfficeHolder"}
-{"text": " Patties Foods (previously Patties Bakery) is an Australian food manufacturing company that produces meat pies baked goods frozen fruits and pre-made desserts. Headquartered in Bairnsdale Victoria Australia Patties Foods is represented in the Australian market by the Four'N Twenty Patties Herbert Adams Creative Gourmet Nanna's and Chefs Pride brands. Patties is the largest meat pie producing company in Australia and the world.", "category": "Company"}
-{"text": " Double Butte is the 2579-foot (786 m) mountain summit distinguished by two buttes (the other at abou 2480 feet or 756 metres) in Riverside County California. It is the western most summit of a mountain range north of Winchester California east of Perris Valley and west of the San Jacinto Valley. The eastern ridge is composed primarily of metamorphic rock of the Triassic - Jurassic French Valley formation.", "category": "NaturalPlace"}
-{"text": " Mount Carmel \u2013 Blytheswood Public School is an elementary school in the north end of Leamington Ontario Canada. It is part of the Greater Essex County District School Board and serves students from JK to Grade 8 from the communities of Blytheswood and Mount Carmel and surrounding areas.", "category": "EducationalInstitution"}
-{"text": " La combi asesina (The Killer Combination) is a 1982 Mexican film. It was directed by Gustavo Alatriste.", "category": "Film"}
-{"text": " Halimium ocymoides (basil-leaved rock rose) syn. Cistus algarvensis is a species of flowering plant in the family Cistaceae native to southern Portugal and southern Spain. It is an erect evergreen shrub growing to 60 cm (24 in) tall by 100 cm (3 ft) wide with woolly grey-green leaves and bright yellow flowers in spring. The flowers may have a dark brown blotch at the base of each petal.In cultivation this plant requires a sandy soil and full sun.", "category": "Plant"}
-{"text": " Kaala Patthar (English: Black Stone) is a 1979 Indian Bollywood action/drama film. It was produced and directed by Yash Chopra. The story was written by Salim-Javed. This film is the fourth collaboration between Amitabh Bachchan Shashi Kapoor and director Yash Chopra after the hugely successful Deewaar (1975) Kabhie Kabhie (1976) and Trishul (1978). However this film did average business at the box office. It was nominated for Filmfare awards.", "category": "Film"}
-{"text": " Martin G.S. Mansergh (born 31 December 1946) is a former Irish Fianna F\u00e1il politician and historian. He was a Teachta D\u00e1la (TD) for the Tipperary South constituency from 2007 until 2011. He was previously a Senator from 2002 to 2007. He played a leading role in formulating Fianna F\u00e1il policy on Northern Ireland.", "category": "OfficeHolder"}
-{"text": " Shriniwas Ganesh Sardesai (1907-1996) popularly known as S.G. Sardesai was an Indian freedom fighter from Maharashtra and one of the great communist leaders produced by the communist movement in India. He is author of the book Progress and conservatism in ancient India famous for his profound theoretical analysis. He was the Central Executive Committee of pre-split Communist Party of India during the Indo-china conflict.", "category": "OfficeHolder"}
-{"text": " USS Tuluran (AG-46) \u2013 also known as USS Lake Superior (ID-2995) \u2013 was a commercial cargo ship acquired by the U.S. Navy for service during both World War I when she was known as USS Lake Superior and also during World War II when she was known as USS Tuluran.", "category": "MeanOfTransportation"}
-{"text": " The American Journal of Gastroenterology is a peer-reviewed medical journal published for the American College of Gastroenterology by the Nature Publishing Group.", "category": "WrittenWork"}
-{"text": " William Lindsay (September 4 1835 \u2013 October 15 1909) was a Democratic U.S. Senator from Kentucky from 1893 to 1901.Born near Lexington Virginia Lindsay attended the common schools and settled in Clinton Kentucky in 1854. There he taught school and studied law. He was admitted to the bar and commenced practice in Clinton in 1858.", "category": "OfficeHolder"}
-{"text": " Brian Schroeder (a.k.a. Pushead) is an artist record label owner and writer within the hardcore punk and heavy metal field. He has created artwork for many bands artists and athletes including Metallica The Misfits Dr. Dre Travis Barker Craig Johnson and Kool Keith. He has designed many record covers T-shirts skateboards and a pair of Nike SB Dunks. His record label Pusmort Records has released albums by Negative Gain Poison Idea and Final Conflict.", "category": "Artist"}
-{"text": " Panicum anceps is a species of grass known by the common name beaked panicgrass. It is native to the southeastern United States where it occurs as far north as New Jersey and as far west as Kansas and Texas.This species is a rhizomatous perennial grass with stems growing up to 1.3 meters tall. The leaves have erect blades up to half a meter tall. The inflorescence is a panicle up to 40 centimeters long bearing pale green or yellowish spikelets. The grass produces an abundance of seed.", "category": "Plant"}
-{"text": " Shukan ST is a weekly newspaper published by The Japan Times for learners of English language. It is originally titled as Student Times but changed to Shukan ST since a significant portion of its readers are not students. It has articles on news movie lifestyle in English-speaking countries opinions and other kinds attracting learners of English and helping them with notes on terms.", "category": "Company"}
-{"text": " The Tiger Hotel is a hotel in Columbia Missouri. Built as a hotel in 1928 the building later housed a retirement home and banquet center. In 2012 the building was fully restored and reopened as a boutique hotel. It was listed on the National Register of Historic Places in 1980.", "category": "Building"}
-{"text": " Emi Motoi (\u672c\u4e95 \u3048\u307f Motoi Emi born October 11 in Kanagawa) is a Japanese voice actress.", "category": "Artist"}
-{"text": " The Hudson River is a 49.5-mile-long (79.7 km) tributary of the Broad River in the U.S. state of Georgia. Via the Broad River it is part of the Savannah River watershed.The headwaters are in Banks County near the city of Homer. Grove Creek feeds into the Hudson near the Franklin County line. The river then constitutes most of the southern border of Franklin County separating it from Madison County.", "category": "NaturalPlace"}
-{"text": " This article details Car Nos. 10\u201313 of the Manx Electric Railway on the Isle of Man.This was the third batch of motorcars delivered to the railway in 1895 at the same time as the cars for the new Snaefell Mountain Railway were delivered. They were constructed to a very similar design to those provided for the mountain line.", "category": "MeanOfTransportation"}
-{"text": " Catharanthus roseus commonly known as the Madagascar rosy periwinkle is a species of Catharanthus native and endemic to Madagascar. Other English names occasionally used include Cape periwinkle rose periwinkle rosy periwinkle and old-maid.", "category": "Plant"}
-{"text": " Thapanzeik is a village in Homalin Township Hkamti District in the Sagaing Region of northwestern Burma.", "category": "Village"}
-{"text": " USS Spiegel Grove (LSD-32) was a Thomaston-class dock landing ship of the United States Navy. She was named for Spiegel Grove the home and estate in Fremont Ohio of Rutherford B. Hayes the 19th President of the United States.", "category": "MeanOfTransportation"}
-{"text": " Acmella is a genus of thirty species of plants in the aster family Asteraceae. It is native to the Americas and has been introduced to Asia Africa the Pacific islands and Australia.One familiar species is Acmella oleracea which has been widely cultivated for centuries. It is used for food and medicine and as an insecticide and an ornamental plant.", "category": "Plant"}
-{"text": " Mirbelia is a plant genus belonging to the Fabaceae family. It is endemic to Australia occurring in every mainland state except South Australia.", "category": "Plant"}
-{"text": " Nigma puella is a species of spider belonging to the family Dictynidae. It is found in Europe Azores Madeira Canary Islands and parts of North Africa.Like most members of the family this is a small spider but the female is striking with a light green abdomen marked with a bold maroon blotch and a variable amount of barring in the same colour. The male is reddish-brown. This species makes a horizontal web over the top surface of a leaf.", "category": "Animal"}
-{"text": " The Madrisa (or Madrisahorn) is a mountain in the R\u00e4tikon mountain range overlooking Klosters in the Swiss canton of Graub\u00fcnden. Its summit (2826 metres) is located near the Austrian border.The Madrisa is constituted by several secondary summits notably the Gargeller Madrisa (2770 metres) overlooking Gargellen in Austria.Ski lifts up to 2600 metres are located on the Klosters side.", "category": "NaturalPlace"}
-{"text": " Temporary Temple is a live album by Psychic TV. The album was recorded on July 28 1984 in London and released on 12 vinyl. It was later coupled with another concert and released on CD as Temporary Temple & Atonal.", "category": "Album"}
-{"text": " La hija de Juan Sim\u00f3n (Juan Sim\u00f3n's Daughter) is a musical play by Nemesio M. Sobrevila which has been made into two Spanish films. It is also the name of the title track and the song has been recorded by numerous artists such as Leonardo Favio.The first film directed by Jos\u00e9 Luis S\u00e1enz de Heredia was released in 1935 and starred Angelillo Pilar Mu\u00f1oz and Manuel Arb\u00f3. Luis Bu\u00f1uel was the executive producer for Film\u00f3fono and had a small role as an actor.", "category": "Film"}
-{"text": " Book Of Matches is a poetry book written by Simon Armitage first published in 1993 by Faber and Faber. Several poems featured in the book are studied as part of the GCSE English Literature examination in the UK.The book is written in three sections the first (Book of Matches) containing 30 short sonnets. Each is meant to be read within 20 seconds the amount of time it would take for a match to be lit and burn out.", "category": "WrittenWork"}
-{"text": " The Last Supper is the fourth album released by American stand-up comedian Jim Gaffigan. It focuses largely on his love of food.", "category": "Album"}
-{"text": " The Miami Center is a skyscraper in downtown Miami Florida. Although Miami Center is not the city's tallest building it is a symbol of early downtown. Built in 1983 it is older compared with most of the taller buildings in Miami which have been built in the last decade. In addition the Miami Center is immediately adjacent to Bayfront Park and is unobstructed when looking at the skyline from Miami Beach to the east. The building is 484 ft (148 m) tall and has 34 floors.", "category": "Building"}
-{"text": " Duboisia hopwoodii is a shrub native to the arid interior region of Australia. Common names include pituri pitchuri thornapple or pitcheri. It has an erect habit usually growing to between 1 and 3 metres in height and has long narrow leaves. Flowers are white and bell-shaped with violet-striped throats. These appear between June and November in the species native range followed by purple-black rounded berries which are 3 to 6 mm in diameter.", "category": "Plant"}
-{"text": " Jelenin svet (Jelena's World) is a 2008 independent documentary film written and directed by Tanja Brzakovi\u0107 about former World No. 1 female tennis player Jelena Jankovi\u0107.", "category": "Film"}
-{"text": " Jay Cashman Inc. is an American heavy-construction company based in Quincy Massachusetts with satellite offices in Boston Jupiter Florida and Staten Island New York. As of 2006 the company has about 1000 employees. The company was one of the major contractors on the Boston's Central Artery/Tunnel Project. In 2004 Jay Cashman Inc.", "category": "Company"}
-{"text": " Hashemanli (Persian: \u0647\u0627\u0634\u0645\u0646\u0644\u064a\u200e also Romanized as H\u0101shemanl\u012b; also known as H\u0101shem El\u00e1) is a village in Jafarbay-ye Jonubi Rural District in the Central District of Torkaman County Golestan Province Iran. At the 2006 census its population was 135 in 27 families.", "category": "Village"}
-{"text": " Rani Kasula Rangamma is a Telugu film starring Chiranjeevi.", "category": "Film"}
-{"text": " The 20/20 Experience \u2013 The Complete Experience is a compilation album by American singer-songwriter Justin Timberlake. It was released on September 27 2013 by RCA Records.", "category": "Album"}
-{"text": " R.C. Bigelow Inc better known as the Bigelow Tea Company is an American tea company based in Fairfield Connecticut. The company was founded by Ruth C. Bigelow in the late 1940s based on a recipe she marketed as Constant Comment tea. Bigelow is still a 100% family-owned business that markets over 50 varieties of tea including black and green as well as herbal teas all of which are still blended in Fairfield. They also own America's only tea plantation in Charleston South Carolina.", "category": "Company"}
-{"text": " Thomas Eyre(fl. 1890s) was a footballer who made 65 appearances in the Football League playing for Lincoln City. He played at left back. Either side of Lincoln he played for Ashfield and Hamilton Academical in Scotland.", "category": "Athlete"}
-{"text": " Malleable Iron Range Company was a company that existed from 1896 to 1985 and primarily produced kitchen ranges made of malleable iron but also produced a variety of other related products. The company's primary trademark was 'Monarch' and was colloquially often referred to as the Monarch Company or just Monarch.", "category": "Company"}
-{"text": " The Chiltern School is a coeducational special school located over two sites in Dunstable and Houghton Regis in Bedfordshire England. The school accepts pupils from all over the Central Bedfordshire area.The school was formed in 2012 from the merger of Glenwood School in Dunstable and Hillcrest School in Houghton Regis.", "category": "EducationalInstitution"}
-{"text": " Kim Dae-Eun (born September 17 1984) is a South Korean gymnast. He is the 2004 Olympic All-around silver medalist. He won the gold medal on the parallel bars at the 2007 World Artistic Gymnastics Championships.Kim was part of the South Korean team that won the bronze medal in the team event at the 2006 Asian Games.", "category": "Athlete"}
-{"text": " Arayik Vladimirovich Harutyunyan (Armenian: \u0531\u0580\u0561\u0575\u056b\u056f \u0540\u0561\u0580\u0578\u0582\u0569\u0575\u0578\u0582\u0576\u0575\u0561\u0576 Russian: \u0410\u0440\u0430\u0438\u043a \u0410\u0440\u0443\u0442\u044e\u043d\u044f\u043d) (born 14 December 1973) is the current Prime Minister of the Nagorno-Karabakh Republic. He was suggested by the President of Nagorno-Karabakh Bako Sahakyan and was unanimously approved by the Parliament of Karabakh on 14 September 2007 by 32 out of 32 present parliamentarians.", "category": "OfficeHolder"}
-{"text": " Shelton Hank Williams also known as Hank Williams III and Hank 3 (born December 12 1972) is an American musician singer and multi-instrumentalist including guitar bass drums banjo and vocals. In addition to his honky tonk recordings Williams' style alternates between country punk and metal.", "category": "Artist"}
-{"text": " Helicella orzai is a species of air-breathing land snails terrestrial pulmonate gastropod mollusks in the family Hygromiidae the hairy snails and their allies. This species is endemic to Spain.", "category": "Animal"}
-{"text": " Gro\u00dfe Schmalenau is a river of North Rhine-Westphalia Germany.", "category": "NaturalPlace"}
-{"text": " The Tupolev ANT-29 (military designation DIP \u2013 Dvukhmotorny istrebitel pushechny twin-engined cannon fighter) was a 1930s twin-engined cannon-armed fighter designed by Alexander Arkhangelsky and built by Tupolev.Design work started in 1932 on a twin-engined aircraft capable of carrying two APK-100 cannons. The resulting design was the ANT-29 and it first flew in February 1935. A monoplane with a tall and narrow fuselage and powered by two Hispano-Suiza 12Ybrs engines.", "category": "MeanOfTransportation"}
-{"text": " Charles Corm (1894-1963) was a Lebanese writer businessman and philanthropist. He is considered to be the leader of the Phoenicianism movement in Lebanon which ignited a surge of nationalism that led to Lebanon's independence. In a country torn by sectarian conflicts Corm's intention was to find a common root shared by all Lebanese beyond their religious beliefs (the Phoenicians were pagans).", "category": "Artist"}
-{"text": " Joseph Hubert Ruetz (October 21 1916 \u2013 January 2 2003) was a professional football player in the All-America Football Conference for the Chicago Rockets in 1946 and 1948. Prior to that he played at the collegiate level while attending the University of Notre Dame. He played guard for the Irish with the exception of playing one season at quarterback. In 1938 he graduated from Notre Dame with cum laude honors.", "category": "Athlete"}
-{"text": " The Reef House is a historic house located at 411 S. Poplar St. in Carbondale Illinois. William A. Reef built the house for his family circa 1892. The Queen Anne-style cottage may have been designed by local carpenter A. M. Etherton though records of its designer do not exist. The house features fishscale shingle siding on its second floor and clapboard siding on its first; the clapboard siding is adorned with stickwork.", "category": "Building"}
-{"text": " MAKO Surgical Corp. (Stryker Medical) is a publicly traded medical device company based in Florida. On September 25 2013 the Board of Directors of Mako Surgical accepted a deal to merge with Stryker Medical for $1.65B subject to shareholder approval.", "category": "Company"}
-{"text": " Pop Carn is a 2003 Indian Tamil film written and directed by actor-cum-director Nassar and starring Mohanlal and Simran Bagga in lead roles and introducing newcomers Kunal Shah and Jyothi Nawal. The film which had music scored by Yuvan Shankar Raja was released on 30 January 2003 but flopped at the box office. Nonetheless the film was dubbed into Malayalam and released in 2007 under the same name.", "category": "Film"}
-{"text": " USNS Mount Baker (T-AE-34) is the seventh of eight Kilauea-class ammunition ships to serve with the Military Sealift Command. She is the second U.S. Navy ship to bear the name and is named for Mount Baker a 10781-foot volcano in the Cascade Range of Washington. Ammunition ships operated by Military Sealift Command provide logistic support to US Navy ships at sea.Mount Baker was built by Ingalls Shipbuilding Pascagoula Mississippi.", "category": "MeanOfTransportation"}
-{"text": " Dansere is an album by Jan Garbarek. The album was recorded in November 1975 and features the Bobo Stenson Quartet.", "category": "Album"}
-{"text": " Divraz (Persian: \u062f\u064a\u0648\u0631\u0632\u200e also Romanized as D\u012bvraz) is a village in Bala Khiyaban-e Litkuh Rural District in the Central District of Amol County Mazandaran Province Iran. At the 2006 census its population was 393 in 95 families.", "category": "Village"}
-{"text": " The D\u0103ih\u0103\u021ba\u0219u River is a tributary of the Dumbr\u0103vanu River in Romania.", "category": "NaturalPlace"}
-{"text": " Zeisters also known as Fat Guy Goes Nutzoid is a 1986 comedy film produced by Troma Entertainment. Troma was originally set to title the film Fat Boy Goes Nutzoid but at the request of the lawyers of the hip-hop group The Fat Boys it was changed to Fat Guy.", "category": "Film"}
-{"text": " Paul Gobeil (born March 1 1942 in Saint-R\u00e9mi-de-Tingwick Quebec) is a former Canadian politician and businessman.From 1985 to 1989 Mr. Gobeil was a Liberal member of the National Assembly for the riding of Verdun and served as Minister assigned to Administration President of the Treasury Board and as Minister of International Affairs for the Government of Quebec.", "category": "OfficeHolder"}
-{"text": " Ruff Ryders: Past Present Future is the fifth compilation album from American hip hop record label Ruff Ryders Entertainment released on November 21 2011.", "category": "Album"}
-{"text": " Ridi Viharaya (Sinhala: \u0dbb\u0dd2\u0daf\u0dd3 \u0dc0\u0dd2\u0dc4\u0dcf\u0dbb\u0dba) or Silver Temple is a 2nd-century BCE Theravada Buddhist temple in the village of Ridigama Sri Lanka. Built during the reign of Dutthagamani of Anuradhapura the temple is considered as the place where the silver ore which provided silver to complete Ruwanwelisaya; one of the largest stupa in Sri Lanka was discovered.", "category": "Building"}
-{"text": " Grand Canyon Preparatory Academy is a public charter college preparatory school in Tempe Arizona.", "category": "EducationalInstitution"}
-{"text": " Aricoceras is an extinct genus of the Adrianitidae family. They are an extinct group of ammonoid which are shelled cephalopods related to squids belemnites octopuses and cuttlefish and more distantly to the nautiloids.", "category": "Animal"}
-{"text": " Blackburn High School is a public secondary school for girls and boys in years 7 to 12 in Blackburn a suburb of Melbourne Victoria Australia. Blackburn High School is an outstanding secondary school for aspiring young men and women. It aims to educate tomorrow's minds today. Started in 1956 the school has a proud tradition of academic excellence and exceptional music achievement.The school is nationally recognised as a leading educational institution for music education.", "category": "EducationalInstitution"}
-{"text": " Chris Nieratko (born February 19 1976) is an American humorist and author. Nieratko is a past editor of Big Brother Magazine and currently reviews pornographic films for Vice magazine as well as being the author of the related Skinema book. He also appeared on MTV's Jackass.", "category": "Artist"}
-{"text": " Warlock is a 1959 film released by Twentieth Century Fox and shot in DeLuxe Color and CinemaScope. It is a Western adapted from the novel by Oakley Hall (screenplay written by Robert Alan Aurthur).", "category": "Film"}
-{"text": " Sieniawa [\u0255e\u02c8\u0272ava] is a village in the administrative district of Gmina Raba Wy\u017cna within Nowy Targ County Lesser Poland Voivodeship in southern Poland. It lies approximately 5 kilometres (3 mi) south-east of Raba Wy\u017cna 10 km (6 mi) north-west of Nowy Targ and 59 km (37 mi) south of the regional capital Krak\u00f3w.The village has a population of 1900.", "category": "Village"}
-{"text": " Michael Adam (born 9 December 1984) is a German politician. He has been District Administrator (Landrat) of Regen since 2011.", "category": "OfficeHolder"}
-{"text": " Thunderbird High School is a public high school located in northwestern Phoenix Arizona. The school is a part of the Glendale Union High School District.", "category": "EducationalInstitution"}
-{"text": " Nayef Al Khater (born May 10 1978) is a Qatari football player. He currently plays for Al Wakrah as a defender.", "category": "Athlete"}
-{"text": " Black Cobra Woman (Italian: Eva nera) also known as Black Cobra is an Italian 1976 exploitation movie written and directed by Joe D'Amato.", "category": "Film"}
-{"text": " Joe Cuba a.k.a Sonny (April 22 1931 \u2013 February 15 2009) was a musician of Puerto Rican descent who was known as the Father of Latin Boogaloo.", "category": "Artist"}
-{"text": " Jacob LeBlanc (born February 2 1981 in Auburn California) is an American retired professional soccer player.", "category": "Athlete"}
-{"text": " Kevin B. Kamenetz is the 12th and current County Executive of Baltimore County Maryland serving since 2010. He is a member of the Democratic Party. He previously served as a four-term County Councilman representing the Second District of Baltimore County.", "category": "OfficeHolder"}
-{"text": " Thomas Frederick Fred Peart Baron Peart PC (30 April 1914 \u2013 26 August 1988) was a British Labour politician who served in the Labour governments of the 1960s and 1970s and was a candidate for Deputy Leader of the Party.", "category": "OfficeHolder"}
-{"text": " Grand Lake is a large lake in the interior of Newfoundland of the Canadian province of Newfoundland and Labrador. It has an area of 534 km\u00b2 making it the largest lake on Newfoundland. Consequently it is one of if not the deepest.", "category": "NaturalPlace"}
-{"text": " A Colossal Failure of Common Sense: The Inside Story of the Collapse of Lehman Brothers is a 2009 non-fiction book written by Lawrence G. McDonald and Patrick Robinson which chronicles the events surrounding the bankruptcy of Lehman Brothers in the context of the financial crisis of 2007\u20132010 and the subprime mortgage crisis.", "category": "WrittenWork"}
-{"text": " Thatching (31 May 1975 \u2013 1999) was an Irish Thoroughbred racehorse and sire. The horse's early career was delayed and disrupted by injury and he did not show his best form until switched to sprinting distances in the spring of 1979 when he won the Duke of York Stakes. He improved further when equipped with blinkers that summer recording impressive victories in both the Cork and Orrery Stakes and the July Cup.", "category": "Animal"}
-{"text": " Ya\u015far Kurt (Armenian: \u0545\u0561\u0577\u0561\u0580 \u053f\u0578\u0582\u0580\u0569 b.August 16 1968 in Istanbul Turkey) is a Turkish-Armenian rock artist.", "category": "Artist"}
-{"text": " Then and Now is a historical novel by W. Somerset Maugham. Set in Florence Italy during the Renaissance the story focuses on three months in the life of Niccolo Machiavelli the Florentine politician diplomat philosopher and writer in the early years of the 16th century. The book was first published by Heinemann in 1946.", "category": "WrittenWork"}
-{"text": " Abdollah Masud-e Sofla (Persian: \u0639\u0628\u062f\u0627\u0644\u0647 \u0645\u0633\u0639\u0648\u062f\u0633\u0641\u0644\u064a\u200e also Romanized as \u2018Abdoll\u0101h Mas\u2018\u016bd-e Sofl\u00e1; also known as Abdollah Mas\u2019ood \u2018Abdoll\u0101h Mas\u2018\u016bd and Abdull\u0101h Mas\u016bd) is a village in Hesar-e Valiyeasr Rural District Avaj District Buin Zahra County Qazvin Province Iran. At the 2006 census its population was 72 in 15 families.", "category": "Village"}
-{"text": " Springhill High School (SHS) is a secondary school in Springhill Nova Scotia Canada. SHS is part of the Chignecto-Central Regional School Board and is the only high school in the town of Springhill. The school is home to many sports teams and clubs. These include: basketball soccer badminton track and field softball Students Against Destructive Decisions drama club homework club and book club.", "category": "EducationalInstitution"}
-{"text": " Charniele L. Herring (/\u0283\u0251r\u02c8n\u025bl \u02c8h\u025br\u026a\u014b/ shar-NEL HERR-ing; born September 25 1969) is an American politician. She has served in the Virginia House of Delegates since 2009 representing the 46th district made up the city of Alexandria and part of Fairfax County near Washington D.C. Herring is a member of the Democratic Party. She has been the House minority whip since 2012 and in December 2012 she was the first African-American to be elected chair of the Democratic Party of Virginia.", "category": "OfficeHolder"}
-{"text": " Symmoca dodecatella is a moth of the Symmocidae family. It is found in Portugal and Spain.The wingspan is about 18\u201319 mm. The forewings are grey sprinkled with black mainly along the margin. The hindwings are grey.", "category": "Animal"}
-{"text": " Ali Abbasov Mammad oglu (Azerbaijani: \u018fli Abbasov M\u0259mm\u0259d o\u011flu) (born 1953 in Azerbaijan) is the current Minister of Communications and Information Technologies of the Republic of Azerbaijan.", "category": "OfficeHolder"}
-{"text": " Worlds Beyond was an American digest magazine of science fiction and fantasy fiction in 1950 and 1951. The magazine only issued three monthly issues from December 1950 to February 1951 but is notable for having printed stories by Cyril M. Kornbluth Jack Vance Mack Reynolds Graham Greene John Christopher Lester del Rey Judith Merril and others.Worlds Beyond was published by Hillman Periodicals and was edited by Damon Knight.", "category": "Company"}
-{"text": " The Daily News Journal commonly abbreviated to DNJ is a newspaper serving Murfreesboro Tennessee Rutherford County and surrounding communities. Published in Murfreesboro it serves as the primary local newspaper with competition from The Murfreesboro Post and other publications. The newspaper is not in competition with The Tennessean of Nashville as both are owned by Gannett Company.The roots the DNJ date back to 1849 and the founding of Murfreesboro News.", "category": "WrittenWork"}
-{"text": " Echinocereus fendleri is a species of cactus known by the common names pinkflower hedgehog cactus and Fendler's hedgehog cactus. It grows in deserts and woodlands in the Southwestern United States and Northeastern Mexico. It is most common in New Mexico.The taxonomy of the species is uncertain with authors recognizing up to eight varieties.", "category": "Plant"}
-{"text": " Michael F. Kitt Snr (13 September 1914 \u2013 24 December 1974) was an Irish Fianna F\u00e1il politician and long-serving Teachta D\u00e1la (TD).He was elected to D\u00e1il \u00c9ireann for the first time at the 1948 general election for the Galway North constituency but lost his seat at the 1951 general election and failed to be elected again at the 1954 general election.", "category": "OfficeHolder"}
-{"text": " Epidendrum mancum is an epiphytic orchid that grows in the tropical low elfin cloud forests of Ecuador and Amazonas Peru at altitudes of 2\u20143 km .", "category": "Plant"}
-{"text": " Salempur Masanda is a village in Jalandhar District near the Jalandhar Cantonment in Punjab India.", "category": "Village"}
-{"text": " Yaleh Gonbad (Persian: \u064a\u0644\u0647 \u06af\u0646\u0628\u062f\u200e; also known as Em\u0101mz\u0101deh Imamzade-Ele-Geumbez and Im\u0101mz\u0101deh) is a village in Ilat-e Qaqazan-e Gharbi Rural District Kuhin District Qazvin County Qazvin Province Iran. At the 2006 census its population was 429 in 105 families.", "category": "Village"}
-{"text": " Popeyes Louisiana Kitchen is an American chain of fried chicken fast food restaurants founded in 1972 in New Orleans Louisiana. Often referred to as Popeyes and sometimes as Popeyes Chicken & Biscuits or Popeyes Chicken & Seafood[citation needed] it was acquired by Sandy Springs Georgia-based AFC Enterprises originally America's Favorite Chicken Company in 1993.", "category": "Company"}
-{"text": " The White Umfolozi River originates just south of Vryheid KwaZulu-Natal South Africa and joins the Black Umfolozi River at 28\u00b020\u203258\u2033S 31\u00b058\u203246\u2033E to form the Umfolozi River before it flows east towards the Indian Ocean.", "category": "NaturalPlace"}
-{"text": " The Albatros L 74 was a two-seated German training biplane produced by Albatros Flugzeugwerke. Only two were produced.", "category": "MeanOfTransportation"}
-{"text": " The University of Nevada School of Medicine is an academic division of the University of Nevada Reno and grants the Doctor of Medicine (MD) degree. The School of Medicine was founded in 1969 as the first medical school in the state of Nevada. More than 1500 MDs have graduated from the School of Medicine. The pre-clinical campus is located in Reno but the third and fourth years can be spent in hospitals and clinics throughout Nevada.", "category": "EducationalInstitution"}
-{"text": " Leon Kroll (December 6 1884 \u2013 October 25 1974) was an American painter and lithographer. Known as a figurative artist Life Magazine described him as the dean of U.S. nude painters yet he was an exceptional landscape painter and also produced an exceptional body of still life compositions.Born into a musical family on lower Second Avenue in New York City Kroll's father was a violinist and his cousin was William Kroll.", "category": "Artist"}
-{"text": " Michael E. DeBakey High School for Health Professions at Qatar (DHSHP@Q in short) is a private international middle and secondary school in Doha Qatar. The school is a branch campus of Michael E. DeBakey High School for Health Professions of Houston Texas United States. Charlesetta Deason is the CEO and President.Named after Michael E. DeBakey the school opened in September 2008 with grades 8 through 10 with 100 students per grade; the school will ultimately cover grades 7-12.", "category": "EducationalInstitution"}
-{"text": " The Richleighs of Tantamount is a children\u2019s historical novel written by British author Barbara Willard. It was originally published in the United Kingdom in 1966 by the publishers Constable before being published in the United States by Harcourt Brace & World in June 1967. C. Walter Hodges drew the line illustrations and painted the cover portrait for the original edition.", "category": "WrittenWork"}
-{"text": " Ennea is a genus of air-breathing land snails terrestrial pulmonate gastropod mollusks in the family Streptaxidae.Ennea is the type genus of the subfamily Enneinae.", "category": "Animal"}
-{"text": " Come Live with Me is a 1941 American romantic comedy film produced and directed by Clarence Brown and starring James Stewart and Hedy Lamarr. Based on a story by Virginia Van Upp the film is about a beautiful Viennese refugee seeking United States citizenship who arranges a marriage of convenience with a struggling writer.", "category": "Film"}
-{"text": " St. Thomas Episcopal Church is a parish church in the Episcopal Diocese of Iowa. The church is located in Sioux City Iowa United States at 1200 Douglas Street. The church building is listed on the National Register of Historic Places.", "category": "Building"}
-{"text": " Nuno Daniel Costeira Valente (born 22 November 1991 in Ada\u00fafe - Braga ) is a Portuguese footballer who plays for Vizela on loan from S.C. Braga as a midfielder.", "category": "Athlete"}
-{"text": " Jaagoo (Bengali: \u099c\u09be\u0997\u09cb) is a Bangladeshi sports based romantic Movies. Its writer and director Khijir Hayat Khan. Adnan Karim sponsored youth football game built this film was released in 2010. The film is produced by Sharjeel Karim and Adnan Karim and directed by Khijir Hayat Khan who has written the story screenplay and dialogues of the film. The film features Ferdous Ahmed and Afsana Ara Bindu in lead roles and with supporting Arefin Shuvo Tariq Anam Ronok Hasaan and many more.", "category": "Film"}
-{"text": " John Edward Hatton AO (born 29 May 1933) is former Australian politician and an National Trust of Australia nominated Australian Living Treasure. He was the independent member of the Legislative Assembly of the New South Wales parliament for the seat of South Coast from 1973 to 1995. Notably the allegations about police corruption Hatton raised in Parliament resulted in the Wood Royal Commission. He is currently a social activist in his local community.", "category": "OfficeHolder"}
-{"text": " Trichoptilus subtilis is a moth of the Pterophoridae family that is known from South Africa.", "category": "Animal"}
-{"text": " Sin\u00e9ad Madden (born in Galway Ireland) is an Irish singer-songwriter and fiddle player best known as a member of the Moya Brennan band. She also teaches at Waltons New School of Music in Dublin.", "category": "Artist"}
-{"text": " Philip Sprint is a German footballer who currently plays for Hertha BSC.Sprint made his professional debut for Hertha BSC on 12 August 2012 in a 2. Bundesliga match against FSV Frankfurt coming on in the 50th minute for Marvin Knoll after starting goalkeeper Sascha Burchert had been sent off.", "category": "Athlete"}
-{"text": " River Roads Mall was an enclosed shopping mall located in the city of Jennings a suburb of St. Louis Missouri United States. Opened in 1962 as one of the nation's first shopping malls the mall declined in the 1990s becoming a dead mall and eventually being shuttered in 1995. Demolition of the long-vacant mall began in 2006.", "category": "Building"}
-{"text": " The Brown-patched Kangaroo lizard (Otocryptis wiegmanni) also called Wiegmann's Agama or Sri Lankan Kangaroo Lizard is a small ground dwelling agamid lizard endemic to the wet zone forests and lower mountain forests (up to 1300 metres) of Sri Lanka. It is commonly seen in the leaf litter of shady rain forests. When perceiving danger it spurts away quickly on its large hind legs and might eventually climb up a sapling or tree.", "category": "Animal"}
-{"text": " Shiho Kawaragi (\u6cb3\u539f\u6728 \u5fd7\u7a42 Kawaragi Shiho born April 29 1976 in Tokyo) is a Japanese voice actress who works for Kenyu-Office. When voicing adult games and hentai OVAs she is also known as Kaname Yuzuki (\u67da\u6728\u304b\u306a\u3081 Yuzuki Kaname) She is currently married since March 2012.", "category": "Artist"}
-{"text": " Down in the Shacks Where the Satellite Dishes Grow is the second album by the Judybats released in 1992.", "category": "Album"}
-{"text": " Turn of Faith is a 2001 film directed by Charles Jarrott. It stars Ray Mancini and Mia Sara.", "category": "Film"}
-{"text": " Frederick William Seward (July 8 1830 \u2013 April 25 1915) was the Assistant Secretary of State during the American Civil War serving in Abraham Lincoln's administration as well as under Andrew Johnson during Reconstruction and for over two years under Rutherford B. Hayes.", "category": "OfficeHolder"}
-{"text": " Ivoprop Corporation founded in 1984 by Ivo Zdarsky is an American manufacturer of composite propellers for homebuilt and ultralight aircraft as well as airboats. The company headquarters is located in Bellflower California.Zdarsky started the company after carving his own propeller for a homebuilt ultralight trike that he flew from Cold War Czechoslovakia over the Iron Curtain to Vienna in 1984.", "category": "Company"}
-{"text": " Wave Broadband is a provider of residential business and enterprise class cable TV broadband internet and telephone services on the West Coast currently serving about 400000 customers within communities in western Washington state Oregon Sacramento California and the San Francisco Bay Area. Wave Broadband provides services via their fiber-optic network and uses Northwest Open Access Network as the backbone for most of their service areas in Washington.", "category": "Company"}
-{"text": " Andie Tong is a comic book artist known for his work on books such as Spectacular Spider-Man UK The Batman Strikes! and Tangent: Superman's Reign.", "category": "Artist"}
-{"text": " Merdani is a village in the municipality of Busova\u010da Bosnia and Herzegovina.", "category": "Village"}
-{"text": " Kamam (Persian: \u0643\u0627\u0645\u0645\u200e also Romanized as K\u0101mam) is a village in Mangur-e Sharqi Rural District Khalifan District Mahabad County West Azerbaijan Province Iran. At the 2006 census its population was 98 in 16 families.", "category": "Village"}
-{"text": " Ficus greiffiana is a species of plant in the Moraceae family. It is found in Argentina Brazil Colombia and Guyana.", "category": "Plant"}
-{"text": " Toni Amboaje is a Spanish singer who currently works for metal band Sauze which formed on early 2008.", "category": "Artist"}
-{"text": " Mount Whittier is a mountain in Carroll County New Hampshire in the northern Ossipee Mountains. Named after John Greenleaf Whittier the peak is not to be confused with nearby Nickerson Mountain which was once known as Mount Whittier.There are no hiking trails on Mount Whittier. There was once a CCC alpine ski trail on the northern face.", "category": "NaturalPlace"}
-{"text": " El Rompe Discoteka: The Mix Album is a 2007 album by Hector El Father.", "category": "Album"}
-{"text": " e-Spirit is a commercial software company that develops and markets the FirstSpirit CMS Web content management system. The company was founded in 1999 in Dortmund Germany and established a US presence in 2011. The company's FirstSpirit CMS is a Java-based offering now in its fifth major release.[citation needed]", "category": "Company"}
-{"text": " The Valley is the first novel by Barry Pilton published in 2005 by Bloomsbury. It is a humorous account of the effect of outsiders on the rural status quo in a fictional mid-Wales valley during the 1980s and is being adapted for television.", "category": "WrittenWork"}
-{"text": " Sema Group plc was an Anglo-French IT services company. It was listed on the London Stock Exchange and was a constituent of the FTSE 100 Index but was acquired by Schlumberger in 2001.", "category": "Company"}
-{"text": " Bent Hansen (born 1954) is a retired Danish ice hockey forward. He played for 18 years in Denmark for the R\u00f8dovre SIK and KSF. He also competed for the Danish national team. His son Jannik Hansen also played for the R\u00f8dovre team and was drafted into the NHL by the Vancouver Canucks in 2004. During his hockey career Hansen also worked as a carpenter.", "category": "Athlete"}
-{"text": " Behind the Sun is a 2004 album by Dive.", "category": "Album"}
-{"text": " Mungaru Male (English: Pre Monsoon Rain) is a 2006 Kannada language movie directed by Yograj Bhat and produced by E Krishnappa. The film stars Ganesh Pooja Gandhi Anant Nag Padmaja Rao in lead roles.", "category": "Film"}
-{"text": " Megachile perihirta commonly known as the Western leafcutting bee is a bee in the genus Megachile. The bee is native to western North America ranging from Nebraska to Texas and Mexico west to California and north to British Columbia and Alberta and often inhabits meadows and orchards. The bee is black with long whitish-yellow hair more so below the thorax and abdomen. The abdomen however is mostly bare although each segment has scattered whitish hair.", "category": "Animal"}
-{"text": " Sukeban Deka The Movie (\u30b9\u30b1\u30d0\u30f3\u5211\u4e8b) is a live action Japanese film that was released in 1987. The movie closely follows a TV and manga series Sukeban Deka written and illustrated by Shinji Wada. The movie stars Yoko Minamino and Yui Asaka who were also in the TV series. The movie was followed by Sukeban Deka II in 1988.", "category": "Film"}
-{"text": " The Maple School District is a public school district in Douglas County Wisconsin United States based in Maple Wisconsin.", "category": "EducationalInstitution"}
-{"text": " Mount Waverley Secondary College is a public secondary school located in the Melbourne suburb of Mount Waverley. The school consists of roughly 1900 students and is one of the largest in the state.The school consists of two campuses (Junior & Senior) both situated on Stephensons Road in Mount Waverley. The Junior site holds years 7 and 8 with year levels 9 to 12 at the Senior Campus. The campuses are a short walking distance apart.", "category": "EducationalInstitution"}
-{"text": " Jon-Paul Roger JP Pietersen (born 12 July 1986 in Stellenbosch South Africa) is a South African rugby union footballer. He generally plays fullback or wing for the Sharks (in the Super Rugby competition) and the Natal Sharks in the Currie Cup. He played in more than 50 tests for the Springboks.", "category": "Athlete"}
-{"text": " Deltocolpodes is a genus of beetles in the family Carabidae containing the following species: Deltocolpodes brendelli Morvan 1992 Deltocolpodes championi Morvan 1992 Deltocolpodes duluchus Morvan 1992 Deltocolpodes heinigeri Morvan 1992 Deltocolpodes jalepensis Morvan 1992 Deltocolpodes kirschenhoferi Morvan 1992 Deltocolpodes nepalensis Morvan 1992 Deltocolpodes perreaui Deuve 1985 Deltocolpodes rectangulus Morvan 1992 Deltocolpodes rolex Morvan 1992 Deltocolpodes salpensis Deuve 1985 Deltocolpodes sikkimensis Morvan 1992\u2191", "category": "Animal"}
-{"text": " Stanhopea martiana is a species of orchid endemic to southwestern Mexico.", "category": "Plant"}
-{"text": " Yawarmayu (Quechua yawar blood mayu river blood river hispanicized spelling Yahuarmayo) is a river in Peru located in the Puno Region Carabaya Province Ayapata District. It originates near the border of the districts Ayapata and Coasa. Its direction is mainly to the northwest where it meets Inambari River as a right affluent. The confluence is north of the village Yawarmayu (Yahuarmayo).", "category": "NaturalPlace"}
-{"text": " The Charles Granke House at 406 S. Seventh St. in Hamilton Montana is a historic house that was built in 1906. It includes Colonial Revival and Queen Anne architecture. It was listed on the National Register of Historic Places in 1988. The listing included two contributing buildings.It was built in approximately 1906 by the Anaconda Copper Mining Company as a worker cottage for workers at the sawmill that operated in Hamilton until 1915. Charles W.", "category": "Building"}
-{"text": " Passiflora monadelpha is a species of plant in the Passifloraceae family. It is endemic to Ecuador.", "category": "Plant"}
-{"text": " Mangifera persiciformis or Peach Mango is a species of plant in the Anacardiaceae family. It is endemic to China.", "category": "Plant"}
examples/embeddings/Get_embeddings.ipynb
@@ -4,88 +4,14 @@
    "cell_type": "markdown",
    "metadata": {},
    "source": [
-    "## Get embeddings\n",
-    "\n",
-    "The function `get_embedding` will give us an embedding for an input text."
-   ]
-  },
-  {
-   "cell_type": "code",
-   "execution_count": 1,
-   "metadata": {},
-   "outputs": [
-    {
-     "data": {
-      "text/plain": [
-       "12288"
-      ]
-     },
-     "execution_count": 1,
-     "metadata": {},
-     "output_type": "execute_result"
-    }
-   ],
-   "source": [
-    "import openai\n",
-    "\n",
-    "embedding = openai.Embedding.create(input=\"Sample document text goes here\", engine=\"text-similarity-davinci-001\")['data'][0]['embedding']\n",
-    "len(embedding)"
-   ]
-  },
-  {
-   "cell_type": "code",
-   "execution_count": 2,
-   "metadata": {},
-   "outputs": [
-    {
-     "name": "stdout",
-     "output_type": "stream",
-     "text": [
-      "1024\n"
-     ]
-    }
-   ],
-   "source": [
-    "import openai\n",
-    "from tenacity import retry, wait_random_exponential, stop_after_attempt\n",
-    "\n",
-    "@retry(wait=wait_random_exponential(min=1, max=20), stop=stop_after_attempt(6))\n",
-    "def get_embedding(text: str, engine=\"text-similarity-davinci-001\") -> List[float]:\n",
-    "\n",
-    "    # replace newlines, which can negatively affect performance.\n",
-    "    text = text.replace(\"\\n\", \" \")\n",
-    "\n",
-    "    return openai.Embedding.create(input=[text], engine=engine)[\"data\"][0][\"embedding\"]\n",
-    "\n",
-    "embedding = get_embedding(\"Sample query text goes here\", engine=\"text-search-ada-query-001\")\n",
-    "print(len(embedding))"
-   ]
-  },
-  {
-   "cell_type": "code",
-   "execution_count": 53,
-   "metadata": {},
-   "outputs": [
-    {
-     "name": "stdout",
-     "output_type": "stream",
-     "text": [
-      "1024\n"
-     ]
-    }
-   ],
-   "source": [
-    "embedding = get_embedding(\"Sample document text goes here\", engine=\"text-search-ada-doc-001\")\n",
-    "print(len(embedding))"
+    "This code example has moved. You can now find it in the [OpenAI Cookbook](https://github.com/openai/openai-cookbook) at [examples/Get_embeddings.ipynb](https://github.com/openai/openai-cookbook/blob/main/examples/Get_embeddings.ipynb)."
    ]
   }
  ],
  "metadata": {
-  "interpreter": {
-   "hash": "be4b5d5b73a21c599de40d6deb1129796d12dc1cc33a738f7bac13269cfcafe8"
-  },
   "kernelspec": {
-   "display_name": "Python 3.7.3 64-bit ('base': conda)",
+   "display_name": "Python 3.9.9 ('openai')",
+   "language": "python",
    "name": "python3"
   },
   "language_info": {
@@ -98,9 +24,14 @@
    "name": "python",
    "nbconvert_exporter": "python",
    "pygments_lexer": "ipython3",
-   "version": "3.7.3"
+   "version": "3.9.9"
   },
-  "orig_nbformat": 4
+  "orig_nbformat": 4,
+  "vscode": {
+   "interpreter": {
+    "hash": "365536dcbde60510dc9073d6b991cd35db2d9bac356a11f5b64279a5e6708b97"
+   }
+  }
  },
  "nbformat": 4,
  "nbformat_minor": 2
examples/embeddings/Obtain_dataset.ipynb
@@ -4,173 +4,14 @@
    "cell_type": "markdown",
    "metadata": {},
    "source": [
-    "## 1. Load the dataset\n",
-    "\n",
-    "The dataset used in this example is [fine-food reviews](https://www.kaggle.com/snap/amazon-fine-food-reviews) from Amazon. The dataset contains a total of 568,454 food reviews Amazon users left up to October 2012. We will use a subset of this dataset, consisting of 1,000 most recent reviews for illustration purposes. The reviews are in English and tend to be positive or negative. Each review has a ProductId, UserId, Score, review title (Summary) and review body (Text).\n",
-    "\n",
-    "We will combine the review summary and review text into a single combined text. The model will encode this combined text and it will output a single vector embedding."
-   ]
-  },
-  {
-   "cell_type": "code",
-   "execution_count": 1,
-   "metadata": {},
-   "outputs": [
-    {
-     "data": {
-      "text/html": [
-       "<div>\n",
-       "<style scoped>\n",
-       "    .dataframe tbody tr th:only-of-type {\n",
-       "        vertical-align: middle;\n",
-       "    }\n",
-       "\n",
-       "    .dataframe tbody tr th {\n",
-       "        vertical-align: top;\n",
-       "    }\n",
-       "\n",
-       "    .dataframe thead th {\n",
-       "        text-align: right;\n",
-       "    }\n",
-       "</style>\n",
-       "<table border=\"1\" class=\"dataframe\">\n",
-       "  <thead>\n",
-       "    <tr style=\"text-align: right;\">\n",
-       "      <th></th>\n",
-       "      <th>Time</th>\n",
-       "      <th>ProductId</th>\n",
-       "      <th>UserId</th>\n",
-       "      <th>Score</th>\n",
-       "      <th>Summary</th>\n",
-       "      <th>Text</th>\n",
-       "      <th>combined</th>\n",
-       "    </tr>\n",
-       "    <tr>\n",
-       "      <th>Id</th>\n",
-       "      <th></th>\n",
-       "      <th></th>\n",
-       "      <th></th>\n",
-       "      <th></th>\n",
-       "      <th></th>\n",
-       "      <th></th>\n",
-       "      <th></th>\n",
-       "    </tr>\n",
-       "  </thead>\n",
-       "  <tbody>\n",
-       "    <tr>\n",
-       "      <th>1</th>\n",
-       "      <td>1303862400</td>\n",
-       "      <td>B001E4KFG0</td>\n",
-       "      <td>A3SGXH7AUHU8GW</td>\n",
-       "      <td>5</td>\n",
-       "      <td>Good Quality Dog Food</td>\n",
-       "      <td>I have bought several of the Vitality canned d...</td>\n",
-       "      <td>Title: Good Quality Dog Food; Content: I have ...</td>\n",
-       "    </tr>\n",
-       "    <tr>\n",
-       "      <th>2</th>\n",
-       "      <td>1346976000</td>\n",
-       "      <td>B00813GRG4</td>\n",
-       "      <td>A1D87F6ZCVE5NK</td>\n",
-       "      <td>1</td>\n",
-       "      <td>Not as Advertised</td>\n",
-       "      <td>Product arrived labeled as Jumbo Salted Peanut...</td>\n",
-       "      <td>Title: Not as Advertised; Content: Product arr...</td>\n",
-       "    </tr>\n",
-       "  </tbody>\n",
-       "</table>\n",
-       "</div>"
-      ],
-      "text/plain": [
-       "          Time   ProductId          UserId  Score                Summary  \\\n",
-       "Id                                                                         \n",
-       "1   1303862400  B001E4KFG0  A3SGXH7AUHU8GW      5  Good Quality Dog Food   \n",
-       "2   1346976000  B00813GRG4  A1D87F6ZCVE5NK      1      Not as Advertised   \n",
-       "\n",
-       "                                                 Text  \\\n",
-       "Id                                                      \n",
-       "1   I have bought several of the Vitality canned d...   \n",
-       "2   Product arrived labeled as Jumbo Salted Peanut...   \n",
-       "\n",
-       "                                             combined  \n",
-       "Id                                                     \n",
-       "1   Title: Good Quality Dog Food; Content: I have ...  \n",
-       "2   Title: Not as Advertised; Content: Product arr...  "
-      ]
-     },
-     "execution_count": 1,
-     "metadata": {},
-     "output_type": "execute_result"
-    }
-   ],
-   "source": [
-    "import pandas as pd\n",
-    "\n",
-    "df = pd.read_csv('input/Reviews.csv', index_col=0)\n",
-    "df = df[['Time', 'ProductId', 'UserId', 'Score', 'Summary', 'Text']]\n",
-    "df = df.dropna()\n",
-    "df['combined'] = \"Title: \" + df.Summary.str.strip() + \"; Content: \" + df.Text.str.strip()\n",
-    "df.head(2)"
-   ]
-  },
-  {
-   "cell_type": "code",
-   "execution_count": 2,
-   "metadata": {},
-   "outputs": [
-    {
-     "data": {
-      "text/plain": [
-       "1000"
-      ]
-     },
-     "execution_count": 2,
-     "metadata": {},
-     "output_type": "execute_result"
-    }
-   ],
-   "source": [
-    "# subsample to 1k most recent reviews and remove samples that are too long\n",
-    "df = df.sort_values('Time').tail(1_100)\n",
-    "df.drop('Time', axis=1, inplace=True)\n",
-    "\n",
-    "from transformers import GPT2TokenizerFast\n",
-    "tokenizer = GPT2TokenizerFast.from_pretrained(\"gpt2\")\n",
-    "\n",
-    "# remove reviews that are too long\n",
-    "df['n_tokens'] = df.combined.apply(lambda x: len(tokenizer.encode(x)))\n",
-    "df = df[df.n_tokens<2000].tail(1_000)\n",
-    "len(df)"
-   ]
-  },
-  {
-   "cell_type": "markdown",
-   "metadata": {},
-   "source": [
-    "### 2. Get embeddings and save them for future reuse"
-   ]
-  },
-  {
-   "cell_type": "code",
-   "execution_count": 3,
-   "metadata": {},
-   "outputs": [],
-   "source": [
-    "from openai.embeddings_utils import get_embedding\n",
-    "\n",
-    "# This will take just under 10 minutes\n",
-    "df['babbage_similarity'] = df.combined.apply(lambda x: get_embedding(x, engine='text-similarity-babbage-001'))\n",
-    "df['babbage_search'] = df.combined.apply(lambda x: get_embedding(x, engine='text-search-babbage-doc-001'))\n",
-    "df.to_csv('output/embedded_1k_reviews.csv')"
+    "This code example has moved. You can now find it in the [OpenAI Cookbook](https://github.com/openai/openai-cookbook) at [examples/Obtain_dataset.ipynb](https://github.com/openai/openai-cookbook/blob/main/examples/Obtain_dataset.ipynb)."
    ]
   }
  ],
  "metadata": {
-  "interpreter": {
-   "hash": "be4b5d5b73a21c599de40d6deb1129796d12dc1cc33a738f7bac13269cfcafe8"
-  },
   "kernelspec": {
-   "display_name": "Python 3.7.3 64-bit ('base': conda)",
+   "display_name": "Python 3.9.9 ('openai')",
+   "language": "python",
    "name": "python3"
   },
   "language_info": {
@@ -185,7 +26,12 @@
    "pygments_lexer": "ipython3",
    "version": "3.9.9"
   },
-  "orig_nbformat": 4
+  "orig_nbformat": 4,
+  "vscode": {
+   "interpreter": {
+    "hash": "365536dcbde60510dc9073d6b991cd35db2d9bac356a11f5b64279a5e6708b97"
+   }
+  }
  },
  "nbformat": 4,
  "nbformat_minor": 2
examples/embeddings/Recommendation.ipynb
@@ -4,33417 +4,7 @@
    "cell_type": "markdown",
    "metadata": {},
    "source": [
-    "# Recommendation using embeddings and nearest neighbor search\n",
-    "\n",
-    "Recommendations are widespread across the web.\n",
-    "\n",
-    "- 'Bought that item? Try these similar items.'\n",
-    "- 'Enjoy that book? Try these similar titles.'\n",
-    "- 'Not the help page you were looking for? Try these similar pages.'\n",
-    "\n",
-    "This notebook demonstrates how to use embeddings to find similar items to recommend. In particular, we use [AG's corpus of news articles](http://groups.di.unipi.it/~gulli/AG_corpus_of_news_articles.html) as our dataset.\n",
-    "\n",
-    "Our model will answer the question: given an article, what are the articles most similar to it?"
-   ]
-  },
-  {
-   "cell_type": "markdown",
-   "metadata": {},
-   "source": [
-    "### 1. Imports\n",
-    "\n",
-    "First, let's import the packages and functions we'll need for later. If you don't have these, you'll need to install them. You can install them via your terminal by running `pip install {package_name}`, e.g. `pip install pandas`."
-   ]
-  },
-  {
-   "cell_type": "code",
-   "execution_count": 1,
-   "metadata": {},
-   "outputs": [],
-   "source": [
-    "# imports\n",
-    "from typing import List\n",
-    "\n",
-    "import pandas as pd\n",
-    "import pickle\n",
-    "\n",
-    "from openai.embeddings_utils import (\n",
-    "    get_embedding,\n",
-    "    distances_from_embeddings,\n",
-    "    tsne_components_from_embeddings,\n",
-    "    chart_from_components,\n",
-    "    indices_of_nearest_neighbors_from_distances,\n",
-    ")"
-   ]
-  },
-  {
-   "cell_type": "markdown",
-   "metadata": {},
-   "source": [
-    "### 2. Load data\n",
-    "\n",
-    "Next, let's load the AG news data and see what it looks like."
-   ]
-  },
-  {
-   "cell_type": "code",
-   "execution_count": 2,
-   "metadata": {},
-   "outputs": [
-    {
-     "data": {
-      "text/html": [
-       "<div>\n",
-       "<style scoped>\n",
-       "    .dataframe tbody tr th:only-of-type {\n",
-       "        vertical-align: middle;\n",
-       "    }\n",
-       "\n",
-       "    .dataframe tbody tr th {\n",
-       "        vertical-align: top;\n",
-       "    }\n",
-       "\n",
-       "    .dataframe thead th {\n",
-       "        text-align: right;\n",
-       "    }\n",
-       "</style>\n",
-       "<table border=\"1\" class=\"dataframe\">\n",
-       "  <thead>\n",
-       "    <tr style=\"text-align: right;\">\n",
-       "      <th></th>\n",
-       "      <th>title</th>\n",
-       "      <th>description</th>\n",
-       "      <th>label_int</th>\n",
-       "      <th>label</th>\n",
-       "    </tr>\n",
-       "  </thead>\n",
-       "  <tbody>\n",
-       "    <tr>\n",
-       "      <th>0</th>\n",
-       "      <td>World Briefings</td>\n",
-       "      <td>BRITAIN: BLAIR WARNS OF CLIMATE THREAT Prime M...</td>\n",
-       "      <td>1</td>\n",
-       "      <td>World</td>\n",
-       "    </tr>\n",
-       "    <tr>\n",
-       "      <th>1</th>\n",
-       "      <td>Nvidia Puts a Firewall on a Motherboard (PC Wo...</td>\n",
-       "      <td>PC World - Upcoming chip set will include buil...</td>\n",
-       "      <td>4</td>\n",
-       "      <td>Sci/Tech</td>\n",
-       "    </tr>\n",
-       "    <tr>\n",
-       "      <th>2</th>\n",
-       "      <td>Olympic joy in Greek, Chinese press</td>\n",
-       "      <td>Newspapers in Greece reflect a mixture of exhi...</td>\n",
-       "      <td>2</td>\n",
-       "      <td>Sports</td>\n",
-       "    </tr>\n",
-       "    <tr>\n",
-       "      <th>3</th>\n",
-       "      <td>U2 Can iPod with Pictures</td>\n",
-       "      <td>SAN JOSE, Calif. -- Apple Computer (Quote, Cha...</td>\n",
-       "      <td>4</td>\n",
-       "      <td>Sci/Tech</td>\n",
-       "    </tr>\n",
-       "    <tr>\n",
-       "      <th>4</th>\n",
-       "      <td>The Dream Factory</td>\n",
-       "      <td>Any product, any shape, any size -- manufactur...</td>\n",
-       "      <td>4</td>\n",
-       "      <td>Sci/Tech</td>\n",
-       "    </tr>\n",
-       "  </tbody>\n",
-       "</table>\n",
-       "</div>"
-      ],
-      "text/plain": [
-       "                                               title  \\\n",
-       "0                                    World Briefings   \n",
-       "1  Nvidia Puts a Firewall on a Motherboard (PC Wo...   \n",
-       "2                Olympic joy in Greek, Chinese press   \n",
-       "3                          U2 Can iPod with Pictures   \n",
-       "4                                  The Dream Factory   \n",
-       "\n",
-       "                                         description  label_int     label  \n",
-       "0  BRITAIN: BLAIR WARNS OF CLIMATE THREAT Prime M...          1     World  \n",
-       "1  PC World - Upcoming chip set will include buil...          4  Sci/Tech  \n",
-       "2  Newspapers in Greece reflect a mixture of exhi...          2    Sports  \n",
-       "3  SAN JOSE, Calif. -- Apple Computer (Quote, Cha...          4  Sci/Tech  \n",
-       "4  Any product, any shape, any size -- manufactur...          4  Sci/Tech  "
-      ]
-     },
-     "execution_count": 2,
-     "metadata": {},
-     "output_type": "execute_result"
-    }
-   ],
-   "source": [
-    "# load data\n",
-    "dataset_path = \"https://cdn.openai.com/API/examples/data/AG_news_samples.csv\"\n",
-    "df = pd.read_csv(dataset_path)\n",
-    "\n",
-    "# print dataframe\n",
-    "n_examples = 5\n",
-    "df.head(n_examples)"
-   ]
-  },
-  {
-   "cell_type": "markdown",
-   "metadata": {},
-   "source": [
-    "Let's take a look at those same examples, but not truncated by ellipses."
-   ]
-  },
-  {
-   "cell_type": "code",
-   "execution_count": 3,
-   "metadata": {},
-   "outputs": [
-    {
-     "name": "stdout",
-     "output_type": "stream",
-     "text": [
-      "\n",
-      "Title: World Briefings\n",
-      "Description: BRITAIN: BLAIR WARNS OF CLIMATE THREAT Prime Minister Tony Blair urged the international community to consider global warming a dire threat and agree on a plan of action to curb the  quot;alarming quot; growth of greenhouse gases.\n",
-      "Label: World\n",
-      "\n",
-      "Title: Nvidia Puts a Firewall on a Motherboard (PC World)\n",
-      "Description: PC World - Upcoming chip set will include built-in security features for your PC.\n",
-      "Label: Sci/Tech\n",
-      "\n",
-      "Title: Olympic joy in Greek, Chinese press\n",
-      "Description: Newspapers in Greece reflect a mixture of exhilaration that the Athens Olympics proved successful, and relief that they passed off without any major setback.\n",
-      "Label: Sports\n",
-      "\n",
-      "Title: U2 Can iPod with Pictures\n",
-      "Description: SAN JOSE, Calif. -- Apple Computer (Quote, Chart) unveiled a batch of new iPods, iTunes software and promos designed to keep it atop the heap of digital music players.\n",
-      "Label: Sci/Tech\n",
-      "\n",
-      "Title: The Dream Factory\n",
-      "Description: Any product, any shape, any size -- manufactured on your desktop! The future is the fabricator. By Bruce Sterling from Wired magazine.\n",
-      "Label: Sci/Tech\n"
-     ]
-    }
-   ],
-   "source": [
-    "# print the title, description, and label of each example\n",
-    "for idx, row in df.head(n_examples).iterrows():\n",
-    "    print(\"\")\n",
-    "    print(f\"Title: {row['title']}\")\n",
-    "    print(f\"Description: {row['description']}\")\n",
-    "    print(f\"Label: {row['label']}\")"
-   ]
-  },
-  {
-   "cell_type": "markdown",
-   "metadata": {},
-   "source": [
-    "### 3. Build cache to save embeddings\n",
-    "\n",
-    "Before getting embeddings for these articles, let's set up a cache to save the embeddings we generate. In general, it's a good idea to save your embeddings so you can re-use them later. If you don't save them, you'll pay again each time you compute them again.\n",
-    "\n",
-    "To save you the expense of computing the embeddings needed for this demo, we've provided a pre-filled cache via the URL below. The cache is a dictionary that maps tuples of `(text, engine)` to a `list of floats` embedding. The cache is saved as a Python pickle file."
-   ]
-  },
-  {
-   "cell_type": "code",
-   "execution_count": 4,
-   "metadata": {},
-   "outputs": [],
-   "source": [
-    "# establish a cache of embeddings to avoid recomputing\n",
-    "# cache is a dict of tuples (text, engine) -> embedding, saved as a pickle file\n",
-    "\n",
-    "# set path to embedding cache\n",
-    "embedding_cache_path_to_load = \"https://cdn.openai.com/API/examples/data/example_embeddings_cache.pkl\"\n",
-    "embedding_cache_path_to_save = \"example_embeddings_cache.pkl\"\n",
-    "\n",
-    "# load the cache if it exists, and save a copy to disk\n",
-    "try:\n",
-    "    embedding_cache = pd.read_pickle(embedding_cache_path_to_load)\n",
-    "except FileNotFoundError:\n",
-    "    embedding_cache = {}\n",
-    "with open(embedding_cache_path_to_save, \"wb\") as embedding_cache_file:\n",
-    "    pickle.dump(embedding_cache, embedding_cache_file)\n",
-    "\n",
-    "# define a function to retrieve embeddings from the cache if present, and otherwise request via the API\n",
-    "def embedding_from_string(\n",
-    "    string: str,\n",
-    "    engine: str = \"text-similarity-babbage-001\",\n",
-    "    embedding_cache=embedding_cache\n",
-    ") -> List:\n",
-    "    \"\"\"Return embedding of given string, using a cache to avoid recomputing.\"\"\"\n",
-    "    if (string, engine) not in embedding_cache.keys():\n",
-    "        embedding_cache[(string, engine)] = get_embedding(string, engine)\n",
-    "        print('NOT FOUND')\n",
-    "        with open(embedding_cache_path_to_save, \"wb\") as embedding_cache_file:\n",
-    "            pickle.dump(embedding_cache, embedding_cache_file)\n",
-    "    return embedding_cache[(string, engine)]"
-   ]
-  },
-  {
-   "cell_type": "markdown",
-   "metadata": {},
-   "source": [
-    "Let's check that it works by getting an embedding."
-   ]
-  },
-  {
-   "cell_type": "code",
-   "execution_count": 5,
-   "metadata": {},
-   "outputs": [
-    {
-     "name": "stdout",
-     "output_type": "stream",
-     "text": [
-      "\n",
-      "Example string: BRITAIN: BLAIR WARNS OF CLIMATE THREAT Prime Minister Tony Blair urged the international community to consider global warming a dire threat and agree on a plan of action to curb the  quot;alarming quot; growth of greenhouse gases.\n",
-      "\n",
-      "Example embedding: [-0.029093433171510696, 0.007570988964289427, -0.011933144181966782, -0.016499919816851616, 0.026675179600715637, -0.016704540699720383, -0.019439026713371277, 0.015421006828546524, -0.009700911119580269, -0.02580088935792446]...\n"
-     ]
-    }
-   ],
-   "source": [
-    "# as an example, take the first description from the dataset\n",
-    "example_string = df[\"description\"].values[0]\n",
-    "print(f\"\\nExample string: {example_string}\")\n",
-    "\n",
-    "# print the first 10 dimensions of the embedding\n",
-    "example_embedding = embedding_from_string(example_string, engine=\"text-similarity-babbage-001\")\n",
-    "print(f\"\\nExample embedding: {example_embedding[:10]}...\")"
-   ]
-  },
-  {
-   "cell_type": "markdown",
-   "metadata": {},
-   "source": [
-    "### 4. Recommend similar articles based on embeddings\n",
-    "\n",
-    "To find similar articles, let's follow a three-step plan:\n",
-    "1. Get the similarity embeddings of all the article descriptions\n",
-    "2. Calculate the distance between a source title and all other articles\n",
-    "3. Print out the other articles closest to the source title"
-   ]
-  },
-  {
-   "cell_type": "code",
-   "execution_count": 6,
-   "metadata": {},
-   "outputs": [],
-   "source": [
-    "def print_recommendations_from_strings(\n",
-    "    strings: List[str],\n",
-    "    index_of_source_string: int,\n",
-    "    k_nearest_neighbors: int = 1,\n",
-    "    engine=\"text-similarity-babbage-001\",\n",
-    ") -> List[int]:\n",
-    "    \"\"\"Print out the k nearest neighbors of a given string.\"\"\"\n",
-    "    # get embeddings for all strings\n",
-    "    embeddings = [embedding_from_string(string, engine=engine) for string in strings]\n",
-    "    # get the embedding of the source string\n",
-    "    query_embedding = embeddings[index_of_source_string]\n",
-    "    # get distances between the source embedding and other embeddings (function from embeddings_utils.py)\n",
-    "    distances = distances_from_embeddings(query_embedding, embeddings, distance_metric=\"cosine\")\n",
-    "    # get indices of nearest neighbors (function from embeddings_utils.py)\n",
-    "    indices_of_nearest_neighbors = indices_of_nearest_neighbors_from_distances(distances)\n",
-    "\n",
-    "    # print out source string\n",
-    "    query_string = strings[index_of_source_string]\n",
-    "    print(f\"Source string: {query_string}\")\n",
-    "    # print out its k nearest neighbors\n",
-    "    k_counter = 0\n",
-    "    for i in indices_of_nearest_neighbors:\n",
-    "        # skip any strings that are identical matches to the starting string\n",
-    "        if query_string == strings[i]:\n",
-    "            continue\n",
-    "        # stop after printing out k articles\n",
-    "        if k_counter >= k_nearest_neighbors:\n",
-    "            break\n",
-    "        k_counter += 1\n",
-    "\n",
-    "        # print out the similar strings and their distances\n",
-    "        print(\n",
-    "            f\"\"\"\n",
-    "        --- Recommendation #{k_counter} (nearest neighbor {k_counter} of {k_nearest_neighbors}) ---\n",
-    "        String: {strings[i]}\n",
-    "        Distance: {distances[i]:0.3f}\"\"\"\n",
-    "        )\n",
-    "\n",
-    "    return indices_of_nearest_neighbors"
-   ]
-  },
-  {
-   "cell_type": "markdown",
-   "metadata": {},
-   "source": [
-    "### 5. Example recommendations\n",
-    "\n",
-    "Let's look for articles similar to first one, which was about Tony Blair."
-   ]
-  },
-  {
-   "cell_type": "code",
-   "execution_count": 7,
-   "metadata": {},
-   "outputs": [
-    {
-     "name": "stdout",
-     "output_type": "stream",
-     "text": [
-      "Source string: BRITAIN: BLAIR WARNS OF CLIMATE THREAT Prime Minister Tony Blair urged the international community to consider global warming a dire threat and agree on a plan of action to curb the  quot;alarming quot; growth of greenhouse gases.\n",
-      "\n",
-      "        --- Recommendation #1 (nearest neighbor 1 of 5) ---\n",
-      "        String: THE re-election of British Prime Minister Tony Blair would be seen as an endorsement of the military action in Iraq, Prime Minister John Howard said today.\n",
-      "        Distance: 0.164\n",
-      "\n",
-      "        --- Recommendation #2 (nearest neighbor 2 of 5) ---\n",
-      "        String: Israel is prepared to back a Middle East conference convened by Tony Blair early next year despite having expressed fears that the British plans were over-ambitious and designed \n",
-      "        Distance: 0.169\n",
-      "\n",
-      "        --- Recommendation #3 (nearest neighbor 3 of 5) ---\n",
-      "        String:  WASHINGTON (Reuters) - President Bush on Friday set a  four-year goal of seeing a Palestinian state established and he  and British Prime Minister Tony Blair vowed to mobilize  international support to help make it happen now that Yasser  Arafat is dead.\n",
-      "        Distance: 0.174\n",
-      "\n",
-      "        --- Recommendation #4 (nearest neighbor 4 of 5) ---\n",
-      "        String: AP - President Bush declared Friday that charges of voter fraud have cast doubt on the Ukrainian election, and warned that any European-negotiated pact on Iran's nuclear program must ensure the world can verify Tehran's compliance.\n",
-      "        Distance: 0.179\n",
-      "\n",
-      "        --- Recommendation #5 (nearest neighbor 5 of 5) ---\n",
-      "        String: AFP - A battle group of British troops rolled out of southern Iraq on a US-requested mission to deadlier areas near Baghdad, in a major political gamble for British Prime Minister Tony Blair.\n",
-      "        Distance: 0.182\n"
-     ]
-    }
-   ],
-   "source": [
-    "article_descriptions = df[\"description\"].tolist()\n",
-    "\n",
-    "tony_blair_articles = print_recommendations_from_strings(\n",
-    "    strings=article_descriptions,  # let's base similarity off of the article description\n",
-    "    index_of_source_string=0,  # let's look at articles similar to the first one about Tony Blair\n",
-    "    k_nearest_neighbors=5,  # let's look at the 5 most similar articles\n",
-    ")"
-   ]
-  },
-  {
-   "cell_type": "markdown",
-   "metadata": {},
-   "source": [
-    "Pretty good! All 5 of the recommendations look similar to the original article about Tony Blair. Interestingly, note that #4 doesn't mention the words Tony Blair, but is nonetheless recommended by the model, presumably because the model understands that Tony Blair tends to be related to President Bush or European pacts over Iran's nuclear program. This illustrates the potential power of using embeddings rather than basic string matching; our models understand what topics are related to one another, even when their words don't overlap."
-   ]
-  },
-  {
-   "cell_type": "markdown",
-   "metadata": {},
-   "source": [
-    "Let's see how our recommender does on the second example article about NVIDIA's new chipset with more security."
-   ]
-  },
-  {
-   "cell_type": "code",
-   "execution_count": 8,
-   "metadata": {},
-   "outputs": [
-    {
-     "name": "stdout",
-     "output_type": "stream",
-     "text": [
-      "Source string: PC World - Upcoming chip set will include built-in security features for your PC.\n",
-      "\n",
-      "        --- Recommendation #1 (nearest neighbor 1 of 5) ---\n",
-      "        String: PC World - Updated antivirus software for businesses adds intrusion prevention features.\n",
-      "        Distance: 0.108\n",
-      "\n",
-      "        --- Recommendation #2 (nearest neighbor 2 of 5) ---\n",
-      "        String: PC World - Send your video throughout your house--wirelessly--with new gateways and media adapters.\n",
-      "        Distance: 0.160\n",
-      "\n",
-      "        --- Recommendation #3 (nearest neighbor 3 of 5) ---\n",
-      "        String: PC World - The one-time World Class Product of the Year PDA gets a much-needed upgrade.\n",
-      "        Distance: 0.161\n",
-      "\n",
-      "        --- Recommendation #4 (nearest neighbor 4 of 5) ---\n",
-      "        String: PC World - Symantec, McAfee hope raising virus-definition fees will move users to\\  suites.\n",
-      "        Distance: 0.166\n",
-      "\n",
-      "        --- Recommendation #5 (nearest neighbor 5 of 5) ---\n",
-      "        String: Ziff Davis - The company this week will unveil more programs and technologies designed to ease users of its high-end servers onto its Integrity line, which uses Intel's 64-bit Itanium processor.\n",
-      "        Distance: 0.193\n"
-     ]
-    }
-   ],
-   "source": [
-    "chipset_security_articles = print_recommendations_from_strings(\n",
-    "    strings=article_descriptions,  # let's base similarity off of the article description\n",
-    "    index_of_source_string=1,  # let's look at articles similar to the second one about a more secure chipset\n",
-    "    k_nearest_neighbors=5,  # let's look at the 5 most similar articles\n",
-    ")"
-   ]
-  },
-  {
-   "cell_type": "markdown",
-   "metadata": {},
-   "source": [
-    "From the printed distances, you can see that the #1 recommendation is much closer than all the others (0.108 vs 0.160+). And the #1 recommendation looks very similar to the starting article - it's another article from PC World about increasing computer security. Pretty good! "
-   ]
-  },
-  {
-   "cell_type": "markdown",
-   "metadata": {},
-   "source": [
-    "## Appendix: Using embeddings in more sophisticated recommenders\n",
-    "\n",
-    "A more sophisticated way to build a recommender system is to train a machine learning model that takes in tens or hundreds of signals, such as item popularity or user click data. Even in this system, embeddings can be a very useful signal into the recommender, especially for items that are being 'cold started' with no user data yet (e.g., a brand new product added to the catalog without any clicks yet)."
-   ]
-  },
-  {
-   "cell_type": "markdown",
-   "metadata": {},
-   "source": [
-    "## Appendix: Using embeddings to visualize similar articles"
-   ]
-  },
-  {
-   "cell_type": "markdown",
-   "metadata": {},
-   "source": [
-    "To get a sense of what our nearest neighbor recommender is doing, let's visualize the article embeddings. Although we can't plot the 2048 dimensions of each embedding vector, we can use techniques like [t-SNE](https://en.wikipedia.org/wiki/T-distributed_stochastic_neighbor_embedding) or [PCA](https://en.wikipedia.org/wiki/Principal_component_analysis) to compress the embeddings down into 2 or 3 dimensions, which we can chart.\n",
-    "\n",
-    "Before visualizing the nearest neighbors, let's visualize all of the article descriptions using t-SNE. Note that t-SNE is not deterministic, meaning that results may vary from run to run."
-   ]
-  },
-  {
-   "cell_type": "code",
-   "execution_count": 9,
-   "metadata": {},
-   "outputs": [
-    {
-     "name": "stderr",
-     "output_type": "stream",
-     "text": [
-      "/Users/ted/.virtualenvs/openai/lib/python3.9/site-packages/sklearn/manifold/_t_sne.py:982: FutureWarning: The PCA initialization in TSNE will change to have the standard deviation of PC1 equal to 1e-4 in 1.2. This will ensure better convergence.\n",
-      "  warnings.warn(\n"
-     ]
-    },
-    {
-     "data": {
-      "application/vnd.plotly.v1+json": {
-       "config": {
-        "plotlyServerURL": "https://plot.ly"
-       },
-       "data": [
-        {
-         "customdata": [
-          [
-           "BRITAIN: BLAIR WARNS OF<br>CLIMATE THREAT Prime Minister<br>Tony Blair urged the<br>international community to<br>consider global warming a dire<br>threat and agree on a plan of<br>action to curb the<br>quot;alarming quot; growth of<br>greenhouse gases."
-          ],
-          [
-           "KABUL, Sept 22 (AFP): Three US<br>soldiers were killed and 14<br>wounded in a series of fierce<br>clashes with suspected Taliban<br>fighters in south and eastern<br>Afghanistan this week, the US<br>military said Wednesday."
-          ],
-          [
-           "AUSTRALIAN journalist John<br>Martinkus is lucky to be alive<br>after spending 24 hours in the<br>hands of Iraqi militants at<br>the weekend. Martinkus was in<br>Baghdad working for the SBS<br>Dateline TV current affairs<br>program"
-          ],
-          [
-           " GAZA (Reuters) - An Israeli<br>helicopter fired a missile<br>into  a town in the southern<br>Gaza Strip late on Wednesday,<br>witnesses  said, hours after a<br>Palestinian suicide bomber<br>blew herself up  in Jerusalem,<br>killing two Israeli border<br>policemen."
-          ],
-          [
-           "RIYADH, Saudi Arabia -- Saudi<br>police are seeking two young<br>men in the killing of a Briton<br>in a Riyadh parking lot, the<br>Interior Ministry said today,<br>and the British ambassador<br>called it a terrorist attack."
-          ],
-          [
-           "A gas explosion at a coal mine<br>in northern China killed 33<br>workers in the 10th deadly<br>mine blast reported in three<br>months. The explosion occurred<br>yesterday at 4:20 pm at Nanlou<br>township"
-          ],
-          [
-           "Reuters - Palestinian leader<br>Mahmoud Abbas called\\Israel<br>\"the Zionist enemy\" Tuesday,<br>unprecedented language for\\the<br>relative moderate who is<br>expected to succeed Yasser<br>Arafat."
-          ],
-          [
-           "Nasser al-Qidwa, Palestinian<br>representative at the United<br>Nations and nephew of late<br>leader Yasser Arafat, handed<br>Arafat #39;s death report to<br>the Palestinian National<br>Authority (PNA) on Saturday."
-          ],
-          [
-           "CAIRO, Egypt - France's<br>foreign minister appealed<br>Monday for the release of two<br>French journalists abducted in<br>Baghdad, saying the French<br>respect all religions. He did<br>not rule out traveling to<br>Baghdad..."
-          ],
-          [
-           "United Arab Emirates President<br>and ruler of Abu Dhabi Sheik<br>Zayed bin Sultan al-Nayhan<br>died Tuesday, official<br>television reports. He was 86."
-          ],
-          [
-           "PALESTINIAN leader Yasser<br>Arafat today issued an urgent<br>call for the immediate release<br>of two French journalists<br>taken hostage in Iraq."
-          ],
-          [
-           "The al-Qaida terrorist network<br>spent less than \\$50,000 on<br>each of its major attacks<br>except for the Sept. 11, 2001,<br>suicide hijackings, and one of<br>its hallmarks is using"
-          ],
-          [
-           "A FATHER who scaled the walls<br>of a Cardiff court dressed as<br>superhero Robin said the<br>Buckingham Palace protester<br>posed no threat. Fathers 4<br>Justice activist Jim Gibson,<br>who earlier this year staged<br>an eye-catching"
-          ],
-          [
-           "Julia Gillard has reportedly<br>bowed out of the race to<br>become shadow treasurer,<br>taking enormous pressure off<br>Opposition Leader Mark Latham."
-          ],
-          [
-           "AFP - Maybe it's something to<br>do with the fact that the<br>playing area is so vast that<br>you need a good pair of<br>binoculars to see the action<br>if it's not taking place right<br>in front of the stands."
-          ],
-          [
-           "Egypt #39;s release of accused<br>Israeli spy Azzam Azzam in an<br>apparent swap for six Egyptian<br>students held on suspicion of<br>terrorism is expected to melt<br>the ice and perhaps result"
-          ],
-          [
-           "GAZA CITY, Gaza Strip: Hamas<br>militants killed an Israeli<br>soldier and wounded four with<br>an explosion in a booby-<br>trapped chicken coop on<br>Tuesday, in what the Islamic<br>group said was an elaborate<br>scheme to lure troops to the<br>area with the help of a double"
-          ],
-          [
-           "AP - The 300 men filling out<br>forms in the offices of an<br>Iranian aid group were offered<br>three choices: Train for<br>suicide attacks against U.S.<br>troops in Iraq, for suicide<br>attacks against Israelis or to<br>assassinate British author<br>Salman Rushdie."
-          ],
-          [
-           "ATHENS, Greece - Gail Devers,<br>the most talented yet star-<br>crossed hurdler of her<br>generation, was unable to<br>complete even one hurdle in<br>100-meter event Sunday -<br>failing once again to win an<br>Olympic hurdling medal.<br>Devers, 37, who has three<br>world championships in the<br>hurdles but has always flopped<br>at the Olympics, pulled up<br>short and screamed as she slid<br>under the first hurdle..."
-          ],
-          [
-           " NAIROBI (Reuters) - The<br>Sudanese government and its<br>southern rebel opponents have<br>agreed to sign a pledge in the<br>Kenyan capital on Friday to<br>formally end a brutal 21-year-<br>old  civil war, with U.N.<br>Security Council ambassadors<br>as witnesses."
-          ],
-          [
-           "AP - Former Guatemalan<br>President Alfonso Portillo<br>#151; suspected of corruption<br>at home  #151; is living and<br>working part-time in the same<br>Mexican city he fled two<br>decades ago to avoid arrest on<br>murder charges, his close<br>associates told The Associated<br>Press on Sunday."
-          ],
-          [
-           "washingtonpost.com - BRUSSELS,<br>Aug. 26 -- The United States<br>will have to wait until next<br>year to see its fight with the<br>European Union over biotech<br>foods resolved, as the World<br>Trade Organization agreed to<br>an E.U. request to bring<br>scientists into the debate,<br>officials said Thursday."
-          ],
-          [
-           "Insisting that Hurriyat<br>Conference is the real<br>representative of Kashmiris,<br>Pakistan has claimed that<br>India is not ready to accept<br>ground realities in Kashmir."
-          ],
-          [
-           "VIENNA -- After two years of<br>investigating Iran's atomic<br>program, the UN nuclear<br>watchdog still cannot rule out<br>that Tehran has a secret atom<br>bomb project as Washington<br>insists, the agency's chief<br>said yesterday."
-          ],
-          [
-           "AFP - US Secretary of State<br>Colin Powell wrapped up a<br>three-nation tour of Asia<br>after winning pledges from<br>Japan, China and South Korea<br>to press North Korea to resume<br>stalled talks on its nuclear<br>weapons programs."
-          ],
-          [
-           "CAIRO, Egypt An Egyptian<br>company says one of its four<br>workers who had been kidnapped<br>in Iraq has been freed. It<br>says it can #39;t give the<br>status of the others being<br>held hostage but says it is<br>quot;doing its best to secure<br>quot; their release."
-          ],
-          [
-           "AFP - Hosts India braced<br>themselves for a harrowing<br>chase on a wearing wicket in<br>the first Test after Australia<br>declined to enforce the<br>follow-on here."
-          ],
-          [
-           "Prime Minister Paul Martin of<br>Canada urged Haitian leaders<br>on Sunday to allow the<br>political party of the deposed<br>president, Jean-Bertrand<br>Aristide, to take part in new<br>elections."
-          ],
-          [
-           "Hostage takers holding up to<br>240 people at a school in<br>southern Russia have refused<br>to talk with a top Islamic<br>leader and demanded to meet<br>with regional leaders instead,<br>ITAR-TASS reported on<br>Wednesday."
-          ],
-          [
-           "Three children from a care<br>home are missing on the<br>Lancashire moors after they<br>are separated from a group."
-          ],
-          [
-           "Diabetics should test their<br>blood sugar levels more<br>regularly to reduce the risk<br>of cardiovascular disease, a<br>study says."
-          ],
-          [
-           "Iraq's interim Prime Minister<br>Ayad Allawi announced that<br>proceedings would begin<br>against former Baath Party<br>leaders."
-          ],
-          [
-           "A toxic batch of home-brewed<br>alcohol has killed 31 people<br>in several towns in central<br>Pakistan, police and hospital<br>officials say."
-          ],
-          [
-           " BEIJING (Reuters) - North<br>Korea is committed to holding<br>six-party talks aimed at<br>resolving the crisis over its<br>nuclear  weapons program, but<br>has not indicated when, a top<br>British  official said on<br>Tuesday."
-          ],
-          [
-           " BAGHDAD (Reuters) - Iraq's<br>interim government extended<br>the  closure of Baghdad<br>international airport<br>indefinitely on  Saturday<br>under emergency rule imposed<br>ahead of this week's  U.S.-led<br>offensive on Falluja."
-          ],
-          [
-           "Rivaling Bush vs. Kerry for<br>bitterness, doctors and trial<br>lawyers are squaring off this<br>fall in an unprecedented four-<br>state struggle over limiting<br>malpractice awards..."
-          ],
-          [
-           "AP - Hundreds of tribesmen<br>gathered Tuesday near the area<br>where suspected al-Qaida-<br>linked militants are holding<br>two Chinese engineers and<br>demanding safe passage to<br>their reputed leader, a former<br>U.S. prisoner from Guantanamo<br>Bay, Cuba, officials and<br>residents said."
-          ],
-          [
-           "In an alarming development,<br>high-precision equipment and<br>materials which could be used<br>for making nuclear bombs have<br>disappeared from some Iraqi<br>facilities, the United Nations<br>watchdog agency has said."
-          ],
-          [
-           "A US airman dies and two are<br>hurt as a helicopter crashes<br>due to technical problems in<br>western Afghanistan."
-          ],
-          [
-           "Jacques Chirac has ruled out<br>any withdrawal of French<br>troops from Ivory Coast,<br>despite unrest and anti-French<br>attacks, which have forced the<br>evacuation of thousands of<br>Westerners."
-          ],
-          [
-           "Japanese Prime Minister<br>Junichiro Koizumi reshuffled<br>his cabinet yesterday,<br>replacing several top<br>ministers in an effort to<br>boost his popularity,<br>consolidate political support<br>and quicken the pace of<br>reforms in the world #39;s<br>second-largest economy."
-          ],
-          [
-           "TBILISI (Reuters) - At least<br>two Georgian soldiers were<br>killed and five wounded in<br>artillery fire with<br>separatists in the breakaway<br>region of South Ossetia,<br>Georgian officials said on<br>Wednesday."
-          ],
-          [
-           "Laksamana.Net - Two Indonesian<br>female migrant workers freed<br>by militants in Iraq are<br>expected to arrive home within<br>a day or two, the Foreign<br>Affairs Ministry said<br>Wednesday (6/10/04)."
-          ],
-          [
-           "A bus was hijacked today and<br>shots were fired at police who<br>surrounded it on the outskirts<br>of Athens. Police did not know<br>how many passengers were<br>aboard the bus."
-          ],
-          [
-           "AP - President Bashar Assad<br>shuffled his Cabinet on<br>Monday, just weeks after the<br>United States and the United<br>Nations challenged Syria over<br>its military presence in<br>Lebanon and the security<br>situation along its border<br>with Iraq."
-          ],
-          [
-           "AP - President Vladimir Putin<br>has signed a bill confirming<br>Russia's ratification of the<br>Kyoto Protocol, the Kremlin<br>said Friday, clearing the way<br>for the global climate pact to<br>come into force early next<br>year."
-          ],
-          [
-           "AP - The authenticity of newly<br>unearthed memos stating that<br>George W. Bush failed to meet<br>standards of the Texas Air<br>National Guard during the<br>Vietnam War was questioned<br>Thursday by the son of the<br>late officer who reportedly<br>wrote the memos."
-          ],
-          [
-           "Canadian Press - OAKVILLE,<br>Ont. (CP) - The body of a<br>missing autistic man was<br>pulled from a creek Monday,<br>just metres from where a key<br>piece of evidence was<br>uncovered but originally<br>overlooked because searchers<br>had the wrong information."
-          ],
-          [
-           "AFP - German Chancellor<br>Gerhard Schroeder arrived in<br>Libya for an official visit<br>during which he is to hold<br>talks with Libyan leader<br>Moamer Kadhafi."
-          ],
-          [
-           "The government will examine<br>claims 100,000 Iraqi civilians<br>have been killed since the US-<br>led invasion, Jack Straw says."
-          ],
-          [
-           "Eton College and Clarence<br>House joined forces yesterday<br>to deny allegations due to be<br>made at an employment tribunal<br>today by a former art teacher<br>that she improperly helped<br>Prince Harry secure an A-level<br>pass in art two years ago."
-          ],
-          [
-           "AFP - Great Britain's chances<br>of qualifying for the World<br>Group of the Davis Cup were<br>evaporating rapidly after<br>Austria moved into a 2-1 lead<br>following the doubles."
-          ],
-          [
-           "Asia-Pacific leaders meet in<br>Australia to discuss how to<br>keep nuclear weapons out of<br>the hands of extremists."
-          ],
-          [
-           " TALL AFAR, Iraq -- A three-<br>foot-high coil of razor wire,<br>21-ton armored vehicles and<br>American soldiers with black<br>M-4 assault rifles stood<br>between tens of thousands of<br>people and their homes last<br>week."
-          ],
-          [
-           "LAKE GEORGE, N.Y. - Even<br>though he's facing double hip<br>replacement surgery, Bill<br>Smith is more than happy to<br>struggle out the door each<br>morning, limp past his brand<br>new P.T..."
-          ],
-          [
-           " JERUSALEM (Reuters) - Israeli<br>Prime Minister Ariel Sharon<br>poured cold water on Tuesday<br>on recent international<br>efforts to  restart stalled<br>peace talks with Syria, saying<br>there was \"no  possibility\" of<br>returning to previous<br>discussions."
-          ],
-          [
-           "Dutch smugness was slapped<br>hard during the past<br>fortnight. The rude awakening<br>began with the barbaric<br>slaying of controversial<br>filmmaker Theo van Gogh on<br>November 2. Then followed a<br>reciprocal cycle of some"
-          ],
-          [
-           "pee writes  quot;A passenger<br>on a commuter plane in<br>northern Norway attacked both<br>pilots and at least one<br>passenger with an axe as the<br>aircraft was coming in to<br>land."
-          ],
-          [
-           "Prime Minister Ariel Sharon<br>pledged Sunday to escalate a<br>broad Israeli offensive in<br>northern Gaza, saying troops<br>will remain until Palestinian<br>rocket attacks are halted.<br>Israeli officials said the<br>offensive -- in which 58<br>Palestinians and three<br>Israelis have been killed --<br>will help clear the way for an<br>Israeli withdrawal."
-          ],
-          [
-           "NEW YORK - Wall Street<br>professionals know to keep<br>their expectations in check in<br>September, historically the<br>worst month of the year for<br>stocks. As summertime draws to<br>a close, money managers are<br>getting back to business,<br>cleaning house, and often<br>sending the market lower in<br>the process..."
-          ],
-          [
-           "A group linked to al Qaeda<br>ally Abu Musab al-Zarqawi said<br>it had tried to kill Iraq<br>#39;s environment minister on<br>Tuesday and warned it would<br>not miss next time, according<br>to an Internet statement."
-          ],
-          [
-           "The Israeli military killed<br>four Palestinian militants on<br>Wednesday as troops in tanks<br>and armored vehicles pushed<br>into another town in the<br>northern Gaza Strip, extending"
-          ],
-          [
-           "KIRKUK, Iraq - A suicide<br>attacker detonated a car bomb<br>Saturday outside a police<br>academy in the northern Iraqi<br>city of Kirkuk as hundreds of<br>trainees and civilians were<br>leaving for the day, killing<br>at least 20 people and<br>wounding 36, authorities said.<br>Separately, U.S and Iraqi<br>forces clashed with insurgents<br>in another part of northern<br>Iraq after launching an<br>operation to destroy an<br>alleged militant cell in the<br>town of Tal Afar, the U.S..."
-          ],
-          [
-           "AP - Many states are facing<br>legal challenges over possible<br>voting problems Nov. 2. A look<br>at some of the developments<br>Thursday:"
-          ],
-          [
-           "Israeli troops withdrew from<br>the southern Gaza Strip town<br>of Khan Yunis on Tuesday<br>morning, following a 30-hour<br>operation that left 17<br>Palestinians dead."
-          ],
-          [
-           "PM-designate Omar Karameh<br>forms a new 30-member cabinet<br>which includes women for the<br>first time."
-          ],
-          [
-           "Bahrain #39;s king pardoned a<br>human rights activist who<br>convicted of inciting hatred<br>of the government and<br>sentenced to one year in<br>prison Sunday in a case linked<br>to criticism of the prime<br>minister."
-          ],
-          [
-           "Leaders from 38 Asian and<br>European nations are gathering<br>in Vietnam for a summit of the<br>Asia-Europe Meeting, know as<br>ASEM. One thousand delegates<br>are to discuss global trade<br>and regional politics during<br>the two-day forum."
-          ],
-          [
-           "A US soldier has pleaded<br>guilty to murdering a wounded<br>16-year-old Iraqi boy. Staff<br>Sergeant Johnny Horne was<br>convicted Friday of the<br>unpremeditated murder"
-          ],
-          [
-           "Guinea-Bissau #39;s army chief<br>of staff and former interim<br>president, General Verissimo<br>Correia Seabra, was killed<br>Wednesday during unrest by<br>mutinous soldiers in the<br>former Portuguese"
-          ],
-          [
-           "31 October 2004 -- Exit polls<br>show that Prime Minister<br>Viktor Yanukovich and<br>challenger Viktor Yushchenko<br>finished on top in Ukraine<br>#39;s presidential election<br>today and will face each other<br>in a run-off next month."
-          ],
-          [
-           "Rock singer Bono pledges to<br>spend the rest of his life<br>trying to eradicate extreme<br>poverty around the world."
-          ],
-          [
-           "AP - Just when tourists<br>thought it was safe to go back<br>to the Princess Diana memorial<br>fountain, the mud has struck."
-          ],
-          [
-           "AP - Three times a week, The<br>Associated Press picks an<br>issue and asks President Bush<br>and Democratic presidential<br>candidate John Kerry a<br>question about it. Today's<br>question and their responses:"
-          ],
-          [
-           "In an apparent damage control<br>exercise, Russian President<br>Vladimir Putin on Saturday<br>said he favored veto rights<br>for India as new permanent<br>member of the UN Security<br>Council."
-          ],
-          [
-           "AP - Nigeria's Senate has<br>ordered a subsidiary of<br>petroleum giant Royal/Dutch<br>Shell to pay a Nigerian ethnic<br>group  #36;1.5 billion for oil<br>spills in their homelands, but<br>the legislative body can't<br>enforce the resolution, an<br>official said Wednesday."
-          ],
-          [
-           "Australian troops in Baghdad<br>came under attack today for<br>the first time since the end<br>of the Iraq war when a car<br>bomb exploded injuring three<br>soldiers and damaging an<br>Australian armoured convoy."
-          ],
-          [
-           "Pakistans decision to refuse<br>the International Atomic<br>Energy Agency to have direct<br>access to Dr AQ Khan is<br>correct on both legal and<br>political counts."
-          ],
-          [
-           "MANILA, 4 December 2004 - With<br>floods receding, rescuers<br>raced to deliver food to<br>famished survivors in<br>northeastern Philippine<br>villages isolated by back-to-<br>back storms that left more<br>than 650 people dead and<br>almost 400 missing."
-          ],
-          [
-           "Talks on where to build the<br>world #39;s first nuclear<br>fusion reactor ended without a<br>deal on Tuesday but the<br>European Union said Japan and<br>the United States no longer<br>firmly opposed its bid to put<br>the plant in France."
-          ],
-          [
-           "CLEVELAND - The White House<br>said Vice President Dick<br>Cheney faces a \"master<br>litigator\" when he debates<br>Sen. John Edwards Tuesday<br>night, a backhanded compliment<br>issued as the Republican<br>administration defended itself<br>against criticism that it has<br>not acknowledged errors in<br>waging war in Iraq..."
-          ],
-          [
-           "SEOUL (Reuters) - The chairman<br>of South Korea #39;s ruling<br>Uri Party resigned on Thursday<br>after saying his father had<br>served as a military police<br>officer during Japan #39;s<br>1910-1945 colonial rule on the<br>peninsula."
-          ],
-          [
-           "ALERE, Uganda -- Kasmiro<br>Bongonyinge remembers sitting<br>up suddenly in his bed. It was<br>just after sunrise on a summer<br>morning two years ago, and the<br>old man, 87 years old and<br>blind, knew something was<br>wrong."
-          ],
-          [
-           "JAKARTA - Official results<br>have confirmed former army<br>general Susilo Bambang<br>Yudhoyono as the winner of<br>Indonesia #39;s first direct<br>presidential election, while<br>incumbent Megawati<br>Sukarnoputri urged her nation<br>Thursday to wait for the<br>official announcement"
-          ],
-          [
-           "Reuters - A ragged band of<br>children\\emerges ghost-like<br>from mists in Ethiopia's<br>highlands,\\thrusting bunches<br>of carrots at a car full of<br>foreigners."
-          ],
-          [
-           "AP - A U.N. human rights<br>expert criticized the U.S.-led<br>coalition forces in<br>Afghanistan for violating<br>international law by allegedly<br>beating Afghans to death and<br>forcing some to remove their<br>clothes or wear hoods."
-          ],
-          [
-           " JERUSALEM (Reuters) - Israeli<br>Prime Minister Ariel Sharon<br>said on Thursday Yasser<br>Arafat's death could be a<br>turning point  for peacemaking<br>but he would pursue a<br>unilateral plan that  would<br>strip Palestinians of some<br>land they want for a state."
-          ],
-          [
-           " AL-ASAD AIRBASE, Iraq<br>(Reuters) - Defense Secretary<br>Donald  Rumsfeld swept into an<br>airbase in Iraq's western<br>desert Sunday  to make a<br>first-hand evaluation of<br>operations to quell a raging<br>Iraqi insurgency in his first<br>such visit in five months."
-          ],
-          [
-           "WASHINGTON - Democrat John<br>Kerry accused President Bush<br>on Monday of sending U.S.<br>troops to the \"wrong war in<br>the wrong place at the wrong<br>time\" and said he'd try to<br>bring them all home in four<br>years..."
-          ],
-          [
-           "More lorry drivers are<br>bringing supplies to Nepal's<br>capital in defiance of an<br>indefinite blockade by Maoist<br>rebels."
-          ],
-          [
-           " BEIJING (Reuters) - Floods<br>and landslides have killed 76<br>people in southwest China in<br>the past four days and washed<br>away  homes and roads, knocked<br>down power lines and cut off<br>at least  one city, state<br>media said on Monday."
-          ],
-          [
-           "AP - Victims of the Sept. 11<br>attacks were mourned worldwide<br>Saturday, but in the Middle<br>East, amid sympathy for the<br>dead, Arabs said Washington's<br>support for Israel and the war<br>on terror launched in the<br>aftermath of the World Trade<br>Center's collapse have only<br>fueled anger and violence."
-          ],
-          [
-           "SEATTLE - Ichiro Suzuki set<br>the major league record for<br>hits in a season with 258,<br>breaking George Sisler's<br>84-year-old mark with a pair<br>of singles Friday night. The<br>Seattle star chopped a leadoff<br>single in the first inning,<br>then made history with a<br>grounder up the middle in the<br>third..."
-          ],
-          [
-           "The intruder who entered<br>British Queen Elizabeth II<br>#39;s official Scottish<br>residence and caused a<br>security scare was a reporter<br>from the London-based Sunday<br>Times newspaper, local media<br>reported Friday."
-          ],
-          [
-           "Canadian Press - FREDERICTON<br>(CP) - A New Brunswick truck<br>driver arrested in Ontario<br>this week has been accused by<br>police of stealing 50,000 cans<br>of Moosehead beer."
-          ],
-          [
-           "Chinese authorities detained a<br>prominent, U.S.-based Buddhist<br>leader in connection with his<br>plans to reopen an ancient<br>temple complex in the Chinese<br>province of Inner Mongolia<br>last week and have forced<br>dozens of his American<br>followers to leave the region,<br>local officials said<br>Wednesday."
-          ],
-          [
-           "Adorned with Turkish and EU<br>flags, Turkey #39;s newspapers<br>hailed Thursday an official EU<br>report recommending the<br>country start talks to join<br>the bloc, while largely<br>ignoring the stringent<br>conditions attached to the<br>announcement."
-          ],
-          [
-           "Thailand's prime minister<br>visits the southern town where<br>scores of Muslims died in army<br>custody after a rally."
-          ],
-          [
-           "Beijing: At least 170 miners<br>were trapped underground after<br>a gas explosion on Sunday<br>ignited a fire in a coalmine<br>in north-west China #39;s<br>Shaanxi province, reports<br>said."
-          ],
-          [
-           "SAMARRA (Iraq): With renewe d<br>wave of skirmishes between the<br>Iraqi insurgents and the US-<br>led coalition marines, several<br>people including top police<br>officers were put to death on<br>Saturday."
-          ],
-          [
-           "AFP - Like most US Latinos,<br>members of the extended<br>Rodriguez family say they will<br>cast their votes for Democrat<br>John Kerry in next month's<br>presidential polls."
-          ],
-          [
-           "FALLUJAH, Iraq -- Four Iraqi<br>fighters huddled in a trench,<br>firing rocket-propelled<br>grenades at Lieutenant Eric<br>Gregory's Bradley Fighting<br>Vehicle and the US tanks and<br>Humvees that were lumbering<br>through tight streets between<br>boxlike beige houses."
-          ],
-          [
-           "AP - Several thousand<br>Christians who packed a<br>cathedral compound in the<br>Egyptian capital hurled stones<br>at riot police Wednesday to<br>protest a woman's alleged<br>forced conversion to Islam. At<br>least 30 people were injured."
-          ],
-          [
-           "A group of Saudi religious<br>scholars have signed an open<br>letter urging Iraqis to<br>support jihad against US-led<br>forces.  quot;Fighting the<br>occupiers is a duty for all<br>those who are able, quot; they<br>said in a statement posted on<br>the internet at the weekend."
-          ],
-          [
-           "Mountaineers retrieve three<br>bodies believed to have been<br>buried for 22 years on an<br>Indian glacier."
-          ],
-          [
-           "President Thabo Mbeki met with<br>Ivory Coast Prime Minister<br>Seydou Diarra for three hours<br>yesterday as part of talks<br>aimed at bringing peace to the<br>conflict-wracked Ivory Coast."
-          ],
-          [
-           " KATHMANDU (Reuters) - Nepal's<br>Maoist rebels have<br>temporarily suspended a<br>crippling economic blockade of<br>the  capital from Wednesday,<br>saying the move was in<br>response to  popular appeals."
-          ],
-          [
-           "Reuters - An Algerian<br>suspected of being a leader\\of<br>the Madrid train bombers has<br>been identified as one of<br>seven\\people who blew<br>themselves up in April to<br>avoid arrest, Spain's\\Interior<br>Ministry said on Friday."
-          ],
-          [
-           "KABUL: An Afghan man was found<br>guilty on Saturday of killing<br>four journalists in 2001,<br>including two from Reuters,<br>and sentenced to death."
-          ],
-          [
-           "Yasser Arafat, the leader for<br>decades of a fight for<br>Palestinian independence from<br>Israel, has died at a military<br>hospital in Paris, according<br>to news reports."
-          ],
-          [
-           " JABALYA, Gaza Strip (Reuters)<br>- Israel pulled most of its<br>forces out of the northern<br>Gaza Strip Saturday after a<br>four-day  incursion it said<br>was staged to halt Palestinian<br>rocket attacks  on southern<br>Israeli towns."
-          ],
-          [
-           "THE Turkish embassy in Baghdad<br>was investigating a television<br>report that two Turkish<br>hostages had been killed in<br>Iraq, but no confirmation was<br>available so far, a senior<br>Turkish diplomat said today."
-          ],
-          [
-           "Reuters - Thousands of<br>supporters of<br>Ukraine's\\opposition leader,<br>Viktor Yushchenko, celebrated<br>on the streets\\in the early<br>hours on Monday after an exit<br>poll showed him\\winner of a<br>bitterly fought presidential<br>election."
-          ],
-          [
-           "LONDON : The United States<br>faced rare criticism over<br>human rights from close ally<br>Britain, with an official<br>British government report<br>taking Washington to task over<br>concerns about Iraq and the<br>Guantanamo Bay jail."
-          ],
-          [
-           "LONDON - A bomb threat that<br>mentioned Iraq forced a New<br>York-bound Greek airliner to<br>make an emergency landing<br>Sunday at London's Stansted<br>Airport escorted by military<br>jets, authorities said.    An<br>airport spokeswoman said an<br>Athens newspaper had received<br>a phone call saying there was<br>a bomb on board the Olympic<br>Airlines plane..."
-          ],
-          [
-           "ATHENS, Greece - Sheryl<br>Swoopes made three big plays<br>at the end - two baskets and<br>another on defense - to help<br>the United States squeeze out<br>a 66-62 semifinal victory over<br>Russia on Friday. Now, only<br>one game stands between the<br>U.S..."
-          ],
-          [
-           "Scientists are developing a<br>device which could improve the<br>lives of kidney dialysis<br>patients."
-          ],
-          [
-           "KABUL, Afghanistan The Afghan<br>government is blaming drug<br>smugglers for yesterday #39;s<br>attack on the leading vice<br>presidential candidate ."
-          ],
-          [
-           "One of the leading figures in<br>the Greek Orthodox Church, the<br>Patriarch of Alexandria Peter<br>VII, has been killed in a<br>helicopter crash in the Aegean<br>Sea."
-          ],
-          [
-           "CANBERRA, Australia -- The<br>sweat-stained felt hats worn<br>by Australian cowboys, as much<br>a part of the Outback as<br>kangaroos and sun-baked soil,<br>may be heading for the history<br>books. They fail modern<br>industrial safety standards."
-          ],
-          [
-           "A London-to-Washington flight<br>is diverted after a security<br>alert involving the singer<br>formerly known as Cat Stevens."
-          ],
-          [
-           "AP - President Bush declared<br>Friday that charges of voter<br>fraud have cast doubt on the<br>Ukrainian election, and warned<br>that any European-negotiated<br>pact on Iran's nuclear program<br>must ensure the world can<br>verify Tehran's compliance."
-          ],
-          [
-           "TheSpaceShipOne team is handed<br>the \\$10m cheque and trophy it<br>won for claiming the Ansari<br>X-Prize."
-          ],
-          [
-           "Security officials have<br>identified six of the<br>militants who seized a school<br>in southern Russia as being<br>from Chechnya, drawing a<br>strong connection to the<br>Chechen insurgents who have<br>been fighting Russian forces<br>for years."
-          ],
-          [
-           "SEOUL -- North Korea set three<br>conditions yesterday to be met<br>before it would consider<br>returning to six-party talks<br>on its nuclear programs."
-          ],
-          [
-           "US-backed Iraqi commandos were<br>poised Friday to storm rebel<br>strongholds in the northern<br>city of Mosul, as US military<br>commanders said they had<br>quot;broken the back quot; of<br>the insurgency with their<br>assault on the former rebel<br>bastion of Fallujah."
-          ],
-          [
-           "JERUSALEM (Reuters) - Prime<br>Minister Ariel Sharon, facing<br>a party mutiny over his plan<br>to quit the Gaza Strip, has<br>approved 1,000 more Israeli<br>settler homes in the West Bank<br>in a move that drew a cautious<br>response on Tuesday from ..."
-          ],
-          [
-           "GHAZNI, Afghanistan, 6 October<br>2004 - Wartime security was<br>rolled out for Afghanistans<br>interim President Hamid Karzai<br>as he addressed his first<br>election campaign rally<br>outside the capital yesterday<br>amid spiraling violence."
-          ],
-          [
-           "China has confirmed that it<br>found a deadly strain of bird<br>flu in pigs as early as two<br>years ago. China #39;s<br>Agriculture Ministry said two<br>cases had been discovered, but<br>it did not say exactly where<br>the samples had been taken."
-          ],
-          [
-           "AP - Ten years after the Irish<br>Republican Army's momentous<br>cease-fire, negotiations<br>resumed Wednesday in hope of<br>reviving a Catholic-Protestant<br>administration, an elusive<br>goal of Northern Ireland's<br>hard-fought peace process."
-          ],
-          [
-           "  SANTO DOMINGO, Dominican<br>Republic, Sept. 18 -- Tropical<br>Storm Jeanne headed for the<br>Bahamas on Saturday after an<br>assault on the Dominican<br>Republic that killed 10<br>people, destroyed hundreds of<br>houses and forced thousands<br>from their homes."
-          ],
-          [
-           "An explosion tore apart a car<br>in Gaza City Monday, killing<br>at least one person,<br>Palestinian witnesses said.<br>They said Israeli warplanes<br>were circling overhead at the<br>time of the blast, indicating<br>a possible missile strike."
-          ],
-          [
-           "Beijing, Oct. 25 (PTI): China<br>and the US today agreed to<br>work jointly to re-energise<br>the six-party talks mechanism<br>aimed at dismantling North<br>Korea #39;s nuclear programmes<br>while Washington urged Beijing<br>to resume"
-          ],
-          [
-           "AFP - Sporadic gunfire and<br>shelling took place overnight<br>in the disputed Georgian<br>region of South Ossetia in<br>violation of a fragile<br>ceasefire, wounding seven<br>Georgian servicemen."
-          ],
-          [
-           " FALLUJA, Iraq (Reuters) -<br>U.S. forces hit Iraq's rebel<br>stronghold of Falluja with the<br>fiercest air and ground<br>bombardment in months, as<br>insurgents struck back on<br>Saturday  with attacks that<br>killed up to 37 people in<br>Samarra."
-          ],
-          [
-           " NAJAF, Iraq (Reuters) - The<br>fate of a radical Shi'ite<br>rebellion in the holy city of<br>Najaf was uncertain Friday<br>amid  disputed reports that<br>Iraqi police had gained<br>control of the  Imam Ali<br>Mosque."
-          ],
-          [
-           "Until this week, only a few<br>things about the strange,<br>long-ago disappearance of<br>Charles Robert Jenkins were<br>known beyond a doubt. In the<br>bitter cold of Jan. 5, 1965,<br>the 24-year-old US Army<br>sergeant was leading"
-          ],
-          [
-           "The United States on Tuesday<br>modified slightly a threat of<br>sanctions on Sudan #39;s oil<br>industry in a revised text of<br>its UN resolution on<br>atrocities in the country<br>#39;s Darfur region."
-          ],
-          [
-           "AP - France intensified<br>efforts Tuesday to save the<br>lives of two journalists held<br>hostage in Iraq, and the Arab<br>League said the militants'<br>deadline for France to revoke<br>a ban on Islamic headscarves<br>in schools had been extended."
-          ],
-          [
-           "At least 12 people die in an<br>explosion at a fuel pipeline<br>on the outskirts of Nigeria's<br>biggest city, Lagos."
-          ],
-          [
-           "Volkswagen demanded a two-year<br>wage freeze for the<br>170,000-strong workforce at<br>Europe #39;s biggest car maker<br>yesterday, provoking union<br>warnings of imminent conflict<br>at key pay and conditions<br>negotiations."
-          ],
-          [
-           "Citing security concerns, the<br>U.S. Embassy on Thursday<br>banned its employees from<br>using the highway linking the<br>embassy area to the<br>international airport, a<br>10-mile stretch of road<br>plagued by frequent suicide<br>car-bomb attacks."
-          ],
-          [
-           "AP - Tom Daschle bade his<br>fellow Senate Democrats<br>farewell Tuesday with a plea<br>that they seek common ground<br>with Republicans yet continue<br>to fight for the less<br>fortunate."
-          ],
-          [
-           "AP - Police defused a bomb in<br>a town near Prime Minister<br>Silvio Berlusconi's villa on<br>the island of Sardinia on<br>Wednesday shortly after<br>British Prime Minister Tony<br>Blair finished a visit there<br>with the Italian leader."
-          ],
-          [
-           "The coffin of Yasser Arafat,<br>draped with the Palestinian<br>flag, was bound for Ramallah<br>in the West Bank Friday,<br>following a formal funeral on<br>a military compound near<br>Cairo."
-          ],
-          [
-           "US Ambassador to the United<br>Nations John Danforth resigned<br>on Thursday after serving in<br>the post for less than six<br>months. Danforth, 68, said in<br>a letter released Thursday"
-          ],
-          [
-           "ISLAMABAD, Pakistan -- Photos<br>were published yesterday in<br>newspapers across Pakistan of<br>six terror suspects, including<br>a senior Al Qaeda operative,<br>the government says were<br>behind attempts to assassinate<br>the nation's president."
-          ],
-          [
-           " ATHENS (Reuters) - The Athens<br>Paralympics canceled<br>celebrations at its closing<br>ceremony after seven<br>schoolchildren  traveling to<br>watch the event died in a bus<br>crash on Monday."
-          ],
-          [
-           "DUBAI : An Islamist group has<br>threatened to kill two Italian<br>women held hostage in Iraq if<br>Rome does not withdraw its<br>troops from the war-torn<br>country within 24 hours,<br>according to an internet<br>statement."
-          ],
-          [
-           "A heavy quake rocked Indonesia<br>#39;s Papua province killing<br>at least 11 people and<br>wounding 75. The quake<br>destroyed 150 buildings,<br>including churches, mosques<br>and schools."
-          ],
-          [
-           "Reuters - A small group of<br>suspected\\gunmen stormed<br>Uganda's Water Ministry<br>Wednesday and took<br>three\\people hostage to<br>protest against proposals to<br>allow President\\Yoweri<br>Museveni for a third<br>term.\\Police and soldiers with<br>assault rifles cordoned off<br>the\\three-story building, just<br>328 feet from Uganda's<br>parliament\\building in the<br>capital Kampala."
-          ],
-          [
-           "Venezuela suggested Friday<br>that exiles living in Florida<br>may have masterminded the<br>assassination of a prosecutor<br>investigating a short-lived<br>coup against leftist President<br>Hugo Chvez"
-          ],
-          [
-           "Facing a popular outcry at<br>home and stern warnings from<br>Europe, the Turkish government<br>discreetly stepped back<br>Tuesday from a plan to<br>introduce a motion into a<br>crucial penal reform bill to<br>make adultery a crime<br>punishable by prison."
-          ],
-          [
-           "North-west Norfolk MP Henry<br>Bellingham has called for the<br>release of an old college<br>friend accused of plotting a<br>coup in Equatorial Guinea."
-          ],
-          [
-           "AFP - Want to buy a castle?<br>Head for the former East<br>Germany."
-          ],
-          [
-           "AFP - Steven Gerrard has moved<br>to allay Liverpool fans' fears<br>that he could be out until<br>Christmas after breaking a<br>metatarsal bone in his left<br>foot."
-          ],
-          [
-           "MINSK - Legislative elections<br>in Belarus held at the same<br>time as a referendum on<br>whether President Alexander<br>Lukashenko should be allowed<br>to seek a third term fell<br>significantly short of<br>democratic standards, foreign<br>observers said here Monday."
-          ],
-          [
-           "An Olympic sailor is charged<br>with the manslaughter of a<br>Briton who died after being<br>hit by a car in Athens."
-          ],
-          [
-           "AP - Secretary of State Colin<br>Powell on Friday praised the<br>peace deal that ended fighting<br>in Iraq's holy city of Najaf<br>and said the presence of U.S.<br>forces in the area helped make<br>it possible."
-          ],
-          [
-           "26 August 2004 -- Iraq #39;s<br>top Shi #39;ite cleric, Grand<br>Ayatollah Ali al-Sistani,<br>arrived in the city of Al-<br>Najaf today in a bid to end a<br>weeks-long conflict between US<br>forces and militiamen loyal to<br>Shi #39;ite cleric Muqtada al-<br>Sadr."
-          ],
-          [
-           "PARIS : French trade unions<br>called on workers at France<br>Telecom to stage a 24-hour<br>strike September 7 to protest<br>government plans to privatize<br>the public telecommunications<br>operator, union sources said."
-          ],
-          [
-           "The Indonesian tourism<br>industry has so far not been<br>affected by last week #39;s<br>bombing outside the Australian<br>embassy in Jakarta and<br>officials said they do not<br>expect a significant drop in<br>visitor numbers as a result of<br>the attack."
-          ],
-          [
-           "MARK Thatcher will have to<br>wait until at least next April<br>to face trial on allegations<br>he helped bankroll a coup<br>attempt in oil-rich Equatorial<br>Guinea."
-          ],
-          [
-           "NEW YORK - A drop in oil<br>prices and upbeat outlooks<br>from Wal-Mart and Lowe's<br>helped send stocks sharply<br>higher Monday on Wall Street,<br>with the swing exaggerated by<br>thin late summer trading. The<br>Dow Jones industrials surged<br>nearly 130 points..."
-          ],
-          [
-           "ROSTOV-ON-DON, Russia --<br>Hundreds of protesters<br>ransacked and occupied the<br>regional administration<br>building in a southern Russian<br>province Tuesday, demanding<br>the resignation of the region<br>#39;s president, whose former<br>son-in-law has been linked to<br>a multiple"
-          ],
-          [
-           "AFP - Iraqi Foreign Minister<br>Hoshyar Zebari arrived<br>unexpectedly in the holy city<br>of Mecca Wednesday where he<br>met Crown Prince Abdullah bin<br>Abdul Aziz, the official SPA<br>news agency reported."
-          ],
-          [
-           "Haitian police and UN troops<br>moved into a slum neighborhood<br>on Sunday and cleared street<br>barricades that paralyzed a<br>part of the capital."
-          ],
-          [
-           "withdrawal of troops and<br>settlers from occupied Gaza<br>next year. Militants seek to<br>claim any pullout as a<br>victory.  quot;Islamic Jihad<br>will not be broken by this<br>martyrdom, quot; said Khaled<br>al-Batsh, a senior political<br>leader in Gaza."
-          ],
-          [
-           "The U.S. military has found<br>nearly 20 houses where<br>intelligence officers believe<br>hostages were tortured or<br>killed in this city, including<br>the house with the cage that<br>held a British contractor who<br>was beheaded last month."
-          ],
-          [
-           "AFP - Opponents of the Lao<br>government may be plotting<br>bomb attacks in Vientiane and<br>other areas of Laos timed to<br>coincide with a summit of<br>Southeast Asian leaders the<br>country is hosting next month,<br>the United States said."
-          ],
-          [
-           "AP - Russia agreed Thursday to<br>send warships to help NATO<br>naval patrols that monitor<br>suspicious vessels in the<br>Mediterranean, part of a push<br>for closer counterterrorism<br>cooperation between Moscow and<br>the western alliance."
-          ],
-          [
-           "A military plane crashed in<br>the mountains near Caracas,<br>killing all 16 persons on<br>board, including two high-<br>ranking military officers,<br>officials said."
-          ],
-          [
-           "A voice recording said to be<br>that of suspected Al Qaeda<br>commander Abu Mussab al-<br>Zarqawi, claims Iraq #39;s<br>Prime Minister Iyad Allawi is<br>the militant network #39;s<br>number one target."
-          ],
-          [
-           "BEIJING -- More than a year<br>after becoming China's<br>president, Hu Jintao was<br>handed the full reins of power<br>yesterday when his<br>predecessor, Jiang Zemin, gave<br>up the nation's most powerful<br>military post."
-          ],
-          [
-           "AP - Greenpeace activists<br>scaled the walls of Ford Motor<br>Co.'s Norwegian headquarters<br>Tuesday to protest plans to<br>destroy hundreds of non-<br>polluting electric cars."
-          ],
-          [
-           "AFP - The chances of Rupert<br>Murdoch's News Corp relocating<br>from Australia to the United<br>States have increased after<br>one of its biggest<br>institutional investors has<br>chosen to abstain from a vote<br>next week on the move."
-          ],
-          [
-           "AFP - An Indian minister said<br>a school text-book used in the<br>violence-prone western state<br>of Gujarat portrayed Adolf<br>Hitler as a role model."
-          ],
-          [
-           "DOVER, N.H. (AP) -- Democrat<br>John Kerry is seizing on the<br>Bush administration's failure<br>to secure hundreds of tons of<br>explosives now missing in<br>Iraq."
-          ],
-          [
-           "United Nations officials<br>report security breaches in<br>internally displaced people<br>and refugee camps in Sudan<br>#39;s embattled Darfur region<br>and neighboring Chad."
-          ],
-          [
-           "KINGSTON, Jamaica - Hurricane<br>Ivan's deadly winds and<br>monstrous waves bore down on<br>Jamaica on Friday, threatening<br>a direct hit on its densely<br>populated capital after<br>ravaging Grenada and killing<br>at least 33 people.    The<br>Jamaican government ordered<br>the evacuation of half a<br>million people from coastal<br>areas, where rains on Ivan's<br>outer edges were already<br>flooding roads..."
-          ],
-          [
-           "North Korea has denounced as<br>quot;wicked terrorists quot;<br>the South Korean officials who<br>orchestrated last month #39;s<br>airlift to Seoul of 468 North<br>Korean defectors."
-          ],
-          [
-           "The Black Watch regiment has<br>returned to its base in Basra<br>in southern Iraq after a<br>month-long mission standing in<br>for US troops in a more<br>violent part of the country,<br>the Ministry of Defence says."
-          ],
-          [
-           "AP - A senior Congolese<br>official said Tuesday his<br>nation had been invaded by<br>neighboring Rwanda, and U.N.<br>officials said they were<br>investigating claims of<br>Rwandan forces clashing with<br>militias in the east."
-          ],
-          [
-           "UNITED NATIONS - The United<br>Nations #39; nuclear agency<br>says it is concerned about the<br>disappearance of equipment and<br>materials from Iraq that could<br>be used to make nuclear<br>weapons."
-          ],
-          [
-           " BRUSSELS (Reuters) - The EU's<br>historic deal with Turkey to<br>open entry talks with the vast<br>Muslim country was hailed by<br>supporters as a bridge builder<br>between Europe and the Islamic<br>world."
-          ],
-          [
-           "Iraqi President Ghazi al-<br>Yawar, who was due in Paris on<br>Sunday to start a European<br>tour, has postponed his visit<br>to France due to the ongoing<br>hostage drama involving two<br>French journalists, Arab<br>diplomats said Friday."
-          ],
-          [
-           " SAO PAULO, Brazil (Reuters) -<br>President Luiz Inacio Lula da<br>Silva's Workers' Party (PT)<br>won the mayoralty of six state<br>capitals in Sunday's municipal<br>vote but was forced into a<br>run-off to defend its hold on<br>the race's biggest prize, the<br>city of Sao Paulo."
-          ],
-          [
-           "ATHENS, Greece - They are<br>America's newest golden girls<br>- powerful and just a shade<br>from perfection. The U.S..."
-          ],
-          [
-           "AMMAN, Sept. 15. - The owner<br>of a Jordanian truck company<br>announced today that he had<br>ordered its Iraq operations<br>stopped in a bid to save the<br>life of a driver held hostage<br>by a militant group."
-          ],
-          [
-           "Israel is prepared to back a<br>Middle East conference<br>convened by Tony Blair early<br>next year despite having<br>expressed fears that the<br>British plans were over-<br>ambitious and designed"
-          ],
-          [
-           "AP - U.S. State Department<br>officials learned that seven<br>American children had been<br>abandoned at a Nigerian<br>orphanage but waited more than<br>a week to check on the youths,<br>who were suffering from<br>malnutrition, malaria and<br>typhoid, a newspaper reported<br>Saturday."
-          ],
-          [
-           "\\Angry mobs in Ivory Coast's<br>main city, Abidjan, marched on<br>the airport, hours after it<br>came under French control."
-          ],
-          [
-           "Several workers are believed<br>to have been killed and others<br>injured after a contruction<br>site collapsed at Dubai<br>airport. The workers were<br>trapped under rubble at the<br>site of a \\$4."
-          ],
-          [
-           "Talks between Sudan #39;s<br>government and two rebel<br>groups to resolve the nearly<br>two-year battle resume Friday.<br>By Abraham McLaughlin  Staff<br>writer of The Christian<br>Science Monitor."
-          ],
-          [
-           "Stansted airport is the<br>designated emergency landing<br>ground for planes in British<br>airspace hit by in-flight<br>security alerts. Emergency<br>services at Stansted have<br>successfully dealt"
-          ],
-          [
-           "The massive military operation<br>to retake Fallujah has been<br>quot;accomplished quot;, a<br>senior Iraqi official said.<br>Fierce fighting continued in<br>the war-torn city where<br>pockets of resistance were<br>still holding out against US<br>forces."
-          ],
-          [
-           "There are some signs of<br>progress in resolving the<br>Nigerian conflict that is<br>riling global oil markets. The<br>leader of militia fighters<br>threatening to widen a battle<br>for control of Nigeria #39;s<br>oil-rich south has"
-          ],
-          [
-           "A strong earthquake hit Taiwan<br>on Monday, shaking buildings<br>in the capital Taipei for<br>several seconds. No casualties<br>were reported."
-          ],
-          [
-           "A policeman ran amok at a<br>security camp in Indian-<br>controlled Kashmir after an<br>argument and shot dead seven<br>colleagues before he was<br>gunned down, police said on<br>Sunday."
-          ],
-          [
-           "New York police have developed<br>a pre-emptive strike policy,<br>cutting off demonstrations<br>before they grow large."
-          ],
-          [
-           "Bulgaria has started its first<br>co-mission with the EU in<br>Bosnia and Herzegovina, along<br>with some 30 countries,<br>including Canada and Turkey."
-          ],
-          [
-           "AP - The pileup of events in<br>the city next week, including<br>the Republican National<br>Convention, will add to the<br>security challenge for the New<br>York Police Department, but<br>commissioner Ray Kelly says,<br>\"With a big, experienced<br>police force, we can do it.\""
-          ],
-          [
-           "LONDON, Dec 11 (IranMania) -<br>Iraqi Vice-President Ibrahim<br>al-Jaafari refused to believe<br>in remarks published Friday<br>that Iran was attempting to<br>influence Iraqi polls with the<br>aim of creating a<br>quot;crescent quot; dominated<br>by Shiites in the region."
-          ],
-          [
-           "The late Princess Dianas<br>former bodyguard, Ken Wharfe,<br>dismisses her suspicions that<br>one of her lovers was bumped<br>off. Princess Diana had an<br>affair with Barry Mannakee, a<br>policeman who was assigned to<br>protect her."
-          ],
-          [
-           "Long considered beyond the<br>reach of mainland mores, the<br>Florida city is trying to<br>limit blatant displays of<br>sexual behavior."
-          ],
-          [
-           "Senator John Kerry said today<br>that the war in Iraq was a<br>\"profound diversion\" from the<br>war on terror and Osama bin<br>Laden."
-          ],
-          [
-           "A group claiming to have<br>captured two Indonesian women<br>in Iraq has said it will<br>release them if Jakarta frees<br>Muslim cleric Abu Bakar Bashir<br>being held for alleged<br>terrorist links."
-          ],
-          [
-           "Indonesian police said<br>yesterday that DNA tests had<br>identified a suicide bomber<br>involved in a deadly attack<br>this month on the Australian<br>embassy in Jakarta."
-          ],
-          [
-           "NEW YORK - Wal-Mart Stores<br>Inc.'s warning of<br>disappointing sales sent<br>stocks fluctuating Monday as<br>investors' concerns about a<br>slowing economy offset their<br>relief over a drop in oil<br>prices.    October contracts<br>for a barrel of light crude<br>were quoted at \\$46.48, down<br>24 cents, on the New York<br>Mercantile Exchange..."
-          ],
-          [
-           "Iraq #39;s top Shi #39;ite<br>cleric made a sudden return to<br>the country on Wednesday and<br>said he had a plan to end an<br>uprising in the  quot;burning<br>city quot; of Najaf, where<br>fighting is creeping ever<br>closer to its holiest shrine."
-          ],
-          [
-           "KABUL, Afghanistan Aug. 22,<br>2004 - US soldiers sprayed a<br>pickup truck with bullets<br>after it failed to stop at a<br>roadblock in central<br>Afghanistan, killing two women<br>and a man and critically<br>wounding two other"
-          ],
-          [
-           "SYDNEY -- Prime Minister John<br>Howard of Australia, a key US<br>ally and supporter of the Iraq<br>war, celebrated his election<br>win over opposition Labor<br>after voters enjoying the<br>fruits of a strong economy<br>gave him another term."
-          ],
-          [
-           "BAGHDAD, Iraq - Two rockets<br>hit a downtown Baghdad hotel<br>housing foreigners and<br>journalists Thursday, and<br>gunfire erupted in the<br>neighborhood across the Tigris<br>River from the U.S. Embassy<br>compound..."
-          ],
-          [
-           "The Prevention of Terrorism<br>Act 2002 (Pota) polarised the<br>country, not just by the<br>manner in which it was pushed<br>through by the NDA government<br>through a joint session of<br>Parliament but by the shabby<br>and often biased manner in<br>which it was enforced."
-          ],
-          [
-           "The US military says marines<br>in Fallujah shot and killed an<br>insurgent who engaged them as<br>he was faking being dead, a<br>week after footage of a marine<br>killing an apparently unarmed<br>and wounded Iraqi caused a<br>stir in the region."
-          ],
-          [
-           "Description: NPR #39;s Alex<br>Chadwick talks to Colin Brown,<br>deputy political editor for<br>the United Kingdom #39;s<br>Independent newspaper,<br>currently covering the British<br>Labour Party Conference."
-          ],
-          [
-           "Hamas vowed revenge yesterday<br>after an Israeli airstrike in<br>Gaza killed one of its senior<br>commanders - the latest<br>assassination to have weakened<br>the militant group."
-          ],
-          [
-           "A senior member of the<br>Palestinian resistance group<br>Hamas has been released from<br>an Israeli prison after<br>completing a two-year<br>sentence."
-          ],
-          [
-           "MPs have announced a new<br>inquiry into family courts and<br>whether parents are treated<br>fairly over issues such as<br>custody or contact with their<br>children."
-          ],
-          [
-           "Canadian Press - MELBOURNE,<br>Australia (AP) - A 36-year-old<br>businesswoman was believed to<br>be the first woman to walk<br>around Australia on Friday<br>after striding into her<br>hometown of Melbourne to<br>complete her 16,700-kilometre<br>trek in 365 days."
-          ],
-          [
-           "Most remaining Pakistani<br>prisoners held at the US<br>Guantanamo Bay prison camp are<br>freed, officials say."
-          ],
-          [
-           "French police are<br>investigating an arson-caused<br>fire at a Jewish Social Center<br>that might have killed dozens<br>without the quick response of<br>firefighters."
-          ],
-          [
-           "Rodney King, whose videotaped<br>beating led to riots in Los<br>Angeles in 1992, is out of<br>jail now and talking frankly<br>for the first time about the<br>riots, himself and the<br>American way of life."
-          ],
-          [
-           "AFP - Radical Islamic cleric<br>Abu Hamza al-Masri was set to<br>learn Thursday whether he<br>would be charged under<br>Britain's anti-terrorism law,<br>thus delaying his possible<br>extradition to the United<br>States to face terrorism-<br>related charges."
-          ],
-          [
-           "Louisen Louis, 30, walked<br>Monday in the middle of a<br>street that resembled a small<br>river with brown rivulets and<br>waves. He wore sandals and had<br>a cut on one of his big toes."
-          ],
-          [
-           "A car bomb exploded outside<br>the main hospital in Chechny<br>#39;s capital, Grozny, on<br>Sunday, injuring 17 people in<br>an attack apparently targeting<br>members of a Chechen security<br>force bringing in wounded from<br>an earlier explosion"
-          ],
-          [
-           "AP - Gay marriage is emerging<br>as a big enough issue in<br>several states to influence<br>races both for Congress and<br>the presidency."
-          ],
-          [
-           "More than 30 aid workers have<br>been airlifted to safety from<br>a town in Sudan #39;s troubled<br>Darfur region after fighting<br>broke out and their base was<br>bombed, a British charity<br>says."
-          ],
-          [
-           "It #39;s the mildest of mild<br>winters down here in the south<br>of Italy and, last weekend at<br>Bcoli, a pretty suburb by the<br>seaside west of Naples, the<br>customers of Pizzeria  quot;Da<br>Enrico quot; were making the<br>most of it."
-          ],
-          [
-           "WASHINGTON - A spotty job<br>market and stagnant paychecks<br>cloud this Labor Day holiday<br>for many workers, highlighting<br>the importance of pocketbook<br>issues in the presidential<br>election.   \"Working harder<br>and enjoying it less,\" said<br>economist Ken Mayland,<br>president of ClearView<br>Economics, summing up the<br>state of working America..."
-          ],
-          [
-           "Canadian Press - MONTREAL (CP)<br>- A 19-year-old man charged in<br>a firebombing at a Jewish<br>elementary school pleaded<br>guilty Thursday to arson."
-          ],
-          [
-           " quot;Resuming uranium<br>enrichment is not in our<br>agenda. We are still committed<br>to the suspension, quot;<br>Foreign Ministry spokesman<br>Hamid Reza."
-          ],
-          [
-           "The U.S. military presence in<br>Iraq will grow to 150,000<br>troops by next month, the<br>highest level since the<br>invasion last year."
-          ],
-          [
-           "UPDATE, SUN 9PM: More than a<br>million people have left their<br>homes in Cuba, as Hurricane<br>Ivan approaches. The ferocious<br>storm is headed that way,<br>after ripping through the<br>Cayman Islands, tearing off<br>roofs, flooding homes and<br>causing general havoc."
-          ],
-          [
-           "German Chancellor Gerhard<br>Schroeder said Sunday that<br>there was  quot;no problem<br>quot; with Germany #39;s<br>support to the start of<br>negotiations on Turkey #39;s<br>entrance into EU."
-          ],
-          [
-           "MANILA Fernando Poe Jr., the<br>popular actor who challenged<br>President Gloria Macapagal<br>Arroyo in the presidential<br>elections this year, died<br>early Tuesday."
-          ],
-          [
-           "AMSTERDAM, NETHERLANDS - A<br>Dutch filmmaker who outraged<br>members of the Muslim<br>community by making a film<br>critical of the mistreatment<br>of women in Islamic society<br>was gunned down and stabbed to<br>death Tuesday on an Amsterdam<br>street."
-          ],
-          [
-           "Zimbabwe #39;s most persecuted<br>white MP began a year of hard<br>labour last night after<br>parliament voted to jail him<br>for shoving the Justice<br>Minister during a debate over<br>land seizures."
-          ],
-          [
-           "A smashing blow is being dealt<br>to thousands of future<br>pensioners by a law that has<br>just been brought into force<br>by the Federal Government."
-          ],
-          [
-           "AP - An Israeli helicopter<br>fired two missiles in Gaza<br>City after nightfall<br>Wednesday, one at a building<br>in the Zeitoun neighborhood,<br>witnesses said, setting a<br>fire."
-          ],
-          [
-           "The Philippines put the toll<br>at more than 1,000 dead or<br>missing in four storms in two<br>weeks but, even with a break<br>in the weather on Saturday"
-          ],
-          [
-           "Reuters - Four explosions were<br>reported at petrol\\stations in<br>the Madrid area on Friday,<br>Spanish radio stations\\said,<br>following a phone warning in<br>the name of the armed<br>Basque\\separatist group ETA to<br>a Basque newspaper."
-          ],
-          [
-           "WEST PALM BEACH, Fla. -<br>Hurricane Jeanne got stronger,<br>bigger and faster as it<br>battered the Bahamas and bore<br>down on Florida Saturday,<br>sending huge waves crashing<br>onto beaches and forcing<br>thousands into shelters just<br>weeks after Frances ravaged<br>this area..."
-          ],
-          [
-           "NEW YORK - Elena Dementieva<br>shook off a subpar serve that<br>produced 15 double-faults, an<br>aching left thigh and an upset<br>stomach to advance to the<br>semifinals at the U.S. Open<br>with a 4-6, 6-4, 7-6 (1)<br>victory Tuesday over Amelie<br>Mauresmo..."
-          ],
-          [
-           "Prime Minister Dr Manmohan<br>Singh inaugurated a research<br>centre in the Capital on<br>Thursday to mark 400 years of<br>compilation of Sikh holy book<br>the Guru Granth Sahib."
-          ],
-          [
-           "THE re-election of British<br>Prime Minister Tony Blair<br>would be seen as an<br>endorsement of the military<br>action in Iraq, Prime Minister<br>John Howard said today."
-          ],
-          [
-           "President George W. Bush<br>pledged Friday to spend some<br>of the political capital from<br>his re-election trying to<br>secure a lasting Middle East<br>peace, and he envisioned the<br>establishment"
-          ],
-          [
-           "NEW DELHI - A bomb exploded<br>during an Independence Day<br>parade in India's remote<br>northeast on Sunday, killing<br>at least 15 people, officials<br>said, just an hour after Prime<br>Minister Manmohan Singh<br>pledged to fight terrorism.<br>The outlawed United Liberation<br>Front of Asom was suspected of<br>being behind the attack in<br>Assam state and a second one<br>later in the area, said Assam<br>Inspector General of Police<br>Khagen Sharma..."
-          ],
-          [
-           "A UN envoy to Sudan will visit<br>Darfur tomorrow to check on<br>the government #39;s claim<br>that some 70,000 people<br>displaced by conflict there<br>have voluntarily returned to<br>their homes, a spokesman said."
-          ],
-          [
-           "AP - Most of the presidential<br>election provisional ballots<br>rejected so far in Ohio came<br>from people who were not even<br>registered to vote, election<br>officials said after spending<br>nearly two weeks poring over<br>thousands of disputed votes."
-          ],
-          [
-           "AP - Rival inmates fought each<br>other with knives and sticks<br>Wednesday at a San Salvador<br>prison, leaving at least 31<br>people dead and two dozen<br>injured, officials said."
-          ],
-          [
-           "BAGHDAD - Two Egyptian<br>employees of a mobile phone<br>company were seized when<br>gunmen stormed into their<br>Baghdad office, the latest in<br>a series of kidnappings in the<br>country."
-          ],
-          [
-           "BRISBANE, Australia - The body<br>of a whale resembling a giant<br>dolphin that washed up on an<br>eastern Australian beach has<br>intrigued local scientists,<br>who agreed Wednesday that it<br>is rare but are not sure just<br>how rare."
-          ],
-          [
-           "President Bush aims to<br>highlight American drug-<br>fighting aid in Colombia and<br>boost a conservative Latin<br>American leader with a stop in<br>the Andean nation where<br>thousands of security forces<br>are deployed to safeguard his<br>brief stay."
-          ],
-          [
-           "Dubai - Former Palestinian<br>security minister Mohammed<br>Dahlan said on Monday that a<br>quot;gang of mercenaries quot;<br>known to the Palestinian<br>police were behind the<br>shooting that resulted in two<br>deaths in a mourning tent for<br>Yasser Arafat in Gaza."
-          ],
-          [
-           "A Frenchman working for Thales<br>SA, Europe #39;s biggest maker<br>of military electronics, was<br>shot dead while driving home<br>at night in the Saudi Arabian<br>city of Jeddah."
-          ],
-          [
-           "China will take tough measures<br>this winter to improve the<br>country #39;s coal mine safety<br>and prevent accidents. State<br>Councilor Hua Jianmin said<br>Thursday the industry should<br>take"
-          ],
-          [
-           "BAGHDAD (Iraq): As the<br>intensity of skirmishes<br>swelled on the soils of Iraq,<br>dozens of people were put to<br>death with toxic shots by the<br>US helicopter gunship, which<br>targeted the civilians,<br>milling around a burning<br>American vehicle in a Baghdad<br>street on"
-          ],
-          [
-           "Reuters - A key Iranian<br>nuclear facility which<br>the\\U.N.'s nuclear watchdog<br>has urged Tehran to shut down<br>is\\nearing completion, a<br>senior Iranian nuclear<br>official said on\\Sunday."
-          ],
-          [
-           "Spain's Football Federation<br>launches an investigation into<br>racist comments made by<br>national coach Luis Aragones."
-          ],
-          [
-           "Bricks and plaster blew inward<br>from the wall, as the windows<br>all shattered and I fell to<br>the floorwhether from the<br>shock wave, or just fright, it<br>wasn #39;t clear."
-          ],
-          [
-           "Surfersvillage Global Surf<br>News, 13 September 2004: - -<br>Hurricane Ivan, one of the<br>most powerful storms to ever<br>hit the Caribbean, killed at<br>least 16 people in Jamaica,<br>where it wrecked houses and<br>washed away roads on Saturday,<br>but appears to have spared"
-          ],
-          [
-           "LONDON, England -- A US<br>scientist is reported to have<br>observed a surprising jump in<br>the amount of carbon dioxide,<br>the main greenhouse gas."
-          ],
-          [
-           "Zimbabwe #39;s ruling Zanu-PF<br>old guard has emerged on top<br>after a bitter power struggle<br>in the deeply divided party<br>during its five-yearly<br>congress, which ended<br>yesterday."
-          ],
-          [
-           "Reuters - Thousands of<br>demonstrators pressing<br>to\\install Ukraine's<br>opposition leader as president<br>after a\\disputed election<br>launched fresh street rallies<br>in the capital\\for the third<br>day Wednesday."
-          ],
-          [
-           "Michael Jackson wishes he had<br>fought previous child<br>molestation claims instead of<br>trying to \"buy peace\", his<br>lawyer says."
-          ],
-          [
-           "North Korea says it will not<br>abandon its weapons programme<br>after the South admitted<br>nuclear activities."
-          ],
-          [
-           "While there is growing<br>attention to ongoing genocide<br>in Darfur, this has not<br>translated into either a<br>meaningful international<br>response or an accurate<br>rendering of the scale and<br>evident course of the<br>catastrophe."
-          ],
-          [
-           "THE prosecution on terrorism<br>charges of extremist Islamic<br>cleric and accused Jemaah<br>Islamiah leader Abu Bakar<br>Bashir will rely heavily on<br>the potentially tainted<br>testimony of at least two<br>convicted Bali bombers, his<br>lawyers have said."
-          ],
-          [
-           "Clashes between US troops and<br>Sadr militiamen escalated<br>Thursday, as the US surrounded<br>Najaf for possible siege."
-          ],
-          [
-           "AFP - A battle group of<br>British troops rolled out of<br>southern Iraq on a US-<br>requested mission to deadlier<br>areas near Baghdad, in a major<br>political gamble for British<br>Prime Minister Tony Blair."
-          ],
-          [
-           "over half the children in the<br>world - suffer extreme<br>deprivation because of war,<br>HIV/AIDS or poverty, according<br>to a report released yesterday<br>by the United Nations Children<br>#39;s Fund."
-          ],
-          [
-           "Reuters - Philippine rescue<br>teams\\evacuated thousands of<br>people from the worst flooding<br>in the\\central Luzon region<br>since the 1970s as hungry<br>victims hunted\\rats and birds<br>for food."
-          ],
-          [
-           "The Afghan president expresses<br>deep concern after a bomb<br>attack which left at least<br>seven people dead."
-          ],
-          [
-           "Gardez (Afghanistan), Sept. 16<br>(Reuters): Afghan President<br>Hamid Karzai escaped an<br>assassination bid today when a<br>rocket was fired at his US<br>military helicopter as it was<br>landing in the southeastern<br>town of Gardez."
-          ],
-          [
-           "The Jets came up with four<br>turnovers by Dolphins<br>quarterback Jay Fiedler in the<br>second half, including an<br>interception returned 66 yards<br>for a touchdown."
-          ],
-          [
-           "DUBLIN -- Prime Minister<br>Bertie Ahern urged Irish<br>Republican Army commanders<br>yesterday to meet what he<br>acknowledged was ''a heavy<br>burden quot;: disarming and<br>disbanding their organization<br>in support of Northern<br>Ireland's 1998 peace accord."
-          ],
-          [
-           "While reproductive planning<br>and women #39;s equality have<br>improved substantially over<br>the past decade, says a United<br>Nations report, world<br>population will increase from<br>6.4 billion today to 8.9<br>billion by 2050, with the 50<br>poorest countries tripling in"
-          ],
-          [
-           "BAR's Anthony Davidson and<br>Jenson Button set the pace at<br>the first Chinese Grand Prix."
-          ],
-          [
-           "WASHINGTON - Contradicting the<br>main argument for a war that<br>has cost more than 1,000<br>American lives, the top U.S.<br>arms inspector reported<br>Wednesday that he found no<br>evidence that Iraq produced<br>any weapons of mass<br>destruction after 1991..."
-          ],
-          [
-           "AFP - Style mavens will be<br>scanning the catwalks in Paris<br>this week for next spring's<br>must-have handbag, as a<br>sweeping exhibition at the<br>French capital's fashion and<br>textile museum reveals the bag<br>in all its forms."
-          ],
-          [
-           "Canadian Press - SAINT-<br>QUENTIN, N.B. (CP) - A major<br>highway in northern New<br>Brunswick  remained closed to<br>almost all traffic Monday, as<br>local residents protested<br>planned health care cuts."
-          ],
-          [
-           " NAJAF, Iraq (Reuters) - A<br>radical Iraqi cleric leading a<br>Shi'ite uprising agreed on<br>Wednesday to disarm his<br>militia and  leave one of the<br>country's holiest Islamic<br>shrines after  warnings of an<br>onslaught by government<br>forces."
-          ],
-          [
-           "Saudi security forces have<br>killed a wanted militant near<br>the scene of a deadly shootout<br>Thursday. Officials say the<br>militant was killed in a<br>gunbattle Friday in the<br>northern town of Buraida,<br>hours after one"
-          ],
-          [
-           "Two South Africans acquitted<br>by a Zimbabwean court of<br>charges related to the alleged<br>coup plot in Equatorial Guinea<br>are to be questioned today by<br>the South African authorities."
-          ],
-          [
-           "MOSCOW (CP) - Russia mourned<br>89 victims of a double air<br>disaster today as debate<br>intensified over whether the<br>two passenger liners could<br>have plunged almost<br>simultaneously from the sky by<br>accident."
-          ],
-          [
-           "Australia #39;s prime minister<br>says a body found in Fallujah<br>is likely that of kidnapped<br>aid worker Margaret Hassan.<br>John Howard told Parliament a<br>videotape of an Iraqi<br>terrorist group executing a<br>Western woman appears to have<br>been genuine."
-          ],
-          [
-           "AP - Their first debate less<br>than a week away, President<br>Bush and Democrat John Kerry<br>kept their public schedules<br>clear on Saturday and began to<br>focus on their prime-time<br>showdown."
-          ],
-          [
-           "PARIS Getting to the bottom of<br>what killed Yassar Arafat<br>could shape up to be an ugly<br>family tug-of-war. Arafat<br>#39;s half-brother and nephew<br>want copies of Arafat #39;s<br>medical records from the<br>suburban Paris hospital"
-          ],
-          [
-           " THE HAGUE (Reuters) - Former<br>Yugoslav President Slobodan<br>Milosevic condemned his war<br>crimes trial as a \"pure farce\"<br>on  Wednesday in a defiant<br>finish to his opening defense<br>statement  against charges of<br>ethnic cleansing in the<br>Balkans."
-          ],
-          [
-           " GUWAHATI, India (Reuters) -<br>People braved a steady drizzle<br>to come out to vote in a<br>remote northeast Indian state<br>on  Thursday, as troops<br>guarded polling stations in an<br>election  being held under the<br>shadow of violence."
-          ],
-          [
-           "AFP - Three of the nine<br>Canadian sailors injured when<br>their newly-delivered,<br>British-built submarine caught<br>fire in the North Atlantic<br>were airlifted Wednesday to<br>hospital in northwest Ireland,<br>officials said."
-          ],
-          [
-           "BAGHDAD, Iraq - A series of<br>strong explosions shook<br>central Baghdad near dawn<br>Sunday, and columns of thick<br>black smoke rose from the<br>Green Zone where U.S. and<br>Iraqi government offices are<br>located..."
-          ],
-          [
-           "Sven-Goran Eriksson may gamble<br>by playing goalkeeper Paul<br>Robinson and striker Jermain<br>Defoe in Poland."
-          ],
-          [
-           "Foreign Secretary Jack Straw<br>has flown to Khartoum on a<br>mission to pile the pressure<br>on the Sudanese government to<br>tackle the humanitarian<br>catastrophe in Darfur."
-          ],
-          [
-           "Reuters - A senior U.S.<br>official said on<br>Wednesday\\deals should not be<br>done with hostage-takers ahead<br>of the\\latest deadline set by<br>Afghan Islamic militants who<br>have\\threatened to kill three<br>kidnapped U.N. workers."
-          ],
-          [
-           "Sinn Fein leader Gerry Adams<br>has put the pressure for the<br>success or failure of the<br>Northern Ireland assembly<br>talks firmly on the shoulders<br>of Ian Paisley."
-          ],
-          [
-           " JAKARTA (Reuters) - President<br>Megawati Sukarnoputri urged<br>Indonesians on Thursday to<br>accept the results of the<br>country's  first direct<br>election of a leader, but<br>stopped short of  conceding<br>defeat."
-          ],
-          [
-           "ISLAMABAD: Pakistan early<br>Monday test-fired its<br>indigenously developed short-<br>range nuclear-capable Ghaznavi<br>missile, the Inter Services<br>Public Relations (ISPR) said<br>in a statement."
-          ],
-          [
-           "The trial of a man accused of<br>murdering York backpacker<br>Caroline Stuttle begins in<br>Australia."
-          ],
-          [
-           "BRUSSELS: The EU sought<br>Wednesday to keep pressure on<br>Turkey over its bid to start<br>talks on joining the bloc, as<br>last-minute haggling seemed<br>set to go down to the wire at<br>a summit poised to give a<br>green light to Ankara."
-          ],
-          [
-           "AP - J. Cofer Black, the State<br>Department official in charge<br>of counterterrorism, is<br>leaving government in the next<br>few weeks."
-          ],
-          [
-           "AFP - The United States<br>presented a draft UN<br>resolution that steps up the<br>pressure on Sudan over the<br>crisis in Darfur, including<br>possible international<br>sanctions against its oil<br>sector."
-          ],
-          [
-           "AFP - At least 33 people were<br>killed and dozens others<br>wounded when two bombs ripped<br>through a congregation of<br>Sunni Muslims in Pakistan's<br>central city of Multan, police<br>said."
-          ],
-          [
-           "AFP - A series of torchlight<br>rallies and vigils were held<br>after darkness fell on this<br>central Indian city as victims<br>and activists jointly<br>commemorated a night of horror<br>20 years ago when lethal gas<br>leaked from a pesticide plant<br>and killed thousands."
-          ],
-          [
-           "A Zimbabwe court Friday<br>convicted a British man<br>accused of leading a coup plot<br>against the government of oil-<br>rich Equatorial Guinea on<br>weapons charges, but acquitted<br>most of the 69 other men held<br>with him."
-          ],
-          [
-           "Canadian Press - TORONTO (CP)<br>- The fatal stabbing of a<br>young man trying to eject<br>unwanted party guests from his<br>family home, the third such<br>knifing in just weeks, has<br>police worried about a<br>potentially fatal holiday<br>recipe: teens, alcohol and<br>knives."
-          ],
-          [
-           "MOSCOW - A female suicide<br>bomber set off a shrapnel-<br>filled explosive device<br>outside a busy Moscow subway<br>station on Tuesday night,<br>officials said, killing 10<br>people and injuring more than<br>50."
-          ],
-          [
-           "ABIDJAN (AFP) - Two Ivory<br>Coast military aircraft<br>carried out a second raid on<br>Bouake, the stronghold of the<br>former rebel New Forces (FN)<br>in the divided west African<br>country, a French military<br>source told AFP."
-          ],
-          [
-           "AFP - A state of civil<br>emergency in the rebellion-hit<br>Indonesian province of Aceh<br>has been formally extended by<br>six month, as the country's<br>president pledged to end<br>violence there without foreign<br>help."
-          ],
-          [
-           "US Secretary of State Colin<br>Powell on Monday said he had<br>spoken to both Indian Foreign<br>Minister K Natwar Singh and<br>his Pakistani counterpart<br>Khurshid Mahmud Kasuri late<br>last week before the two met<br>in New Delhi this week for<br>talks."
-          ],
-          [
-           "NEW YORK - Victor Diaz hit a<br>tying, three-run homer with<br>two outs in the ninth inning,<br>and Craig Brazell's first<br>major league home run in the<br>11th gave the New York Mets a<br>stunning 4-3 victory over the<br>Chicago Cubs on Saturday.<br>The Cubs had much on the<br>line..."
-          ],
-          [
-           "AFP - At least 54 people have<br>died and more than a million<br>have fled their homes as<br>torrential rains lashed parts<br>of India and Bangladesh,<br>officials said."
-          ],
-          [
-           "LOS ANGELES - California has<br>adopted the world's first<br>rules to reduce greenhouse<br>emissions for autos, taking<br>what supporters see as a<br>dramatic step toward cleaning<br>up the environment but also<br>ensuring higher costs for<br>drivers.    The rules may lead<br>to sweeping changes in<br>vehicles nationwide,<br>especially if other states opt<br>to follow California's<br>example..."
-          ],
-          [
-           "AFP - Republican and<br>Democratic leaders each<br>declared victory after the<br>first head-to-head sparring<br>match between President George<br>W. Bush and Democratic<br>presidential hopeful John<br>Kerry."
-          ],
-          [
-           "Last night in New York, the UN<br>secretary-general was given a<br>standing ovation - a robust<br>response to a series of<br>attacks in past weeks."
-          ],
-          [
-           "JOHANNESBURG -- Meeting in<br>Nigeria four years ago,<br>African leaders set a goal<br>that 60 percent of children<br>and pregnant women in malaria-<br>affected areas around the<br>continent would be sleeping<br>under bed nets by the end of<br>2005."
-          ],
-          [
-           "AP - Duke Bainum outspent Mufi<br>Hannemann in Honolulu's most<br>expensive mayoral race, but<br>apparently failed to garner<br>enough votes in Saturday's<br>primary to claim the office<br>outright."
-          ],
-          [
-           "POLITICIANS and aid agencies<br>yesterday stressed the<br>importance of the media in<br>keeping the spotlight on the<br>appalling human rights abuses<br>taking place in the Darfur<br>region of Sudan."
-          ],
-          [
-           "\\Children who have a poor diet<br>are more likely to become<br>aggressive and anti-social, US<br>researchers believe."
-          ],
-          [
-           "Canadian Press - OTTAWA (CP) -<br>Contrary to Immigration<br>Department claims, there is no<br>shortage of native-borne<br>exotic dancers in Canada, says<br>a University of Toronto law<br>professor who has studied the<br>strip club business."
-          ],
-          [
-           "The European Union presidency<br>yesterday expressed optimism<br>that a deal could be struck<br>over Turkey #39;s refusal to<br>recognize Cyprus in the lead-<br>up to next weekend #39;s EU<br>summit, which will decide<br>whether to give Ankara a date<br>for the start of accession<br>talks."
-          ],
-          [
-           " WASHINGTON (Reuters) -<br>President Bush on Friday set a<br>four-year goal of seeing a<br>Palestinian state established<br>and he  and British Prime<br>Minister Tony Blair vowed to<br>mobilize  international<br>support to help make it happen<br>now that Yasser  Arafat is<br>dead."
-          ],
-          [
-           " KHARTOUM (Reuters) - Sudan on<br>Saturday questioned U.N.<br>estimates that up to 70,000<br>people have died from hunger<br>and  disease in its remote<br>Darfur region since a<br>rebellion began 20  months<br>ago."
-          ],
-          [
-           "AFP - At least four Georgian<br>soldiers were killed and five<br>wounded in overnight clashes<br>in Georgia's separatist, pro-<br>Russian region of South<br>Ossetia, Georgian officers<br>near the frontline with<br>Ossetian forces said early<br>Thursday."
-          ],
-          [
-           "The European Commission is<br>expected later this week to<br>recommend EU membership talks<br>with Turkey. Meanwhile, German<br>Chancellor Gerhard Schroeder<br>and Turkish Prime Minister<br>Tayyip Erdogan are<br>anticipating a  quot;positive<br>report."
-          ],
-          [
-           "The Canadian government<br>signalled its intention<br>yesterday to reintroduce<br>legislation to decriminalise<br>the possession of small<br>amounts of marijuana."
-          ],
-          [
-           "A screensaver targeting spam-<br>related websites appears to<br>have been too successful."
-          ],
-          [
-           " ABIDJAN (Reuters) - Ivory<br>Coast warplanes killed nine<br>French soldiers on Saturday in<br>a bombing raid during the<br>fiercest clashes with rebels<br>for 18 months and France hit<br>back  by destroying most of<br>the West African country's<br>small  airforce."
-          ],
-          [
-           "GAZA CITY, Gaza Strip --<br>Islamic militant groups behind<br>many suicide bombings<br>dismissed yesterday a call<br>from Mahmoud Abbas, the<br>interim Palestinian leader, to<br>halt attacks in the run-up to<br>a Jan. 9 election to replace<br>Yasser Arafat."
-          ],
-          [
-           "Secretary of State Colin<br>Powell is wrapping up an East<br>Asia trip focused on prodding<br>North Korea to resume talks<br>aimed at ending its nuclear-<br>weapons program."
-          ],
-          [
-           "The risk of intestinal damage<br>from common painkillers may be<br>higher than thought, research<br>suggests."
-          ],
-          [
-           "AN earthquake measuring 7.3 on<br>the Richter Scale hit western<br>Japan this morning, just hours<br>after another strong quake<br>rocked the area."
-          ],
-          [
-           "Britain #39;s Prince Harry,<br>struggling to shed a growing<br>quot;wild child quot; image,<br>won #39;t apologize to a<br>photographer he scuffled with<br>outside an exclusive London<br>nightclub, a royal spokesman<br>said on Saturday."
-          ],
-          [
-           "Pakistan #39;s interim Prime<br>Minister Chaudhry Shaujaat<br>Hussain has announced his<br>resignation, paving the way<br>for his successor Shauket<br>Aziz."
-          ],
-          [
-           "A previously unknown group<br>calling itself Jamaat Ansar<br>al-Jihad al-Islamiya says it<br>set fire to a Jewish soup<br>kitchen in Paris, according to<br>an Internet statement."
-          ],
-          [
-           "The deadliest attack on<br>Americans in Iraq since May<br>came as Iraqi officials<br>announced that Saddam<br>Hussein's deputy had not been<br>captured on Sunday."
-          ],
-          [
-           "A fundraising concert will be<br>held in London in memory of<br>the hundreds of victims of the<br>Beslan school siege."
-          ],
-          [
-           "AFP - The landmark trial of a<br>Rwandan Roman Catholic priest<br>accused of supervising the<br>massacre of 2,000 of his Tutsi<br>parishioners during the<br>central African country's 1994<br>genocide opens at a UN court<br>in Tanzania."
-          ],
-          [
-           "The Irish government has<br>stepped up its efforts to free<br>the British hostage in Iraq,<br>Ken Bigley, whose mother is<br>from Ireland, by talking to<br>diplomats from Iran and<br>Jordan."
-          ],
-          [
-           "AP - Republican Sen. Lincoln<br>Chafee, who flirted with<br>changing political parties in<br>the wake of President Bush's<br>re-election victory, says he<br>will stay in the GOP."
-          ],
-          [
-           "South Korean President Roh<br>Moo-hyun pays a surprise visit<br>to troops in Iraq, after his<br>government decided to extend<br>their mandate."
-          ],
-          [
-           "As the European Union<br>approaches a contentious<br>decision - whether to let<br>Turkey join the club - the<br>Continent #39;s rulers seem to<br>have left their citizens<br>behind."
-          ],
-          [
-           " BAGHDAD (Reuters) - A<br>deadline set by militants who<br>have  threatened to kill two<br>Americans and a Briton seized<br>in Iraq  was due to expire<br>Monday, and more than two<br>dozen other  hostages were<br>also facing death unless rebel<br>demands were met."
-          ],
-          [
-           "Some Venezuelan television<br>channels began altering their<br>programs Thursday, citing<br>fears of penalties under a new<br>law restricting violence and<br>sexual content over the<br>airwaves."
-          ],
-          [
-           "afrol News, 4 October -<br>Hundred years of conservation<br>efforts have lifted the<br>southern black rhino<br>population from about hundred<br>to 11,000 animals."
-          ],
-          [
-           "THE death of Philippine movie<br>star and defeated presidential<br>candidate Fernando Poe has<br>drawn some political backlash,<br>with some people seeking to<br>use his sudden demise as a<br>platform to attack President<br>Gloria Arroyo."
-          ],
-          [
-           "VIENTIANE, Laos China moved<br>yet another step closer in<br>cementing its economic and<br>diplomatic relationships with<br>Southeast Asia today when<br>Prime Minister Wen Jiabao<br>signed a trade accord at a<br>regional summit that calls for<br>zero tariffs on a wide range<br>of"
-          ],
-          [
-           "British judges in London<br>Tuesday ordered radical Muslim<br>imam Abu Hamza to stand trial<br>for soliciting murder and<br>inciting racial hatred."
-          ],
-          [
-           "SARASOTA, Fla. - The<br>devastation brought on by<br>Hurricane Charley has been<br>especially painful for an<br>elderly population that is<br>among the largest in the<br>nation..."
-          ],
-          [
-           " quot;He is charged for having<br>a part in the Bali incident,<br>quot; state prosecutor Andi<br>Herman told Reuters on<br>Saturday. bombing attack at<br>the US-run JW."
-          ],
-          [
-           "The United Nations called on<br>Monday for an immediate<br>ceasefire in eastern Congo as<br>fighting between rival army<br>factions flared for a third<br>day."
-          ],
-          [
-           "Allowing dozens of casinos to<br>be built in the UK would bring<br>investment and thousands of<br>jobs, Tony Blair says."
-          ],
-          [
-           "The shock here was not just<br>from the awful fact itself,<br>that two vibrant young Italian<br>women were kidnapped in Iraq,<br>dragged from their office by<br>attackers who, it seems, knew<br>their names."
-          ],
-          [
-           "Tehran/Vianna, Sept. 19 (NNN):<br>Iran on Sunday rejected the<br>International Atomic Energy<br>Agency (IAEA) call to suspend<br>of all its nuclear activities,<br>saying that it will not agree<br>to halt uranium enrichment."
-          ],
-          [
-           "A 15-year-old Argentine<br>student opened fire at his<br>classmates on Tuesday in a<br>middle school in the south of<br>the Buenos Aires province,<br>leaving at least four dead and<br>five others wounded, police<br>said."
-          ],
-          [
-           "NEW YORK - A cable pay-per-<br>view company has decided not<br>to show a three-hour election<br>eve special with filmmaker<br>Michael Moore that included a<br>showing of his documentary<br>\"Fahrenheit 9/11,\" which is<br>sharply critical of President<br>Bush.    The company, iN<br>DEMAND, said Friday that its<br>decision is due to \"legitimate<br>business and legal concerns.\"<br>A spokesman would not<br>elaborate..."
-          ],
-          [
-           "Democracy candidates picked up<br>at least one more seat in<br>parliament, according to exit<br>polls."
-          ],
-          [
-           "The IOC wants suspended<br>Olympic member Ivan Slavkov to<br>be thrown out of the<br>organisation."
-          ],
-          [
-           " BANGKOK (Reuters) - The<br>ouster of Myanmar's prime<br>minister,  architect of a<br>tentative \"roadmap to<br>democracy,\" has dashed  faint<br>hopes for an end to military<br>rule and leaves Southeast<br>Asia's policy of constructive<br>engagement in tatters."
-          ],
-          [
-           "The anguish of hostage Kenneth<br>Bigley in Iraq hangs over<br>Prime Minister Tony Blair<br>today as he faces the twin<br>test of a local election and a<br>debate by his Labour Party<br>about the divisive war."
-          ],
-          [
-           " quot;There were 16 people<br>travelling aboard. ... It<br>crashed into a mountain, quot;<br>Col. Antonio Rivero, head of<br>the Civil Protection service,<br>told."
-          ],
-          [
-           "President Bush is reveling in<br>winning the popular vote and<br>feels he can no longer be<br>considered a one-term accident<br>of history."
-          ],
-          [
-           "Canadian Press - TORONTO (CP)<br>- Thousands of Royal Bank<br>clerks are being asked to<br>display rainbow stickers at<br>their desks and cubicles to<br>promote a safe work<br>environment for gays,<br>lesbians, and bisexuals."
-          ],
-          [
-           " BAGHDAD (Reuters) - A car<br>bomb killed two American<br>soldiers  and wounded eight<br>when it exploded in Baghdad on<br>Saturday, the  U.S. military<br>said in a statement."
-          ],
-          [
-           "Sudanese authorities have<br>moved hundreds of pro-<br>government fighters from the<br>crisis-torn Darfur region to<br>other parts of the country to<br>keep them out of sight of<br>foreign military observers<br>demanding the militia #39;s<br>disarmament, a rebel leader<br>charged"
-          ],
-          [
-           "BAGHDAD, Iraq - A car bomb<br>Tuesday ripped through a busy<br>market near a Baghdad police<br>headquarters where Iraqis were<br>waiting to apply for jobs on<br>the force, and gunmen opened<br>fire on a van carrying police<br>home from work in Baqouba,<br>killing at least 59 people<br>total and wounding at least<br>114.    The attacks were the<br>latest attempts by militants<br>to wreck the building of a<br>strong Iraqi security force, a<br>keystone of the U.S..."
-          ],
-          [
-           "The Israeli prime minister<br>said today that he wanted to<br>begin withdrawing settlers<br>from Gaza next May or June."
-          ],
-          [
-           "Queen Elizabeth II stopped<br>short of apologizing for the<br>Allies #39; bombing of Dresden<br>during her first state visit<br>to Germany in 12 years and<br>instead acknowledged  quot;the<br>appalling suffering of war on<br>both sides."
-          ],
-          [
-           "AP - Fugitive Taliban leader<br>Mullah Mohammed Omar has<br>fallen out with some of his<br>lieutenants, who blame him for<br>the rebels' failure to disrupt<br>the landmark Afghan<br>presidential election, the<br>U.S. military said Wednesday."
-          ],
-          [
-           "HAVANA -- Cuban President<br>Fidel Castro's advancing age<br>-- and ultimately his<br>mortality -- were brought home<br>yesterday, a day after he<br>fractured a knee and arm when<br>he tripped and fell at a<br>public event."
-          ],
-          [
-           " BRASILIA, Brazil (Reuters) -<br>The United States and Brazil<br>predicted on Tuesday Latin<br>America's largest country<br>would  resolve a dispute with<br>the U.N. nuclear watchdog over<br>inspections of a uranium<br>enrichment plant."
-          ],
-          [
-           "Two bombs exploded today near<br>a tea shop and wounded 20<br>people in southern Thailand,<br>police said, as violence<br>continued unabated in the<br>Muslim-majority region where<br>residents are seething over<br>the deaths of 78 detainees<br>while in military custody."
-          ],
-          [
-           "Prime Minister Junichiro<br>Koizumi, back in Tokyo after<br>an 11-day diplomatic mission<br>to the Americas, hunkered down<br>with senior ruling party<br>officials on Friday to focus<br>on a major reshuffle of<br>cabinet and top party posts."
-          ],
-          [
-           "NEW YORK - A sluggish gross<br>domestic product reading was<br>nonetheless better than<br>expected, prompting investors<br>to send stocks slightly higher<br>Friday on hopes that the<br>economic slowdown would not be<br>as bad as first thought.<br>The 2.8 percent GDP growth in<br>the second quarter, a revision<br>from the 3 percent preliminary<br>figure reported in July, is a<br>far cry from the 4.5 percent<br>growth in the first quarter..."
-          ],
-          [
-           " SEOUL (Reuters) - A huge<br>explosion in North Korea last<br>week  may have been due to a<br>combination of demolition work<br>for a  power plant and<br>atmospheric clouds, South<br>Korea's spy agency  said on<br>Wednesday."
-          ],
-          [
-           "AP - Sudan's U.N. ambassador<br>challenged the United States<br>to send troops to the Darfur<br>region if it really believes a<br>genocide is taking place as<br>the U.S. Congress and<br>President Bush's<br>administration have<br>determined."
-          ],
-          [
-           "AFP - A junior British<br>minister said that people<br>living in camps after fleeing<br>their villages because of<br>conflict in Sudan's Darfur<br>region lived in fear of<br>leaving their temporary homes<br>despite a greater presence now<br>of aid workers."
-          ],
-          [
-           "US Deputy Secretary of State<br>Richard Armitage (L) shakes<br>hands with Pakistani Foreign<br>Minister Khurshid Kasuri prior<br>to their meeting in Islamabad,<br>09 November 2004."
-          ],
-          [
-           "AP - Democrat John Edwards<br>kept up a long-distance debate<br>over his \"two Americas\"<br>campaign theme with Vice<br>President Dick Cheney on<br>Tuesday, saying it was no<br>illusion to thousands of laid-<br>off workers in Ohio."
-          ],
-          [
-           "A group of 76 Eritreans on a<br>repatriation flight from Libya<br>Friday forced their plane to<br>change course and land in the<br>Sudanese capital, Khartoum,<br>where they"
-          ],
-          [
-           "AP - They say that opposites<br>attract, and in the case of<br>Sen. John Kerry and Teresa<br>Heinz Kerry, that may be true<br>#151; at least in their public<br>personas."
-          ],
-          [
-           "AP - Impoverished North Korea<br>might resort to selling<br>weapons-grade plutonium to<br>terrorists for much-needed<br>cash, and that would be<br>\"disastrous for the world,\"<br>the top U.S. military<br>commander in South Korea said<br>Friday."
-          ],
-          [
-           "Dubai: Osama bin Laden on<br>Thursday called on his<br>fighters to strike Gulf oil<br>supplies and warned Saudi<br>leaders they risked a popular<br>uprising in an audio message<br>said to be by the Western<br>world #39;s most wanted terror<br>mastermind."
-          ],
-          [
-           "BEIJING -- Chinese authorities<br>have arrested or reprimanded<br>more than 750 officials in<br>recent months in connection<br>with billions of dollars in<br>financial irregularities<br>ranging from unpaid taxes to<br>embezzlement, according to a<br>report made public yesterday."
-          ],
-          [
-           "Canadian Press - GAUHATI,<br>India (AP) - Residents of<br>northeastern India were<br>bracing for more violence<br>Friday, a day after bombs<br>ripped through two buses and a<br>grenade was hurled into a<br>crowded market in attacks that<br>killed four people and wounded<br>54."
-          ],
-          [
-           "Some 28 people are charged<br>with trying to overthrow<br>Sudan's President Bashir,<br>reports say."
-          ],
-          [
-           "Hong Kong #39;s Beijing-backed<br>chief executive yesterday<br>ruled out any early moves to<br>pass a controversial national<br>security law which last year<br>sparked a street protest by<br>half a million people."
-          ],
-          [
-           "Beer consumption has doubled<br>over the past five years,<br>prompting legislators to<br>implement new rules."
-          ],
-          [
-           "At least 79 people were killed<br>and 74 were missing after some<br>of the worst rainstorms in<br>recent years triggered<br>landslides and flash floods in<br>southwest China, disaster<br>relief officials said<br>yesterday."
-          ],
-          [
-           "BANGKOK Thai military aircraft<br>dropped 100 million paper<br>birds over southern Thailand<br>on Sunday in a gesture<br>intended to promote peace in<br>mainly Muslim provinces, where<br>more than 500 people have died<br>this year in attacks by<br>separatist militants and"
-          ],
-          [
-           "Insurgents threatened on<br>Saturday to cut the throats of<br>two Americans and a Briton<br>seized in Baghdad, and<br>launched a suicide car bomb<br>attack on Iraqi security<br>forces in Kirkuk that killed<br>at least 23 people."
-          ],
-          [
-           " BEIJING (Reuters) - Secretary<br>of State Colin Powell will<br>urge China Monday to exert its<br>influence over North Korea to<br>resume six-party negotiations<br>on scrapping its suspected<br>nuclear weapons program."
-          ],
-          [
-           "Reuters - An Israeli missile<br>strike killed at least\\two<br>Hamas gunmen in Gaza City<br>Monday, a day after a<br>top\\commander of the Islamic<br>militant group was killed in a<br>similar\\attack, Palestinian<br>witnesses and security sources<br>said."
-          ],
-          [
-           "AP - The Pentagon has restored<br>access to a Web site that<br>assists soldiers and other<br>Americans living overseas in<br>voting, after receiving<br>complaints that its security<br>measures were preventing<br>legitimate voters from using<br>it."
-          ],
-          [
-           "Montreal - The British-built<br>Canadian submarine HMCS<br>Chicoutimi, crippled since a<br>fire at sea that killed one of<br>its crew, is under tow and is<br>expected in Faslane, Scotland,<br>early next week, Canadian<br>naval commander Tyrone Pile<br>said on Friday."
-          ],
-          [
-           "Thirty-five Pakistanis freed<br>from the US Guantanamo Bay<br>prison camp arrived home on<br>Saturday and were taken<br>straight to prison for further<br>interrogation, the interior<br>minister said."
-          ],
-          [
-           "Witnesses in the trial of a US<br>soldier charged with abusing<br>prisoners at Abu Ghraib have<br>told the court that the CIA<br>sometimes directed abuse and<br>orders were received from<br>military command to toughen<br>interrogations."
-          ],
-          [
-           "AP - Italian and Lebanese<br>authorities have arrested 10<br>suspected terrorists who<br>planned to blow up the Italian<br>Embassy in Beirut, an Italian<br>news agency and the Defense<br>Ministry said Tuesday."
-          ],
-          [
-           "CORAL GABLES, Fla. -- John F.<br>Kerry and President Bush<br>clashed sharply over the war<br>in Iraq last night during the<br>first debate of the<br>presidential campaign season,<br>with the senator from<br>Massachusetts accusing"
-          ],
-          [
-           "GONAIVES, Haiti -- While<br>desperately hungry flood<br>victims wander the streets of<br>Gonaives searching for help,<br>tons of food aid is stacking<br>up in a warehouse guarded by<br>United Nations peacekeepers."
-          ],
-          [
-           "AFP - The resignation of<br>disgraced Fiji Vice-President<br>Ratu Jope Seniloli failed to<br>quell anger among opposition<br>leaders and the military over<br>his surprise release from<br>prison after serving just<br>three months of a four-year<br>jail term for his role in a<br>failed 2000 coup."
-          ],
-          [
-           "Sourav Ganguly files an appeal<br>against a two-match ban<br>imposed for time-wasting."
-          ],
-          [
-           "Greek police surrounded a bus<br>full of passengers seized by<br>armed hijackers along a<br>highway from an Athens suburb<br>Wednesday, police said."
-          ],
-          [
-           "BAGHDAD: A suicide car bomber<br>attacked a police convoy in<br>Baghdad yesterday as guerillas<br>kept pressure on Iraq #39;s<br>security forces despite a<br>bloody rout of insurgents in<br>Fallujah."
-          ],
-          [
-           "Fixtures and fittings from<br>Damien Hirst's restaurant<br>Pharmacy sell for 11.1, 8m<br>more than expected."
-          ],
-          [
-           "Five years after catastrophic<br>floods and mudslides killed<br>thousands along Venezuela's<br>Caribbean coast, survivors in<br>this town still see the signs<br>of destruction - shattered<br>concrete walls and tall weeds<br>growing atop streets covered<br>in dried mud."
-          ],
-          [
-           "The UN nuclear watchdog<br>confirmed Monday that nearly<br>400 tons of powerful<br>explosives that could be used<br>in conventional or nuclear<br>missiles disappeared from an<br>unguarded military<br>installation in Iraq."
-          ],
-          [
-           "Militants in Iraq have killed<br>the second of two US civilians<br>they were holding hostage,<br>according to a statement on an<br>Islamist website."
-          ],
-          [
-           "More than 4,000 American and<br>Iraqi soldiers mounted a<br>military assault on the<br>insurgent-held city of<br>Samarra."
-          ],
-          [
-           " MEXICO CITY (Reuters) -<br>Mexican President Vicente Fox<br>said  on Monday he hoped<br>President Bush's re-election<br>meant a  bilateral accord on<br>migration would be reached<br>before his own  term runs out<br>at the end of 2006."
-          ],
-          [
-           " BRUSSELS (Reuters) - French<br>President Jacques Chirac said<br>on Friday he had not refused<br>to meet Iraqi interim Prime<br>Minister Iyad Allawi after<br>reports he was snubbing the<br>Iraqi  leader by leaving an EU<br>meeting in Brussels early."
-          ],
-          [
-           "NEW YORK - Former President<br>Bill Clinton was in good<br>spirits Saturday, walking<br>around his hospital room in<br>street clothes and buoyed by<br>thousands of get-well messages<br>as he awaited heart bypass<br>surgery early this coming<br>week, people close to the<br>family said.    Clinton was<br>expected to undergo surgery as<br>early as Monday but probably<br>Tuesday, said Democratic Party<br>Chairman Terry McAuliffe, who<br>said the former president was<br>\"upbeat\" when he spoke to him<br>by phone Friday..."
-          ],
-          [
-           "Poland will cut its troops in<br>Iraq early next year and won<br>#39;t stay in the country<br>quot;an hour longer quot; than<br>needed, the country #39;s<br>prime minister said Friday."
-          ],
-          [
-           "A car bomb exploded at a US<br>military convoy in the<br>northern Iraqi city of Mosul,<br>causing several casualties,<br>the army and Iraqi officials<br>said."
-          ],
-          [
-           "ATHENS, Greece - Michael<br>Phelps took care of qualifying<br>for the Olympic 200-meter<br>freestyle semifinals Sunday,<br>and then found out he had been<br>added to the American team for<br>the evening's 400 freestyle<br>relay final.    Phelps' rivals<br>Ian Thorpe and Pieter van den<br>Hoogenband and teammate Klete<br>Keller were faster than the<br>teenager in the 200 free<br>preliminaries..."
-          ],
-          [
-           " JERUSALEM (Reuters) - Israeli<br>Prime Minister Ariel Sharon<br>intends to present a timetable<br>for withdrawal from Gaza to<br>lawmakers from his Likud Party<br>Tuesday despite a mutiny in<br>the  right-wing bloc over the<br>plan."
-          ],
-          [
-           " KABUL (Reuters) - Three U.N.<br>workers held by militants in<br>Afghanistan were in their<br>third week of captivity on<br>Friday  after calls from both<br>sides for the crisis to be<br>resolved ahead  of this<br>weekend's Muslim festival of<br>Eid al-Fitr."
-          ],
-          [
-           "ROME, Oct 29 (AFP) - French<br>President Jacques Chirac urged<br>the head of the incoming<br>European Commission Friday to<br>take  quot;the appropriate<br>decisions quot; to resolve a<br>row over his EU executive team<br>which has left the EU in<br>limbo."
-          ],
-          [
-           "Russia's parliament will<br>launch an inquiry into a<br>school siege that killed over<br>300 hostages, President<br>Vladimir Putin said on Friday,<br>but analysts doubt it will<br>satisfy those who blame the<br>carnage on security services."
-          ],
-          [
-           "Tony Blair talks to business<br>leaders about new proposals<br>for a major shake-up of the<br>English exam system."
-          ],
-          [
-           "KUALA LUMPUR, Malaysia A<br>Malaysian woman has claimed a<br>new world record after living<br>with over six-thousand<br>scorpions for 36 days<br>straight."
-          ],
-          [
-           "could take drastic steps if<br>the talks did not proceed as<br>Tehran wants. Mehr news agency<br>quoted him as saying on<br>Wednesday. that could be used"
-          ],
-          [
-           "Israeli authorities have<br>launched an investigation into<br>death threats against Israeli<br>Prime Minister Ariel Sharon<br>and other officials supporting<br>his disengagement plan from<br>Gaza and parts of the West<br>Bank, Jerusalem police said<br>Tuesday."
-          ],
-          [
-           "It was a carefully scripted<br>moment when Russian President<br>Vladimir Putin began quoting<br>Taras Shevchenko, this country<br>#39;s 19th-century bard,<br>during a live television"
-          ],
-          [
-           "China says it welcomes Russia<br>#39;s ratification of the<br>Kyoto Protocol that aims to<br>stem global warming by<br>reducing greenhouse-gas<br>emissions."
-          ],
-          [
-           "The Metropolitan<br>Transportation Authority is<br>proposing a tax increase to<br>raise \\$900 million a year to<br>help pay for a five-year<br>rebuilding program."
-          ],
-          [
-           "AFP - The Canadian armed<br>forces chief of staff on was<br>elected to take over as head<br>of NATO's Military Committee,<br>the alliance's highest<br>military authority, military<br>and diplomatic sources said."
-          ],
-          [
-           "AFP - Two proposed resolutions<br>condemning widespread rights<br>abuses in Sudan and Zimbabwe<br>failed to pass a UN committee,<br>mired in debate between<br>African and western nations."
-          ],
-          [
-           "The return of noted reformer<br>Nabil Amr to Palestinian<br>politics comes at a crucial<br>juncture."
-          ],
-          [
-           "AP - After two debates, voters<br>have seen President Bush look<br>peevish and heard him pass the<br>buck. They've watched Sen.<br>John Kerry deny he's a flip-<br>flopper and then argue that<br>Saddam Hussein was a threat<br>#151; and wasn't. It's no<br>wonder so few minds have<br>changed."
-          ],
-          [
-           "The United States says the<br>Lebanese parliament #39;s<br>decision Friday to extend the<br>term of pro-Syrian President<br>Emile Lahoud made a<br>quot;crude mockery of<br>democratic principles."
-          ],
-          [
-           "Canadian Press - OTTAWA (CP) -<br>The prime minister says he's<br>been assured by President<br>George W. Bush that the U.S.<br>missile defence plan does not<br>necessarily involve the<br>weaponization of space."
-          ],
-          [
-           "Fifty-six miners are dead and<br>another 92 are still stranded<br>underground after a gas blast<br>at the Daping coal mine in<br>Central China #39;s Henan<br>Province, safety officials<br>said Thursday."
-          ],
-          [
-           "BEIRUT, Lebanon - Three<br>Lebanese men and their Iraqi<br>driver have been kidnapped in<br>Iraq, the Lebanese Foreign<br>Ministry said Sunday, as<br>Iraq's prime minister said his<br>government was working for the<br>release of two Americans and a<br>Briton also being held<br>hostage.    Gunmen snatched<br>the three Lebanese, who worked<br>for a travel agency with a<br>branch in Baghdad, as they<br>drove on the highway between<br>the capital and Fallujah on<br>Friday night, a ministry<br>official said..."
-          ],
-          [
-           "PORTLAND, Ore. - It's been<br>almost a year since singer-<br>songwriter Elliott Smith<br>committed suicide, and fans<br>and friends will be looking<br>for answers as the posthumous<br>\"From a Basement on the Hill\"<br>is released..."
-          ],
-          [
-           " GAZA (Reuters) - Israel<br>expanded its military<br>offensive in  northern Gaza,<br>launching two air strikes<br>early on Monday that  killed<br>at least three Palestinians<br>and wounded two, including a<br>senior Hamas leader, witnesses<br>and medics said."
-          ],
-          [
-           "Reuters - Sudan's government<br>resumed\\talks with rebels in<br>the oil-producing south on<br>Thursday while\\the United<br>Nations set up a panel to<br>investigate charges<br>of\\genocide in the west of<br>Africa's largest country."
-          ],
-          [
-           "NEW YORK - Optimism that the<br>embattled technology sector<br>was due for a recovery sent<br>stocks modestly higher Monday<br>despite a new revenue warning<br>from semiconductor company<br>Broadcom Inc.    While<br>Broadcom, which makes chips<br>for television set-top boxes<br>and other electronics, said<br>high inventories resulted in<br>delayed shipments, investors<br>were encouraged as it said<br>future quarters looked<br>brighter..."
-          ],
-          [
-           "Carlos Barrios Orta squeezed<br>himself into his rubber diving<br>suit, pulled on an 18-pound<br>helmet that made him look like<br>an astronaut, then lowered<br>himself into the sewer. He<br>disappeared into the filthy<br>water, which looked like some<br>cauldron of rancid beef stew,<br>until the only sign of him was<br>air bubbles breaking the<br>surface."
-          ],
-          [
-           "The mutilated body of a woman<br>of about sixty years,<br>amputated of arms and legs and<br>with the sliced throat, has<br>been discovered this morning<br>in a street of the south of<br>Faluya by the Marines,<br>according to a statement by<br>AFP photographer."
-          ],
-          [
-           "(SH) - In Afghanistan, Hamid<br>Karzai defeated a raft of<br>candidates to win his historic<br>election. In Iraq, more than<br>200 political parties have<br>registered for next month<br>#39;s elections."
-          ],
-          [
-           "Margaret Hassan, who works for<br>charity Care International,<br>was taken hostage while on her<br>way to work in Baghdad. Here<br>are the main events since her<br>kidnapping."
-          ],
-          [
-           "Reuters - The United States<br>modified its\\call for U.N.<br>sanctions against Sudan on<br>Tuesday but still kept\\up the<br>threat of punitive measures if<br>Khartoum did not<br>stop\\atrocities in its Darfur<br>region."
-          ],
-          [
-           "Human rights and environmental<br>activists have hailed the<br>award of the 2004 Nobel Peace<br>Prize to Wangari Maathai of<br>Kenya as fitting recognition<br>of the growing role of civil<br>society"
-          ],
-          [
-           "An Al Qaeda-linked militant<br>group beheaded an American<br>hostage in Iraq and threatened<br>last night to kill another two<br>Westerners in 24 hours unless<br>women prisoners were freed<br>from Iraqi jails."
-          ],
-          [
-           "Argentina, Denmark, Greece,<br>Japan and Tanzania on Friday<br>won coveted two-year terms on<br>the UN Security Council at a<br>time when pressure is mounting<br>to expand the powerful<br>15-nation body."
-          ],
-          [
-           "ISLAMABAD: Pakistan and India<br>agreed on Friday to re-open<br>the Khokhropar-Munabao railway<br>link, which was severed nearly<br>40 years ago."
-          ],
-          [
-           "NEW YORK - Stocks moved higher<br>Friday as a stronger than<br>expected retail sales report<br>showed that higher oil prices<br>aren't scaring consumers away<br>from spending. Federal Reserve<br>Chairman Alan Greenspan's<br>positive comments on oil<br>prices also encouraged<br>investors..."
-          ],
-          [
-           "Saddam Hussein lives in an<br>air-conditioned 10-by-13 foot<br>cell on the grounds of one of<br>his former palaces, tending<br>plants and proclaiming himself<br>Iraq's lawful ruler."
-          ],
-          [
-           "AP - Brazilian U.N.<br>peacekeepers will remain in<br>Haiti until presidential<br>elections are held in that<br>Caribbean nation sometime next<br>year, President Luiz Inacio<br>Lula da Silva said Monday."
-          ],
-          [
-           "Iraq is  quot;working 24 hours<br>a day to ... stop the<br>terrorists, quot; interim<br>Iraqi Prime Minister Ayad<br>Allawi said Monday. Iraqis are<br>pushing ahead with reforms and<br>improvements, Allawi told"
-          ],
-          [
-           "AP - Musicians, composers and<br>authors were among the more<br>than two dozen people<br>Wednesday honored with<br>National Medal of Arts and<br>National Humanities awards at<br>the White House."
-          ],
-          [
-           "Wynton Marsalis, the trumpet-<br>playing star and artistic<br>director of Jazz at Lincoln<br>Center, has become an entity<br>above and around the daily<br>jazz world."
-          ],
-          [
-           "BUENOS AIRES: Pakistan has<br>ratified the Kyoto Protocol on<br>Climatic Change, Environment<br>Minister Malik Khan said on<br>Thursday. He said that<br>Islamabad has notified UN<br>authorities of ratification,<br>which formally comes into<br>effect in February 2005."
-          ],
-          [
-           "Staff Sgt. Johnny Horne, Jr.,<br>and Staff Sgt. Cardenas Alban<br>have been charged with murder<br>in the death of an Iraqi, the<br>1st Cavalry Division announced<br>Monday."
-          ],
-          [
-           "President Vladimir Putin makes<br>a speech as he hosts Russia<br>#39;s Olympic athletes at a<br>Kremlin banquet in Moscow,<br>Thursday, Nov. 4, 2004."
-          ],
-          [
-           "AFP - Hundreds of Buddhists in<br>southern Russia marched<br>through snow to see and hear<br>the Dalai Lama as he continued<br>a long-awaited visit to the<br>country in spite of Chinese<br>protests."
-          ],
-          [
-           "British officials were on<br>diplomatic tenterhooks as they<br>awaited the arrival on<br>Thursday of French President<br>Jacques Chirac for a two-day<br>state visit to Britain."
-          ],
-          [
-           " SYDNEY (Reuters) - A group of<br>women on Pitcairn Island in<br>the South Pacific are standing<br>by their men, who face<br>underage  sex charges, saying<br>having sex at age 12 is a<br>tradition dating  back to 18th<br>century mutineers who settled<br>on the island."
-          ],
-          [
-           "Two aircraft are flying out<br>from the UK on Sunday to<br>deliver vital aid and supplies<br>to Haiti, which has been<br>devastated by tropical storm<br>Jeanne."
-          ],
-          [
-           "A scare triggered by a<br>vibrating sex toy shut down a<br>major Australian regional<br>airport for almost an hour<br>Monday, police said. The<br>vibrating object was<br>discovered Monday morning"
-          ],
-          [
-           "AP - An Indiana congressional<br>candidate abruptly walked off<br>the set of a debate because<br>she got stage fright."
-          ],
-          [
-           "Reuters - Having reached out<br>to Kashmiris during a two-day<br>visit to the region, the prime<br>minister heads this weekend to<br>the country's volatile<br>northeast, where public anger<br>is high over alleged abuses by<br>Indian soldiers."
-          ],
-          [
-           "SAN JUAN IXTAYOPAN, Mexico --<br>A pair of wooden crosses<br>outside the elementary school<br>are all that mark the macabre<br>site where, just weeks ago, an<br>angry mob captured two federal<br>police officers, beat them<br>unconscious, and set them on<br>fire."
-          ],
-          [
-           "DUBLIN : An Olympic Airlines<br>plane diverted to Ireland<br>following a bomb alert, the<br>second faced by the Greek<br>carrier in four days, resumed<br>its journey to New York after<br>no device was found on board,<br>airport officials said."
-          ],
-          [
-           " WASHINGTON (Reuters) - The<br>United States said on Friday<br>it  is preparing a new U.N.<br>resolution on Darfur and that<br>Secretary  of State Colin<br>Powell might address next week<br>whether the  violence in<br>western Sudan constitutes<br>genocide."
-          ],
-          [
-           "NAJAF, Iraq : Iraq #39;s top<br>Shiite Muslim clerics, back in<br>control of Najaf #39;s Imam<br>Ali shrine after a four-month<br>militia occupation, met amid<br>the ruins of the city as life<br>spluttered back to normality."
-          ],
-          [
-           "Reuters - House of<br>Representatives<br>Majority\\Leader Tom DeLay,<br>admonished twice in six days<br>by his chamber's\\ethics<br>committee, withstood calls on<br>Thursday by rival\\Democrats<br>and citizen groups that he<br>step aside."
-          ],
-          [
-           "AFP - Australia has accounted<br>for all its nationals known to<br>be working in Iraq following a<br>claim by a radical Islamic<br>group to have kidnapped two<br>Australians, Foreign Affairs<br>Minister Alexander Downer<br>said."
-          ],
-          [
-           "The hurricane appeared to be<br>strengthening and forecasters<br>warned of an increased threat<br>of serious flooding and wind<br>damage."
-          ],
-          [
-           "Four homeless men were<br>bludgeoned to death and six<br>were in critical condition on<br>Friday following early morning<br>attacks by unknown assailants<br>in downtown streets of Sao<br>Paulo, a police spokesman<br>said."
-          ],
-          [
-           "Phone companies are not doing<br>enough to warn customers about<br>internet \"rogue-dialling\"<br>scams, watchdog Icstis warns."
-          ],
-          [
-           "India's main opposition party<br>takes action against senior<br>party member Uma Bharti after<br>a public row."
-          ],
-          [
-           "The Russian military yesterday<br>extended its offer of a \\$10<br>million reward for information<br>leading to the capture of two<br>separatist leaders who, the<br>Kremlin claims, were behind<br>the Beslan massacre."
-          ],
-          [
-           "Israels Shin Bet security<br>service has tightened<br>protection of the prime<br>minister, MPs and parliament<br>ahead of next weeks crucial<br>vote on a Gaza withdrawal."
-          ],
-          [
-           "Reuters - Iraq's interim<br>defense minister<br>accused\\neighbors Iran and<br>Syria on Wednesday of aiding<br>al Qaeda\\Islamist Abu Musab<br>al-Zarqawi and former agents<br>of Saddam\\Hussein to promote a<br>\"terrorist\" insurgency in<br>Iraq."
-          ],
-          [
-           "AP - The Senate race in<br>Kentucky stayed at fever pitch<br>on Thursday as Democratic<br>challenger Daniel Mongiardo<br>stressed his opposition to gay<br>marriage while accusing<br>Republican incumbent Jim<br>Bunning of fueling personal<br>attacks that seemed to suggest<br>Mongiardo is gay."
-          ],
-          [
-           " PORT LOUIS, Aug. 17<br>(Xinhuanet) -- Southern<br>African countries Tuesday<br>pledged better trade and<br>investment relations with<br>China as well as India in the<br>final communique released at<br>the end of their two-day<br>summit."
-          ],
-          [
-           "BAGHDAD - A militant group has<br>released a video saying it<br>kidnapped a missing journalist<br>in Iraq and would kill him<br>unless US forces left Najaf<br>within 48 hours."
-          ],
-          [
-           "18 August 2004 -- There has<br>been renewed fighting in the<br>Iraqi city of Al-Najaf between<br>US and Iraqi troops and Shi<br>#39;a militiamen loyal to<br>radical cleric Muqtada al-<br>Sadr."
-          ],
-          [
-           "Australia tighten their grip<br>on the third Test and the<br>series after dominating India<br>on day two in Nagpur."
-          ],
-          [
-           " SEOUL (Reuters) - North<br>Korea's two-year-old nuclear<br>crisis  has taxed the world's<br>patience, the chief United<br>Nations  nuclear regulator<br>said on Wednesday, urging<br>communist Pyongyang  to return<br>to its disarmament treaty<br>obligations."
-          ],
-          [
-           "GROZNY, Russia - The Russian<br>government's choice for<br>president of war-ravaged<br>Chechnya appeared to be the<br>victor Sunday in an election<br>tainted by charges of fraud<br>and shadowed by last week's<br>terrorist destruction of two<br>airliners.    Little more than<br>two hours after polls closed,<br>acting Chechen president<br>Sergei Abramov said<br>preliminary results showed<br>Maj..."
-          ],
-          [
-           "BAGHDAD, Sept 5 (AFP) - Izzat<br>Ibrahim al-Duri, Saddam<br>Hussein #39;s deputy whose<br>capture was announced Sunday,<br>is 62 and riddled with cancer,<br>but was public enemy number<br>two in Iraq for the world<br>#39;s most powerful military."
-          ],
-          [
-           "AP - An explosion targeted the<br>Baghdad governor's convoy as<br>he was traveling through the<br>capital Tuesday, killing two<br>people but leaving him<br>uninjured, the Interior<br>Ministry said."
-          ],
-          [
-           "GENEVA: Rescuers have found<br>the bodies of five Swiss<br>firemen who died after the<br>ceiling of an underground car<br>park collapsed during a fire,<br>a police spokesman said last<br>night."
-          ],
-          [
-           "John Kerry has held 10 \"front<br>porch visit\" events  an actual<br>front porch is optional  where<br>perhaps 100 people ask<br>questions in a low-key<br>campaigning style."
-          ],
-          [
-           "The right-win opposition<br>Conservative Party and Liberal<br>Center Union won 43 seats in<br>the 141-member Lithuanian<br>parliament, after more than 99<br>percent of the votes were<br>counted"
-          ],
-          [
-           "KHARTOUM, Aug 18 (Reuters) -<br>The United Nations said on<br>Wednesday it was very<br>concerned by Sudan #39;s lack<br>of practical progress in<br>bringing security to Darfur,<br>where more than a million<br>people have fled their homes<br>for fear of militia ..."
-          ],
-          [
-           "AFP - With less than two<br>months until the November 2<br>election, President George W.<br>Bush is working to shore up<br>support among his staunchest<br>supporters even as he courts<br>undecided voters."
-          ],
-          [
-           "Chile's government says it<br>will build a  prison for<br>officers convicted of human<br>rights abuses in the Pinochet<br>era."
-          ],
-          [
-           "Palestinian leader Mahmoud<br>Abbas reiterated calls for his<br>people to drop their weapons<br>in the struggle for a state. a<br>clear change of strategy for<br>peace with Israel after Yasser<br>Arafat #39;s death."
-          ],
-          [
-           " BAGHDAD (Reuters) - Iraq's<br>U.S.-backed government said on<br>Tuesday that \"major neglect\"<br>by its American-led military<br>allies led to a massacre of 49<br>army recruits at the weekend."
-          ],
-          [
-           "BEIJING -- Police have<br>detained a man accused of<br>slashing as many as nine boys<br>to death as they slept in<br>their high school dormitory in<br>central China, state media<br>reported today."
-          ],
-          [
-           "Israeli Prime Minister Ariel<br>Sharon #39;s Likud party<br>agreed on Thursday to a<br>possible alliance with<br>opposition Labour in a vote<br>that averted a snap election<br>and strengthened his Gaza<br>withdrawal plan."
-          ],
-          [
-           "While the American forces are<br>preparing to launch a large-<br>scale attack against Falluja<br>and al-Ramadi, one of the<br>chieftains of Falluja said<br>that contacts are still<br>continuous yesterday between<br>members representing the city<br>#39;s delegation and the<br>interim"
-          ],
-          [
-           "UN Security Council<br>ambassadors were still<br>quibbling over how best to<br>pressure Sudan and rebels to<br>end two different wars in the<br>country even as they left for<br>Kenya on Tuesday for a meeting<br>on the crisis."
-          ],
-          [
-           "HENDALA, Sri Lanka -- Day<br>after day, locked in a cement<br>room somewhere in Iraq, the<br>hooded men beat him. They told<br>him he would be beheaded.<br>''Ameriqi! quot; they shouted,<br>even though he comes from this<br>poor Sri Lankan fishing<br>village."
-          ],
-          [
-           "THE kidnappers of British aid<br>worker Margaret Hassan last<br>night threatened to turn her<br>over to the group which<br>beheaded Ken Bigley if the<br>British Government refuses to<br>pull its troops out of Iraq."
-          ],
-          [
-           "&lt;p&gt;&lt;/p&gt;&lt;p&gt;<br>BOGOTA, Colombia (Reuters) -<br>Ten Colombian police<br>officerswere killed on Tuesday<br>in an ambush by the National<br>LiberationArmy, or ELN, in the<br>worst attack by the Marxist<br>group inyears, authorities<br>told Reuters.&lt;/p&gt;"
-          ],
-          [
-           "AFP - US President George W.<br>Bush called his Philippines<br>counterpart Gloria Arroyo and<br>said their countries should<br>keep strong ties, a spokesman<br>said after a spat over<br>Arroyo's handling of an Iraq<br>kidnapping."
-          ],
-          [
-           "A scathing judgment from the<br>UK #39;s highest court<br>condemning the UK government<br>#39;s indefinite detention of<br>foreign terror suspects as a<br>threat to the life of the<br>nation, left anti-terrorist<br>laws in the UK in tatters on<br>Thursday."
-          ],
-          [
-           "Reuters - Australia's<br>conservative Prime<br>Minister\\John Howard, handed<br>the most powerful mandate in a<br>generation,\\got down to work<br>on Monday with reform of<br>telecommunications,\\labor and<br>media laws high on his agenda."
-          ],
-          [
-           " TOKYO (Reuters) - Typhoon<br>Megi killed one person as it<br>slammed ashore in northern<br>Japan on Friday, bringing the<br>death  toll to at least 13 and<br>cutting power to thousands of<br>homes  before heading out into<br>the Pacific."
-          ],
-          [
-           "Cairo: Egyptian President<br>Hosni Mubarak held telephone<br>talks with Palestinian leader<br>Yasser Arafat about Israel<br>#39;s plan to pull troops and<br>the 8,000 Jewish settlers out<br>of the Gaza Strip next year,<br>the Egyptian news agency Mena<br>said."
-          ],
-          [
-           "The first American military<br>intelligence soldier to be<br>court-martialed over the Abu<br>Ghraib abuse scandal was<br>sentenced Saturday to eight<br>months in jail, a reduction in<br>rank and a bad-conduct<br>discharge."
-          ],
-          [
-           " TOKYO (Reuters) - Japan will<br>seek an explanation at weekend<br>talks with North Korea on<br>activity indicating Pyongyang<br>may be  preparing a missile<br>test, although Tokyo does not<br>think a  launch is imminent,<br>Japan's top government<br>spokesman said."
-          ],
-          [
-           " BEIJING (Reuters) - Iran will<br>never be prepared to<br>dismantle its nuclear program<br>entirely but remains committed<br>to  the non-proliferation<br>treaty (NPT), its chief<br>delegate to the  International<br>Atomic Energy Agency said on<br>Wednesday."
-          ],
-          [
-           "&lt;p&gt;&lt;/p&gt;&lt;p&gt;<br>SANTIAGO, Chile (Reuters) -<br>President Bush on<br>Saturdayreached into a throng<br>of squabbling bodyguards and<br>pulled aSecret Service agent<br>away from Chilean security<br>officers afterthey stopped the<br>U.S. agent from accompanying<br>the president ata<br>dinner.&lt;/p&gt;"
-          ],
-          [
-           "Iranian deputy foreign<br>minister Gholamali Khoshrou<br>denied Tuesday that his<br>country #39;s top leaders were<br>at odds over whether nuclear<br>weapons were un-Islamic,<br>insisting that it will<br>quot;never quot; make the<br>bomb."
-          ],
-          [
-           " quot;Israel mercenaries<br>assisting the Ivory Coast army<br>operated unmanned aircraft<br>that aided aerial bombings of<br>a French base in the country,<br>quot; claimed"
-          ],
-          [
-           "AFP - SAP, the world's leading<br>maker of business software,<br>may need an extra year to<br>achieve its medium-term profit<br>target of an operating margin<br>of 30 percent, its chief<br>financial officer said."
-          ],
-          [
-           "AFP - The airline Swiss said<br>it had managed to cut its<br>first-half net loss by about<br>90 percent but warned that<br>spiralling fuel costs were<br>hampering a turnaround despite<br>increasing passenger travel."
-          ],
-          [
-           "Vulnerable youngsters expelled<br>from schools in England are<br>being let down by the system,<br>say inspectors."
-          ],
-          [
-           "Yasser Arafat was undergoing<br>tests for possible leukaemia<br>at a military hospital outside<br>Paris last night after being<br>airlifted from his Ramallah<br>headquarters to an anxious<br>farewell from Palestinian<br>well-wishers."
-          ],
-          [
-           "Nepal #39;s main opposition<br>party urged the government on<br>Monday to call a unilateral<br>ceasefire with Maoist rebels<br>and seek peace talks to end a<br>road blockade that has cut the<br>capital off from the rest of<br>the country."
-          ],
-          [
-           "BOSTON - The New York Yankees<br>and Boston were tied 4-4 after<br>13 innings Monday night with<br>the Red Sox trying to stay<br>alive in the AL championship<br>series.    Boston tied the<br>game with two runs in the<br>eighth inning on David Ortiz's<br>solo homer, a walk to Kevin<br>Millar, a single by Trot Nixon<br>and a sacrifice fly by Jason<br>Varitek..."
-          ],
-          [
-           "Reuters - The country may be<br>more\\or less evenly divided<br>along partisan lines when it<br>comes to\\the presidential<br>race, but the Republican Party<br>prevailed in\\the Nielsen<br>polling of this summer's<br>nominating conventions."
-          ],
-          [
-           " In Vice President Cheney's<br>final push before next<br>Tuesday's election, talk of<br>nuclear annihilation and<br>escalating war rhetoric have<br>blended with balloon drops,<br>confetti cannons and the other<br>trappings of modern<br>campaigning with such ferocity<br>that it is sometimes tough to<br>tell just who the enemy is."
-          ]
-         ],
-         "hovertemplate": "label=World<br>Component 0=%{x}<br>Component 1=%{y}<br>string=%{customdata[0]}<extra></extra>",
-         "legendgroup": "World",
-         "marker": {
-          "color": "#636efa",
-          "size": 5,
-          "symbol": "circle"
-         },
-         "mode": "markers",
-         "name": "World",
-         "showlegend": true,
-         "type": "scattergl",
-         "x": [
-          9.787297,
-          17.206654,
-          28.167477,
-          14.671119,
-          21.907679,
-          11.003371,
-          12.786125,
-          28.192938,
-          27.511831,
-          31.907536,
-          27.685726,
-          -0.48236108,
-          24.631432,
-          19.87161,
-          42.217842,
-          23.463217,
-          15.450646,
-          22.48473,
-          47.958393,
-          7.788443,
-          26.455547,
-          -4.8219795,
-          3.2403526,
-          0.8158772,
-          7.324227,
-          24.88585,
-          38.79396,
-          13.661437,
-          30.355759,
-          3.1252713,
-          -17.98721,
-          18.820461,
-          13.827141,
-          1.4320391,
-          12.191131,
-          -2.3659778,
-          25.89013,
-          -1.0874362,
-          15.950565,
-          11.055151,
-          14.368044,
-          15.940281,
-          28.371725,
-          17.925577,
-          15.851762,
-          1.6593695,
-          18.05479,
-          28.471008,
-          10.705277,
-          18.345266,
-          31.360231,
-          50.538635,
-          4.6381655,
-          16.084637,
-          51.287056,
-          12.821454,
-          24.011929,
-          17.79019,
-          15.120078,
-          -39.450546,
-          19.99747,
-          15.529904,
-          19.791918,
-          -9.525661,
-          12.873272,
-          16.33122,
-          22.366423,
-          2.4414933,
-          25.421625,
-          20.893494,
-          19.51864,
-          11.30494,
-          2.9794881,
-          12.285144,
-          3.3651476,
-          -16.802534,
-          18.079544,
-          2.7036908,
-          6.7110343,
-          -1.3755705,
-          10.5324745,
-          18.966919,
-          31.810251,
-          17.243034,
-          4.507162,
-          21.953882,
-          12.895756,
-          13.899155,
-          9.645002,
-          8.84193,
-          7.766448,
-          10.753302,
-          60.835865,
-          29.961258,
-          31.980536,
-          23.273722,
-          3.1031818,
-          12.880273,
-          11.016033,
-          17.860275,
-          12.732019,
-          16.701687,
-          14.009928,
-          18.774673,
-          2.979671,
-          8.863162,
-          9.040379,
-          24.042429,
-          25.076736,
-          30.519775,
-          12.896586,
-          25.85091,
-          19.948092,
-          20.974108,
-          18.678154,
-          49.229675,
-          -13.887877,
-          19.741331,
-          31.022472,
-          -11.186273,
-          18.250782,
-          4.836007,
-          -9.537627,
-          24.104692,
-          1.9518297,
-          15.377659,
-          14.915583,
-          19.173527,
-          -7.4475813,
-          8.212411,
-          5.134725,
-          14.638772,
-          1.3949758,
-          15.7138605,
-          17.170551,
-          17.347712,
-          24.028929,
-          5.1724906,
-          27.314432,
-          12.80685,
-          -26.112938,
-          12.646676,
-          9.909096,
-          22.181377,
-          29.485273,
-          -1.1384851,
-          24.128727,
-          16.221085,
-          25.097984,
-          8.574884,
-          21.295237,
-          25.800558,
-          5.8968763,
-          24.184378,
-          -54.980534,
-          46.068615,
-          20.787077,
-          29.313784,
-          8.255305,
-          15.709119,
-          -26.129557,
-          10.710161,
-          23.318872,
-          -46.75248,
-          20.918581,
-          11.446291,
-          10.624376,
-          13.654009,
-          23.009165,
-          0.9160498,
-          1.6248351,
-          15.268804,
-          20.570063,
-          16.519796,
-          1.7450867,
-          -16.392036,
-          19.578056,
-          9.273592,
-          5.769484,
-          5.3805246,
-          2.333401,
-          14.209792,
-          7.33986,
-          -1.2716205,
-          2.7853732,
-          26.978062,
-          18.276062,
-          20.191584,
-          25.01299,
-          10.248553,
-          4.6009235,
-          9.839586,
-          11.750173,
-          7.9382405,
-          17.778656,
-          15.492881,
-          7.7321296,
-          8.952756,
-          20.371246,
-          -9.127035,
-          1.8769449,
-          12.356418,
-          4.2263513,
-          31.053217,
-          -9.149289,
-          9.723743,
-          27.65755,
-          26.112234,
-          -39.176956,
-          16.072603,
-          17.410772,
-          12.662249,
-          18.940567,
-          20.549877,
-          19.506048,
-          8.936648,
-          14.902041,
-          22.10423,
-          -2.6893454,
-          51.905163,
-          21.657618,
-          13.691204,
-          28.035511,
-          23.045893,
-          30.591192,
-          17.440117,
-          -9.929121,
-          7.212067,
-          14.5572,
-          -33.03146,
-          26.660809,
-          2.4019308,
-          14.605348,
-          5.080946,
-          4.331932,
-          32.7655,
-          23.97021,
-          22.242004,
-          -28.60194,
-          14.265632,
-          7.0784307,
-          20.74278,
-          4.454403,
-          51.55675,
-          14.978659,
-          11.338411,
-          11.213355,
-          15.526145,
-          9.335806,
-          -8.953644,
-          18.62211,
-          23.033293,
-          -5.5465455,
-          10.529721,
-          13.965547,
-          21.258057,
-          10.181149,
-          17.598188,
-          1.3672223,
-          32.536667,
-          10.24864,
-          5.8206697,
-          -10.62197,
-          21.86292,
-          20.400032,
-          27.48848,
-          2.2426317,
-          5.0682087,
-          27.914957,
-          16.509165,
-          14.155432,
-          2.808305,
-          6.707939,
-          19.51436,
-          18.935217,
-          46.280994,
-          8.379798,
-          2.4920332,
-          47.18665,
-          -0.99369574,
-          -28.31348,
-          2.79127,
-          16.340908,
-          20.619595,
-          23.400663,
-          14.445518,
-          26.900372,
-          12.496445,
-          28.753572,
-          21.319304,
-          11.094263,
-          7.11425,
-          18.546873,
-          37.20064,
-          9.897873,
-          24.480858,
-          8.527567,
-          16.88663,
-          13.06387,
-          29.025854,
-          3.984353,
-          -1.1919637,
-          5.320594,
-          14.373686,
-          11.930037,
-          23.310764,
-          18.960714,
-          17.941885,
-          10.820086,
-          11.278602,
-          8.342169,
-          58.012913,
-          7.6059,
-          -7.4377956,
-          12.515653,
-          8.195707,
-          1.8771796,
-          22.029692,
-          4.4929285,
-          -17.537066,
-          -2.2965894,
-          3.6962993,
-          11.67213,
-          5.52023,
-          15.926025,
-          4.0713243,
-          -3.7340183,
-          -15.154654,
-          11.040503,
-          13.273838,
-          7.288217,
-          -18.065994,
-          8.75742,
-          29.14241,
-          17.28087,
-          13.877883,
-          21.1013,
-          13.981468,
-          10.2113,
-          28.748735,
-          10.333969,
-          12.468114,
-          3.0369818,
-          24.300056,
-          -8.906268,
-          -0.9226989,
-          32.861256,
-          1.5139743,
-          22.857521,
-          4.3284388,
-          26.680521,
-          8.132189,
-          11.17274,
-          22.79567,
-          2.0400486,
-          19.547178,
-          -4.5817585,
-          17.717125,
-          32.523216,
-          19.772266,
-          10.665481,
-          15.195456,
-          11.543438,
-          -18.300999,
-          18.401154,
-          7.0795293,
-          19.923655,
-          14.908174,
-          15.951407,
-          20.179276,
-          31.14273,
-          0.258186,
-          14.35011,
-          14.368874,
-          -42.005432,
-          9.892005,
-          6.150114,
-          6.031961,
-          8.659726,
-          10.755605,
-          8.7123785,
-          12.619259,
-          0.080250725,
-          20.854275,
-          -11.675889,
-          14.897927,
-          8.117931,
-          6.539579,
-          -52.00866,
-          7.7298007,
-          12.733178,
-          23.083542,
-          6.8278956,
-          14.610548,
-          -19.3257,
-          7.079915,
-          21.593582,
-          22.709345,
-          23.351994,
-          10.662044,
-          6.3287606,
-          20.248484,
-          34.33151,
-          17.894573,
-          18.915913,
-          -56.14451,
-          5.4172053,
-          -0.9005222,
-          24.29299,
-          15.59622,
-          10.643132,
-          5.560217,
-          24.635311,
-          13.113659,
-          18.401346,
-          46.27362,
-          14.899461,
-          24.252523,
-          5.36986,
-          31.625498,
-          10.970106,
-          51.867313,
-          2.5174408,
-          15.975605,
-          27.581682,
-          1.6741688,
-          -27.687584,
-          16.295555,
-          3.6958573,
-          17.794357,
-          10.886147,
-          18.907486,
-          3.8529873,
-          10.995691,
-          23.637348,
-          33.6961,
-          14.72486,
-          7.9172506,
-          -48.755344,
-          -3.3571925,
-          19.580015,
-          19.054085,
-          26.428055,
-          4.8372564,
-          2.4959075,
-          24.6171,
-          -3.8125634,
-          -0.46443436,
-          -45.570045,
-          25.599476,
-          14.019283,
-          15.602155,
-          -13.399857,
-          62.178337,
-          1.1374025,
-          25.336575,
-          27.973917,
-          23.369677,
-          6.171623,
-          26.484608,
-          7.0410976,
-          19.369898,
-          20.71207,
-          12.614038,
-          17.452501,
-          18.572897,
-          6.0333753,
-          16.012442,
-          9.572269,
-          26.459038,
-          2.9941561,
-          17.785444,
-          -16.35767,
-          20.736986,
-          24.382677,
-          16.1644,
-          19.621206,
-          8.682678,
-          1.4400622,
-          25.263475,
-          16.929596,
-          39.76294,
-          0.50536364,
-          19.154146,
-          26.26559,
-          19.381176,
-          12.624142,
-          13.547113,
-          17.735638,
-          5.6944747,
-          11.9049635,
-          19.661798,
-          12.937629,
-          18.126286,
-          19.819803,
-          14.775703,
-          16.772926,
-          3.6852949,
-          25.670559,
-          26.078526,
-          17.1552,
-          9.536311,
-          21.02507,
-          12.836097,
-          6.9077144,
-          13.885367,
-          25.294838,
-          0.9785223,
-          1.8828108,
-          10.278181,
-          3.350846,
-          10.675423,
-          -27.676836,
-          -31.987688,
-          2.7699895,
-          29.804829,
-          8.834031,
-          57.51465,
-          14.13684,
-          10.008406
-         ],
-         "xaxis": "x",
-         "y": [
-          -0.25818,
-          22.728033,
-          23.284092,
-          21.800117,
-          22.159718,
-          29.896206,
-          6.133116,
-          8.674217,
-          25.905638,
-          9.192532,
-          25.749458,
-          39.722248,
-          7.8999453,
-          -7.791385,
-          -27.949192,
-          10.707973,
-          21.421028,
-          23.633503,
-          9.072081,
-          11.001149,
-          6.058426,
-          4.199548,
-          8.901868,
-          7.6804514,
-          4.9480743,
-          26.755693,
-          -2.3146381,
-          2.532362,
-          23.373753,
-          22.522005,
-          24.106895,
-          9.316687,
-          27.62886,
-          5.951754,
-          15.638516,
-          -17.482075,
-          20.813839,
-          12.0553255,
-          28.830767,
-          14.3665,
-          0.061168052,
-          23.813591,
-          21.227903,
-          31.043804,
-          3.844936,
-          1.4175098,
-          3.6453905,
-          16.828537,
-          9.330847,
-          9.5765,
-          -10.817816,
-          5.1117396,
-          3.6004014,
-          18.804445,
-          -9.840589,
-          4.881303,
-          30.134317,
-          32.50385,
-          8.090675,
-          21.478413,
-          14.554468,
-          20.755419,
-          23.0764,
-          8.462659,
-          18.15951,
-          2.4064643,
-          8.999294,
-          -6.154228,
-          14.864804,
-          19.460798,
-          -2.3412774,
-          2.4203362,
-          32.717518,
-          -7.624435,
-          2.3350112,
-          -16.211517,
-          22.352716,
-          8.7813,
-          27.98141,
-          5.231712,
-          -9.940092,
-          2.9951952,
-          7.513018,
-          -2.4976819,
-          22.716187,
-          15.819128,
-          5.0620914,
-          12.743932,
-          -8.023369,
-          16.329193,
-          30.292624,
-          23.7153,
-          -17.214022,
-          15.711783,
-          0.59863055,
-          0.31460643,
-          -1.605775,
-          10.840164,
-          30.278105,
-          19.883846,
-          -6.269737,
-          20.470428,
-          25.027699,
-          15.167711,
-          23.27041,
-          9.704817,
-          14.702273,
-          18.21779,
-          16.7961,
-          9.027207,
-          18.049044,
-          25.408955,
-          -1.7761685,
-          7.837817,
-          34.420277,
-          6.988793,
-          24.185543,
-          17.168627,
-          10.645888,
-          33.268223,
-          35.533974,
-          5.3443413,
-          16.755838,
-          19.649885,
-          5.488912,
-          15.933173,
-          5.761818,
-          0.9805258,
-          34.912987,
-          2.2579987,
-          31.233051,
-          22.297411,
-          3.5171926,
-          23.886812,
-          19.465944,
-          16.774218,
-          14.815331,
-          11.881365,
-          25.418554,
-          28.923544,
-          5.0646152,
-          23.290081,
-          -5.3597302,
-          18.798145,
-          8.9016,
-          -22.157974,
-          18.377977,
-          31.100603,
-          23.13797,
-          31.66899,
-          25.328583,
-          5.658062,
-          8.72019,
-          4.320076,
-          0.7318651,
-          -11.081378,
-          -2.6716044,
-          13.364902,
-          5.9486156,
-          12.414623,
-          5.5806613,
-          16.740986,
-          5.6076837,
-          19.352674,
-          -0.68818355,
-          9.428179,
-          18.622755,
-          7.8728004,
-          21.211613,
-          10.388335,
-          -0.20468314,
-          29.903488,
-          14.083497,
-          0.6598771,
-          26.250034,
-          -24.852484,
-          12.103588,
-          -8.026257,
-          16.791052,
-          31.885904,
-          11.005908,
-          15.028398,
-          14.654819,
-          11.900147,
-          -1.3390135,
-          26.11797,
-          -2.478072,
-          -23.535704,
-          27.143415,
-          0.81385136,
-          17.844543,
-          19.694197,
-          30.822157,
-          11.223421,
-          34.832695,
-          15.818021,
-          12.122141,
-          33.150494,
-          20.72354,
-          3.162032,
-          -0.9915625,
-          -15.606873,
-          7.1253057,
-          15.600531,
-          3.0372694,
-          -7.6383777,
-          21.02248,
-          17.865675,
-          22.459995,
-          12.360714,
-          21.917862,
-          -2.2529974,
-          23.902458,
-          7.067429,
-          19.686275,
-          -2.4079158,
-          20.084156,
-          9.865102,
-          -7.1564,
-          14.4235935,
-          10.5956135,
-          33.509598,
-          2.4050539,
-          7.209693,
-          5.5682783,
-          24.32622,
-          8.181132,
-          18.989775,
-          -25.712864,
-          24.787573,
-          14.609039,
-          7.1217036,
-          16.848389,
-          32.03336,
-          -1.7420386,
-          10.520301,
-          30.076416,
-          2.9773757,
-          17.441216,
-          22.073168,
-          29.535501,
-          31.019588,
-          31.29178,
-          7.783574,
-          -1.0848922,
-          -1.632514,
-          3.1787782,
-          26.127491,
-          11.578919,
-          8.806574,
-          26.605755,
-          25.579552,
-          27.044067,
-          7.423554,
-          19.89922,
-          21.111221,
-          29.565565,
-          20.825033,
-          8.250312,
-          -4.315795,
-          33.91667,
-          31.587502,
-          22.03959,
-          2.5191355,
-          -1.2537154,
-          1.041188,
-          6.271001,
-          15.563097,
-          19.476908,
-          17.528534,
-          14.279812,
-          19.227066,
-          27.98984,
-          17.888885,
-          20.995552,
-          -25.321373,
-          2.030001,
-          19.098873,
-          -1.3566388,
-          8.210962,
-          -34.972008,
-          26.949068,
-          12.173473,
-          20.502365,
-          4.4826207,
-          30.730364,
-          22.801989,
-          -7.8275642,
-          9.649646,
-          5.474195,
-          26.200584,
-          23.3236,
-          23.742764,
-          -9.009804,
-          10.729193,
-          24.293411,
-          1.2037258,
-          -2.6479704,
-          21.060795,
-          13.542582,
-          -0.5990197,
-          -23.021431,
-          11.98244,
-          26.565365,
-          27.739674,
-          4.583181,
-          28.793531,
-          25.030203,
-          20.863323,
-          15.091036,
-          4.7823358,
-          -19.877468,
-          29.76316,
-          -3.8284235,
-          -8.098414,
-          6.9839473,
-          18.062141,
-          -3.4012072,
-          15.937399,
-          24.769993,
-          8.2281,
-          -1.0408515,
-          3.6773765,
-          16.484713,
-          23.824167,
-          -1.6157911,
-          -5.807004,
-          5.4682074,
-          20.873947,
-          7.471235,
-          4.855366,
-          24.15315,
-          33.191727,
-          -1.2212269,
-          1.353517,
-          33.686493,
-          17.499424,
-          10.638852,
-          12.36343,
-          25.982975,
-          -5.359385,
-          10.390779,
-          -2.7448454,
-          23.544054,
-          1.2731425,
-          20.49504,
-          11.026453,
-          -5.233647,
-          7.5924697,
-          30.057226,
-          17.865553,
-          14.572172,
-          -0.43766883,
-          26.446459,
-          7.797492,
-          27.607801,
-          -10.88375,
-          -5.4497714,
-          -3.2008982,
-          3.516546,
-          -2.0853994,
-          29.915886,
-          -4.8032465,
-          10.539988,
-          22.650063,
-          16.676228,
-          23.31772,
-          6.885112,
-          -3.024608,
-          16.557335,
-          8.043718,
-          4.2089057,
-          26.167639,
-          0.031842478,
-          23.264338,
-          28.108557,
-          13.463569,
-          17.450424,
-          4.5370917,
-          -9.992426,
-          19.615667,
-          -8.944074,
-          10.486003,
-          13.904057,
-          0.17712176,
-          26.276295,
-          18.80954,
-          8.85504,
-          6.502574,
-          30.14757,
-          25.445856,
-          23.137957,
-          4.7606173,
-          20.943676,
-          34.946663,
-          23.354967,
-          10.895949,
-          16.164768,
-          18.747564,
-          -8.708449,
-          26.564816,
-          3.6623113,
-          -2.406363,
-          30.990358,
-          22.291674,
-          8.649531,
-          29.637974,
-          12.135396,
-          22.34238,
-          17.654528,
-          3.530811,
-          1.305536,
-          -3.4917607,
-          15.667845,
-          22.695467,
-          3.3096304,
-          5.8128743,
-          24.534492,
-          0.7944149,
-          23.025293,
-          -0.33986145,
-          14.641378,
-          4.667992,
-          6.4794717,
-          -3.0957053,
-          1.5328475,
-          14.641849,
-          0.75382006,
-          13.353416,
-          7.6756034,
-          -8.807442,
-          5.574528,
-          5.459471,
-          30.176495,
-          25.41137,
-          12.340705,
-          20.984993,
-          11.320027,
-          19.095402,
-          26.357058,
-          25.323908,
-          0.40740138,
-          23.981928,
-          12.158624,
-          15.439734,
-          22.680363,
-          -0.7899231,
-          0.6461262,
-          21.006203,
-          10.719515,
-          2.1415112,
-          15.075585,
-          19.439365,
-          -7.721521,
-          1.3289208,
-          15.136754,
-          -3.098876,
-          0.043326903,
-          -0.730605,
-          20.569399,
-          20.47704,
-          34.56152,
-          -9.076381,
-          11.381456,
-          27.552359,
-          34.52153,
-          12.712044,
-          13.092032,
-          -5.358728,
-          21.975595,
-          31.648344,
-          27.402872,
-          7.268004,
-          -9.072612,
-          21.008837,
-          6.308118,
-          14.5252905,
-          -10.20566,
-          -5.336508,
-          22.627249,
-          17.18417,
-          -2.677447,
-          6.842084,
-          -2.1064568,
-          11.057577,
-          21.760345,
-          31.105818,
-          -7.2484465,
-          -5.4786696,
-          16.441422,
-          -5.9703918,
-          9.63625,
-          6.1655693,
-          18.591246,
-          27.819729,
-          5.3510475,
-          15.152627,
-          13.393224,
-          19.411095,
-          23.425772,
-          26.30866,
-          5.3038287,
-          7.526191,
-          -2.2162335,
-          31.378555,
-          6.302167,
-          14.10122,
-          5.90295,
-          7.223655,
-          6.634295,
-          7.232844,
-          21.119562,
-          12.128642,
-          9.936496,
-          21.916615,
-          9.071596,
-          14.497267,
-          -22.694798,
-          -8.824205,
-          -10.619046
-         ],
-         "yaxis": "y"
-        },
-        {
-         "customdata": [
-          [
-           "PC World - Upcoming chip set<br>will include built-in security<br>features for your PC."
-          ],
-          [
-           "SAN JOSE, Calif. -- Apple<br>Computer (Quote, Chart)<br>unveiled a batch of new iPods,<br>iTunes software and promos<br>designed to keep it atop the<br>heap of digital music players."
-          ],
-          [
-           "Any product, any shape, any<br>size -- manufactured on your<br>desktop! The future is the<br>fabricator. By Bruce Sterling<br>from Wired magazine."
-          ],
-          [
-           "The Microsoft CEO says one way<br>to stem growing piracy of<br>Windows and Office in emerging<br>markets is to offer low-cost<br>computers."
-          ],
-          [
-           "PalmSource surprised the<br>mobile vendor community today<br>with the announcement that it<br>will acquire China MobileSoft<br>(CMS), ostensibly to leverage<br>that company's expertise in<br>building a mobile version of<br>the Linux operating system."
-          ],
-          [
-           "JEFFERSON CITY - An election<br>security expert has raised<br>questions about Missouri<br>Secretary of State Matt Blunt<br>#39;s plan to let soldiers at<br>remote duty stations or in<br>combat areas cast their<br>ballots with the help of<br>e-mail."
-          ],
-          [
-           "A new, optional log-on service<br>from America Online that makes<br>it harder for scammers to<br>access a persons online<br>account will not be available<br>for Macintosh"
-          ],
-          [
-           "It #39;s official. Microsoft<br>recently stated<br>definitivelyand contrary to<br>rumorsthat there will be no<br>new versions of Internet<br>Explorer for users of older<br>versions of Windows."
-          ],
-          [
-           "But fresh antitrust suit is in<br>the envelope, says Novell"
-          ],
-          [
-           "Chips that help a computer's<br>main microprocessors perform<br>specific types of math<br>problems are becoming a big<br>business once again.\\"
-          ],
-          [
-           "A rocket carrying two Russian<br>cosmonauts and an American<br>astronaut to the international<br>space station streaked into<br>orbit on Thursday, the latest<br>flight of a Russian space<br>vehicle to fill in for<br>grounded US shuttles."
-          ],
-          [
-           "OCTOBER 12, 2004<br>(COMPUTERWORLD) - Microsoft<br>Corp. #39;s monthly patch<br>release cycle may be making it<br>more predictable for users to<br>deploy software updates, but<br>there appears to be little<br>letup in the number of holes<br>being discovered in the<br>company #39;s software"
-          ],
-          [
-           "Wearable tech goes mainstream<br>as the Gap introduces jacket<br>with built-in radio.\\"
-          ],
-          [
-           "Funding round of \\$105 million<br>brings broadband Internet<br>telephony company's total haul<br>to \\$208 million."
-          ],
-          [
-           "washingtonpost.com - Anthony<br>Casalena was 17 when he got<br>his first job as a programmer<br>for a start-up called<br>HyperOffice, a software<br>company that makes e-mail and<br>contact management<br>applications for the Web.<br>Hired as an intern, he became<br>a regular programmer after two<br>weeks and rewrote the main<br>product line."
-          ],
-          [
-           "The fossilized neck bones of a<br>230-million-year-old sea<br>creature have features<br>suggesting that the animal<br>#39;s snakelike throat could<br>flare open and create suction<br>that would pull in prey."
-          ],
-          [
-           "IBM late on Tuesday announced<br>the biggest update of its<br>popular WebSphere business<br>software in two years, adding<br>features such as automatically<br>detecting and fixing problems."
-          ],
-          [
-           "AP - British entrepreneur<br>Richard Branson said Monday<br>that his company plans to<br>launch commercial space<br>flights over the next few<br>years."
-          ],
-          [
-           "A group of Internet security<br>and instant messaging<br>providers have teamed up to<br>detect and thwart the growing<br>threat of IM and peer-to-peer<br>viruses and worms, they said<br>this week."
-          ],
-          [
-           "His first space flight was in<br>1965 when he piloted the first<br>manned Gemini mission. Later<br>he made two trips to the moon<br>-- orbiting during a 1969<br>flight and then walking on the<br>lunar surface during a mission<br>in 1972."
-          ],
-          [
-           "By RACHEL KONRAD    SAN<br>FRANCISCO (AP) -- EBay Inc.,<br>which has been aggressively<br>expanding in Asia, plans to<br>increase its stake in South<br>Korea's largest online auction<br>company.    The Internet<br>auction giant said Tuesday<br>night that it would purchase<br>nearly 3 million publicly held<br>shares of Internet Auction<br>Co..."
-          ],
-          [
-           "AP - China's biggest computer<br>maker, Lenovo Group, said<br>Wednesday it has acquired a<br>majority stake in<br>International Business<br>Machines Corp.'s personal<br>computer business for<br>#36;1.75 billion, one of the<br>biggest Chinese overseas<br>acquisitions ever."
-          ],
-          [
-           "Big evolutionary insights<br>sometimes come in little<br>packages. Witness the<br>startling discovery, in a cave<br>on the eastern Indonesian<br>island of Flores, of the<br>partial skeleton of a half-<br>size Homo species that"
-          ],
-          [
-           "Luke Skywalker and Darth Vader<br>may get all the glory, but a<br>new Star Wars video game<br>finally gives credit to the<br>everyday grunts who couldn<br>#39;t summon the Force for<br>help."
-          ],
-          [
-           " LOS ANGELES (Reuters) -<br>Federal authorities raided<br>three  Washington, D.C.-area<br>video game stores and arrested<br>two people  for modifying<br>video game consoles to play<br>pirated video games,  a video<br>game industry group said on<br>Wednesday."
-          ],
-          [
-           "Thornbugs communicate by<br>vibrating the branches they<br>live on. Now scientists are<br>discovering just what the bugs<br>are \"saying.\""
-          ],
-          [
-           "Federal prosecutors cracked a<br>global cartel that had<br>illegally fixed prices of<br>memory chips in personal<br>computers and servers for<br>three years."
-          ],
-          [
-           "AP - Oracle Corp. CEO Larry<br>Ellison reiterated his<br>determination to prevail in a<br>long-running takeover battle<br>with rival business software<br>maker PeopleSoft Inc.,<br>predicting the proposed deal<br>will create a more competitive<br>company with improved customer<br>service."
-          ],
-          [
-           "AP - Scientists warned Tuesday<br>that a long-term increase in<br>global temperature of 3.5<br>degrees could threaten Latin<br>American water supplies,<br>reduce food yields in Asia and<br>result in a rise in extreme<br>weather conditions in the<br>Caribbean."
-          ],
-          [
-           "AP - Further proof New York's<br>real estate market is<br>inflated: The city plans to<br>sell space on top of lampposts<br>to wireless phone companies<br>for  #36;21.6 million a year."
-          ],
-          [
-           "The rollout of new servers and<br>networking switches in stores<br>is part of a five-year<br>agreement supporting 7-Eleven<br>#39;s Retail Information<br>System."
-          ],
-          [
-           "Top Hollywood studios have<br>launched a wave of court cases<br>against internet users who<br>illegally download film files.<br>The Motion Picture Association<br>of America, which acts as the<br>representative of major film"
-          ],
-          [
-           "AUSTRALIANS went into a<br>television-buying frenzy the<br>run-up to the Athens Olympics,<br>suggesting that as a nation we<br>could easily have scored a<br>gold medal for TV purchasing."
-          ],
-          [
-           "The next time you are in your<br>bedroom with your PC plus<br>Webcam switched on, don #39;t<br>think that your privacy is all<br>intact. If you have a Webcam<br>plugged into an infected<br>computer, there is a<br>possibility that"
-          ],
-          [
-           "AP - Shawn Fanning's Napster<br>software enabled countless<br>music fans to swap songs on<br>the Internet for free, turning<br>him into the recording<br>industry's enemy No. 1 in the<br>process."
-          ],
-          [
-           "Reuters - Walt Disney Co.<br>is\\increasing investment in<br>video games for hand-held<br>devices and\\plans to look for<br>acquisitions of small game<br>publishers and\\developers,<br>Disney consumer products<br>Chairman Andy Mooney said\\on<br>Monday."
-          ],
-          [
-           "BANGKOK - A UN conference last<br>week banned commercial trade<br>in the rare Irrawaddy dolphin,<br>a move environmentalists said<br>was needed to save the<br>threatened species."
-          ],
-          [
-           "PC World - Updated antivirus<br>software for businesses adds<br>intrusion prevention features."
-          ],
-          [
-           "Reuters - Online media company<br>Yahoo Inc.\\ late on Monday<br>rolled out tests of redesigned<br>start\\pages for its popular<br>Yahoo.com and My.Yahoo.com<br>sites."
-          ],
-          [
-           "The Sun may have captured<br>thousands or even millions of<br>asteroids from another<br>planetary system during an<br>encounter more than four<br>billion years ago, astronomers<br>are reporting."
-          ],
-          [
-           "Thumb through the book - then<br>buy a clean copy from Amazon"
-          ],
-          [
-           "Reuters - High-definition<br>television can\\show the sweat<br>beading on an athlete's brow,<br>but the cost of\\all the<br>necessary electronic equipment<br>can get a shopper's own\\pulse<br>racing."
-          ],
-          [
-           "MacCentral - Apple Computer<br>Inc. on Monday released an<br>update for Apple Remote<br>Desktop (ARD), the company's<br>software solution to assist<br>Mac system administrators and<br>computer managers with asset<br>management, software<br>distribution and help desk<br>support. ARD 2.1 includes<br>several enhancements and bug<br>fixes."
-          ],
-          [
-           "The fastest-swiveling space<br>science observatory ever built<br>rocketed into orbit on<br>Saturday to scan the universe<br>for celestial explosions."
-          ],
-          [
-           "Copernic Unleashes Desktop<br>Search Tool\\\\Copernic<br>Technologies Inc. today<br>announced Copernic Desktop<br>Search(TM) (CDS(TM)), \"The<br>Search Engine For Your PC<br>(TM).\" Copernic has used the<br>experience gained from over 30<br>million downloads of its<br>Windows-based Web search<br>software to develop CDS, a<br>desktop search product that<br>users are saying is far ..."
-          ],
-          [
-           "The DVD Forum moved a step<br>further toward the advent of<br>HD DVD media and drives with<br>the approval of key physical<br>specifications at a meeting of<br>the organisations steering<br>committee last week."
-          ],
-          [
-           "Often pigeonholed as just a<br>seller of televisions and DVD<br>players, Royal Philips<br>Electronics said third-quarter<br>profit surged despite a slide<br>into the red by its consumer<br>electronics division."
-          ],
-          [
-           "AP - Google, the Internet<br>search engine, has done<br>something that law enforcement<br>officials and their computer<br>tools could not: Identify a<br>man who died in an apparent<br>hit-and-run accident 11 years<br>ago in this small town outside<br>Yakima."
-          ],
-          [
-           "We are all used to IE getting<br>a monthly new security bug<br>found, but Winamp? In fact,<br>this is not the first security<br>flaw found in the application."
-          ],
-          [
-           "The Apache Software Foundation<br>and the Debian Project said<br>they won't support the Sender<br>ID e-mail authentication<br>standard in their products."
-          ],
-          [
-           "USATODAY.com - The newly<br>restored THX 1138 arrives on<br>DVD today with Star Wars<br>creator George Lucas' vision<br>of a Brave New World-like<br>future."
-          ],
-          [
-           "The chances of scientists<br>making any one of five<br>discoveries by 2010 have been<br>hugely underestimated,<br>according to bookmakers."
-          ],
-          [
-           "Deepening its commitment to<br>help corporate users create<br>SOAs (service-oriented<br>architectures) through the use<br>of Web services, IBM's Global<br>Services unit on Thursday<br>announced the formation of an<br>SOA Management Practice."
-          ],
-          [
-           "Toshiba Corp. #39;s new<br>desktop-replacement multimedia<br>notebooks, introduced on<br>Tuesday, are further evidence<br>that US consumers still have<br>yet to embrace the mobility<br>offered by Intel Corp."
-          ],
-          [
-           "Aregular Amazon customer,<br>Yvette Thompson has found<br>shopping online to be mostly<br>convenient and trouble-free.<br>But last month, after ordering<br>two CDs on Amazon.com, the<br>Silver Spring reader<br>discovered on her bank<br>statement that she was double-<br>charged for the \\$26.98 order.<br>And there was a \\$25 charge<br>that was a mystery."
-          ],
-          [
-           "Finnish mobile giant Nokia has<br>described its new Preminet<br>solution, which it launched<br>Monday (Oct. 25), as a<br>quot;major worldwide<br>initiative."
-          ],
-          [
-           " SAN FRANCISCO (Reuters) - At<br>virtually every turn, Intel<br>Corp. executives are heaping<br>praise on an emerging long-<br>range  wireless technology<br>known as WiMAX, which can<br>blanket entire  cities with<br>high-speed Internet access."
-          ],
-          [
-           "Phishing is one of the<br>fastest-growing forms of<br>personal fraud in the world.<br>While consumers are the most<br>obvious victims, the damage<br>spreads far wider--hurting<br>companies #39; finances and<br>reputations and potentially"
-          ],
-          [
-           "Reuters - The U.S. Interior<br>Department on\\Friday gave<br>final approval to a plan by<br>ConocoPhillips and\\partner<br>Anadarko Petroleum Corp. to<br>develop five tracts around\\the<br>oil-rich Alpine field on<br>Alaska's North Slope."
-          ],
-          [
-           "Atari has opened the initial<br>sign-up phase of the closed<br>beta for its Dungeons  amp;<br>Dragons real-time-strategy<br>title, Dragonshard."
-          ],
-          [
-           "Big Blue adds features, beefs<br>up training efforts in China;<br>rival Unisys debuts new line<br>and pricing plan."
-          ],
-          [
-           "South Korea's Hynix<br>Semiconductor Inc. and Swiss-<br>based STMicroelectronics NV<br>signed a joint-venture<br>agreement on Tuesday to<br>construct a memory chip<br>manufacturing plant in Wuxi,<br>about 100 kilometers west of<br>Shanghai, in China."
-          ],
-          [
-           "Well, Intel did say -<br>dismissively of course - that<br>wasn #39;t going to try to<br>match AMD #39;s little dual-<br>core Opteron demo coup of last<br>week and show off a dual-core<br>Xeon at the Intel Developer<br>Forum this week and - as good<br>as its word - it didn #39;t."
-          ],
-          [
-           "IT #39;S BEEN a heck of an<br>interesting two days here in<br>Iceland. I #39;ve seen some<br>interesting technology, heard<br>some inventive speeches and<br>met some people with different<br>ideas."
-          ],
-          [
-           "Reuters - Two clients of<br>Germany's Postbank\\(DPBGn.DE)<br>fell for an e-mail fraud that<br>led them to reveal\\money<br>transfer codes to a bogus Web<br>site -- the first case of\\this<br>scam in German, prosecutors<br>said on Thursday."
-          ],
-          [
-           "US spending on information<br>technology goods, services,<br>and staff will grow seven<br>percent in 2005 and continue<br>at a similar pace through<br>2008, according to a study<br>released Monday by Forrester<br>Research."
-          ],
-          [
-           "Look, Ma, no hands! The U.S.<br>space agency's latest<br>spacecraft can run an entire<br>mission by itself. By Amit<br>Asaravala."
-          ],
-          [
-           "Joining America Online,<br>EarthLink and Yahoo against<br>spamming, Microsoft Corp.<br>today announced the filing of<br>three new anti-Spam lawsuits<br>under the CAN-SPAM federal law<br>as part of its initiative in<br>solving the Spam problem for<br>Internet users worldwide."
-          ],
-          [
-           "A nationwide inspection shows<br>Internet users are not as safe<br>online as they believe. The<br>inspections found most<br>consumers have no firewall<br>protection, outdated antivirus<br>software and dozens of spyware<br>programs secretly running on<br>their computers."
-          ],
-          [
-           "More than three out of four<br>(76 percent) consumers are<br>experiencing an increase in<br>spoofing and phishing<br>incidents, and 35 percent<br>receive fake e-mails at least<br>once a week, according to a<br>recent national study."
-          ],
-          [
-           "AP - Deep in the Atlantic<br>Ocean, undersea explorers are<br>living a safer life thanks to<br>germ-fighting clothing made in<br>Kinston."
-          ],
-          [
-           "Computer Associates Monday<br>announced the general<br>availability of three<br>Unicenter performance<br>management products for<br>mainframe data management."
-          ],
-          [
-           "Reuters - The European Union<br>approved on\\Wednesday the<br>first biotech seeds for<br>planting and sale across\\EU<br>territory, flying in the face<br>of widespread<br>consumer\\resistance to<br>genetically modified (GMO)<br>crops and foods."
-          ],
-          [
-           "p2pnet.net News:- A Microsoft<br>UK  quot;WEIGHING THE COST OF<br>LINUX VS. WINDOWS? LET #39;S<br>REVIEW THE FACTS quot;<br>magazine ad has been nailed as<br>misleading by Britain #39;s<br>Advertising Standards<br>Authority (ASA)."
-          ],
-          [
-           "The retail sector overall may<br>be reporting a sluggish start<br>to the season, but holiday<br>shoppers are scooping up tech<br>goods at a brisk pace -- and<br>they're scouring the Web for<br>bargains more than ever.<br>&lt;FONT face=\"verdana,MS Sans<br>Serif,arial,helvetica\"<br>size=\"-2\" color=\"#666666\"&gt;&<br>lt;B&gt;-washingtonpost.com&lt<br>;/B&gt;&lt;/FONT&gt;"
-          ],
-          [
-           "The team behind the Beagle 2<br>mission has unveiled its<br>design for a successor to the<br>British Mars lander."
-          ],
-          [
-           "Survey points to popularity in<br>Europe, the Middle East and<br>Asia of receivers that skip<br>the pay TV and focus on free<br>programming."
-          ],
-          [
-           "Linux publisher Red Hat Inc.<br>said Tuesday that information-<br>technology consulting firm<br>Unisys Corp. will begin<br>offering a business version of<br>the company #39;s open-source<br>operating system on its<br>servers."
-          ],
-          [
-           "IBM's p5-575, a specialized<br>server geared for high-<br>performance computing, has<br>eight 1.9GHz Power5<br>processors."
-          ],
-          [
-           "Reuters - British police said<br>on Monday they had\\charged a<br>man with sending hoax emails<br>to relatives of people\\missing<br>since the Asian tsunami,<br>saying their loved ones<br>had\\been confirmed dead."
-          ],
-          [
-           "LOS ANGELES - On Sept. 1,<br>former secretary of<br>Agriculture Dan Glickman<br>replaced the legendary Jack<br>Valenti as president and CEO<br>of Hollywood #39;s trade<br>group, the Motion Picture<br>Association of America."
-          ],
-          [
-           "The director of the National<br>Hurricane Center stays calm in<br>the midst of a storm, but<br>wants everyone in hurricane-<br>prone areas to get the message<br>from his media advisories:<br>Respect the storm's power and<br>make proper response plans."
-          ],
-          [
-           "SAN FRANCISCO Several<br>California cities and<br>counties, including Los<br>Angeles and San Francisco, are<br>suing Microsoft for what could<br>amount to billions of dollars."
-          ],
-          [
-           "Google plans to release a<br>version of its desktop search<br>tool for computers that run<br>Apple Computer #39;s Mac<br>operating system, Google #39;s<br>chief executive, Eric Schmidt,<br>said Friday."
-          ],
-          [
-           "AMD : sicurezza e prestazioni<br>ottimali con il nuovo<br>processore mobile per notebook<br>leggeri e sottili; Acer Inc.<br>preme sull #39;acceleratore<br>con il nuovo notebook a<br>marchio Ferrari."
-          ],
-          [
-           "Firefox use around the world<br>climbed 34 percent in the last<br>month, according to a report<br>published by Web analytics<br>company WebSideStory Monday."
-          ],
-          [
-           "If a plastic card that gives<br>you credit for something you<br>don't want isn't your idea of<br>a great gift, you can put it<br>up for sale or swap."
-          ],
-          [
-           "WASHINGTON Aug. 17, 2004<br>Scientists are planning to<br>take the pulse of the planet<br>and more in an effort to<br>improve weather forecasts,<br>predict energy needs months in<br>advance, anticipate disease<br>outbreaks and even tell<br>fishermen where the catch will<br>be ..."
-          ],
-          [
-           "New communications technology<br>could spawn future products.<br>Could your purse tell you to<br>bring an umbrella?"
-          ],
-          [
-           "SAP has won a \\$35 million<br>contract to install its human<br>resources software for the US<br>Postal Service. The NetWeaver-<br>based system will replace the<br>Post Office #39;s current<br>25-year-old legacy application"
-          ],
-          [
-           "NewsFactor - For years,<br>companies large and small have<br>been convinced that if they<br>want the sophisticated<br>functionality of enterprise-<br>class software like ERP and<br>CRM systems, they must buy<br>pre-packaged applications.<br>And, to a large extent, that<br>remains true."
-          ],
-          [
-           "Following in the footsteps of<br>the RIAA, the MPAA (Motion<br>Picture Association of<br>America) announced that they<br>have began filing lawsuits<br>against people who use peer-<br>to-peer software to download<br>copyrighted movies off the<br>Internet."
-          ],
-          [
-           "MacCentral - At a special<br>music event featuring Bono and<br>The Edge from rock group U2<br>held on Tuesday, Apple took<br>the wraps off the iPod Photo,<br>a color iPod available in 40GB<br>or 60GB storage capacities.<br>The company also introduced<br>the iPod U2, a special edition<br>of Apple's 20GB player clad in<br>black, equipped with a red<br>Click Wheel and featuring<br>engraved U2 band member<br>signatures. The iPod Photo is<br>available immediately, and<br>Apple expects the iPod U2 to<br>ship in mid-November."
-          ],
-          [
-           "Reuters - Oracle Corp is<br>likely to win clearance\\from<br>the European Commission for<br>its hostile  #36;7.7<br>billion\\takeover of rival<br>software firm PeopleSoft Inc.,<br>a source close\\to the<br>situation said on Friday."
-          ],
-          [
-           "IBM (Quote, Chart) said it<br>would spend a quarter of a<br>billion dollars over the next<br>year and a half to grow its<br>RFID (define) business."
-          ],
-          [
-           "SPACE.com - NASA released one<br>of the best pictures ever made<br>of Saturn's moon Titan as the<br>Cassini spacecraft begins a<br>close-up inspection of the<br>satellite today. Cassini is<br>making the nearest flyby ever<br>of the smog-shrouded moon."
-          ],
-          [
-           "ANNAPOLIS ROYAL, NS - Nova<br>Scotia Power officials<br>continued to keep the sluice<br>gates open at one of the<br>utility #39;s hydroelectric<br>plants Wednesday in hopes a<br>wayward whale would leave the<br>area and head for the open<br>waters of the Bay of Fundy."
-          ],
-          [
-           "In fact, Larry Ellison<br>compares himself to the<br>warlord, according to<br>PeopleSoft's former CEO,<br>defending previous remarks he<br>made."
-          ],
-          [
-           "You can empty your pockets of<br>change, take off your belt and<br>shoes and stick your keys in<br>the little tray. But if you've<br>had radiation therapy<br>recently, you still might set<br>off Homeland Security alarms."
-          ],
-          [
-           "SEOUL, Oct 19 Asia Pulse -<br>LG.Philips LCD Co.<br>(KSE:034220), the world #39;s<br>second-largest maker of liquid<br>crystal display (LCD), said<br>Tuesday it has developed the<br>world #39;s largest organic<br>light emitting diode"
-          ],
-          [
-           "Security experts warn of<br>banner ads with a bad attitude<br>--and a link to malicious<br>code. Also: Phishers, be gone."
-          ],
-          [
-           "com October 15, 2004, 5:11 AM<br>PT. Wood paneling and chrome<br>made your dad #39;s station<br>wagon look like a million<br>bucks, and they might also be<br>just the ticket for Microsoft<br>#39;s fledgling"
-          ],
-          [
-           "Computer Associates<br>International yesterday<br>reported a 6 increase in<br>revenue during its second<br>fiscal quarter, but posted a<br>\\$94 million loss after paying<br>to settle government<br>investigations into the<br>company, it said yesterday."
-          ],
-          [
-           "PC World - Send your video<br>throughout your house--<br>wirelessly--with new gateways<br>and media adapters."
-          ],
-          [
-           "Links to this week's topics<br>from search engine forums<br>across the web: New MSN Search<br>Goes LIVE in Beta - Microsoft<br>To Launch New Search Engine -<br>Google Launches 'Google<br>Advertising Professionals' -<br>Organic vs Paid Traffic ROI? -<br>Making Money With AdWords? -<br>Link Building 101"
-          ],
-          [
-           "Eight conservation groups are<br>fighting the US government<br>over a plan to poison<br>thousands of prairie dogs in<br>the grasslands of South<br>Dakota, saying wildlife should<br>not take a backseat to<br>ranching interests."
-          ],
-          [
-           "Siding with chip makers,<br>Microsoft said it won't charge<br>double for its per-processor<br>licenses when dual-core chips<br>come to market next year."
-          ],
-          [
-           "IBM and the Spanish government<br>have introduced a new<br>supercomputer they hope will<br>be the most powerful in<br>Europe, and one of the 10 most<br>powerful in the world."
-          ],
-          [
-           "Mozilla's new web browser is<br>smart, fast and user-friendly<br>while offering a slew of<br>advanced, customizable<br>functions. By Michelle Delio."
-          ],
-          [
-           "originally offered on notebook<br>PCs -- to its Opteron 32- and<br>64-bit x86 processors for<br>server applications. The<br>technology will help servers<br>to run"
-          ],
-          [
-           "MacCentral - After Apple<br>unveiled the iMac G5 in Paris<br>this week, Vice President of<br>Hardware Product Marketing<br>Greg Joswiak gave Macworld<br>editors a guided tour of the<br>desktop's new design. Among<br>the topics of conversation:<br>the iMac's cooling system, why<br>pre-installed Bluetooth<br>functionality and FireWire 800<br>were left out, and how this<br>new model fits in with Apple's<br>objectives."
-          ],
-          [
-           "We #39;ve known about<br>quot;strained silicon quot;<br>for a while--but now there<br>#39;s a better way to do it.<br>Straining silicon improves<br>chip performance."
-          ],
-          [
-           "This week, Sir Richard Branson<br>announced his new company,<br>Virgin Galactic, has the<br>rights to the first commercial<br>flights into space."
-          ],
-          [
-           "71-inch HDTV comes with a home<br>stereo system and components<br>painted in 24-karat gold."
-          ],
-          [
-           "MacCentral - RealNetworks Inc.<br>said on Tuesday that it has<br>sold more than a million songs<br>at its online music store<br>since slashing prices last<br>week as part of a limited-time<br>sale aimed at growing the user<br>base of its new digital media<br>software."
-          ],
-          [
-           "With the presidential election<br>less than six weeks away,<br>activists and security experts<br>are ratcheting up concern over<br>the use of touch-screen<br>machines to cast votes.<br>&lt;FONT face=\"verdana,MS Sans<br>Serif,arial,helvetica\"<br>size=\"-2\"\\ color=\"#666666\"&gt;<br>&lt;B&gt;-washingtonpost.com&l<br>t;/B&gt;&lt;/FONT&gt;"
-          ],
-          [
-           "NEW YORK, September 14 (New<br>Ratings) - Yahoo! Inc<br>(YHOO.NAS) has agreed to<br>acquire Musicmatch Inc, a<br>privately held digital music<br>software company, for about<br>\\$160 million in cash."
-          ],
-          [
-           "Gov. Rod Blagojevich plans to<br>propose a ban Thursday on the<br>sale of violent and sexually<br>explicit video games to<br>minors, something other states<br>have tried with little<br>success."
-          ],
-          [
-           "A cable channel plans to<br>resurrect each of the 1,230<br>regular-season games listed on<br>the league's defunct 2004-2005<br>schedule by setting them in<br>motion on a video game<br>console."
-          ],
-          [
-           "SiliconValley.com - When<br>\"Halo\" became a smash video<br>game hit following Microsoft's<br>launch of the Xbox console in<br>2001, it was a no-brainer that<br>there would be a sequel to the<br>science fiction shoot-em-up."
-          ],
-          [
-           "PARIS -- The city of Paris<br>intends to reduce its<br>dependence on software<br>suppliers with \"de facto<br>monopolies,\" but considers an<br>immediate switch of its 17,000<br>desktops to open source<br>software too costly, it said<br>Wednesday."
-          ],
-          [
-           "The vast majority of consumers<br>are unaware that an Apple iPod<br>digital music player only<br>plays proprietary iTunes<br>files, while a smaller<br>majority agree that it is<br>within RealNetworks #39;<br>rights to develop a program<br>that will make its music files<br>compatible"
-          ],
-          [
-           " PROVIDENCE, R.I. (Reuters) -<br>You change the oil in your car<br>every 5,000 miles or so. You<br>clean your house every week or<br>two. Your PC needs regular<br>maintenance as well --<br>especially if  you're using<br>Windows and you spend a lot of<br>time on the  Internet."
-          ],
-          [
-           "The Motley Fool - Here's<br>something you don't see every<br>day -- the continuing brouhaha<br>between Oracle (Nasdaq: ORCL -<br>News) and PeopleSoft (Nasdaq:<br>PSFT - News) being a notable<br>exception. South Africa's<br>Harmony Gold Mining Company<br>(NYSE: HMY - News) has<br>announced a hostile takeover<br>bid to acquire fellow South<br>African miner Gold Fields<br>Limited (NYSE: GFI - News).<br>The transaction, if it takes<br>place, would be an all-stock<br>acquisition, with Harmony<br>issuing 1.275 new shares in<br>payment for each share of Gold<br>Fields. The deal would value<br>Gold Fields at more than<br>#36;8 billion. ..."
-          ],
-          [
-           "SPACE.com - NASA's Mars \\rover<br>Opportunity nbsp;will back its<br>\\way out of a nbsp;crater it<br>has spent four months<br>exploring after reaching<br>terrain nbsp;that appears \\too<br>treacherous to tread. nbsp;"
-          ],
-          [
-           "Sony Corp. announced Tuesday a<br>new 20 gigabyte digital music<br>player with MP3 support that<br>will be available in Great<br>Britain and Japan before<br>Christmas and elsewhere in<br>Europe in early 2005."
-          ],
-          [
-           "TOKYO (AP) -- The electronics<br>and entertainment giant Sony<br>Corp. (SNE) is talking with<br>Wal-Mart Stores Inc..."
-          ],
-          [
-           "After an unprecedented span of<br>just five days, SpaceShipOne<br>is ready for a return trip to<br>space on Monday, its final<br>flight to clinch a \\$10<br>million prize."
-          ],
-          [
-           "Hi-tech monitoring of<br>livestock at pig farms could<br>help improve the animal growth<br>process and reduce costs."
-          ],
-          [
-           "Cable  amp; Wireless plc<br>(NYSE: CWP - message board) is<br>significantly ramping up its<br>investment in local loop<br>unbundling (LLU) in the UK,<br>and it plans to spend up to 85<br>million (\\$152."
-          ],
-          [
-           "AFP - Microsoft said that it<br>had launched a new desktop<br>search tool that allows<br>personal computer users to<br>find documents or messages on<br>their PCs."
-          ],
-          [
-           "The three largest computer<br>makers spearheaded a program<br>today designed to standardize<br>working conditions for their<br>non-US workers."
-          ],
-          [
-           "Description: Illinois Gov. Rod<br>Blagojevich is backing state<br>legislation that would ban<br>sales or rentals of video<br>games with graphic sexual or<br>violent content to children<br>under 18."
-          ],
-          [
-           "Are you bidding on keywords<br>through Overture's Precision<br>Match, Google's AdWords or<br>another pay-for-placement<br>service? If so, you're<br>eligible to participate in<br>their contextual advertising<br>programs."
-          ],
-          [
-           "Nobel Laureate Wilkins, 87,<br>played an important role in<br>the discovery of the double<br>helix structure of DNA, the<br>molecule that carries our<br>quot;life code quot;,<br>Kazinform refers to BBC News."
-          ],
-          [
-           "A number of signs point to<br>increasing demand for tech<br>workers, but not all the<br>clouds have been driven away."
-          ],
-          [
-           "Microsoft Corp. (MSFT.O:<br>Quote, Profile, Research)<br>filed nine new lawsuits<br>against spammers who send<br>unsolicited e-mail, including<br>an e-mail marketing Web<br>hosting company, the world<br>#39;s largest software maker<br>said on Thursday."
-          ],
-          [
-           "The rocket plane SpaceShipOne<br>is just one flight away from<br>claiming the Ansari X-Prize, a<br>\\$10m award designed to kick-<br>start private space travel."
-          ],
-          [
-           "Reuters - Three American<br>scientists won the\\2004 Nobel<br>physics prize on Tuesday for<br>showing how tiny<br>quark\\particles interact,<br>helping to explain everything<br>from how a\\coin spins to how<br>the universe was built."
-          ],
-          [
-           "AP - Sharp Electronics Corp.<br>plans to stop selling its<br>Linux-based handheld computer<br>in the United States, another<br>sign of the slowing market for<br>personal digital assistants."
-          ],
-          [
-           "Reuters - Glaciers once held<br>up by a floating\\ice shelf off<br>Antarctica are now sliding off<br>into the sea --\\and they are<br>going fast, scientists said on<br>Tuesday."
-          ],
-          [
-           "AP - Warning lights flashed<br>atop four police cars as the<br>caravan wound its way up the<br>driveway in a procession fit<br>for a presidential candidate.<br>At long last, Azy and Indah<br>had arrived. They even flew<br>through a hurricane to get<br>here."
-          ],
-          [
-           "\\Female undergraduates work<br>harder and are more open-<br>minded than males, leading to<br>better results, say<br>scientists."
-          ],
-          [
-           "The United Nations annual<br>World Robotics Survey predicts<br>the use of robots around the<br>home will surge seven-fold by<br>2007. The boom is expected to<br>be seen in robots that can mow<br>lawns and vacuum floors, among<br>other chores."
-          ],
-          [
-           "Want to dive deep -- really<br>deep -- into the technical<br>literature about search<br>engines?  Here's a road map to<br>some of the best web<br>information retrieval<br>resources available online."
-          ],
-          [
-           "Reuters - Ancel Keys, a<br>pioneer in public health\\best<br>known for identifying the<br>connection between<br>a\\cholesterol-rich diet and<br>heart disease, has died."
-          ],
-          [
-           "Reuters - T-Mobile USA, the<br>U.S. wireless unit\\of Deutsche<br>Telekom AG (DTEGn.DE), does<br>not expect to offer\\broadband<br>mobile data services for at<br>least the next two years,\\its<br>chief executive said on<br>Thursday."
-          ],
-          [
-           "Verizon Communications is<br>stepping further into video as<br>a way to compete against cable<br>companies."
-          ],
-          [
-           "Oracle Corp. plans to release<br>the latest version of its CRM<br>(customer relationship<br>management) applications<br>within the next two months, as<br>part of an ongoing update of<br>its E-Business Suite."
-          ],
-          [
-           "Hosted CRM service provider<br>Salesforce.com took another<br>step forward last week in its<br>strategy to build an online<br>ecosystem of vendors that<br>offer software as a service."
-          ],
-          [
-           "washingtonpost.com -<br>Technology giants IBM and<br>Hewlett-Packard are injecting<br>hundreds of millions of<br>dollars into radio-frequency<br>identification technology,<br>which aims to advance the<br>tracking of items from ho-hum<br>bar codes to smart tags packed<br>with data."
-          ],
-          [
-           "The Norfolk Broads are on<br>their way to getting a clean<br>bill of ecological  health<br>after a century of stagnation."
-          ],
-          [
-           "For the second time this year,<br>an alliance of major Internet<br>providers - including Atlanta-<br>based EarthLink -iled a<br>coordinated group of lawsuits<br>aimed at stemming the flood of<br>online junk mail."
-          ],
-          [
-           "Via Technologies has released<br>a version of the open-source<br>Xine media player that is<br>designed to take advantage of<br>hardware digital video<br>acceleration capabilities in<br>two of the company #39;s PC<br>chipsets, the CN400 and<br>CLE266."
-          ],
-          [
-           "SCO Group has a plan to keep<br>itself fit enough to continue<br>its legal battles against<br>Linux and to develop its Unix-<br>on-Intel operating systems."
-          ],
-          [
-           "New software helps corporate<br>travel managers track down<br>business travelers who<br>overspend. But it also poses a<br>dilemma for honest travelers<br>who are only trying to save<br>money."
-          ],
-          [
-           "NATO Secretary-General Jaap de<br>Hoop Scheffer has called a<br>meeting of NATO states and<br>Russia on Tuesday to discuss<br>the siege of a school by<br>Chechen separatists in which<br>more than 335 people died, a<br>NATO spokesman said."
-          ],
-          [
-           "AFP - Senior executives at<br>business software group<br>PeopleSoft unanimously<br>recommended that its<br>shareholders reject a 8.8<br>billion dollar takeover bid<br>from Oracle Corp, PeopleSoft<br>said in a statement Wednesday."
-          ],
-          [
-           "Reuters - Neolithic people in<br>China may have\\been the first<br>in the world to make wine,<br>according to\\scientists who<br>have found the earliest<br>evidence of winemaking\\from<br>pottery shards dating from<br>7,000 BC in northern China."
-          ],
-          [
-           " TOKYO (Reuters) - Electronics<br>conglomerate Sony Corp.<br>unveiled eight new flat-screen<br>televisions on Thursday in a<br>product push it hopes will<br>help it secure a leading 35<br>percent  of the domestic<br>market in the key month of<br>December."
-          ],
-          [
-           "Donald Halsted, one target of<br>a class-action suit alleging<br>financial improprieties at<br>bankrupt Polaroid, officially<br>becomes CFO."
-          ],
-          [
-           "The 7710 model features a<br>touch screen, pen input, a<br>digital camera, an Internet<br>browser, a radio, video<br>playback and streaming and<br>recording capabilities, the<br>company said."
-          ],
-          [
-           "A top Red Hat executive has<br>attacked the open-source<br>credentials of its sometime<br>business partner Sun<br>Microsystems. In a Web log<br>posting Thursday, Michael<br>Tiemann, Red Hat #39;s vice<br>president of open-source<br>affairs"
-          ],
-          [
-           "MySQL developers turn to an<br>unlikely source for database<br>tool: Microsoft. Also: SGI<br>visualizes Linux, and the<br>return of Java veteran Kim<br>Polese."
-          ],
-          [
-           "Dell Inc. said its profit<br>surged 25 percent in the third<br>quarter as the world's largest<br>personal computer maker posted<br>record sales due to rising<br>technology spending in the<br>corporate and government<br>sectors in the United States<br>and abroad."
-          ],
-          [
-           "Reuters - SBC Communications<br>said on Monday it\\would offer<br>a television set-top box that<br>can handle music,\\photos and<br>Internet downloads, part of<br>SBC's efforts to expand\\into<br>home entertainment."
-          ],
-          [
-           " WASHINGTON (Reuters) - Hopes<br>-- and worries -- that U.S.<br>regulators will soon end the<br>ban on using wireless phones<br>during U.S. commercial flights<br>are likely at least a year or<br>two early, government<br>officials and analysts say."
-          ],
-          [
-           "After a year of pilots and<br>trials, Siebel Systems jumped<br>with both feet into the SMB<br>market Tuesday, announcing a<br>new approach to offer Siebel<br>Professional CRM applications<br>to SMBs (small and midsize<br>businesses) -- companies with<br>revenues up to about \\$500<br>million."
-          ],
-          [
-           "Intel won't release a 4-GHz<br>version of its flagship<br>Pentium 4 product, having<br>decided instead to realign its<br>engineers around the company's<br>new design priorities, an<br>Intel spokesman said today.<br>\\\\"
-          ],
-          [
-           "AP - A Soyuz spacecraft<br>carrying two Russians and an<br>American rocketed closer<br>Friday to its docking with the<br>international space station,<br>where the current three-man<br>crew made final departure<br>preparations."
-          ],
-          [
-           "Scientists have manipulated<br>carbon atoms to create a<br>material that could be used to<br>create light-based, versus<br>electronic, switches. The<br>material could lead to a<br>supercharged Internet based<br>entirely on light, scientists<br>say."
-          ],
-          [
-           "LOS ANGELES (Reuters)<br>Qualcomm has dropped an \\$18<br>million claim for monetary<br>damages from rival Texas<br>Instruments for publicly<br>discussing terms of a<br>licensing pact, a TI<br>spokeswoman confirmed Tuesday."
-          ],
-          [
-           "Hewlett-Packard is the latest<br>IT vendor to try blogging. But<br>analysts wonder if the weblog<br>trend is the 21st century<br>equivalent of CB radios, which<br>made a big splash in the 1970s<br>before fading."
-          ],
-          [
-           "The scientists behind Dolly<br>the sheep apply for a license<br>to clone human embryos. They<br>want to take stem cells from<br>the embryos to study Lou<br>Gehrig's disease."
-          ],
-          [
-           "Some of the silly tunes<br>Japanese pay to download to<br>use as the ring tone for their<br>mobile phones sure have their<br>knockers, but it #39;s for<br>precisely that reason that a<br>well-known counselor is raking<br>it in at the moment, according<br>to Shukan Gendai (10/2)."
-          ],
-          [
-           "IBM announced yesterday that<br>it will invest US\\$250 million<br>(S\\$425 million) over the next<br>five years and employ 1,000<br>people in a new business unit<br>to support products and<br>services related to sensor<br>networks."
-          ],
-          [
-           "AP - Microsoft Corp. goes into<br>round two Friday of its battle<br>to get the European Union's<br>sweeping antitrust ruling<br>lifted having told a judge<br>that it had been prepared<br>during settlement talks to<br>share more software code with<br>its rivals than the EU<br>ultimately demanded."
-          ],
-          [
-           "AP - Sears, Roebuck and Co.,<br>which has successfully sold<br>its tools and appliances on<br>the Web, is counting on having<br>the same magic with bedspreads<br>and sweaters, thanks in part<br>to expertise gained by its<br>purchase of Lands' End Inc."
-          ],
-          [
-           "Austin police are working with<br>overseas officials to bring<br>charges against an English man<br>for sexual assault of a child,<br>a second-degree felony."
-          ],
-          [
-           "San Francisco<br>developer/publisher lands<br>coveted Paramount sci-fi<br>license, \\$6.5 million in<br>funding on same day. Although<br>it is less than two years old,<br>Perpetual Entertainment has<br>acquired one of the most<br>coveted sci-fi licenses on the<br>market."
-          ],
-          [
-           "By KELLY WIESE    JEFFERSON<br>CITY, Mo. (AP) -- Missouri<br>will allow members of the<br>military stationed overseas to<br>return absentee ballots via<br>e-mail, raising concerns from<br>Internet security experts<br>about fraud and ballot<br>secrecy..."
-          ],
-          [
-           "Avis Europe PLC has dumped a<br>new ERP system based on<br>software from PeopleSoft Inc.<br>before it was even rolled out,<br>citing substantial delays and<br>higher-than-expected costs."
-          ],
-          [
-           "Yahoo #39;s (Quote, Chart)<br>public embrace of the RSS<br>content syndication format<br>took a major leap forward with<br>the release of a revamped My<br>Yahoo portal seeking to<br>introduce the technology to<br>mainstream consumers."
-          ],
-          [
-           "TOKYO (AP) -- Japanese<br>electronics and entertainment<br>giant Sony Corp. (SNE) plans<br>to begin selling a camcorder<br>designed for consumers that<br>takes video at digital high-<br>definition quality and is<br>being priced at about<br>\\$3,600..."
-          ],
-          [
-           "In a meeting of the cinematic<br>with the scientific, Hollywood<br>helicopter stunt pilots will<br>try to snatch a returning NASA<br>space probe out of the air<br>before it hits the ground."
-          ],
-          [
-           "Legend has it (incorrectly, it<br>seems) that infamous bank<br>robber Willie Sutton, when<br>asked why banks were his<br>favorite target, responded,<br>quot;Because that #39;s where<br>the money is."
-          ],
-          [
-           "Pfizer, GlaxoSmithKline and<br>Purdue Pharma are the first<br>drugmakers willing to take the<br>plunge and use radio frequency<br>identification technology to<br>protect their US drug supply<br>chains from counterfeiters."
-          ],
-          [
-           "Search any fee-based digital<br>music service for the best-<br>loved musical artists of the<br>20th century and most of the<br>expected names show up."
-          ],
-          [
-           "America Online Inc. is<br>packaging new features to<br>combat viruses, spam and<br>spyware in response to growing<br>online security threats.<br>Subscribers will be able to<br>get the free tools"
-          ],
-          [
-           "CAPE CANAVERAL-- NASA aims to<br>launch its first post-Columbia<br>shuttle mission during a<br>shortened nine-day window<br>March, and failure to do so<br>likely would delay a planned<br>return to flight until at<br>least May."
-          ],
-          [
-           "The Chinese city of Beijing<br>has cancelled an order for<br>Microsoft software, apparently<br>bowing to protectionist<br>sentiment. The deal has come<br>under fire in China, which is<br>trying to build a domestic<br>software industry."
-          ],
-          [
-           "Apple says it will deliver its<br>iTunes music service to more<br>European countries next month.<br>Corroborating several reports<br>in recent months, Reuters is<br>reporting today that Apple<br>Computer is planning the next"
-          ],
-          [
-           "Reuters - Motorola Inc., the<br>world's\\second-largest mobile<br>phone maker, said on Tuesday<br>it expects\\to sustain strong<br>sales growth in the second<br>half of 2004\\thanks to new<br>handsets with innovative<br>designs and features."
-          ],
-          [
-           "PRAGUE, Czech Republic --<br>Eugene Cernan, the last man to<br>walk on the moon during the<br>final Apollo landing, said<br>Thursday he doesn't expect<br>space tourism to become<br>reality in the near future,<br>despite a strong demand.<br>Cernan, now 70, who was<br>commander of NASA's Apollo 17<br>mission and set foot on the<br>lunar surface in December 1972<br>during his third space flight,<br>acknowledged that \"there are<br>many people interested in<br>space tourism.\"     But the<br>former astronaut said he<br>believed \"we are a long way<br>away from the day when we can<br>send a bus of tourists to the<br>moon.\" He spoke to reporters<br>before being awarded a medal<br>by the Czech Academy of<br>Sciences for his contribution<br>to science..."
-          ],
-          [
-           "Never shy about entering a<br>market late, Microsoft Corp.<br>is planning to open the<br>virtual doors of its long-<br>planned Internet music store<br>next week. &lt;FONT<br>face=\"verdana,MS Sans<br>Serif,arial,helvetica\"<br>size=\"-2\"\\ color=\"#666666\"&gt;<br>&lt;B&gt;-Leslie<br>Walker&lt;/B&gt;&lt;/FONT&gt;"
-          ],
-          [
-           "AP - On his first birthday<br>Thursday, giant panda cub Mei<br>Sheng delighted visitors by<br>playing for the first time in<br>snow delivered to him at the<br>San Diego Zoo. He also sat on<br>his ice cake, wrestled with<br>his mom, got his coat<br>incredibly dirty, and didn't<br>read any of the more than 700<br>birthday wishes sent him via<br>e-mail from as far away as<br>Ireland and Argentina."
-          ],
-          [
-           "AP - Researchers put a<br>satellite tracking device on a<br>15-foot shark that appeared to<br>be lost in shallow water off<br>Cape Cod, the first time a<br>great white has been tagged<br>that way in the Atlantic."
-          ],
-          [
-           "The Windows Future Storage<br>(WinFS) technology that got<br>cut out of Windows<br>quot;Longhorn quot; is in<br>serious trouble, and not just<br>the hot water a feature might<br>encounter for missing its<br>intended production vehicle."
-          ],
-          [
-           "washingtonpost.com - Let the<br>games begin. Not the Olympics<br>again, but the all-out battle<br>between video game giants Sony<br>Corp. and Nintendo Co. Ltd.<br>The two Japanese companies are<br>rolling out new gaming<br>consoles, but Nintendo has<br>beaten Sony to the punch by<br>announcing an earlier launch<br>date for its new hand-held<br>game player."
-          ],
-          [
-           "AP - Echoing what NASA<br>officials said a day earlier,<br>a Russian space official on<br>Friday said the two-man crew<br>on the international space<br>station could be forced to<br>return to Earth if a planned<br>resupply flight cannot reach<br>them with food supplies later<br>this month."
-          ],
-          [
-           "InfoWorld - SANTA CLARA,<br>CALIF. -- Accommodating large<br>patch sets in Linux is<br>expected to mean forking off<br>of the 2.7 version of the<br>platform to accommodate these<br>changes, according to Andrew<br>Morton, lead maintainer of the<br>Linux kernel for Open Source<br>Development Labs (OSDL)."
-          ],
-          [
-           "AMSTERDAM The mobile phone<br>giants Vodafone and Nokia<br>teamed up on Thursday to<br>simplify cellphone software<br>written with the Java computer<br>language."
-          ],
-          [
-           "The overall Linux market is<br>far larger than previous<br>estimates show, a new study<br>says. In an analysis of the<br>Linux market released late<br>Tuesday, market research firm<br>IDC estimated that the Linux<br>market -- including"
-          ],
-          [
-           "By PAUL ELIAS    SAN FRANCISCO<br>(AP) -- Several California<br>cities and counties, including<br>San Francisco and Los Angeles,<br>sued Microsoft Corp. (MSFT) on<br>Friday, accusing the software<br>giant of illegally charging<br>inflated prices for its<br>products because of monopoly<br>control of the personal<br>computer operating system<br>market..."
-          ],
-          [
-           "Public opinion of the database<br>giant sinks to 12-year low, a<br>new report indicates."
-          ],
-          [
-           "For spammers, it #39;s been a<br>summer of love. Two newly<br>issued reports tracking the<br>circulation of unsolicited<br>e-mails say pornographic spam<br>dominated this summer, nearly<br>all of it originating from<br>Internet addresses in North<br>America."
-          ],
-          [
-           "Microsoft portrayed its<br>Longhorn decision as a<br>necessary winnowing to hit the<br>2006 timetable. The<br>announcement on Friday,<br>Microsoft executives insisted,<br>did not point to a setback in<br>software"
-          ],
-          [
-           "A problem in the Service Pack<br>2 update for Windows XP may<br>keep owners of AMD-based<br>computers from using the long-<br>awaited security package,<br>according to Microsoft."
-          ],
-          [
-           "Five years ago, running a<br>telephone company was an<br>immensely profitable<br>proposition. Since then, those<br>profits have inexorably<br>declined, and now that decline<br>has taken another gut-<br>wrenching dip."
-          ],
-          [
-           "NEW YORK - The litigious<br>Recording Industry Association<br>of America (RIAA) is involved<br>in another legal dispute with<br>a P-to-P (peer-to-peer)<br>technology maker, but this<br>time, the RIAA is on defense.<br>Altnet Inc. filed a lawsuit<br>Wednesday accusing the RIAA<br>and several of its partners of<br>infringing an Altnet patent<br>covering technology for<br>identifying requested files on<br>a P-to-P network."
-          ],
-          [
-           "For two weeks before MTV<br>debuted U2 #39;s video for the<br>new single  quot;Vertigo,<br>quot; fans had a chance to see<br>the band perform the song on<br>TV -- in an iPod commercial."
-          ],
-          [
-           "Oct. 26, 2004 - The US-<br>European spacecraft Cassini-<br>Huygens on Tuesday made a<br>historic flyby of Titan,<br>Saturn #39;s largest moon,<br>passing so low as to almost<br>touch the fringes of its<br>atmosphere."
-          ],
-          [
-           "Reuters - A volcano in central<br>Japan sent smoke and\\ash high<br>into the sky and spat out<br>molten rock as it erupted\\for<br>a fourth straight day on<br>Friday, but experts said the<br>peak\\appeared to be quieting<br>slightly."
-          ],
-          [
-           "Shares of Google Inc. made<br>their market debut on Thursday<br>and quickly traded up 19<br>percent at \\$101.28. The Web<br>search company #39;s initial<br>public offering priced at \\$85"
-          ],
-          [
-           "Reuters - Global warming is<br>melting\\Ecuador's cherished<br>mountain glaciers and could<br>cause several\\of them to<br>disappear over the next two<br>decades, Ecuadorean and\\French<br>scientists said on Wednesday."
-          ],
-          [
-           "Rather than tell you, Dan<br>Kranzler chooses instead to<br>show you how he turned Mforma<br>into a worldwide publisher of<br>video games, ringtones and<br>other hot downloads for mobile<br>phones."
-          ],
-          [
-           "Not being part of a culture<br>with a highly developed<br>language, could limit your<br>thoughts, at least as far as<br>numbers are concerned, reveals<br>a new study conducted by a<br>psychologist at the Columbia<br>University in New York."
-          ],
-          [
-           "CAMBRIDGE, Mass. A native of<br>Red Oak, Iowa, who was a<br>pioneer in astronomy who<br>proposed the  quot;dirty<br>snowball quot; theory for the<br>substance of comets, has died."
-          ],
-          [
-           "A Portuguese-sounding version<br>of the virus has appeared in<br>the wild. Be wary of mail from<br>Manaus."
-          ],
-          [
-           "Reuters - Hunters soon may be<br>able to sit at\\their computers<br>and blast away at animals on a<br>Texas ranch via\\the Internet,<br>a prospect that has state<br>wildlife officials up\\in arms."
-          ],
-          [
-           "The Bedminster-based company<br>yesterday said it was pushing<br>into 21 new markets with the<br>service, AT amp;T CallVantage,<br>and extending an introductory<br>rate offer until Sept. 30. In<br>addition, the company is<br>offering in-home installation<br>of up to five ..."
-          ],
-          [
-           "Samsung Electronics Co., Ltd.<br>has developed a new LCD<br>(liquid crystal display)<br>technology that builds a touch<br>screen into the display, a<br>development that could lead to<br>thinner and cheaper display<br>panels for mobile phones, the<br>company said Tuesday."
-          ],
-          [
-           "The message against illegally<br>copying CDs for uses such as<br>in file-sharing over the<br>Internet has widely sunk in,<br>said the company in it #39;s<br>recent announcement to drop<br>the Copy-Control program."
-          ],
-          [
-           "Reuters - California will<br>become hotter and\\drier by the<br>end of the century, menacing<br>the valuable wine and\\dairy<br>industries, even if dramatic<br>steps are taken to curb\\global<br>warming, researchers said on<br>Monday."
-          ],
-          [
-           "IBM said Monday that it won a<br>500 million (AUD\\$1.25<br>billion), seven-year services<br>contract to help move UK bank<br>Lloyds TBS from its<br>traditional voice<br>infrastructure to a converged<br>voice and data network."
-          ],
-          [
-           "Space shuttle astronauts will<br>fly next year without the<br>ability to repair in orbit the<br>type of damage that destroyed<br>the Columbia vehicle in<br>February 2003."
-          ],
-          [
-           "By cutting WinFS from Longhorn<br>and indefinitely delaying the<br>storage system, Microsoft<br>Corp. has also again delayed<br>the Microsoft Business<br>Framework (MBF), a new Windows<br>programming layer that is<br>closely tied to WinFS."
-          ],
-          [
-           "Samsung's new SPH-V5400 mobile<br>phone sports a built-in<br>1-inch, 1.5-gigabyte hard disk<br>that can store about 15 times<br>more data than conventional<br>handsets, Samsung said."
-          ],
-          [
-           "Vendor says it #39;s<br>developing standards-based<br>servers in various form<br>factors for the telecom<br>market. By Darrell Dunn.<br>Hewlett-Packard on Thursday<br>unveiled plans to create a<br>portfolio of products and<br>services"
-          ],
-          [
-           "Ziff Davis - The company this<br>week will unveil more programs<br>and technologies designed to<br>ease users of its high-end<br>servers onto its Integrity<br>line, which uses Intel's<br>64-bit Itanium processor."
-          ],
-          [
-           "The Mac maker says it will<br>replace about 28,000 batteries<br>in one model of PowerBook G4<br>and tells people to stop using<br>the notebook."
-          ],
-          [
-           "Millions of casual US anglers<br>are having are larger than<br>appreciated impact on sea fish<br>stocks, scientists claim."
-          ],
-          [
-           "Microsoft Xbox Live traffic on<br>service provider networks<br>quadrupled following the<br>November 9th launch of Halo-II<br>-- which set entertainment<br>industry records by selling<br>2.4-million units in the US<br>and Canada on the first day of<br>availability, driving cash"
-          ],
-          [
-           "Lawyers in a California class<br>action suit against Microsoft<br>will get less than half the<br>payout they had hoped for. A<br>judge in San Francisco ruled<br>that the attorneys will<br>collect only \\$112."
-          ],
-          [
-           "Google Browser May Become<br>Reality\\\\There has been much<br>fanfare in the Mozilla fan<br>camps about the possibility of<br>Google using Mozilla browser<br>technology to produce a<br>GBrowser - the Google Browser.<br>Over the past two weeks, the<br>news and speculation has<br>escalated to the point where<br>even Google itself is ..."
-          ],
-          [
-           "Hewlett-Packard has joined<br>with Brocade to integrate<br>Brocade #39;s storage area<br>network switching technology<br>into HP Bladesystem servers to<br>reduce the amount of fabric<br>infrastructure needed in a<br>datacentre."
-          ],
-          [
-           "The US Senate Commerce<br>Committee on Wednesday<br>approved a measure that would<br>provide up to \\$1 billion to<br>ensure consumers can still<br>watch television when<br>broadcasters switch to new,<br>crisp digital signals."
-          ],
-          [
-           "Reuters - Internet stocks<br>are\\as volatile as ever, with<br>growth-starved investors<br>flocking to\\the sector in the<br>hope they've bought shares in<br>the next online\\blue chip."
-          ],
-          [
-           "NASA has released an inventory<br>of the scientific devices to<br>be put on board the Mars<br>Science Laboratory rover<br>scheduled to land on the<br>surface of Mars in 2009, NASAs<br>news release reads."
-          ],
-          [
-           "The U.S. Congress needs to<br>invest more in the U.S.<br>education system and do more<br>to encourage broadband<br>adoption, the chief executive<br>of Cisco said Wednesday.&lt;p&<br>gt;ADVERTISEMENT&lt;/p&gt;&lt;<br>p&gt;&lt;img src=\"http://ad.do<br>ubleclick.net/ad/idg.us.ifw.ge<br>neral/sbcspotrssfeed;sz=1x1;or<br>d=200301151450?\" width=\"1\"<br>height=\"1\"<br>border=\"0\"/&gt;&lt;a href=\"htt<br>p://ad.doubleclick.net/clk;922<br>8975;9651165;a?http://www.info<br>world.com/spotlights/sbc/main.<br>html?lpid0103035400730000idlp\"<br>&gt;SBC Case Study: Crate   Ba<br>rrel&lt;/a&gt;&lt;br/&gt;What<br>sold them on improving their<br>network? A system that could<br>cut management costs from the<br>get-go. Find out<br>more.&lt;/p&gt;"
-          ],
-          [
-           "Thirty-two countries and<br>regions will participate the<br>Fifth China International<br>Aviation and Aerospace<br>Exhibition, opening Nov. 1 in<br>Zhuhai, a city in south China<br>#39;s Guangdong Province."
-          ],
-          [
-           "p2pnet.net News:- Virgin<br>Electronics has joined the mp3<br>race with a \\$250, five gig<br>player which also handles<br>Microsoft #39;s WMA format."
-          ],
-          [
-           "Microsoft has suspended the<br>beta testing of the next<br>version of its MSN Messenger<br>client because of a potential<br>security problem, a company<br>spokeswoman said Wednesday."
-          ],
-          [
-           "AP - Business software maker<br>Oracle Corp. attacked the<br>credibility and motives of<br>PeopleSoft Inc.'s board of<br>directors Monday, hoping to<br>rally investor support as the<br>17-month takeover battle<br>between the bitter business<br>software rivals nears a<br>climactic showdown."
-          ],
-          [
-           "A new worm has been discovered<br>in the wild that #39;s not<br>just settling for invading<br>users #39; PCs--it wants to<br>invade their homes too."
-          ],
-          [
-           "Researchers have for the first<br>time established the existence<br>of odd-parity superconductors,<br>materials that can carry<br>electric current without any<br>resistance."
-          ],
-          [
-           "BRUSSELS, Belgium (AP) --<br>European antitrust regulators<br>said Monday they have extended<br>their review of a deal between<br>Microsoft Corp. (MSFT) and<br>Time Warner Inc..."
-          ],
-          [
-           "Fans who can't get enough of<br>\"The Apprentice\" can visit a<br>new companion Web site each<br>week and watch an extra 40<br>minutes of video not broadcast<br>on the Thursday<br>show.&lt;br&gt;&lt;FONT<br>face=\"verdana,MS Sans<br>Serif,arial,helvetica\"<br>size=\"-2\"\\ color=\"#666666\"&gt;<br>&lt;B&gt;-Leslie<br>Walker&lt;/b&gt;&lt;/font&gt;"
-          ],
-          [
-           "An adult Web site publisher is<br>suing Google, saying the<br>search engine company made it<br>easier for users to see the<br>site #39;s copyrighted nude<br>photographs without paying or<br>gaining access through the<br>proper channels."
-          ],
-          [
-           "A Washington-based public<br>opinion firm has released the<br>results of an election day<br>survey of Nevada voters<br>showing 81 support for the<br>issuance of paper receipts<br>when votes are cast<br>electronically."
-          ],
-          [
-           "NAPSTER creator SHAWN FANNING<br>has revealed his plans for a<br>new licensed file-sharing<br>service with an almost<br>unlimited selection of tracks."
-          ],
-          [
-           "Two separate studies by U.S.<br>researchers find that super<br>drug-resistant strains of<br>tuberculosis are at the<br>tipping point of a global<br>epidemic, and only small<br>changes could help them spread<br>quickly."
-          ],
-          [
-           "Dell cut prices on some<br>servers and PCs by as much as<br>22 percent because it #39;s<br>paying less for parts. The<br>company will pass the savings<br>on components such as memory<br>and liquid crystal displays"
-          ],
-          [
-           "WASHINGTON: The European-<br>American Cassini-Huygens space<br>probe has detected traces of<br>ice flowing on the surface of<br>Saturn #39;s largest moon,<br>Titan, suggesting the<br>existence of an ice volcano,<br>NASA said Tuesday."
-          ],
-          [
-           "All ISS systems continue to<br>function nominally, except<br>those noted previously or<br>below. Day 7 of joint<br>Exp.9/Exp.10 operations and<br>last full day before 8S<br>undocking."
-          ],
-          [
-           " quot;Magic can happen. quot;<br>Sirius Satellite Radio<br>(nasdaq: SIRI - news - people<br>) may have signed Howard Stern<br>and the men #39;s NCAA<br>basketball tournaments, but XM<br>Satellite Radio (nasdaq: XMSR<br>- news - people ) has its<br>sights on your cell phone."
-          ],
-          [
-           "Trick-or-treaters can expect<br>an early Halloween treat on<br>Wednesday night, when a total<br>lunar eclipse makes the moon<br>look like a glowing pumpkin."
-          ],
-          [
-           "Sifting through millions of<br>documents to locate a valuable<br>few is tedious enough, but<br>what happens when those files<br>are scattered across different<br>repositories?"
-          ],
-          [
-           "NASA #39;s Mars rovers have<br>uncovered more tantalizing<br>evidence of a watery past on<br>the Red Planet, scientists<br>said Wednesday. And the<br>rovers, Spirit and<br>Opportunity, are continuing to<br>do their jobs months after<br>they were expected to ..."
-          ],
-          [
-           "Intel Chief Technology Officer<br>Pat Gelsinger said on<br>Thursday, Sept. 9, that the<br>Internet needed to be upgraded<br>in order to deal with problems<br>that will become real issues<br>soon."
-          ],
-          [
-           " LONDON (Reuters) - Television<br>junkies of the world, get<br>ready for \"Friends,\" \"Big<br>Brother\" and \"The Simpsons\" to<br>phone  home."
-          ],
-          [
-           "I #39;M FEELING a little bit<br>better about the hundreds of<br>junk e-mails I get every day<br>now that I #39;ve read that<br>someone else has much bigger<br>e-mail troubles."
-          ],
-          [
-           "Microsoft's antispam Sender ID<br>technology continues to get<br>the cold shoulder. Now AOL<br>adds its voice to a growing<br>chorus of businesses and<br>organizations shunning the<br>proprietary e-mail<br>authentication system."
-          ],
-          [
-           "Through the World Community<br>Grid, your computer could help<br>address the world's health and<br>social problems."
-          ],
-          [
-           "A planned component for<br>Microsoft #39;s next version<br>of Windows is causing<br>consternation among antivirus<br>experts, who say that the new<br>module, a scripting platform<br>called Microsoft Shell, could<br>give birth to a whole new<br>generation of viruses and<br>remotely"
-          ],
-          [
-           "SAN JOSE, California Yahoo<br>will likely have a tough time<br>getting American courts to<br>intervene in a dispute over<br>the sale of Nazi memorabilia<br>in France after a US appeals<br>court ruling."
-          ],
-          [
-           "eBay Style director Constance<br>White joins Post fashion<br>editor Robin Givhan and host<br>Janet Bennett to discuss  how<br>to find trends and bargains<br>and pull together a wardrobe<br>online."
-          ],
-          [
-           "With a sudden shudder, the<br>ground collapsed and the pipe<br>pushed upward, buckling into a<br>humped shape as Cornell<br>University scientists produced<br>the first simulated earthquake"
-          ],
-          [
-           "Microsoft (Quote, Chart) has<br>fired another salvo in its<br>ongoing spam battle, this time<br>against porn peddlers who don<br>#39;t keep their smut inside<br>the digital equivalent of a<br>quot;Brown Paper Wrapper."
-          ],
-          [
-           " SEATTLE (Reuters) - The next<br>version of the Windows<br>operating system, Microsoft<br>Corp.'s &lt;A HREF=\"http://www<br>.reuters.co.uk/financeQuoteLoo<br>kup.jhtml?ticker=MSFT.O<br>qtype=sym infotype=info<br>qcat=news\"&gt;MSFT.O&lt;/A&gt;<br>flagship product,  will ship<br>in 2006, the world's largest<br>software maker said on<br>Friday."
-          ],
-          [
-           "Fossil remains of the oldest<br>and smallest known ancestor of<br>Tyrannosaurus rex, the world<br>#39;s favorite ferocious<br>dinosaur, have been discovered<br>in China with evidence that<br>its body was cloaked in downy<br>quot;protofeathers."
-          ],
-          [
-           "People fishing for sport are<br>doing far more damage to US<br>marine fish stocks than anyone<br>thought, accounting for nearly<br>a quarter of the"
-          ],
-          [
-           "This particular index is<br>produced by the University of<br>Michigan Business School, in<br>partnership with the American<br>Society for Quality and CFI<br>Group, and is supported in<br>part by ForeSee Results"
-          ],
-          [
-           "PC World - Symantec, McAfee<br>hope raising virus-definition<br>fees will move users to\\<br>suites."
-          ],
-          [
-           "By byron kho. A consortium of<br>movie and record companies<br>joined forces on Friday to<br>request that the US Supreme<br>Court take another look at<br>peer-to-peer file-sharing<br>programs."
-          ],
-          [
-           "LONDON - Wild capuchin monkeys<br>can understand cause and<br>effect well enough to use<br>rocks to dig for food,<br>scientists have found.<br>Capuchin monkeys often use<br>tools and solve problems in<br>captivity and sometimes"
-          ],
-          [
-           "The key to hidden treasure<br>lies in your handheld GPS<br>unit. GPS-based \"geocaching\"<br>is a high-tech sport being<br>played by thousands of people<br>across the globe."
-          ],
-          [
-           "The U.S. information tech<br>sector lost 403,300 jobs<br>between March 2001 and April<br>2004, and the market for tech<br>workers remains bleak,<br>according to a new report."
-          ],
-          [
-           "com September 30, 2004, 11:11<br>AM PT. SanDisk announced<br>Thursday increased capacities<br>for several different flash<br>memory cards. The Sunnyvale,<br>Calif."
-          ],
-          [
-           "roundup Plus: Tech firms rally<br>against copyright bill...Apple<br>.Mac customers suffer e-mail<br>glitches...Alvarion expands<br>wireless broadband in China."
-          ],
-          [
-           "Red Hat is acquiring security<br>and authentication tools from<br>Netscape Security Solutions to<br>bolster its software arsenal.<br>Red Hat #39;s CEO and chairman<br>Matthew Szulik spoke about the<br>future strategy of the Linux<br>supplier."
-          ],
-          [
-           "Global Web portal Yahoo! Inc.<br>Wednesday night made available<br>a beta version of a new search<br>service for videos. Called<br>Yahoo! Video Search, the<br>search engine crawls the Web<br>for different types of media<br>files"
-          ],
-          [
-           "Interactive posters at 25<br>underground stations are<br>helping Londoners travel<br>safely over Christmas."
-          ],
-          [
-           "According to Swiss<br>authorities, history was made<br>Sunday when 2723 people in<br>four communities in canton<br>Geneva, Switzerland, voted<br>online in a national federal<br>referendum."
-          ],
-          [
-           "  Nextel was the big story in<br>telecommunications yesterday,<br>thanks to the Reston company's<br>mega-merger with Sprint, but<br>the future of wireless may be<br>percolating in dozens of<br>Washington area start-ups."
-          ],
-          [
-           "I have been anticipating this<br>day like a child waits for<br>Christmas. Today, PalmOne<br>introduces the Treo 650, the<br>answer to my  quot;what smart<br>phone will I buy?"
-          ],
-          [
-           "Wikipedia has surprised Web<br>watchers by growing fast and<br>maturing into one of the most<br>popular reference sites."
-          ],
-          [
-           "It only takes 20 minutes on<br>the Internet for an<br>unprotected computer running<br>Microsoft Windows to be taken<br>over by a hacker. Any personal<br>or financial information<br>stored"
-          ],
-          [
-           "Prices for flash memory cards<br>-- the little modules used by<br>digital cameras, handheld<br>organizers, MP3 players and<br>cell phones to store pictures,<br>music and other data -- are<br>headed down -- way down. Past<br>trends suggest that prices<br>will drop 35 percent a year,<br>but industry analysts think<br>that rate will be more like 40<br>or 50 percent this year and<br>next, due to more<br>manufacturers entering the<br>market."
-          ],
-          [
-           "While the US software giant<br>Microsoft has achieved almost<br>sweeping victories in<br>government procurement<br>projects in several Chinese<br>provinces and municipalities,<br>the process"
-          ],
-          [
-           "Microsoft Corp. has delayed<br>automated distribution of a<br>major security upgrade to its<br>Windows XP Professional<br>operating system, citing a<br>desire to give companies more<br>time to test it."
-          ],
-          [
-           "Gateway computers will be more<br>widely available at Office<br>Depot, in the PC maker #39;s<br>latest move to broaden<br>distribution at retail stores<br>since acquiring rival<br>eMachines this year."
-          ],
-          [
-           "Intel Corp. is refreshing its<br>64-bit Itanium 2 processor<br>line with six new chips based<br>on the Madison core. The new<br>processors represent the last<br>single-core Itanium chips that<br>the Santa Clara, Calif."
-          ],
-          [
-           "For the first time, broadband<br>connections are reaching more<br>than half (51 percent) of the<br>American online population at<br>home, according to measurement<br>taken in July by<br>Nielsen/NetRatings, a<br>Milpitas-based Internet<br>audience measurement and<br>research ..."
-          ],
-          [
-           "Consider the New World of<br>Information - stuff that,<br>unlike the paper days of the<br>past, doesn't always<br>physically exist. You've got<br>notes, scrawlings and<br>snippets, Web graphics, photos<br>and sounds. Stuff needs to be<br>cut, pasted, highlighted,<br>annotated, crossed out,<br>dragged away. And, as Ross<br>Perot used to say (or maybe it<br>was Dana Carvey impersonating<br>him), don't forget the graphs<br>and charts."
-          ],
-          [
-           "Major Hollywood studios on<br>Tuesday announced scores of<br>lawsuits against computer<br>server operators worldwide,<br>including eDonkey, BitTorrent<br>and DirectConnect networks,<br>for allowing trading of<br>pirated movies."
-          ],
-          [
-           "But will Wi-Fi, high-<br>definition broadcasts, mobile<br>messaging and other<br>enhancements improve the game,<br>or wreck it?\\&lt;br /&gt;<br>Photos of tech-friendly parks\\"
-          ],
-          [
-           "On-demand viewing isn't just<br>for TiVo owners anymore.<br>Television over internet<br>protocol, or TVIP, offers<br>custom programming over<br>standard copper wires."
-          ],
-          [
-           "PalmSource #39;s European<br>developer conference is going<br>on now in Germany, and this<br>company is using this<br>opportunity to show off Palm<br>OS Cobalt 6.1, the latest<br>version of its operating<br>system."
-          ],
-          [
-           "Speaking to members of the<br>Massachusetts Software<br>Council, Microsoft CEO Steve<br>Ballmer touted a bright future<br>for technology but warned his<br>listeners to think twice<br>before adopting open-source<br>products like Linux."
-          ],
-          [
-           "MIAMI - The Trillian instant<br>messaging (IM) application<br>will feature several<br>enhancements in its upcoming<br>version 3.0, including new<br>video and audio chat<br>capabilities, enhanced IM<br>session logs and integration<br>with the Wikipedia online<br>encyclopedia, according to<br>information posted Friday on<br>the product developer's Web<br>site."
-          ],
-          [
-           "Reuters - Online DVD rental<br>service Netflix Inc.\\and TiVo<br>Inc., maker of a digital video<br>recorder, on Thursday\\said<br>they have agreed to develop a<br>joint entertainment\\offering,<br>driving shares of both<br>companies higher."
-          ],
-          [
-           "THIS YULE is all about console<br>supply and there #39;s<br>precious little units around,<br>it has emerged. Nintendo has<br>announced that it is going to<br>ship another 400,000 units of<br>its DS console to the United<br>States to meet the shortfall<br>there."
-          ],
-          [
-           "Annual global semiconductor<br>sales growth will probably<br>fall by half in 2005 and<br>memory chip sales could<br>collapse as a supply glut saps<br>prices, world-leading memory<br>chip maker Samsung Electronics<br>said on Monday."
-          ],
-          [
-           "NEW YORK - Traditional phone<br>systems may be going the way<br>of the Pony Express. Voice-<br>over-Internet Protocol,<br>technology that allows users<br>to make and receive phone<br>calls using the Internet, is<br>giving the old circuit-<br>switched system a run for its<br>money."
-          ],
-          [
-           "AP - The first U.S. cases of<br>the fungus soybean rust, which<br>hinders plant growth and<br>drastically cuts crop<br>production, were found at two<br>research sites in Louisiana,<br>officials said Wednesday."
-          ],
-          [
-           " quot;There #39;s no way<br>anyone would hire them to<br>fight viruses, quot; said<br>Sophos security analyst Gregg<br>Mastoras.  quot;For one, no<br>security firm could maintain<br>its reputation by employing<br>hackers."
-          ],
-          [
-           "Symantec has revoked its<br>decision to blacklist a<br>program that allows Web<br>surfers in China to browse<br>government-blocked Web sites.<br>The move follows reports that<br>the firm labelled the Freegate<br>program, which"
-          ],
-          [
-           "Microsoft has signed a pact to<br>work with the United Nations<br>Educational, Scientific and<br>Cultural Organization (UNESCO)<br>to increase computer use,<br>Internet access and teacher<br>training in developing<br>countries."
-          ],
-          [
-           "roundup Plus: Microsoft tests<br>Windows Marketplace...Nortel<br>delays financials<br>again...Microsoft updates<br>SharePoint."
-          ],
-          [
-           "OPEN SOURCE champion Microsoft<br>is expanding its programme to<br>give government organisations<br>some of its source code. In a<br>communique from the lair of<br>the Vole, in Redmond,<br>spinsters have said that<br>Microsoft"
-          ],
-          [
-           "WASHINGTON Can you always tell<br>when somebody #39;s lying? If<br>so, you might be a wizard of<br>the fib. A California<br>psychology professor says<br>there #39;s a tiny subculture<br>of people that can pick out a<br>lie nearly every time they<br>hear one."
-          ],
-          [
-           "Type design was once the<br>province of skilled artisans.<br>With the help of new computer<br>programs, neophytes have<br>flooded the Internet with<br>their creations."
-          ],
-          [
-           "RCN Inc., co-owner of<br>Starpower Communications LLC,<br>the Washington area<br>television, telephone and<br>Internet provider, filed a<br>plan of reorganization<br>yesterday that it said puts<br>the company"
-          ],
-          [
-           "&lt;strong&gt;Letters&lt;/stro<br>ng&gt; Reports of demise<br>premature"
-          ],
-          [
-           "Intel, the world #39;s largest<br>chip maker, scrapped a plan<br>Thursday to enter the digital<br>television chip business,<br>marking a major retreat from<br>its push into consumer<br>electronics."
-          ],
-          [
-           "The US is the originator of<br>over 42 of the worlds<br>unsolicited commercial e-mail,<br>making it the worst offender<br>in a league table of the top<br>12 spam producing countries<br>published yesterday by anti-<br>virus firm Sophos."
-          ],
-          [
-           "Intel is drawing the curtain<br>on some of its future research<br>projects to continue making<br>transistors smaller, faster,<br>and less power-hungry out as<br>far as 2020."
-          ],
-          [
-           "Plus: Experts fear Check 21<br>could lead to massive bank<br>fraud."
-          ],
-          [
-           "By SIOBHAN McDONOUGH<br>WASHINGTON (AP) -- Fewer<br>American youths are using<br>marijuana, LSD and Ecstasy,<br>but more are abusing<br>prescription drugs, says a<br>government report released<br>Thursday.    The 2003 National<br>Survey on Drug Use and Health<br>also found youths and young<br>adults are more aware of the<br>risks of using pot once a<br>month or more frequently..."
-          ],
-          [
-           "A TNO engineer prepares to<br>start capturing images for the<br>world's biggest digital photo."
-          ],
-          [
-           "PalmOne is aiming to sharpen<br>up its image with the launch<br>of the Treo 650 on Monday. As<br>previously reported, the smart<br>phone update has a higher-<br>resolution screen and a faster<br>processor than the previous<br>top-of-the-line model, the<br>Treo 600."
-          ],
-          [
-           "kinrowan writes  quot;MIT,<br>inventor of Kerberos, has<br>announced a pair of<br>vulnerabities in the software<br>that will allow an attacker to<br>either execute a DOS attack or<br>execute code on the machine."
-          ],
-          [
-           "Reuters - Former Pink Floyd<br>mainman Roger\\Waters released<br>two new songs, both inspired<br>by the U.S.-led\\invasion of<br>Iraq, via online download<br>outlets Tuesday."
-          ],
-          [
-           "NASA has been working on a<br>test flight project for the<br>last few years involving<br>hypersonic flight. Hypersonic<br>flight is fight at speeds<br>greater than Mach 5, or five<br>times the speed of sound."
-          ],
-          [
-           "AP - Microsoft Corp. announced<br>Wednesday that it would offer<br>a low-cost, localized version<br>of its Windows XP operating<br>system in India to tap the<br>large market potential in this<br>country of 1 billion people,<br>most of whom do not speak<br>English."
-          ],
-          [
-           "AP - Utah State University has<br>secured a  #36;40 million<br>contract with NASA to build an<br>orbiting telescope that will<br>examine galaxies and try to<br>find new stars."
-          ],
-          [
-           "I spend anywhere from three to<br>eight hours every week<br>sweating along with a motley<br>crew of local misfits,<br>shelving, sorting, and hauling<br>ton after ton of written<br>matter in a rowhouse basement<br>in Baltimore. We have no heat<br>nor air conditioning, but<br>still, every week, we come and<br>work. Volunteer night is<br>Wednesday, but many of us also<br>work on the weekends, when<br>we're open to the public.<br>There are times when we're<br>freezing and we have to wear<br>coats and gloves inside,<br>making handling books somewhat<br>tricky; other times, we're all<br>soaked with sweat, since it's<br>90 degrees out and the<br>basement is thick with bodies.<br>One learns to forget about<br>personal space when working at<br>The Book Thing, since you can<br>scarcely breathe without<br>bumping into someone, and we<br>are all so accustomed to<br>having to scrape by each other<br>that most of us no longer<br>bother to say \"excuse me\"<br>unless some particularly<br>dramatic brushing occurs."
-          ],
-          [
-           "Alarmed by software glitches,<br>security threats and computer<br>crashes with ATM-like voting<br>machines, officials from<br>Washington, D.C., to<br>California are considering an<br>alternative from an unlikely<br>place: Nevada."
-          ],
-          [
-           "More Americans are quitting<br>their jobs and taking the risk<br>of starting a business despite<br>a still-lackluster job market."
-          ],
-          [
-           "SPACE.com - With nbsp;food<br>stores nbsp;running low, the<br>two \\astronauts living aboard<br>the International Space<br>Station (ISS) are cutting back<br>\\their meal intake and<br>awaiting a critical cargo<br>nbsp;delivery expected to<br>arrive \\on Dec. 25."
-          ],
-          [
-           "Virgin Electronics hopes its<br>slim Virgin Player, which<br>debuts today and is smaller<br>than a deck of cards, will<br>rise as a lead competitor to<br>Apple's iPod."
-          ],
-          [
-           "Researchers train a monkey to<br>feed itself by guiding a<br>mechanical arm with its mind.<br>It could be a big step forward<br>for prosthetics. By David<br>Cohn."
-          ],
-          [
-           "AP - Scientists in 17<br>countries will scout waterways<br>to locate and study the<br>world's largest freshwater<br>fish species, many of which<br>are declining in numbers,<br>hoping to learn how to better<br>protect them, researchers<br>announced Thursday."
-          ],
-          [
-           "AP - Google Inc.'s plans to<br>move ahead with its initial<br>public stock offering ran into<br>a roadblock when the<br>Securities and Exchange<br>Commission didn't approve the<br>Internet search giant's<br>regulatory paperwork as<br>requested."
-          ],
-          [
-           "Citing security risks, a state<br>university is urging students<br>to drop Internet Explorer in<br>favor of alternative Web<br>browsers such as Firefox and<br>Safari."
-          ],
-          [
-           "Despite being ranked eleventh<br>in the world in broadband<br>penetration, the United States<br>is rolling out high-speed<br>services on a  quot;reasonable<br>and timely basis to all<br>Americans, quot; according to<br>a new report narrowly approved<br>today by the Federal<br>Communications"
-          ],
-          [
-           "NewsFactor - Taking an<br>innovative approach to the<br>marketing of high-performance<br>\\computing, Sun Microsystems<br>(Nasdaq: SUNW) is offering its<br>N1 Grid program in a pay-for-<br>use pricing model that mimics<br>the way such commodities as<br>electricity and wireless phone<br>plans are sold."
-          ],
-          [
-           "Reuters - Madonna and m-Qube<br>have\\made it possible for the<br>star's North American fans to<br>download\\polyphonic ring tones<br>and other licensed mobile<br>content from\\her official Web<br>site, across most major<br>carriers and without\\the need<br>for a credit card."
-          ],
-          [
-           "The chipmaker is back on a<br>buying spree, having scooped<br>up five other companies this<br>year."
-          ],
-          [
-           "The company hopes to lure<br>software partners by promising<br>to save them from<br>infrastructure headaches."
-          ],
-          [
-           "Call it the Maximus factor.<br>Archaeologists working at the<br>site of an old Roman temple<br>near Guy #39;s hospital in<br>London have uncovered a pot of<br>cosmetic cream dating back to<br>AD2."
-          ],
-          [
-           "The deal comes as Cisco pushes<br>to develop a market for CRS-1,<br>a new line of routers aimed at<br>telephone, wireless and cable<br>companies."
-          ],
-          [
-           "SEPTEMBER 14, 2004 (IDG NEWS<br>SERVICE) - Sun Microsystems<br>Inc. and Microsoft Corp. next<br>month plan to provide more<br>details on the work they are<br>doing to make their products<br>interoperable, a Sun executive<br>said yesterday."
-          ],
-          [
-           "AP - Astronomy buffs and<br>amateur stargazers turned out<br>to watch a total lunar eclipse<br>Wednesday night  #151; the<br>last one Earth will get for<br>nearly two and a half years."
-          ],
-          [
-           "The compact disc has at least<br>another five years as the most<br>popular music format before<br>online downloads chip away at<br>its dominance, a new study<br>said on Tuesday."
-          ],
-          [
-           "Does Your Site Need a Custom<br>Search Engine<br>Toolbar?\\\\Today's surfers<br>aren't always too comfortable<br>installing software on their<br>computers. Especially free<br>software that they don't<br>necessarily understand. With<br>all the horror stories of<br>viruses, spyware, and adware<br>that make the front page these<br>days, it's no wonder. So is<br>there ..."
-          ],
-          [
-           "Spammers aren't ducking<br>antispam laws by operating<br>offshore, they're just<br>ignoring it."
-          ],
-          [
-           "AP - Biologists plan to use<br>large nets and traps this week<br>in Chicago's Burnham Harbor to<br>search for the northern<br>snakehead  #151; a type of<br>fish known for its voracious<br>appetite and ability to wreak<br>havoc on freshwater<br>ecosystems."
-          ],
-          [
-           "BAE Systems PLC  and Northrop<br>Grumman Corp. won \\$45 million<br>contracts yesterday to develop<br>prototypes of anti-missile<br>technology that could protect<br>commercial aircraft from<br>shoulder-fired missiles."
-          ],
-          [
-           "Users of Microsoft #39;s<br>Hotmail, most of whom are<br>accustomed to getting regular<br>sales pitches for premium<br>e-mail accounts, got a<br>pleasant surprise in their<br>inboxes this week: extra<br>storage for free."
-          ],
-          [
-           "IT services provider<br>Electronic Data Systems<br>yesterday reported a net loss<br>of \\$153 million for the third<br>quarter, with earnings hit in<br>part by an asset impairment<br>charge of \\$375 million<br>connected with EDS's N/MCI<br>project."
-          ],
-          [
-           "International Business<br>Machines Corp. said Wednesday<br>it had agreed to settle most<br>of the issues in a suit over<br>changes in its pension plans<br>on terms that allow the<br>company to continue to appeal<br>a key question while capping<br>its liability at \\$1.7<br>billion. &lt;BR&gt;&lt;FONT<br>face=\"verdana,MS Sans<br>Serif,arial,helvetica\"<br>size=\"-2\"\\ color=\"#666666\"&gt;<br>&lt;B&gt;-The Washington<br>Post&lt;/B&gt;&lt;/FONT&gt;"
-          ],
-          [
-           "Edward Kozel, Cisco's former<br>chief technology officer,<br>joins the board of Linux<br>seller Red Hat."
-          ],
-          [
-           "Reuters - International<br>Business Machines\\Corp.  late<br>on Wednesday rolled out a new<br>version of its\\database<br>software aimed at users of<br>Linux and Unix<br>operating\\systems that it<br>hopes will help the company<br>take away market\\share from<br>market leader Oracle Corp. ."
-          ],
-          [
-           "NASA #39;s Mars Odyssey<br>mission, originally scheduled<br>to end on Tuesday, has been<br>granted a stay of execution<br>until at least September 2006,<br>reveal NASA scientists."
-          ],
-          [
-           "BusinessWeek Online - The<br>jubilation that swept East<br>Germany after the fall of the<br>Berlin Wall in 1989 long ago<br>gave way to the sober reality<br>of globalization and market<br>forces. Now a decade of<br>resentment seems to be boiling<br>over. In Eastern cities such<br>as Leipzig or Chemnitz,<br>thousands have taken to the<br>streets since July to protest<br>cuts in unemployment benefits,<br>the main source of livelihood<br>for 1.6 million East Germans.<br>Discontent among<br>reunification's losers fueled<br>big gains by the far left and<br>far right in Brandenburg and<br>Saxony state elections Sept.<br>19. ..."
-          ],
-          [
-           "In a discovery sure to set off<br>a firestorm of debate over<br>human migration to the western<br>hemisphere, archaeologists in<br>South Carolina say they have<br>uncovered evidence that people<br>lived in eastern North America<br>at least 50,000 years ago -<br>far earlier than"
-          ],
-          [
-           "AP - Former president Bill<br>Clinton on Monday helped<br>launch a new Internet search<br>company backed by the Chinese<br>government which says its<br>technology uses artificial<br>intelligence to produce better<br>results than Google Inc."
-          ],
-          [
-           "Sun Microsystems plans to<br>release its Sun Studio 10<br>development tool in the fourth<br>quarter of this year,<br>featuring support for 64-bit<br>applications running on AMD<br>Opteron and Nocona processors,<br>Sun officials said on Tuesday."
-          ],
-          [
-           "Most IT Managers won #39;t<br>question the importance of<br>security, but this priority<br>has been sliding between the<br>third and fourth most<br>important focus for companies."
-          ],
-          [
-           "AP - The Federal Trade<br>Commission on Thursday filed<br>the first case in the country<br>against software companies<br>accused of infecting computers<br>with intrusive \"spyware\" and<br>then trying to sell people the<br>solution."
-          ],
-          [
-           "While shares of Apple have<br>climbed more than 10 percent<br>this week, reaching 52-week<br>highs, two research firms told<br>investors Friday they continue<br>to remain highly bullish about<br>the stock."
-          ],
-          [
-           "States are now barred from<br>imposing telecommunications<br>regulations on Net phone<br>providers."
-          ],
-          [
-           "Strong sales of new mobile<br>phone models boosts profits at<br>Carphone Warehouse but the<br>retailer's shares fall on<br>concerns at a decline in<br>profits from pre-paid phones."
-          ],
-          [
-           " NEW YORK (Reuters) - IBM and<br>top scientific research<br>organizations are joining<br>forces in a humanitarian<br>effort to  tap the unused<br>power of millions of computers<br>and help solve  complex social<br>problems."
-          ],
-          [
-           "AP - Grizzly and black bears<br>killed a majority of elk<br>calves in northern Yellowstone<br>National Park for the second<br>year in a row, preliminary<br>study results show."
-          ],
-          [
-           "PC World - The one-time World<br>Class Product of the Year PDA<br>gets a much-needed upgrade."
-          ],
-          [
-           "As part of its much-touted new<br>MSN Music offering, Microsoft<br>Corp. (MSFT) is testing a Web-<br>based radio service that<br>mimics nearly 1,000 local<br>radio stations, allowing users<br>to hear a version of their<br>favorite radio station with<br>far fewer interruptions."
-          ],
-          [
-           "Ziff Davis - A quick<br>resolution to the Mambo open-<br>source copyright dispute seems<br>unlikely now that one of the<br>parties has rejected an offer<br>for mediation."
-          ],
-          [
-           "Students take note - endless<br>journeys to the library could<br>become a thing of the past<br>thanks to a new multimillion-<br>pound scheme to make classic<br>texts available at the click<br>of a mouse."
-          ],
-          [
-           "Moscow - The next crew of the<br>International Space Station<br>(ISS) is to contribute to the<br>Russian search for a vaccine<br>against Aids, Russian<br>cosmonaut Salijan Sharipovthe<br>said on Thursday."
-          ],
-          [
-           "Locked away in fossils is<br>evidence of a sudden solar<br>cooling. Kate Ravilious meets<br>the experts who say it could<br>explain a 3,000-year-old mass<br>migration - and today #39;s<br>global warming."
-          ],
-          [
-           "By ANICK JESDANUN    NEW YORK<br>(AP) -- Taran Rampersad didn't<br>complain when he failed to<br>find anything on his hometown<br>in the online encyclopedia<br>Wikipedia. Instead, he simply<br>wrote his own entry for San<br>Fernando, Trinidad and<br>Tobago..."
-          ],
-          [
-           "How do you top a battle<br>between Marines and an alien<br>religious cult fighting to the<br>death on a giant corona in<br>outer space? The next logical<br>step is to take that battle to<br>Earth, which is exactly what<br>Microsoft"
-          ],
-          [
-           "Four U.S. agencies yesterday<br>announced a coordinated attack<br>to stem the global trade in<br>counterfeit merchandise and<br>pirated music and movies, an<br>underground industry that law-<br>enforcement officials estimate<br>to be worth \\$500 billion each<br>year."
-          ],
-          [
-           "Half of all U.S. Secret<br>Service agents are dedicated<br>to protecting President<br>Washington #151;and all the<br>other Presidents on U.S.<br>currency #151;from<br>counterfeiters."
-          ],
-          [
-           "Maxime Faget conceived and<br>proposed the development of<br>the one-man spacecraft used in<br>Project Mercury, which put the<br>first American astronauts into<br>suborbital flight, then<br>orbital flight"
-          ],
-          [
-           "The patch fixes a flaw in the<br>e-mail server software that<br>could be used to get access to<br>in-boxes and information."
-          ],
-          [
-           "AP - Being the biggest dog may<br>pay off at feeding time, but<br>species that grow too large<br>may be more vulnerable to<br>extinction, new research<br>suggests."
-          ],
-          [
-           "Newest Efficeon processor also<br>offers higher frequency using<br>less power."
-          ],
-          [
-           "AP - In what it calls a first<br>in international air travel,<br>Finnair says it will let its<br>frequent fliers check in using<br>text messages on mobile<br>phones."
-          ],
-          [
-           "Search Engine for Programming<br>Code\\\\An article at Newsforge<br>pointed me to Koders (<br>http://www.koders.com ) a<br>search engine for finding<br>programming code. Nifty.\\\\The<br>front page allows you to<br>specify keywords, sixteen<br>languages (from ASP to VB.NET)<br>and sixteen licenses (from AFL<br>to ZPL -- fortunately there's<br>an information page to ..."
-          ],
-          [
-           " #147;Apple once again was the<br>star of the show at the annual<br>MacUser awards, #148; reports<br>MacUser,  #147;taking away six<br>Maxine statues including<br>Product of the Year for the<br>iTunes Music Store. #148;<br>Other Apple award winners:<br>Power Mac G5, AirPort Express,<br>20-inch Apple Cinema Display,<br>GarageBand and DVD Studio Pro<br>3. Nov 22"
-          ],
-          [
-           "AP - A sweeping wildlife<br>preserve in southwestern<br>Arizona is among the nation's<br>10 most endangered refuges,<br>due in large part to illegal<br>drug and immigrant traffic and<br>Border Patrol operations, a<br>conservation group said<br>Friday."
-          ],
-          [
-           "SEPTEMBER 20, 2004<br>(COMPUTERWORLD) - At<br>PeopleSoft Inc. #39;s Connect<br>2004 conference in San<br>Francisco this week, the<br>software vendor is expected to<br>face questions from users<br>about its ability to fend off<br>Oracle Corp."
-          ],
-          [
-           "PBS's Charlie Rose quizzes Sun<br>co-founder Bill Joy,<br>Monster.com chief Jeff Taylor,<br>and venture capitalist John<br>Doerr."
-          ],
-          [
-           "Skype Technologies is teaming<br>with Siemens to offer cordless<br>phone users the ability to<br>make Internet telephony calls,<br>in addition to traditional<br>calls, from their handsets."
-          ],
-          [
-           "AP - After years of<br>resistance, the U.S. trucking<br>industry says it will not try<br>to impede or delay a new<br>federal rule aimed at cutting<br>diesel pollution."
-          ],
-          [
-           "Umesh Patel, a 36-year old<br>software engineer from<br>California, debated until the<br>last minute."
-          ],
-          [
-           "AP - From now until the start<br>of winter, male tarantulas are<br>roaming around, searching for<br>female mates, an ideal time to<br>find out where the spiders<br>flourish in Arkansas."
-          ],
-          [
-           "NewsFactor - While a U.S.<br>District Court continues to<br>weigh the legality of<br>\\Oracle's (Nasdaq: ORCL)<br>attempted takeover of<br>\\PeopleSoft (Nasdaq: PSFT),<br>Oracle has taken the necessary<br>steps to ensure the offer does<br>not die on the vine with<br>PeopleSoft's shareholders."
-          ],
-          [
-           "Analysts said the smartphone<br>enhancements hold the<br>potential to bring PalmSource<br>into an expanding market that<br>still has room despite early<br>inroads by Symbian and<br>Microsoft."
-          ],
-          [
-           "TOKYO (AFP) - Japan #39;s<br>Fujitsu and Cisco Systems of<br>the US said they have agreed<br>to form a strategic alliance<br>focusing on routers and<br>switches that will enable<br>businesses to build advanced<br>Internet Protocol (IP)<br>networks."
-          ],
-          [
-           "It #39;s a new internet<br>browser. The first full<br>version, Firefox 1.0, was<br>launched earlier this month.<br>In the sense it #39;s a<br>browser, yes, but the<br>differences are larger than<br>the similarities."
-          ],
-          [
-           "Microsoft will accelerate SP2<br>distribution  to meet goal of<br>100 million downloads in two<br>months."
-          ],
-          [
-           "International Business<br>Machines Corp., taken to court<br>by workers over changes it<br>made to its traditional<br>pension plan, has decided to<br>stop offering any such plan to<br>new employees."
-          ],
-          [
-           "NEW YORK - With four of its<br>executives pleading guilty to<br>price-fixing charges today,<br>Infineon will have a hard time<br>arguing that it didn #39;t fix<br>prices in its ongoing<br>litigation with Rambus."
-          ],
-          [
-           "A report indicates that many<br>giants of the industry have<br>been able to capture lasting<br>feelings of customer loyalty."
-          ],
-          [
-           "It is the news that Internet<br>users do not want to hear: the<br>worldwide web is in danger of<br>collapsing around us. Patrick<br>Gelsinger, the chief<br>technology officer for<br>computer chip maker Intel,<br>told a conference"
-          ],
-          [
-           "Cisco Systems CEO John<br>Chambers said today that his<br>company plans to offer twice<br>as many new products this year<br>as ever before."
-          ],
-          [
-           "Every day, somewhere in the<br>universe, there #39;s an<br>explosion that puts the power<br>of the Sun in the shade. Steve<br>Connor investigates the riddle<br>of gamma-ray bursts."
-          ],
-          [
-           "Ten months after NASA #39;s<br>twin rovers landed on Mars,<br>scientists reported this week<br>that both robotic vehicles are<br>still navigating their rock-<br>studded landscapes with all<br>instruments operating"
-          ],
-          [
-           "British scientists say they<br>have found a new, greener way<br>to power cars and homes using<br>sunflower oil, a commodity<br>more commonly used for cooking<br>fries."
-          ],
-          [
-           "The United States #39; top<br>computer-security official has<br>resigned after a little more<br>than a year on the job, the US<br>Department of Homeland<br>Security said on Friday."
-          ],
-          [
-           " SAN FRANCISCO (Reuters) -<br>Intel Corp. &lt;A HREF=\"http:/<br>/www.reuters.co.uk/financeQuot<br>eLookup.jhtml?ticker=INTC.O<br>qtype=sym infotype=info<br>qcat=news\"&gt;INTC.O&lt;/A&gt;<br>on Thursday  outlined its<br>vision of the Internet of the<br>future, one in which  millions<br>of computer servers would<br>analyze and direct network<br>traffic to make the Web safer<br>and more efficient."
-          ],
-          [
-           "Check out new gadgets as<br>holiday season approaches."
-          ],
-          [
-           "TOKYO, Sep 08, 2004 (AFX-UK<br>via COMTEX) -- Sony Corp will<br>launch its popular projection<br>televisions with large liquid<br>crystal display (LCD) screens<br>in China early next year, a<br>company spokeswoman said."
-          ],
-          [
-           "AFP - Outgoing EU competition<br>commissioner Mario Monti wants<br>to reach a decision on<br>Oracle's proposed takeover of<br>business software rival<br>PeopleSoft by the end of next<br>month, an official said."
-          ],
-          [
-           " WASHINGTON (Reuters) -<br>Satellite companies would be<br>able to  retransmit<br>broadcasters' television<br>signals for another five<br>years but would have to offer<br>those signals on a single<br>dish,  under legislation<br>approved by Congress on<br>Saturday."
-          ],
-          [
-           "Sven Jaschan, who may face<br>five years in prison for<br>spreading the Netsky and<br>Sasser worms, is now working<br>in IT security. Photo: AFP."
-          ],
-          [
-           "TechWeb - An Indian Institute<br>of Technology professor--and<br>open-source evangelist--<br>discusses the role of Linux<br>and open source in India."
-          ],
-          [
-           "Here are some of the latest<br>health and medical news<br>developments, compiled by<br>editors of HealthDay:    -----<br>Contaminated Fish in Many U.S.<br>Lakes and Rivers      Fish<br>that may be contaminated with<br>dioxin, mercury, PCBs and<br>pesticides are swimming in<br>more than one-third of the<br>United States' lakes and<br>nearly one-quarter of its<br>rivers, according to a list of<br>advisories released by the<br>Environmental Protection<br>Agency..."
-          ],
-          [
-           "Bill Gates is giving his big<br>speech right now at Microsofts<br>big Digital Entertainment<br>Anywhere event in Los Angeles.<br>Well have a proper report for<br>you soon, but in the meantime<br>we figured wed"
-          ],
-          [
-           "Spinal and non-spinal<br>fractures are reduced by<br>almost a third in women age 80<br>or older who take a drug<br>called strontium ranelate,<br>European investigators<br>announced"
-          ],
-          [
-           "BERLIN: Apple Computer Inc is<br>planning the next wave of<br>expansion for its popular<br>iTunes online music store with<br>a multi-country European<br>launch in October, the<br>services chief architect said<br>on Wednesday."
-          ],
-          [
-           "Calls to 13 other countries<br>will be blocked to thwart<br>auto-dialer software."
-          ],
-          [
-           "com September 27, 2004, 5:00<br>AM PT. This fourth priority<br>#39;s main focus has been<br>improving or obtaining CRM and<br>ERP software for the past year<br>and a half."
-          ],
-          [
-           "SPACE.com - The Zero Gravity<br>Corporation \\  has been given<br>the thumbs up by the Federal<br>Aviation Administration (FAA)<br>to \\  conduct  quot;weightless<br>flights quot; for the general<br>public, providing the \\<br>sensation of floating in<br>space."
-          ],
-          [
-           "A 32-year-old woman in Belgium<br>has become the first woman<br>ever to give birth after<br>having ovarian tissue removed,<br>frozen and then implanted back<br>in her body."
-          ],
-          [
-           "No sweat, says the new CEO,<br>who's imported from IBM. He<br>also knows this will be the<br>challenge of a lifetime."
-          ],
-          [
-           "AP - Their discoveries may be<br>hard for many to comprehend,<br>but this year's Nobel Prize<br>winners still have to explain<br>what they did and how they did<br>it."
-          ],
-          [
-           "More than 15 million homes in<br>the UK will be able to get on-<br>demand movies by 2008, say<br>analysts."
-          ],
-          [
-           "A well-researched study by the<br>National Academy of Sciences<br>makes a persuasive case for<br>refurbishing the Hubble Space<br>Telescope. NASA, which is<br>reluctant to take this<br>mission, should rethink its<br>position."
-          ],
-          [
-           "LONDON -- In a deal that<br>appears to buck the growing<br>trend among governments to<br>adopt open-source<br>alternatives, the U.K.'s<br>Office of Government Commerce<br>(OGC) is negotiating a renewal<br>of a three-year agreement with<br>Microsoft Corp."
-          ],
-          [
-           "WASHINGTON - A Pennsylvania<br>law requiring Internet service<br>providers (ISPs) to block Web<br>sites the state's prosecuting<br>attorneys deem to be child<br>pornography has been reversed<br>by a U.S. federal court, with<br>the judge ruling the law<br>violated free speech rights."
-          ],
-          [
-           "The Microsoft Corp. chairman<br>receives four million e-mails<br>a day, but practically an<br>entire department at the<br>company he founded is<br>dedicated to ensuring that<br>nothing unwanted gets into his<br>inbox, the company #39;s chief<br>executive said Thursday."
-          ],
-          [
-           "The 7100t has a mobile phone,<br>e-mail, instant messaging, Web<br>browsing and functions as an<br>organiser. The device looks<br>like a mobile phone and has<br>the features of the other<br>BlackBerry models, with a<br>large screen"
-          ],
-          [
-           "Apple Computer has unveiled<br>two new versions of its hugely<br>successful iPod: the iPod<br>Photo and the U2 iPod. Apple<br>also has expanded"
-          ],
-          [
-           "AP - This year's hurricanes<br>spread citrus canker to at<br>least 11,000 trees in<br>Charlotte County, one of the<br>largest outbreaks of the<br>fruit-damaging infection to<br>ever affect Florida's citrus<br>industry, state officials<br>said."
-          ],
-          [
-           "IBM moved back into the iSCSI<br>(Internet SCSI) market Friday<br>with a new array priced at<br>US\\$3,000 and aimed at the<br>small and midsize business<br>market."
-          ],
-          [
-           "American Technology Research<br>analyst Shaw Wu has initiated<br>coverage of Apple Computer<br>(AAPL) with a  #39;buy #39;<br>recommendation, and a 12-month<br>target of US\\$78 per share."
-          ],
-          [
-           "washingtonpost.com - Cell<br>phone shoppers looking for new<br>deals and features didn't find<br>them yesterday, a day after<br>Sprint Corp. and Nextel<br>Communications Inc. announced<br>a merger that the phone<br>companies promised would shake<br>up the wireless business."
-          ],
-          [
-           "JAPANESE GIANT Sharp has<br>pulled the plug on its Linux-<br>based PDAs in the United<br>States as no-one seems to want<br>them. The company said that it<br>will continue to sell them in<br>Japan where they sell like hot<br>cakes"
-          ],
-          [
-           "New NavOne offers handy PDA<br>and Pocket PC connectivity,<br>but fails to impress on<br>everything else."
-          ],
-          [
-           "The Marvel deal calls for<br>Mforma to work with the comic<br>book giant to develop a<br>variety of mobile applications<br>based on Marvel content."
-          ],
-          [
-           "washingtonpost.com - The<br>Portable Media Center -- a<br>new, Microsoft-conceived<br>handheld device that presents<br>video and photos as well as<br>music -- would be a decent<br>idea if there weren't such a<br>thing as lampposts. Or street<br>signs. Or trees. Or other<br>cars."
-          ],
-          [
-           "The Air Force Reserve #39;s<br>Hurricane Hunters, those<br>fearless crews who dive into<br>the eyewalls of hurricanes to<br>relay critical data on<br>tropical systems, were chased<br>from their base on the<br>Mississippi Gulf Coast by<br>Hurricane Ivan."
-          ],
-          [
-           "Embargo or not, Fidel Castro's<br>socialist paradise has quietly<br>become a pharmaceutical<br>powerhouse. (They're still<br>working on the capitalism<br>thing.) By Douglas Starr from<br>Wired magazine."
-          ],
-          [
-           "A new worm can spy on users by<br>hijacking their Web cameras, a<br>security firm warned Monday.<br>The Rbot.gr worm -- the latest<br>in a long line of similar<br>worms; one security firm<br>estimates that more than 4,000<br>variations"
-          ],
-          [
-           "The separation of PalmOne and<br>PalmSource will be complete<br>with Eric Benhamou's<br>resignation as the latter's<br>chairman."
-          ],
-          [
-           "\\\\\"(CNN) -- A longtime<br>associate of al Qaeda leader<br>Osama bin Laden surrendered<br>to\\Saudi Arabian officials<br>Tuesday, a Saudi Interior<br>Ministry official said.\"\\\\\"But<br>it is unclear what role, if<br>any, Khaled al-Harbi may have<br>had in any terror\\attacks<br>because no public charges have<br>been filed against him.\"\\\\\"The<br>Saudi government -- in a<br>statement released by its<br>embassy in Washington<br>--\\called al-Harbi's surrender<br>\"the latest direct result\" of<br>its limited, one-month\\offer<br>of leniency to terror<br>suspects.\"\\\\This is great!  I<br>hope this really starts to pay<br>off.  Creative solutions<br>to\\terrorism that don't<br>involve violence.  \\\\How<br>refreshing! \\\\Are you paying<br>attention Bush<br>administration?\\\\"
-          ],
-          [
-           "AT T Corp. is cutting 7,400<br>more jobs and slashing the<br>book value of its assets by<br>\\$11.4 billion, drastic moves<br>prompted by the company's plan<br>to retreat from the<br>traditional consumer telephone<br>business following a lost<br>court battle."
-          ],
-          [
-           "Celerons form the basis of<br>Intel #39;s entry-level<br>platform which includes<br>integrated/value motherboards<br>as well. The Celeron 335D is<br>the fastest - until the<br>Celeron 340D - 2.93GHz -<br>becomes mainstream - of the"
-          ],
-          [
-           "The entertainment industry<br>asks the Supreme Court to<br>reverse the Grokster decision,<br>which held that peer-to-peer<br>networks are not liable for<br>copyright abuses of their<br>users. By Michael Grebb."
-          ],
-          [
-           "Hewlett-Packard will shell out<br>\\$16.1 billion for chips in<br>2005, but Dell's wallet is<br>wide open, too."
-          ],
-          [
-           "A remote attacker could take<br>complete control over<br>computers running many<br>versions of Microsoft software<br>by inserting malicious code in<br>a JPEG image that executes<br>through an unchecked buffer"
-          ],
-          [
-           "The lawsuit claims the<br>companies use a patented<br>Honeywell technology for<br>brightening images and<br>reducing interference on<br>displays."
-          ],
-          [
-           "The co-president of Oracle<br>testified that her company was<br>serious about its takeover<br>offer for PeopleSoft and was<br>not trying to scare off its<br>customers."
-          ],
-          [
-           "An extremely rare Hawaiian<br>bird dies in captivity,<br>possibly marking the<br>extinction of its entire<br>species only 31 years after it<br>was first discovered."
-          ],
-          [
-           "Does Geico's trademark lawsuit<br>against Google have merit? How<br>will the case be argued?<br>What's the likely outcome of<br>the trial?  A mock court of<br>trademark experts weighs in<br>with their verdict."
-          ],
-          [
-           "Treo 650 boasts a high-res<br>display, an improved keyboard<br>and camera, a removable<br>battery, and more. PalmOne<br>this week is announcing the<br>Treo 650, a hybrid PDA/cell-<br>phone device that addresses<br>many of the shortcomings"
-          ],
-          [
-           "International Business<br>Machines Corp.'s possible exit<br>from the personal computer<br>business would be the latest<br>move in what amounts to a long<br>goodbye from a field it<br>pioneered and revolutionized."
-          ],
-          [
-           "Leipzig Game Convention in<br>Germany, the stage for price-<br>slash revelations. Sony has<br>announced that it #39;s<br>slashing the cost of PS2 in<br>the UK and Europe to 104.99<br>GBP."
-          ],
-          [
-           "In yet another devastating<br>body blow to the company,<br>Intel (Nasdaq: INTC) announced<br>it would be canceling its<br>4-GHz Pentium chip. The<br>semiconductor bellwether said<br>it was switching"
-          ],
-          [
-           "Seagate #39;s native SATA<br>interface technology with<br>Native Command Queuing (NCQ)<br>allows the Barracuda 7200.8 to<br>match the performance of<br>10,000-rpm SATA drives without<br>sacrificing capacity"
-          ],
-          [
-           "You #39;re probably already<br>familiar with one of the most<br>common questions we hear at<br>iPodlounge:  quot;how can I<br>load my iPod up with free<br>music?"
-          ],
-          [
-           "Vice chairman of the office of<br>the chief executive officer in<br>Novell Inc, Chris Stone is<br>leaving the company to pursue<br>other opportunities in life."
-          ],
-          [
-           "washingtonpost.com - Microsoft<br>is going to Tinseltown today<br>to announce plans for its<br>revamped Windows XP Media<br>Center, part of an aggressive<br>push to get ahead in the<br>digital entertainment race."
-          ],
-          [
-           "AP - Most of the turkeys<br>gracing the nation's dinner<br>tables Thursday have been<br>selectively bred for their<br>white meat for so many<br>generations that simply<br>walking can be a problem for<br>many of the big-breasted birds<br>and sex is no longer possible."
-          ],
-          [
-           " SEATTLE (Reuters) - Microsoft<br>Corp. &lt;A HREF=\"http://www.r<br>euters.co.uk/financeQuoteLooku<br>p.jhtml?ticker=MSFT.O<br>qtype=sym infotype=info<br>qcat=news\"&gt;MSFT.O&lt;/A&gt;<br>is making a  renewed push this<br>week to get its software into<br>living rooms  with the launch<br>of a new version of its<br>Windows XP Media  Center, a<br>personal computer designed for<br>viewing movies,  listening to<br>music and scrolling through<br>digital pictures."
-          ],
-          [
-           "The new software is designed<br>to simplify the process of<br>knitting together back-office<br>business applications."
-          ],
-          [
-           "FRANKFURT, GERMANY -- The<br>German subsidiaries of<br>Hewlett-Packard Co. (HP) and<br>Novell Inc. are teaming to<br>offer Linux-based products to<br>the country's huge public<br>sector."
-          ],
-          [
-           "SiliconValley.com - \"I'm<br>back,\" declared Apple<br>Computer's Steve Jobs on<br>Thursday morning in his first<br>public appearance before<br>reporters since cancer surgery<br>in late July."
-          ],
-          [
-           "Health India: London, Nov 4 :<br>Cosmetic face cream used by<br>fashionable Roman women was<br>discovered at an ongoing<br>archaeological dig in London,<br>in a metal container, complete<br>with the lid and contents."
-          ],
-          [
-           "MacCentral - Microsoft's<br>Macintosh Business Unit on<br>Tuesday issued a patch for<br>Virtual PC 7 that fixes a<br>problem that occurred when<br>running the software on Power<br>Mac G5 computers with more<br>than 2GB of RAM installed.<br>Previously, Virtual PC 7 would<br>not run on those computers,<br>causing a fatal error that<br>crashed the application.<br>Microsoft also noted that<br>Virtual PC 7.0.1 also offers<br>stability improvements,<br>although it wasn't more<br>specific than that -- some<br>users have reported problems<br>with using USB devices and<br>other issues."
-          ],
-          [
-           "Don't bother buying Star Wars:<br>Battlefront if you're looking<br>for a first-class shooter --<br>there are far better games out<br>there. But if you're a Star<br>Wars freak and need a fix,<br>this title will suffice. Lore<br>Sjberg reviews Battlefront."
-          ],
-          [
-           "More than by brain size or<br>tool-making ability, the human<br>species was set apart from its<br>ancestors by the ability to<br>jog mile after lung-stabbing<br>mile with greater endurance<br>than any other primate,<br>according to research<br>published today in the journal"
-          ],
-          [
-           "Woodland Hills-based Brilliant<br>Digital Entertainment and its<br>subsidiary Altnet announced<br>yesterday that they have filed<br>a patent infringement suit<br>against the Recording Industry<br>Association of America (RIAA)."
-          ],
-          [
-           "Sony Ericsson and Cingular<br>provide Z500a phones and<br>service for military families<br>to stay connected on today<br>#39;s  quot;Dr. Phil Show<br>quot;."
-          ],
-          [
-           "Officials at EarthLink #39;s<br>(Quote, Chart) R amp;D<br>facility have quietly released<br>a proof-of-concept file-<br>sharing application based on<br>the Session Initiated Protocol<br>(define)."
-          ],
-          [
-           " quot;It #39;s your mail,<br>quot; the Google Web site<br>said.  quot;You should be able<br>to choose how and where you<br>read it. You can even switch<br>to other e-mail services<br>without having to worry about<br>losing access to your<br>messages."
-          ],
-          [
-           "The world #39;s only captive<br>great white shark made history<br>this week when she ate several<br>salmon fillets, marking the<br>first time that a white shark<br>in captivity"
-          ],
-          [
-           "Communications aggregator<br>iPass said Monday that it is<br>adding in-flight Internet<br>access to its access<br>portfolio. Specifically, iPass<br>said it will add access<br>offered by Connexion by Boeing<br>to its list of access<br>providers."
-          ],
-          [
-           "Company launches free test<br>version of service that<br>fosters popular Internet<br>activity."
-          ],
-          [
-           "Outdated computer systems are<br>hampering the work of<br>inspectors, says the UN<br>nuclear agency."
-          ],
-          [
-           "MacCentral - You Software Inc.<br>announced on Tuesday the<br>availability of You Control:<br>iTunes, a free\\download that<br>places iTunes controls in the<br>Mac OS X menu bar.<br>Without\\leaving the current<br>application, you can pause,<br>play, rewind or skip songs,\\as<br>well as control iTunes' volume<br>and even browse your entire<br>music library\\by album, artist<br>or genre. Each time a new song<br>plays, You Control:<br>iTunes\\also pops up a window<br>that displays the artist and<br>song name and the<br>album\\artwork, if it's in the<br>library. System requirements<br>call for Mac OS X\\v10.2.6 and<br>10MB free hard drive space.<br>..."
-          ],
-          [
-           "The US Secret Service Thursday<br>announced arrests in eight<br>states and six foreign<br>countries of 28 suspected<br>cybercrime gangsters on<br>charges of identity theft,<br>computer fraud, credit-card<br>fraud, and conspiracy."
-          ]
-         ],
-         "hovertemplate": "label=Sci/Tech<br>Component 0=%{x}<br>Component 1=%{y}<br>string=%{customdata[0]}<extra></extra>",
-         "legendgroup": "Sci/Tech",
-         "marker": {
-          "color": "#EF553B",
-          "size": 5,
-          "symbol": "diamond"
-         },
-         "mode": "markers",
-         "name": "Sci/Tech",
-         "showlegend": true,
-         "type": "scattergl",
-         "x": [
-          -50.70537,
-          -47.977715,
-          -51.65402,
-          -37.6373,
-          -36.581165,
-          -19.791555,
-          -20.928211,
-          -22.567608,
-          -19.96729,
-          -49.124306,
-          -7.3474283,
-          -22.541676,
-          -52.717,
-          -28.148346,
-          -42.825386,
-          -5.8827424,
-          -35.965088,
-          -10.623615,
-          -18.956379,
-          -8.153443,
-          -29.768171,
-          -31.347673,
-          -6.4607854,
-          -41.868053,
-          -13.634508,
-          -11.594272,
-          -13.830222,
-          -26.233013,
-          -10.061741,
-          -32.693943,
-          -38.45829,
-          -15.162608,
-          16.015558,
-          -18.354656,
-          -46.83205,
-          -38.63723,
-          -7.0522246,
-          -50.323666,
-          -44.325756,
-          -7.6315646,
-          -48.104885,
-          -56.60167,
-          -40.07204,
-          -8.970166,
-          -44.30361,
-          -36.139923,
-          -48.951195,
-          29.55601,
-          -21.136202,
-          -21.265085,
-          -41.619125,
-          -16.407732,
-          -33.503048,
-          -40.584736,
-          -24.227406,
-          -41.094902,
-          -41.256504,
-          -18.041924,
-          -18.929783,
-          -45.789707,
-          -35.619858,
-          -29.50228,
-          -36.813686,
-          2.6427522,
-          -23.344019,
-          -44.347576,
-          -8.361857,
-          -17.157036,
-          -18.672327,
-          -18.132378,
-          -8.266737,
-          -34.572502,
-          -5.21674,
-          -21.22969,
-          -42.24456,
-          -7.7231383,
-          -46.522186,
-          -36.61156,
-          -37.112934,
-          27.892096,
-          -5.4085217,
-          2.6259706,
-          -16.563955,
-          -43.12336,
-          -57.728573,
-          -48.13403,
-          -27.2014,
-          -10.165841,
-          -53.29632,
-          -31.430248,
-          -42.180077,
-          -15.3164215,
-          -47.9015,
-          -23.828165,
-          -31.504562,
-          -6.3850884,
-          -3.119768,
-          -26.526276,
-          -22.841238,
-          -51.962658,
-          -15.730567,
-          -44.145668,
-          -30.795404,
-          -50.141148,
-          -43.173016,
-          -4.780475,
-          -36.60279,
-          -34.644447,
-          -47.198746,
-          -37.63518,
-          -46.367523,
-          -47.68558,
-          -10.65396,
-          -49.790844,
-          -45.67376,
-          -20.76551,
-          -29.445877,
-          4.37751,
-          -45.453674,
-          -44.030884,
-          -24.544922,
-          -50.093754,
-          -19.335144,
-          -25.326218,
-          -6.78382,
-          -50.14104,
-          -33.647213,
-          -9.488163,
-          -14.337521,
-          -29.272839,
-          -43.886417,
-          -32.545635,
-          4.3835373,
-          -43.219402,
-          17.87465,
-          -31.277052,
-          -16.921326,
-          -9.602789,
-          -13.009839,
-          -35.251965,
-          -9.096614,
-          2.5471764,
-          -16.914656,
-          -44.31037,
-          -42.23089,
-          33.389534,
-          -37.813118,
-          -45.167847,
-          -36.155823,
-          -33.989525,
-          -30.086702,
-          -1.0110728,
-          -17.443365,
-          -42.189774,
-          -35.002357,
-          -24.72687,
-          31.629358,
-          -25.166414,
-          -7.6725793,
-          -51.84964,
-          -6.9841313,
-          -50.175316,
-          -35.0245,
-          -35.842033,
-          -48.693672,
-          -44.228165,
-          -31.057253,
-          -33.267147,
-          -36.05716,
-          -7.2311153,
-          -12.550289,
-          -20.162544,
-          -39.967007,
-          -13.788036,
-          -31.409056,
-          -31.830273,
-          -22.6749,
-          -31.353453,
-          27.913883,
-          -28.206575,
-          -19.676825,
-          -27.176733,
-          -44.44146,
-          -51.24567,
-          -10.997008,
-          21.737896,
-          -29.750324,
-          -51.056225,
-          -19.130821,
-          -5.5860677,
-          -24.740665,
-          -47.064148,
-          -54.69983,
-          -7.06102,
-          -43.44754,
-          24.795843,
-          -4.7836714,
-          -24.956768,
-          -53.22971,
-          -6.0662427,
-          -37.926384,
-          -41.1264,
-          -37.36757,
-          -16.533398,
-          -30.736622,
-          -15.802876,
-          -25.432766,
-          -22.672857,
-          -35.77931,
-          -16.137821,
-          -48.2029,
-          -6.2585354,
-          7.9719267,
-          -53.251343,
-          -9.297528,
-          -44.267094,
-          -19.017382,
-          33.992294,
-          -15.977553,
-          -15.548051,
-          -44.87483,
-          -51.507732,
-          -22.362936,
-          -10.216267,
-          -31.37848,
-          -5.704888,
-          -24.823088,
-          -50.370255,
-          -38.724506,
-          -38.19549,
-          -21.799944,
-          -13.132145,
-          -44.289158,
-          -16.34018,
-          -42.824986,
-          -38.334126,
-          -35.730442,
-          -36.50344,
-          -7.2380333,
-          -40.239014,
-          2.5284033,
-          -49.050774,
-          -22.21815,
-          -25.737848,
-          -17.621637,
-          -12.631271,
-          -22.281115,
-          -43.594814,
-          -15.313636,
-          -21.579958,
-          -46.839928,
-          -8.932405,
-          -38.67932,
-          -6.674851,
-          -6.503544,
-          -36.837105,
-          -4.2590623,
-          -42.01228,
-          -6.2482433,
-          -39.613857,
-          -46.561874,
-          -45.638084,
-          -21.206648,
-          -34.547794,
-          -18.876629,
-          -17.48441,
-          -27.667318,
-          9.352251,
-          -16.641712,
-          -41.143227,
-          -6.392582,
-          -13.137335,
-          -30.403149,
-          -50.138874,
-          -14.373312,
-          -11.489995,
-          -48.586517,
-          -32.614243,
-          -40.497093,
-          -34.05016,
-          -35.82806,
-          -44.020023,
-          -23.90992,
-          17.625916,
-          -27.855904,
-          -52.830154,
-          -48.07056,
-          -19.067713,
-          -40.71425,
-          -25.576069,
-          -23.095638,
-          -40.87854,
-          -38.34742,
-          -50.887096,
-          -42.132465,
-          -14.928126,
-          -42.33495,
-          -45.8806,
-          -51.873066,
-          -35.644184,
-          -43.46856,
-          -35.958366,
-          -54.239532,
-          -39.886326,
-          -43.70516,
-          -8.241421,
-          -12.890557,
-          -23.360226,
-          -33.456993,
-          -34.14632,
-          -30.420895,
-          -19.05618,
-          -48.503033,
-          -18.99317,
-          -14.034199,
-          -35.493626,
-          -16.14875,
-          -36.11573,
-          -16.320389,
-          -19.673914,
-          -9.829185,
-          -52.1362,
-          -20.01322,
-          18.142248,
-          -10.860374,
-          -37.78618,
-          -8.867661,
-          5.742987,
-          -21.27348,
-          -30.542126,
-          -5.9578004,
-          -48.91647,
-          -11.771681,
-          -9.854177,
-          -23.889015,
-          -22.090435,
-          -50.986782,
-          -38.59416,
-          -45.269844,
-          -49.752243,
-          -37.106304,
-          -2.1609035,
-          -39.611637,
-          -38.19811,
-          -4.4758306,
-          -50.613956,
-          -20.649567,
-          -15.612729,
-          -9.729161,
-          -28.362564,
-          -45.534595,
-          -30.753082,
-          -15.496077,
-          -35.993237,
-          -36.425526,
-          -5.6656046,
-          -31.978811,
-          -7.6462755,
-          -31.936037,
-          -38.00677,
-          -42.961407,
-          -16.082205,
-          -50.200237,
-          -10.404932,
-          -38.39936,
-          -34.192577,
-          -7.734347,
-          -50.261745,
-          -44.1901,
-          -21.206255,
-          -41.132812,
-          -7.490298,
-          -6.7789235,
-          21.208382,
-          -44.169758,
-          -12.397968,
-          -11.5951185,
-          -8.326396,
-          -20.166492,
-          -15.611658,
-          -38.040787,
-          -30.962019,
-          -45.082096,
-          -47.16861,
-          -4.7970433,
-          -26.904469,
-          -17.731619,
-          -43.073074,
-          -6.7949033,
-          35.39813,
-          -11.253943,
-          -24.282412,
-          -53.5042,
-          -38.4294,
-          -46.690304,
-          -36.175987,
-          -33.290382,
-          -15.035485,
-          -49.55056,
-          -39.571285,
-          -51.21703,
-          -8.731081,
-          -6.0078135,
-          -11.813869,
-          -1.1245881,
-          -40.870914,
-          -52.076916,
-          -51.801567,
-          -23.981367,
-          -35.73722,
-          0.08228831,
-          -36.47172,
-          -11.448383,
-          -40.73366,
-          -19.412077,
-          -47.05097,
-          -10.298156,
-          -43.35723,
-          -10.978807,
-          51.953743,
-          -8.411927,
-          -13.247851,
-          -47.515026,
-          -4.658773,
-          -29.961985,
-          -12.003402,
-          -17.52331,
-          -50.23115,
-          -48.06655,
-          -7.6838555,
-          -33.914284,
-          -50.991158,
-          -38.40225,
-          -35.325897,
-          -51.80827,
-          -41.270184,
-          -49.167038,
-          5.044943,
-          -27.684992,
-          -17.990955,
-          -2.3985894,
-          17.726252,
-          -34.57765,
-          -39.0015,
-          -14.16722,
-          -50.34398,
-          -19.314493,
-          -17.94723,
-          -24.707636,
-          -5.6782784,
-          -13.584895,
-          -52.063236,
-          -33.76177,
-          -50.93683,
-          -35.708652,
-          -41.237144,
-          -50.64484,
-          -2.0928724,
-          -41.631573,
-          -15.368924,
-          -41.6564,
-          -37.111736,
-          -37.09859,
-          -41.025192,
-          -2.1707618,
-          -40.202778,
-          -41.903214,
-          -9.049681,
-          -16.408047,
-          -42.958614,
-          -42.372177,
-          -45.431026,
-          -4.7174063,
-          -30.901245,
-          -46.568104,
-          -2.3207862,
-          -45.59506,
-          -13.1443
-         ],
-         "xaxis": "x",
-         "y": [
-          -10.254759,
-          -22.326504,
-          -8.559602,
-          -20.467894,
-          -16.367886,
-          34.67725,
-          0.20705454,
-          -2.1101115,
-          -5.9476533,
-          -0.62792206,
-          17.02401,
-          2.5558534,
-          -10.392384,
-          -18.170088,
-          -29.326565,
-          26.266212,
-          -12.614066,
-          14.819815,
-          -0.6994232,
-          14.150794,
-          -22.118223,
-          -19.087698,
-          25.554472,
-          -32.54127,
-          -2.2139447,
-          26.281322,
-          -1.2898456,
-          -8.973769,
-          32.03464,
-          -26.55557,
-          -18.176107,
-          -3.6315196,
-          -19.35426,
-          4.681029,
-          -27.456821,
-          -24.490698,
-          29.56973,
-          -10.1600275,
-          -10.852377,
-          22.864084,
-          -10.734537,
-          -6.189112,
-          -13.330445,
-          20.16529,
-          -9.1425705,
-          -23.877768,
-          11.228575,
-          17.663988,
-          2.542931,
-          -1.3406546,
-          -23.981632,
-          30.063469,
-          -14.152756,
-          -8.409088,
-          19.963877,
-          -15.70016,
-          -19.558147,
-          6.959669,
-          -17.884281,
-          -12.053112,
-          -12.727203,
-          -25.217607,
-          -0.7906725,
-          -10.548126,
-          20.132593,
-          10.375427,
-          18.302557,
-          -1.274212,
-          5.588625,
-          7.1431947,
-          27.65378,
-          -12.216588,
-          3.5037541,
-          -4.302394,
-          16.477135,
-          19.197943,
-          -14.683218,
-          -14.726069,
-          -8.98979,
-          16.493795,
-          -23.418943,
-          31.197924,
-          -7.310227,
-          -8.874298,
-          -13.5169735,
-          -7.2581453,
-          22.63779,
-          28.57203,
-          -10.379873,
-          -16.003376,
-          3.1463404,
-          -3.7059593,
-          -23.257317,
-          -9.050367,
-          -14.212201,
-          21.597916,
-          28.315454,
-          -9.711501,
-          24.548212,
-          -17.763275,
-          5.0752234,
-          -0.48519766,
-          11.854107,
-          -11.487356,
-          -6.806543,
-          32.15406,
-          -2.8677607,
-          -9.217092,
-          -7.9709535,
-          -9.329842,
-          -23.302309,
-          -0.9053779,
-          14.969123,
-          -12.578425,
-          -21.124685,
-          33.794212,
-          -20.977274,
-          -15.128482,
-          -16.33133,
-          -30.116133,
-          -4.7339125,
-          -24.043522,
-          5.9628015,
-          -11.766295,
-          20.015493,
-          -20.486948,
-          -21.596968,
-          16.84247,
-          24.66648,
-          -17.758942,
-          -8.986503,
-          -7.5245304,
-          -15.130549,
-          -6.4981833,
-          -11.591567,
-          21.901451,
-          -0.6368593,
-          16.802742,
-          20.371767,
-          0.94949424,
-          31.862827,
-          35.12017,
-          24.827017,
-          9.816621,
-          -5.2393093,
-          9.180699,
-          3.9763682,
-          -14.759153,
-          -11.865506,
-          -13.755454,
-          -13.679028,
-          20.333702,
-          -1.8922254,
-          -13.595177,
-          -15.84722,
-          25.674028,
-          23.005444,
-          -7.935221,
-          24.642124,
-          -19.237648,
-          -20.576859,
-          -14.856947,
-          -17.656506,
-          -14.13704,
-          11.748135,
-          -17.733555,
-          -2.6014824,
-          -13.317306,
-          -0.7534798,
-          16.867065,
-          22.19843,
-          -8.660773,
-          -7.2729115,
-          23.76637,
-          -30.203144,
-          -14.535694,
-          -6.199936,
-          -22.042368,
-          14.838855,
-          -23.169117,
-          34.738625,
-          10.819606,
-          -10.898081,
-          -19.525257,
-          17.761076,
-          13.325627,
-          -13.576142,
-          -25.388409,
-          -0.5336322,
-          17.181808,
-          -4.1373553,
-          -20.077517,
-          -16.791988,
-          13.435741,
-          -22.73552,
-          -0.6918705,
-          27.578976,
-          0.41720697,
-          -21.062717,
-          15.710144,
-          -13.556541,
-          -15.989742,
-          -13.601137,
-          -7.148113,
-          19.323282,
-          1.1989386,
-          -0.47444645,
-          0.94497335,
-          9.556583,
-          -4.4569497,
-          -24.076357,
-          21.659195,
-          33.719093,
-          19.704102,
-          31.99901,
-          -26.121319,
-          26.534893,
-          9.6071,
-          3.7444665,
-          21.501694,
-          -17.915682,
-          -17.60881,
-          -2.6888435,
-          32.299854,
-          -15.889842,
-          16.942707,
-          0.2748501,
-          -16.57776,
-          -16.080286,
-          -10.464009,
-          11.700205,
-          30.462563,
-          -29.86582,
-          -8.282391,
-          -8.46684,
-          -16.238358,
-          -25.85015,
-          19.385956,
-          19.32553,
-          -19.83609,
-          -6.5198464,
-          -20.836182,
-          0.45974386,
-          -8.057026,
-          3.8825731,
-          22.033895,
-          -5.582006,
-          -23.06022,
-          -5.6566067,
-          33.256733,
-          -27.384535,
-          34.042473,
-          -3.056115,
-          21.529955,
-          17.78518,
-          -29.090658,
-          21.886444,
-          -3.69288,
-          20.052608,
-          -0.2840251,
-          -15.78091,
-          -4.7497973,
-          -1.3183376,
-          -8.057265,
-          3.0869732,
-          -7.959283,
-          -34.817635,
-          34.081158,
-          -0.1847365,
-          -21.634756,
-          25.563747,
-          30.48236,
-          -11.662108,
-          -9.688497,
-          -4.4100275,
-          24.713762,
-          -15.716439,
-          21.239998,
-          -10.980467,
-          -5.3119135,
-          -16.683647,
-          -10.756376,
-          27.087646,
-          -6.474749,
-          -16.08439,
-          -14.420636,
-          -7.351985,
-          4.601816,
-          10.600249,
-          -4.315942,
-          0.85024196,
-          -8.745571,
-          -10.188763,
-          -5.876716,
-          -3.0804467,
-          -3.2769468,
-          -19.281757,
-          -15.235338,
-          -15.53886,
-          -19.303434,
-          -12.302218,
-          -23.051016,
-          -20.775913,
-          11.0288925,
-          -15.161179,
-          35.796543,
-          4.53065,
-          -3.197111,
-          -9.126152,
-          -5.3693423,
-          -8.645808,
-          26.929934,
-          -3.2705798,
-          -22.339233,
-          6.1994753,
-          -0.03827765,
-          1.0350281,
-          -2.2386749,
-          10.1421995,
-          21.500256,
-          20.323536,
-          -14.895687,
-          3.4454656,
-          13.368094,
-          17.025469,
-          -20.511335,
-          20.105099,
-          39.494793,
-          33.45021,
-          21.672586,
-          15.536683,
-          -21.343506,
-          24.513098,
-          28.953205,
-          -1.2875158,
-          -0.14630945,
-          -5.8219385,
-          -14.570528,
-          -19.750566,
-          -0.25747964,
-          -6.1142654,
-          24.168753,
-          -17.26478,
-          -12.292187,
-          21.782167,
-          -22.266432,
-          5.911049,
-          7.3130083,
-          29.060263,
-          -1.2906566,
-          -5.6858554,
-          11.88096,
-          -14.269513,
-          -17.597988,
-          -13.744734,
-          19.081799,
-          25.979095,
-          24.452019,
-          -11.330729,
-          -11.392148,
-          1.1835473,
-          -1.922125,
-          18.76773,
-          -5.1183553,
-          14.371391,
-          -9.079416,
-          32.181087,
-          -10.61583,
-          -20.358099,
-          -7.6430187,
-          -5.257486,
-          16.290205,
-          24.053005,
-          -5.443865,
-          -30.894657,
-          -1.7249132,
-          -1.4501517,
-          14.297588,
-          1.5236746,
-          26.836803,
-          -7.542444,
-          -4.085233,
-          -9.243302,
-          -22.380308,
-          32.18937,
-          -7.3226933,
-          -32.17766,
-          -15.654366,
-          -3.2708795,
-          0.07473384,
-          26.989523,
-          -8.599584,
-          -15.78256,
-          -16.991213,
-          -8.202672,
-          -10.86935,
-          0.538039,
-          -11.617886,
-          3.5003624,
-          -0.27149853,
-          -1.4504046,
-          21.914633,
-          19.832611,
-          22.365917,
-          -22.19336,
-          -19.892523,
-          -11.016326,
-          -18.943878,
-          -9.76076,
-          -25.935007,
-          -21.395668,
-          -19.286484,
-          30.605867,
-          -25.124516,
-          19.076454,
-          -20.217596,
-          -4.427436,
-          0.124456935,
-          15.850318,
-          14.106509,
-          -25.880474,
-          20.326845,
-          -18.178284,
-          18.546848,
-          -8.462077,
-          -6.078381,
-          0.24295494,
-          -14.893564,
-          -22.965818,
-          36.82579,
-          -12.61784,
-          18.366398,
-          4.072649,
-          1.2205616,
-          -13.276994,
-          -17.09381,
-          -18.344118,
-          33.12794,
-          -12.617298,
-          3.6332028,
-          -24.02265,
-          11.337199,
-          6.917111,
-          -9.203751,
-          -4.5927486,
-          0.687024,
-          4.003382,
-          -5.714998,
-          -7.6352305,
-          28.259352,
-          -7.4210625,
-          -14.774667,
-          0.21726441,
-          -20.630865,
-          -0.4162142,
-          -12.0516205,
-          -24.923342,
-          -23.75025,
-          -23.006275,
-          27.442217,
-          -22.516329,
-          -6.229835,
-          -15.101339,
-          -25.983875,
-          24.170658,
-          -13.358003,
-          -32.53302,
-          24.710947,
-          -4.510418,
-          -15.999681,
-          -10.241354,
-          -6.066459,
-          27.73088,
-          -4.162361,
-          -11.81379,
-          11.597373,
-          -21.738821,
-          -1.3630763
-         ],
-         "yaxis": "y"
-        },
-        {
-         "customdata": [
-          [
-           "Newspapers in Greece reflect a<br>mixture of exhilaration that<br>the Athens Olympics proved<br>successful, and relief that<br>they passed off without any<br>major setback."
-          ],
-          [
-           "Loudon, NH -- As the rain<br>began falling late Friday<br>afternoon at New Hampshire<br>International Speedway, the<br>rich in the Nextel Cup garage<br>got richer."
-          ],
-          [
-           "AP - Ottawa Senators right<br>wing Marian Hossa is switching<br>European teams during the NHL<br>lockout."
-          ],
-          [
-           "Chelsea terminated Romania<br>striker Adrian Mutu #39;s<br>contract, citing gross<br>misconduct after the player<br>failed a doping test for<br>cocaine and admitted taking<br>the drug, the English soccer<br>club said in a statement."
-          ],
-          [
-           "The success of Paris #39; bid<br>for Olympic Games 2012 would<br>bring an exceptional<br>development for France for at<br>least 6 years, said Jean-<br>Francois Lamour, French<br>minister for Youth and Sports<br>on Tuesday."
-          ],
-          [
-           "Madison, WI (Sports Network) -<br>Anthony Davis ran for 122<br>yards and two touchdowns to<br>lead No. 6 Wisconsin over<br>Northwestern, 24-12, to<br>celebrate Homecoming weekend<br>at Camp Randall Stadium."
-          ],
-          [
-           "LaVar Arrington participated<br>in his first practice since<br>Oct. 25, when he aggravated a<br>knee injury that sidelined him<br>for 10 games."
-          ],
-          [
-           " NEW YORK (Reuters) - Billie<br>Jean King cut her final tie<br>with the U.S. Fed Cup team<br>Tuesday when she retired as<br>coach."
-          ],
-          [
-           "The Miami Dolphins arrived for<br>their final exhibition game<br>last night in New Orleans<br>short nine players."
-          ],
-          [
-           "AP - From LSU at No. 1 to Ohio<br>State at No. 10, The AP<br>women's basketball poll had no<br>changes Monday."
-          ],
-          [
-           "nother stage victory for race<br>leader Petter Solberg, his<br>fifth since the start of the<br>rally. The Subaru driver is<br>not pulling away at a fast<br>pace from Gronholm and Loeb<br>but the gap is nonetheless<br>increasing steadily."
-          ],
-          [
-           "April 1980 -- Players strike<br>the last eight days of spring<br>training. Ninety-two<br>exhibition games are canceled.<br>June 1981 -- Players stage<br>first midseason strike in<br>history."
-          ],
-          [
-           "On Sunday, the day after Ohio<br>State dropped to 0-3 in the<br>Big Ten with a 33-7 loss at<br>Iowa, the Columbus Dispatch<br>ran a single word above its<br>game story on the Buckeyes:<br>quot;Embarrassing."
-          ],
-          [
-           "BOSTON - Curt Schilling got<br>his 20th win on the eve of<br>Boston #39;s big series with<br>the New York Yankees. Now he<br>wants much more.  quot;In a<br>couple of weeks, hopefully, it<br>will get a lot better, quot;<br>he said after becoming"
-          ],
-          [
-           "Shooed the ghosts of the<br>Bambino and the Iron Horse and<br>the Yankee Clipper and the<br>Mighty Mick, on his 73rd<br>birthday, no less, and turned<br>Yankee Stadium into a morgue."
-          ],
-          [
-           "Gold medal-winning Marlon<br>Devonish says the men #39;s<br>4x100m Olympic relay triumph<br>puts British sprinting back on<br>the map. Devonish, Darren<br>Campbell, Jason Gardener and<br>Mark Lewis-Francis edged out<br>the American"
-          ],
-          [
-           "he difficult road conditions<br>created a few incidents in the<br>first run of the Epynt stage.<br>Francois Duval takes his<br>second stage victory since the<br>start of the rally, nine<br>tenths better than Sebastien<br>Loeb #39;s performance in<br>second position."
-          ],
-          [
-           "Tallahassee, FL (Sports<br>Network) - Florida State head<br>coach Bobby Bowden has<br>suspended senior wide receiver<br>Craphonso Thorpe for the<br>Seminoles #39; game against<br>fellow Atlantic Coast<br>Conference member Duke on<br>Saturday."
-          ],
-          [
-           "Former champion Lleyton Hewitt<br>bristled, battled and<br>eventually blossomed as he<br>took another step towards a<br>second US Open title with a<br>second-round victory over<br>Moroccan Hicham Arazi on<br>Friday."
-          ],
-          [
-           "As the Mets round out their<br>search for a new manager, the<br>club is giving a last-minute<br>nod to its past. Wally<br>Backman, an infielder for the<br>Mets from 1980-88 who played<br>second base on the 1986"
-          ],
-          [
-           "AMSTERDAM, Aug 18 (Reuters) -<br>Midfielder Edgar Davids #39;s<br>leadership qualities and<br>never-say-die attitude have<br>earned him the captaincy of<br>the Netherlands under new<br>coach Marco van Basten."
-          ],
-          [
-           "COUNTY KILKENNY, Ireland (PA)<br>-- Hurricane Jeanne has led to<br>world No. 1 Vijay Singh<br>pulling out of this week #39;s<br>WGC-American Express<br>Championship at Mount Juliet."
-          ],
-          [
-           "Green Bay, WI (Sports Network)<br>- The Green Bay Packers will<br>be without the services of Pro<br>Bowl center Mike Flanagan for<br>the remainder of the season,<br>as he will undergo left knee<br>surgery."
-          ],
-          [
-           "COLUMBUS, Ohio -- NCAA<br>investigators will return to<br>Ohio State University Monday<br>to take another look at the<br>football program after the<br>latest round of allegations<br>made by former players,<br>according to the Akron Beacon<br>Journal."
-          ],
-          [
-           "Manchester United gave Alex<br>Ferguson a 1,000th game<br>anniversary present by<br>reaching the last 16 of the<br>Champions League yesterday,<br>while four-time winners Bayern<br>Munich romped into the second<br>round with a 5-1 beating of<br>Maccabi Tel Aviv."
-          ],
-          [
-           "The last time the Angels<br>played the Texas Rangers, they<br>dropped two consecutive<br>shutouts at home in their most<br>agonizing lost weekend of the<br>season."
-          ],
-          [
-           "SEATTLE - Chasing a nearly<br>forgotten ghost of the game,<br>Ichiro Suzuki broke one of<br>baseball #39;s oldest records<br>Friday night, smoking a single<br>up the middle for his 258th<br>hit of the year and breaking<br>George Sisler #39;s record for<br>the most hits in a season"
-          ],
-          [
-           "Grace Park, her caddie - and<br>fans - were poking around in<br>the desert brush alongside the<br>18th fairway desperately<br>looking for her ball."
-          ],
-          [
-           "Washington Redskins kicker<br>John Hall strained his right<br>groin during practice<br>Thursday, his third leg injury<br>of the season. Hall will be<br>held out of practice Friday<br>and is questionable for Sunday<br>#39;s game against the Chicago<br>Bears."
-          ],
-          [
-           "The Florida Gators and<br>Arkansas Razorbacks meet for<br>just the sixth time Saturday.<br>The Gators hold a 4-1<br>advantage in the previous five<br>meetings, including last year<br>#39;s 33-28 win."
-          ],
-          [
-           "AP - 1941  #151; Brooklyn<br>catcher Mickey Owen dropped a<br>third strike on Tommy Henrich<br>of what would have been the<br>last out of a Dodgers victory<br>against the New York Yankees.<br>Given the second chance, the<br>Yankees scored four runs for a<br>7-4 victory and a 3-1 lead in<br>the World Series, which they<br>ended up winning."
-          ],
-          [
-           "Braves shortstop Rafael Furcal<br>was arrested on drunken<br>driving charges Friday, his<br>second D.U.I. arrest in four<br>years."
-          ],
-          [
-           " ATHENS (Reuters) - Natalie<br>Coughlin's run of bad luck<br>finally took a turn for the<br>better when she won the gold<br>medal  in the women's 100<br>meters backstroke at the<br>Athens Olympics  Monday."
-          ],
-          [
-           "AP - Pedro Feliz hit a<br>tiebreaking grand slam with<br>two outs in the eighth inning<br>for his fourth hit of the day,<br>and the Giants helped their<br>playoff chances with a 9-5<br>victory over the Los Angeles<br>Dodgers on Saturday."
-          ],
-          [
-           "LEVERKUSEN/ROME, Dec 7 (SW) -<br>Dynamo Kiev, Bayer Leverkusen,<br>and Real Madrid all have a<br>good chance of qualifying for<br>the Champions League Round of<br>16 if they can get the right<br>results in Group F on<br>Wednesday night."
-          ],
-          [
-           "Ed Hinkel made a diving,<br>fingertip catch for a key<br>touchdown and No. 16 Iowa<br>stiffened on defense when it<br>needed to most to beat Iowa<br>State 17-10 Saturday."
-          ],
-          [
-           "During last Sunday #39;s<br>Nextel Cup race, amid the<br>ongoing furor over Dale<br>Earnhardt Jr. #39;s salty<br>language, NBC ran a commercial<br>for a show coming on later<br>that night called  quot;Law<br>amp; Order: Criminal Intent."
-          ],
-          [
-           "AP - After playing in hail,<br>fog and chill, top-ranked<br>Southern California finishes<br>its season in familiar<br>comfort. The Trojans (9-0, 6-0<br>Pacific-10) have two games at<br>home  #151; against Arizona on<br>Saturday and Notre Dame on<br>Nov. 27  #151; before their<br>rivalry game at UCLA."
-          ],
-          [
-           "The remnants of Hurricane<br>Jeanne rained out Monday's<br>game between the Mets and the<br>Atlanta Braves. It will be<br>made up Tuesday as part of a<br>doubleheader."
-          ],
-          [
-           "AP - NASCAR is not expecting<br>any immediate changes to its<br>top-tier racing series<br>following the merger between<br>telecommunications giant<br>Sprint Corp. and Nextel<br>Communications Inc."
-          ],
-          [
-           "Like wide-open races? You<br>#39;ll love the Big 12 North.<br>Here #39;s a quick morning<br>line of the Big 12 North as it<br>opens conference play this<br>weekend."
-          ],
-          [
-           "Taquan Dean scored 22 points,<br>Francisco Garcia added 19 and<br>No. 13 Louisville withstood a<br>late rally to beat Florida<br>74-70 Saturday."
-          ],
-          [
-           "NEW YORK -- This was all about<br>Athens, about redemption for<br>one and validation for the<br>other. Britain's Paula<br>Radcliffe, the fastest female<br>marathoner in history, failed<br>to finish either of her<br>Olympic races last summer.<br>South Africa's Hendrik Ramaala<br>was a five-ringed dropout,<br>too, reinforcing his<br>reputation as a man who could<br>go only half the distance."
-          ],
-          [
-           "LONDON -- Ernie Els has set<br>his sights on an improved<br>putting display this week at<br>the World Golf Championships<br>#39; NEC Invitational in<br>Akron, Ohio, after the<br>disappointment of tying for<br>fourth place at the PGA<br>Championship last Sunday."
-          ],
-          [
-           "Fiji #39;s Vijay Singh<br>replaced Tiger Woods as the<br>world #39;s No.1 ranked golfer<br>today by winning the PGA<br>Deutsche Bank Championship."
-          ],
-          [
-           "LEIPZIG, Germany : Jurgen<br>Klinsmann enjoyed his first<br>home win as German manager<br>with his team defeating ten-<br>man Cameroon 3-0 in a friendly<br>match."
-          ],
-          [
-           "AP - Kevin Brown had a chance<br>to claim a place in Yankees<br>postseason history with his<br>start in Game 7 of the AL<br>championship series."
-          ],
-          [
-           "HOMESTEAD, Fla. -- Kurt Busch<br>got his first big break in<br>NASCAR by winning a 1999<br>talent audition nicknamed<br>quot;The Gong Show. quot; He<br>was selected from dozens of<br>unknown, young race drivers to<br>work for one of the sport<br>#39;s most famous team owners,<br>Jack Roush."
-          ],
-          [
-           "Zurich, Switzerland (Sports<br>Network) - Former world No. 1<br>Venus Williams advanced on<br>Thursday and will now meet<br>Wimbledon champion Maria<br>Sharapova in the quarterfinals<br>at the \\$1."
-          ],
-          [
-           "INDIA #39;S cricket chiefs<br>began a frenetic search today<br>for a broadcaster to show next<br>month #39;s home series<br>against world champion<br>Australia after cancelling a<br>controversial \\$US308 million<br>(\\$440 million) television<br>deal."
-          ],
-          [
-           "The International Olympic<br>Committee (IOC) has urged<br>Beijing to ensure the city is<br>ready to host the 2008 Games<br>well in advance, an official<br>said on Wednesday."
-          ],
-          [
-           "Virginia Tech scores 24 points<br>off four first-half turnovers<br>in a 55-6 wipeout of Maryland<br>on Thursday to remain alone<br>atop the ACC."
-          ],
-          [
-           "AP - Martina Navratilova's<br>long, illustrious career will<br>end without an Olympic medal.<br>The 47-year-old Navratilova<br>and Lisa Raymond lost 6-4,<br>4-6, 6-4 on Thursday night to<br>fifth-seeded Shinobu Asagoe<br>and Ai Sugiyama of Japan in<br>the quarterfinals, one step<br>shy of the medal round."
-          ],
-          [
-           "PSV Eindhoven re-established<br>their five-point lead at the<br>top of the Dutch Eredivisie<br>today with a 2-0 win at<br>Vitesse Arnhem. Former<br>Sheffield Wednesday striker<br>Gerald Sibon put PSV ahead in<br>the 56th minute"
-          ],
-          [
-           "TODAY AUTO RACING 3 p.m. --<br>NASCAR Nextel Cup Sylvania 300<br>qualifying at N.H.<br>International Speedway,<br>Loudon, N.H., TNT PRO BASEBALL<br>7 p.m. -- Red Sox at New York<br>Yankees, Ch. 38, WEEI (850)<br>(on cable systems where Ch. 38<br>is not available, the game<br>will air on NESN); Chicago<br>Cubs at Cincinnati, ESPN 6<br>p.m. -- Eastern League finals:<br>..."
-          ],
-          [
-           "MUMBAI, SEPTEMBER 21: The<br>Board of Control for Cricket<br>in India (BCCI) today informed<br>the Bombay High Court that it<br>was cancelling the entire<br>tender process regarding<br>cricket telecast rights as<br>also the conditional deal with<br>Zee TV."
-          ],
-          [
-           "JEJU, South Korea : Grace Park<br>of South Korea won an LPGA<br>Tour tournament, firing a<br>seven-under-par 65 in the<br>final round of the<br>1.35-million dollar CJ Nine<br>Bridges Classic."
-          ],
-          [
-           "AP - The NHL will lock out its<br>players Thursday, starting a<br>work stoppage that threatens<br>to keep the sport off the ice<br>for the entire 2004-05 season."
-          ],
-          [
-           "When Paula Radcliffe dropped<br>out of the Olympic marathon<br>miles from the finish, she<br>sobbed uncontrollably.<br>Margaret Okayo knew the<br>feeling."
-          ],
-          [
-           "First baseman Richie Sexson<br>agrees to a four-year contract<br>with the Seattle Mariners on<br>Wednesday."
-          ],
-          [
-           "Notes and quotes from various<br>drivers following California<br>Speedway #39;s Pop Secret 500.<br>Jeff Gordon slipped to second<br>in points following an engine<br>failure while Jimmie Johnson<br>moved back into first."
-          ],
-          [
-           " MEMPHIS, Tenn. (Sports<br>Network) - The Memphis<br>Grizzlies  signed All-Star<br>forward Pau Gasol to a multi-<br>year contract on  Friday.<br>Terms of the deal were not<br>announced."
-          ],
-          [
-           "Andre Agassi brushed past<br>Jonas Bjorkman 6-3 6-4 at the<br>Stockholm Open on Thursday to<br>set up a quarter-final meeting<br>with Spanish sixth seed<br>Fernando Verdasco."
-          ],
-          [
-           " BOSTON (Reuters) - Boston was<br>tingling with anticipation on<br>Saturday as the Red Sox<br>prepared to host Game One of<br>the World  Series against the<br>St. Louis Cardinals and take a<br>step toward  ridding<br>themselves of a hex that has<br>hung over the team for  eight<br>decades."
-          ],
-          [
-           "FOR the first time since his<br>appointment as Newcastle<br>United manager, Graeme Souness<br>has been required to display<br>the strong-arm disciplinary<br>qualities that, to Newcastle<br>directors, made"
-          ],
-          [
-           "WHY IT HAPPENED Tom Coughlin<br>won his first game as Giants<br>coach and immediately<br>announced a fine amnesty for<br>all Giants. Just kidding."
-          ],
-          [
-           "A second-place finish in his<br>first tournament since getting<br>married was good enough to<br>take Tiger Woods from third to<br>second in the world rankings."
-          ],
-          [
-           " COLORADO SPRINGS, Colorado<br>(Reuters) - World 400 meters<br>champion Jerome Young has been<br>given a lifetime ban from<br>athletics for a second doping<br>offense, the U.S. Anti-Doping<br>Agency (USADA) said Wednesday."
-          ],
-          [
-           "LONDON - In two years, Arsenal<br>will play their home matches<br>in the Emirates stadium. That<br>is what their new stadium at<br>Ashburton Grove will be called<br>after the Premiership<br>champions yesterday agreed to<br>the"
-          ],
-          [
-           "KNOXVILLE, Tenn. -- Jason<br>Campbell threw for 252 yards<br>and two touchdowns, and No. 8<br>Auburn proved itself as a<br>national title contender by<br>overwhelming No. 10 Tennessee,<br>34-10, last night."
-          ],
-          [
-           "WASHINGTON -- Another<br>Revolution season concluded<br>with an overtime elimination.<br>Last night, the Revolution<br>thrice rallied from deficits<br>for a 3-3 tie with D.C. United<br>in the Eastern Conference<br>final, then lost in the first-<br>ever Major League Soccer match<br>decided by penalty kicks."
-          ],
-          [
-           "Dwyane Wade calls himself a<br>quot;sidekick, quot; gladly<br>accepting the role Kobe Bryant<br>never wanted in Los Angeles.<br>And not only does second-year<br>Heat point"
-          ],
-          [
-           "World number one golfer Vijay<br>Singh of Fiji has captured his<br>eighth PGA Tour event of the<br>year with a win at the 84<br>Lumber Classic in Farmington,<br>Pennsylvania."
-          ],
-          [
-           "The noise was deafening and<br>potentially unsettling in the<br>minutes before the start of<br>the men #39;s Olympic<br>200-meter final. The Olympic<br>Stadium crowd chanted<br>quot;Hellas!"
-          ],
-          [
-           "Brazilian forward Ronaldinho<br>scored a sensational goal for<br>Barcelona against Milan,<br>making for a last-gasp 2-1.<br>The 24-year-old #39;s<br>brilliant left-foot hit at the<br>Nou Camp Wednesday night sent<br>Barcelona atop of Group F."
-          ],
-          [
-           "Bee Staff Writer. SANTA CLARA<br>- Andre Carter #39;s back<br>injury has kept him out of the<br>49ers #39; lineup since Week<br>1. It #39;s also interfering<br>with him rooting on his alma<br>mater in person."
-          ],
-          [
-           "AP - Kellen Winslow Jr. ended<br>his second NFL holdout Friday."
-          ],
-          [
-           "HOUSTON - With only a few<br>seconds left in a certain<br>victory for Miami, Peyton<br>Manning threw a meaningless<br>6-yard touchdown pass to<br>Marvin Harrison to cut the<br>score to 24-15."
-          ],
-          [
-           "DEADLY SCORER: Manchester<br>United #39;s Wayne Rooney<br>celebrating his three goals<br>against Fenerbahce this week<br>at Old Trafford. (AP)."
-          ],
-          [
-           "You can feel the confidence<br>level, not just with Team<br>Canada but with all of Canada.<br>There #39;s every expectation,<br>from one end of the bench to<br>the other, that Martin Brodeur<br>is going to hold the fort."
-          ],
-          [
-           "Heading into the first game of<br>a new season, every team has<br>question marks. But in 2004,<br>the Denver Broncos seemed to<br>have more than normal."
-          ],
-          [
-           "Anaheim, Calif. - There is a<br>decidedly right lean to the<br>three-time champions of the<br>American League Central. In a<br>span of 26 days, the Minnesota<br>Twins lost the left side of<br>their infield to free agency."
-          ],
-          [
-           "With the NFL trading deadline<br>set for 4 p.m. Tuesday,<br>Patriots coach Bill Belichick<br>said there didn't seem to be<br>much happening on the trade<br>front around the league."
-          ],
-          [
-           "AP - David Beckham broke his<br>rib moments after scoring<br>England's second goal in<br>Saturday's 2-0 win over Wales<br>in a World Cup qualifying<br>game."
-          ],
-          [
-           "Nothing changed at the top of<br>Serie A as all top teams won<br>their games to keep the<br>distance between one another<br>unaltered. Juventus came back<br>from behind against Lazio to<br>win thanks to another goal by<br>Ibrahimovic"
-          ],
-          [
-           "RICHMOND, Va. Jeremy Mayfield<br>won his first race in over<br>four years, taking the<br>Chevrolet 400 at Richmond<br>International Raceway after<br>leader Kurt Busch ran out of<br>gas eight laps from the<br>finish."
-          ],
-          [
-           "AP - Track star Marion Jones<br>filed a defamation lawsuit<br>Wednesday against the man<br>whose company is at the center<br>of a federal investigation<br>into illegal steroid use among<br>some of the nation's top<br>athletes."
-          ],
-          [
-           "England #39;s players hit out<br>at cricket #39;s authorities<br>tonight and claimed they had<br>been used as  quot;political<br>pawns quot; after the Zimbabwe<br>government produced a<br>spectacular U-turn to ensure<br>the controversial one-day<br>series will go ahead."
-          ],
-          [
-           "AP - The Japanese won the<br>pregame home run derby. Then<br>the game started and the major<br>league All-Stars put their<br>bats to work. Back-to-back<br>home runs by Moises Alou and<br>Vernon Wells in the fourth<br>inning and by Johnny Estrada<br>and Brad Wilkerson in the<br>ninth powered the major<br>leaguers past the Japanese<br>stars 7-3 Sunday for a 3-0<br>lead in the eight-game series."
-          ],
-          [
-           "With Chelsea losing their<br>unbeaten record and Manchester<br>United failing yet again to<br>win, William Hill now make<br>Arsenal red-hot 2/5 favourites<br>to retain the title."
-          ],
-          [
-           "Theresa special bookcase in Al<br>Grohs office completely full<br>of game plans from his days in<br>the NFL. Green ones are from<br>the Jets."
-          ],
-          [
-           "Newcastle ensured their place<br>as top seeds in Friday #39;s<br>third round UEFA Cup draw<br>after holding Sporting Lisbon<br>to a 1-1 draw at St James #39;<br>Park."
-          ],
-          [
-           "CBC SPORTS ONLINE - Bode<br>Miller continued his<br>impressive 2004-05 World Cup<br>skiing season by winning a<br>night slalom race in<br>Sestriere, Italy on Monday."
-          ],
-          [
-           "Damien Rhodes scored on a<br>2-yard run in the second<br>overtime, then Syracuse's<br>defense stopped Pittsburgh on<br>fourth and 1, sending the<br>Orange to a 38-31 victory<br>yesterday in Syracuse, N.Y."
-          ],
-          [
-           "AP - Anthony Harris scored 18<br>of his career-high 23 points<br>in the second half to help<br>Miami upset No. 19 Florida<br>72-65 Saturday and give first-<br>year coach Frank Haith his<br>biggest victory."
-          ],
-          [
-           "AP - The five cities looking<br>to host the 2012 Summer Games<br>submitted bids to the<br>International Olympic<br>Committee on Monday, entering<br>the final stage of a long<br>process in hopes of landing<br>one of the biggest prizes in<br>sports."
-          ],
-          [
-           "The FIA has already cancelled<br>todays activities at Suzuka as<br>Super Typhoon Ma-On heads<br>towards the 5.807km circuit.<br>Saturday practice has been<br>cancelled altogether while<br>pre-qualifying and final<br>qualifying"
-          ],
-          [
-           " GRAND PRAIRIE, Texas<br>(Reuters) - Betting on horses<br>was  banned in Texas until as<br>recently as 1987. Times have<br>changed  rapidly since.<br>Saturday, Lone Star Park race<br>track hosts the  \\$14 million<br>Breeders Cup, global racing's<br>end-of-season  extravaganza."
-          ],
-          [
-           "It might be a stay of<br>execution for Coach P, or it<br>might just be a Christmas<br>miracle come early. SU #39;s<br>upset win over BC has given<br>hope to the Orange playing in<br>a post season Bowl game."
-          ],
-          [
-           "PHIL Neville insists<br>Manchester United don #39;t<br>fear anyone in the Champions<br>League last 16 and declared:<br>quot;Bring on the Italians."
-          ],
-          [
-           "TORONTO -- Toronto Raptors<br>point guard Alvin Williams<br>will miss the rest of the<br>season after undergoing<br>surgery on his right knee<br>Monday."
-          ],
-          [
-           "AP - Tennessee's two freshmen<br>quarterbacks have Volunteers<br>fans fantasizing about the<br>next four years. Brent<br>Schaeffer and Erik Ainge<br>surprised many with the nearly<br>seamless way they rotated<br>throughout a 42-17 victory<br>over UNLV on Sunday night."
-          ],
-          [
-           "MADRID, Aug 18 (Reuters) -<br>Portugal captain Luis Figo<br>said on Wednesday he was<br>taking an indefinite break<br>from international football,<br>but would not confirm whether<br>his decision was final."
-          ],
-          [
-           "AP - Shaun Rogers is in the<br>backfield as often as some<br>running backs. Whether teams<br>dare to block Detroit's star<br>defensive tackle with one<br>player or follow the trend of<br>double-teaming him, he often<br>rips through offensive lines<br>with a rare combination of<br>size, speed, strength and<br>nimble footwork."
-          ],
-          [
-           "The Lions and Eagles entered<br>Sunday #39;s game at Ford<br>Field in the same place --<br>atop their respective<br>divisions -- and with<br>identical 2-0 records."
-          ],
-          [
-           "After Marcos Moreno threw four<br>more interceptions in last<br>week's 14-13 overtime loss at<br>N.C. A T, Bison Coach Ray<br>Petty will start Antoine<br>Hartfield against Norfolk<br>State on Saturday."
-          ],
-          [
-           "SOUTH WILLIAMSPORT, Pa. --<br>Looking ahead to the US<br>championship game almost cost<br>Conejo Valley in the<br>semifinals of the Little<br>League World Series."
-          ],
-          [
-           "The Cubs didn #39;t need to<br>fly anywhere near Florida to<br>be in the eye of the storm.<br>For a team that is going on<br>100 years since last winning a<br>championship, the only thing<br>they never are at a loss for<br>is controversy."
-          ],
-          [
-           "KETTERING, Ohio Oct. 12, 2004<br>- Cincinnati Bengals defensive<br>end Justin Smith pleaded not<br>guilty to a driving under the<br>influence charge."
-          ],
-          [
-           "MINNEAPOLIS -- For much of the<br>2004 season, Twins pitcher<br>Johan Santana didn #39;t just<br>beat opposing hitters. Often,<br>he overwhelmed and owned them<br>in impressive fashion."
-          ],
-          [
-           "At a charity auction in New<br>Jersey last weekend, baseball<br>memorabilia dealer Warren<br>Heller was approached by a man<br>with an unusual but topical<br>request."
-          ],
-          [
-           "INTER Milan coach Roberto<br>Mancini believes the club<br>#39;s lavish (northern) summer<br>signings will enable them to<br>mount a serious Serie A<br>challenge this season."
-          ],
-          [
-           "AP - Brad Ott shot an 8-under<br>64 on Sunday to win the<br>Nationwide Tour's Price Cutter<br>Charity Championship for his<br>first Nationwide victory."
-          ],
-          [
-           "AP - New York Jets running<br>back Curtis Martin passed Eric<br>Dickerson and Jerome Bettis on<br>the NFL career rushing list<br>Sunday against the St. Louis<br>Rams, moving to fourth all-<br>time."
-          ],
-          [
-           "Instead of standing for ante<br>meridian and post meridian,<br>though, fans will remember the<br>time periods of pre-Mia and<br>after-Mia. After playing for<br>18 years and shattering nearly<br>every record"
-          ],
-          [
-           "Stephon Marbury, concerned<br>about his lousy shooting in<br>Athens, used an off day to go<br>to the gym and work on his<br>shot. By finding his range, he<br>saved the United States #39;<br>hopes for a basketball gold<br>medal."
-          ],
-          [
-           "AP - Randy Moss is expected to<br>play a meaningful role for the<br>Minnesota Vikings this weekend<br>against the Giants, even<br>without a fully healed right<br>hamstring."
-          ],
-          [
-           "Pros: Fits the recent profile<br>(44, past PGA champion, fiery<br>Ryder Cup player); the job is<br>his if he wants it. Cons:<br>Might be too young to be<br>willing to burn two years of<br>play on tour."
-          ],
-          [
-           "Elmer Santos scored in the<br>second half, lifting East<br>Boston to a 1-0 win over<br>Brighton yesterday afternoon<br>and giving the Jets an early<br>leg up in what is shaping up<br>to be a tight Boston City<br>League race."
-          ],
-          [
-           "Saints special teams captain<br>Steve Gleason expects to be<br>fined by the league after<br>being ejected from Sunday's<br>game against the Carolina<br>Panthers for throwing a punch."
-          ],
-          [
-           "Play has begun in the<br>Australian Masters at<br>Huntingdale in Melbourne with<br>around half the field of 120<br>players completing their first<br>rounds."
-          ],
-          [
-           "LOUISVILLE, Ky. - Louisville<br>men #39;s basketball head<br>coach Rick Pitino and senior<br>forward Ellis Myles met with<br>members of the media on Friday<br>to preview the Cardinals #39;<br>home game against rival<br>Kentucky on Satursday."
-          ],
-          [
-           "AP - Sounds like David<br>Letterman is as big a \"Pops\"<br>fan as most everyone else."
-          ],
-          [
-           "Arsenal was held to a 1-1 tie<br>by struggling West Bromwich<br>Albion on Saturday, failing to<br>pick up a Premier League<br>victory when Rob Earnshaw<br>scored with 11 minutes left."
-          ],
-          [
-           "Baseball #39;s executive vice<br>president Sandy Alderson<br>insisted last month that the<br>Cubs, disciplined for an<br>assortment of run-ins with<br>umpires, would not be targeted<br>the rest of the season by<br>umpires who might hold a<br>grudge."
-          ],
-          [
-           "As Superman and Batman would<br>no doubt reflect during their<br>cigarette breaks, the really<br>draining thing about being a<br>hero was that you have to keep<br>riding to the rescue."
-          ],
-          [
-           "AP - Eric Hinske and Vernon<br>Wells homered, and the Toronto<br>Blue Jays completed a three-<br>game sweep of the Baltimore<br>Orioles with an 8-5 victory<br>Sunday."
-          ],
-          [
-           " NEW YORK (Reuters) - Todd<br>Walker homered, had three hits<br>and drove in four runs to lead<br>the Chicago Cubs to a 12-5 win<br>over the Cincinnati Reds in<br>National League play at<br>Wrigley  Field on Monday."
-          ],
-          [
-           "MIAMI (Sports Network) -<br>Shaquille O #39;Neal made his<br>home debut, but once again it<br>was Dwyane Wade stealing the<br>show with 28 points as the<br>Miami Heat downed the<br>Cleveland Cavaliers, 92-86, in<br>front of a record crowd at<br>AmericanAirlines Arena."
-          ],
-          [
-           "AP - The San Diego Chargers<br>looked sharp  #151; and played<br>the same way. Wearing their<br>powder-blue throwback jerseys<br>and white helmets from the<br>1960s, the Chargers did almost<br>everything right in beating<br>the Jacksonville Jaguars 34-21<br>on Sunday."
-          ],
-          [
-           "NERVES - no problem. That<br>#39;s the verdict of Jose<br>Mourinho today after his<br>Chelsea side gave a resolute<br>display of character at<br>Highbury."
-          ],
-          [
-           "AP - The latest low point in<br>Ron Zook's tenure at Florida<br>even has the coach wondering<br>what went wrong. Meanwhile,<br>Sylvester Croom's first big<br>win at Mississippi State has<br>given the Bulldogs and their<br>fans a reason to believe in<br>their first-year leader.<br>Jerious Norwood's 37-yard<br>touchdown run with 32 seconds<br>remaining lifted the Bulldogs<br>to a 38-31 upset of the 20th-<br>ranked Gators on Saturday."
-          ],
-          [
-           "Someone forgot to inform the<br>US Olympic basketball team<br>that it was sent to Athens to<br>try to win a gold medal, not<br>to embarrass its country."
-          ],
-          [
-           "Ten-man Paris St Germain<br>clinched their seventh<br>consecutive victory over arch-<br>rivals Olympique Marseille<br>with a 2-1 triumph in Ligue 1<br>on Sunday thanks to a second-<br>half winner by substitute<br>Edouard Cisse."
-          ],
-          [
-           "Roy Oswalt wasn #39;t<br>surprised to hear the Astros<br>were flying Sunday night<br>through the remnants of a<br>tropical depression that<br>dumped several inches of rain<br>in Louisiana and could bring<br>showers today in Atlanta."
-          ],
-          [
-           "AP - This hardly seemed<br>possible when Pitt needed<br>frantic rallies to overcome<br>Division I-AA Furman or Big<br>East cellar dweller Temple. Or<br>when the Panthers could barely<br>move the ball against Ohio<br>#151; not Ohio State, but Ohio<br>U."
-          ],
-          [
-           "Everyone is moaning about the<br>fallout from last weekend but<br>they keep on reporting the<br>aftermath.  #39;The fall-out<br>from the so-called<br>quot;Battle of Old Trafford<br>quot; continues to settle over<br>the nation and the debate"
-          ],
-          [
-           "American Lindsay Davenport<br>regained the No. 1 ranking in<br>the world for the first time<br>since early 2002 by defeating<br>Dinara Safina of Russia 6-4,<br>6-2 in the second round of the<br>Kremlin Cup on Thursday."
-          ],
-          [
-           "Freshman Jeremy Ito kicked<br>four field goals and Ryan<br>Neill scored on a 31-yard<br>interception return to lead<br>improving Rutgers to a 19-14<br>victory on Saturday over<br>visiting Michigan State."
-          ],
-          [
-           "Third-seeded Guillermo Canas<br>defeated Guillermo Garcia-<br>Lopez of Spain 7-6 (1), 6-3<br>Monday on the first day of the<br>Shanghai Open on Monday."
-          ],
-          [
-           "But to play as feebly as it<br>did for about 35 minutes last<br>night in Game 1 of the WNBA<br>Finals and lose by only four<br>points -- on the road, no less<br>-- has to be the best<br>confidence builder since Cindy<br>St."
-          ],
-          [
-           "With yesterday #39;s report on<br>its athletic department<br>violations completed, the<br>University of Washington says<br>it is pleased to be able to<br>move forward."
-          ],
-          [
-           "Sammy Sosa was fined \\$87,400<br>-- one day's salary -- for<br>arriving late to the Cubs'<br>regular-season finale at<br>Wrigley Field and leaving the<br>game early. The slugger's<br>agent, Adam Katz , said<br>yesterday Sosa most likely<br>will file a grievance. Sosa<br>arrived 70 minutes before<br>Sunday's first pitch, and he<br>apparently left 15 minutes<br>after the game started without<br>..."
-          ],
-          [
-           "Is the Oklahoma defense a<br>notch below its predecessors?<br>Is Texas #39; offense a step-<br>ahead? Why is Texas Tech<br>feeling good about itself<br>despite its recent loss?"
-          ],
-          [
-           "New York gets 57 combined<br>points from its starting<br>backcourt of Jamal Crawford<br>and Stephon Marbury and tops<br>Denver, 107-96."
-          ],
-          [
-           "AP - Shawn Marion had a<br>season-high 33 points and 15<br>rebounds, leading the Phoenix<br>Suns on a fourth-quarter<br>comeback despite the absence<br>of Steve Nash in a 95-86 win<br>over the New Orleans Hornets<br>on Friday night."
-          ],
-          [
-           "Messina upset defending<br>champion AC Milan 2-1<br>Wednesday, while Juventus won<br>its third straight game to<br>stay alone atop the Italian<br>league standings."
-          ],
-          [
-           "AP - Padraig Harrington<br>rallied to a three-stroke<br>victory in the German Masters<br>on a windy Sunday, closing<br>with a 2-under-par 70 and<br>giving his game a big boost<br>before the Ryder Cup."
-          ],
-          [
-           "Ironically it was the first<br>regular season game for the<br>Carolina Panthers that not<br>only began the history of the<br>franchise, but also saw the<br>beginning of a rivalry that<br>goes on to this day."
-          ],
-          [
-           "Baltimore Ravens running back<br>Jamal Lewis did not appear at<br>his arraignment Friday, but<br>his lawyers entered a not<br>guilty plea on charges in an<br>expanded drug conspiracy<br>indictment."
-          ],
-          [
-           "After serving a five-game<br>suspension, Milton Bradley<br>worked out with the Dodgers as<br>they prepared for Tuesday's<br>opener against the St. Louis<br>Cardinals."
-          ],
-          [
-           "AP - Prime Time won't be<br>playing in prime time this<br>time. Deion Sanders was on the<br>inactive list and missed a<br>chance to strut his stuff on<br>\"Monday Night Football.\""
-          ],
-          [
-           "The man who delivered the<br>knockout punch was picked up<br>from the Seattle scrap heap<br>just after the All-Star Game.<br>Before that, John Olerud<br>certainly hadn't figured on<br>facing Pedro Martinez in<br>Yankee Stadium in October."
-          ],
-          [
-           "LONDON : A consortium,<br>including former world<br>champion Nigel Mansell, claims<br>it has agreed terms to ensure<br>Silverstone remains one of the<br>venues for the 2005 Formula<br>One world championship."
-          ],
-          [
-           " BATON ROUGE, La. (Sports<br>Network) - LSU has named Les<br>Miles  its new head football<br>coach, replacing Nick Saban."
-          ],
-          [
-           "AP - The Chicago Blackhawks<br>re-signed goaltender Michael<br>Leighton to a one-year<br>contract Wednesday."
-          ],
-          [
-           "ATHENS -- She won her first<br>Olympic gold medal in kayaking<br>when she was 18, the youngest<br>paddler to do so in Games<br>history. Yesterday, at 42,<br>Germany #39;s golden girl<br>Birgit Fischer won her eighth<br>Olympic gold in the four-woman<br>500-metre kayak race."
-          ],
-          [
-           "England boss Sven Goran<br>Eriksson has defended<br>goalkeeper David James after<br>last night #39;s 2-2 draw in<br>Austria. James allowed Andreas<br>Ivanschitz #39;s shot to slip<br>through his fingers to<br>complete Austria comeback from<br>two goals down."
-          ],
-          [
-           "The  quot;future quot; is<br>getting a chance to revive the<br>presently struggling New York<br>Giants. Two other teams also<br>decided it was time for a<br>change at quarterback, but the<br>Buffalo Bills are not one of<br>them."
-          ],
-          [
-           "Flushing Meadows, NY (Sports<br>Network) - The men #39;s<br>semifinals at the 2004 US Open<br>will be staged on Saturday,<br>with three of the tournament<br>#39;s top-five seeds ready for<br>action at the USTA National<br>Tennis Center."
-          ],
-          [
-           "Given nearly a week to examine<br>the security issues raised by<br>the now-infamous brawl between<br>players and fans in Auburn<br>Hills, Mich., Nov. 19, the<br>Celtics returned to the<br>FleetCenter last night with<br>two losses and few concerns<br>about their on-court safety."
-          ],
-          [
-           "Arsenals Thierry Henry today<br>missed out on the European<br>Footballer of the Year award<br>as Andriy Shevchenko took the<br>honour. AC Milan frontman<br>Shevchenko held off<br>competition from Barcelona<br>pair Deco and"
-          ],
-          [
-           "Neil Mellor #39;s sensational<br>late winner for Liverpool<br>against Arsenal on Sunday has<br>earned the back-up striker the<br>chance to salvage a career<br>that had appeared to be<br>drifting irrevocably towards<br>the lower divisions."
-          ],
-          [
-           "ABOUT 70,000 people were<br>forced to evacuate Real Madrid<br>#39;s Santiago Bernabeu<br>stadium minutes before the end<br>of a Primera Liga match<br>yesterday after a bomb threat<br>in the name of ETA Basque<br>separatist guerillas."
-          ],
-          [
-           "The team learned on Monday<br>that full-back Jon Ritchie<br>will miss the rest of the<br>season with a torn anterior<br>cruciate ligament in his left<br>knee."
-          ],
-          [
-           "Venus Williams barely kept<br>alive her hopes of qualifying<br>for next week #39;s WTA Tour<br>Championships. Williams,<br>seeded fifth, survived a<br>third-set tiebreaker to<br>outlast Yuilana Fedak of the<br>Ukraine, 6-4 2-6 7-6"
-          ],
-          [
-           " SYDNEY (Reuters) - Arnold<br>Palmer has taken a swing at<br>America's top players,<br>criticizing their increasing<br>reluctance  to travel abroad<br>to play in tournaments."
-          ],
-          [
-           "Although he was well-beaten by<br>Retief Goosen in Sunday #39;s<br>final round of The Tour<br>Championship in Atlanta, there<br>has been some compensation for<br>the former world number one,<br>Tiger Woods."
-          ],
-          [
-           "WAYNE Rooney and Henrik<br>Larsson are among the players<br>nominated for FIFAs<br>prestigious World Player of<br>the Year award. Rooney is one<br>of four Manchester United<br>players on a list which is<br>heavily influenced by the<br>Premiership."
-          ],
-          [
-           "It didn #39;t look good when<br>it happened on the field, and<br>it looked worse in the<br>clubhouse. Angels second<br>baseman Adam Kennedy left the<br>Angels #39; 5-2 win over the<br>Seattle Mariners"
-          ],
-          [
-           "Freshman Darius Walker ran for<br>115 yards and scored two<br>touchdowns, helping revive an<br>Irish offense that had managed<br>just one touchdown in the<br>season's first six quarters."
-          ],
-          [
-           "AP - NBC is adding a 5-second<br>delay to its NASCAR telecasts<br>after Dale Earnhardt Jr. used<br>a vulgarity during a postrace<br>TV interview last weekend."
-          ],
-          [
-           " BOSTON (Sports Network) - The<br>New York Yankees will start<br>Orlando \"El Duque\" Hernandez<br>in Game 4 of the American<br>League  Championship Series on<br>Saturday against the Boston<br>Red Sox."
-          ],
-          [
-           "The future of Sven-Goran<br>Eriksson as England coach is<br>the subject of intense<br>discussion after the draw in<br>Austria. Has the Swede lost<br>the confidence of the nation<br>or does he remain the best man<br>for the job?"
-          ],
-          [
-           "Spain begin their third final<br>in five seasons at the Olympic<br>stadium hoping to secure their<br>second title since their first<br>in Barcelona against Australia<br>in 2000."
-          ],
-          [
-           "Second-seeded David Nalbandian<br>of Argentina lost at the Japan<br>Open on Thursday, beaten by<br>Gilles Muller of Luxembourg<br>7-6 (4), 3-6, 6-4 in the third<br>round."
-          ],
-          [
-           "Thursday #39;s unexpected<br>resignation of Memphis<br>Grizzlies coach Hubie Brown<br>left a lot of questions<br>unanswered. In his unique way<br>of putting things, the<br>71-year-old Brown seemed to<br>indicate he was burned out and<br>had some health concerns."
-          ],
-          [
-           "RUDI Voller had quit as coach<br>of Roma after a 3-1 defeat<br>away to Bologna, the Serie A<br>club said today. Under the<br>former Germany coach, Roma had<br>taken just four league points<br>from a possible 12."
-          ],
-          [
-           "ONE by one, the players #39;<br>faces had flashed up on the<br>giant Ibrox screens offering<br>season #39;s greetings to the<br>Rangers fans. But the main<br>presents were reserved for<br>Auxerre."
-          ],
-          [
-           "South Korea #39;s Grace Park<br>shot a seven-under-par 65 to<br>triumph at the CJ Nine Bridges<br>Classic on Sunday. Park #39;s<br>victory made up her final-<br>round collapse at the Samsung<br>World Championship two weeks<br>ago."
-          ],
-          [
-           "Titans QB Steve McNair was<br>released from a Nashville<br>hospital after a two-night<br>stay for treatment of a<br>bruised sternum. McNair was<br>injured during the fourth<br>quarter of the Titans #39;<br>15-12 loss to Jacksonville on<br>Sunday."
-          ],
-          [
-           "Keith Miller, Australia #39;s<br>most prolific all-rounder in<br>Test cricket, died today at a<br>nursing home, Cricket<br>Australia said. He was 84."
-          ],
-          [
-           "TORONTO Former Toronto pitcher<br>John Cerutti (seh-ROO<br>#39;-tee) was found dead in<br>his hotel room today,<br>according to the team. He was<br>44."
-          ],
-          [
-           "Defense: Ken Lucas. His<br>biggest play was his first<br>one. The fourth-year<br>cornerback intercepted a Ken<br>Dorsey pass that kissed off<br>the hands of wide receiver<br>Rashaun Woods and returned it<br>25 yards to set up the<br>Seahawks #39; first score."
-          ],
-          [
-           "The powerful St. Louis trio of<br>Albert Pujols, Scott Rolen and<br>Jim Edmonds is 4 for 23 with<br>one RBI in the series and with<br>runners on base, they are 1<br>for 13."
-          ],
-          [
-           "The Jets signed 33-year-old<br>cornerback Terrell Buckley,<br>who was released by New<br>England on Sunday, after<br>putting nickel back Ray<br>Mickens on season-ending<br>injured reserve yesterday with<br>a torn ACL in his left knee."
-          ],
-          [
-           "WEST INDIES thrilling victory<br>yesterday in the International<br>Cricket Council Champions<br>Trophy meant the world to the<br>five million people of the<br>Caribbean."
-          ],
-          [
-           "Scotland manager Berti Vogts<br>insists he is expecting<br>nothing but victory against<br>Moldova on Wednesday. The game<br>certainly is a must-win affair<br>if the Scots are to have any<br>chance of qualifying for the<br>2006 World Cup finals."
-          ],
-          [
-           " INDIANAPOLIS (Reuters) -<br>Jenny Thompson will take the<br>spotlight from injured U.S.<br>team mate Michael Phelps at<br>the  world short course<br>championships Saturday as she<br>brings down  the curtain on a<br>spectacular swimming career."
-          ],
-          [
-           "Martin Brodeur made 27 saves,<br>and Brad Richards, Kris Draper<br>and Joe Sakic scored goals to<br>help Canada beat Russia 3-1<br>last night in the World Cup of<br>Hockey, giving the Canadians a<br>3-0 record in round-robin<br>play."
-          ],
-          [
-           "ST. LOUIS -- Mike Martz #39;s<br>week of anger was no empty<br>display. He saw the defending<br>NFC West champions slipping<br>and thought taking potshots at<br>his players might be his best<br>shot at turning things around."
-          ],
-          [
-           "Romanian soccer star Adrian<br>Mutu as he arrives at the<br>British Football Association<br>in London, ahead of his<br>disciplinary hearing, Thursday<br>Nov. 4, 2004."
-          ],
-          [
-           "Australia completed an<br>emphatic Test series sweep<br>over New Zealand with a<br>213-run win Tuesday, prompting<br>a caution from Black Caps<br>skipper Stephen Fleming for<br>other cricket captains around<br>the globe."
-          ],
-          [
-           "Liverpool, England (Sports<br>Network) - Former English<br>international and Liverpool<br>great Emlyn Hughes passed away<br>Tuesday from a brain tumor."
-          ],
-          [
-           "JACKSONVILLE, Fla. -- They<br>were singing in the Colts #39;<br>locker room today, singing<br>like a bunch of wounded<br>songbirds. Never mind that<br>Marcus Pollard, Dallas Clark<br>and Ben Hartsock won #39;t be<br>recording a remake of Kenny<br>Chesney #39;s song,<br>quot;Young, quot; any time<br>soon."
-          ],
-          [
-           "As the close-knit NASCAR<br>community mourns the loss of<br>team owner Rick Hendrick #39;s<br>son, brother, twin nieces and<br>six others in a plane crash<br>Sunday, perhaps no one outside<br>of the immediate family<br>grieves more deeply than<br>Darrell Waltrip."
-          ],
-          [
-           "AP - Purdue quarterback Kyle<br>Orton has no trouble<br>remembering how he felt after<br>last year's game at Michigan."
-          ],
-          [
-           "Brown is a second year player<br>from Memphis and has spent the<br>2004 season on the Steelers<br>#39; practice squad. He played<br>in two games last year."
-          ],
-          [
-           "Barret Jackman, the last of<br>the Blues left to sign before<br>the league #39;s probable<br>lockout on Wednesday,<br>finalized a deal Monday that<br>is rare in the current<br>economic climate but fitting<br>for him."
-          ],
-          [
-           "AP - In the tumult of the<br>visitors' clubhouse at Yankee<br>Stadium, champagne pouring all<br>around him, Theo Epstein held<br>a beer. \"I came in and there<br>was no champagne left,\" he<br>said this week. \"I said, 'I'll<br>have champagne if we win it<br>all.'\" Get ready to pour a<br>glass of bubbly for Epstein.<br>No I.D. necessary."
-          ],
-          [
-           "Barcelona held on from an<br>early Deco goal to edge game<br>local rivals Espanyol 1-0 and<br>carve out a five point<br>tabletop cushion. Earlier,<br>Ronaldo rescued a point for<br>Real Madrid, who continued<br>their middling form with a 1-1<br>draw at Real Betis."
-          ],
-          [
-           "MONTREAL (CP) - The Expos may<br>be history, but their demise<br>has heated up the market for<br>team memorabilia. Vintage<br>1970s and 1980s shirts are<br>already sold out, but<br>everything from caps, beer<br>glasses and key-chains to<br>dolls of mascot Youppi!"
-          ],
-          [
-           "A 76th minute goal from<br>European Footballer of the<br>Year Pavel Nedved gave<br>Juventus a 1-0 win over Bayern<br>Munich on Tuesday handing the<br>Italians clear control at the<br>top of Champions League Group<br>C."
-          ],
-          [
-           "ANN ARBOR, Mich. -- Some NHL<br>players who took part in a<br>charity hockey game at the<br>University of Michigan on<br>Thursday were hopeful the news<br>that the NHL and the players<br>association will resume talks<br>next week"
-          ],
-          [
-           "BOULDER, Colo. -- Vernand<br>Morency ran for 165 yards and<br>two touchdowns and Donovan<br>Woods threw for three more<br>scores, lifting No. 22<br>Oklahoma State to a 42-14<br>victory over Colorado<br>yesterday."
-          ],
-          [
-           "PULLMAN - Last week, in<br>studying USC game film, Cougar<br>coaches thought they found a<br>chink in the national<br>champions armor. And not just<br>any chink - one with the<br>potential, right from the get<br>go, to"
-          ],
-          [
-           "AP - Matt Leinart was quite a<br>baseball prospect growing up,<br>showing so much promise as a<br>left-handed pitcher that<br>scouts took notice before high<br>school."
-          ],
-          [
-           "LSU will stick with a two-<br>quarterback rotation Saturday<br>at Auburn, according to Tigers<br>coach Nick Saban, who seemed<br>to have some fun telling the<br>media what he will and won<br>#39;t discuss Monday."
-          ],
-          [
-           "Seattle -- - Not so long ago,<br>the 49ers were inflicting on<br>other teams the kind of pain<br>and embarrassment they felt in<br>their 34-0 loss to the<br>Seahawks on Sunday."
-          ],
-          [
-           "London - Manchester City held<br>fierce crosstown rivals<br>Manchester United to a 0-0<br>draw on Sunday, keeping the<br>Red Devils eleven points<br>behind leaders Chelsea."
-          ],
-          [
-           "New Ole Miss head coach Ed<br>Orgeron, speaking for the<br>first time since his hiring,<br>made clear the goal of his<br>football program.  quot;The<br>goal of this program will be<br>to go to the Sugar Bowl, quot;<br>Orgeron said."
-          ],
-          [
-           "It is much too easy to call<br>Pedro Martinez the selfish<br>one, to say he is walking out<br>on the Red Sox, his baseball<br>family, for the extra year of<br>the Mets #39; crazy money."
-          ],
-          [
-           "It is impossible for young<br>tennis players today to know<br>what it was like to be Althea<br>Gibson and not to be able to<br>quot;walk in the front door,<br>quot; Garrison said."
-          ],
-          [
-           "Here #39;s an obvious word of<br>advice to Florida athletic<br>director Jeremy Foley as he<br>kicks off another search for<br>the Gators football coach: Get<br>Steve Spurrier on board."
-          ],
-          [
-           "Amid the stormy gloom in<br>Gotham, the rain-idled Yankees<br>last night had plenty of time<br>to gather in front of their<br>televisions and watch the Red<br>Sox Express roar toward them.<br>The national telecast might<br>have been enough to send a<br>jittery Boss Steinbrenner<br>searching his Bartlett's<br>Familiar Quotations for some<br>quot;Little Engine That Could<br>quot; metaphor."
-          ],
-          [
-           "FULHAM fans would have been<br>singing the late Elvis #39;<br>hit  #39;The wonder of you<br>#39; to their player Elvis<br>Hammond. If not for Frank<br>Lampard spoiling the party,<br>with his dedication to his<br>late grandfather."
-          ],
-          [
-           "A bird #39;s eye view of the<br>circuit at Shanghai shows what<br>an event Sunday #39;s Chinese<br>Grand Prix will be. The course<br>is arguably one of the best<br>there is, and so it should be<br>considering the amount of<br>money that has been spent on<br>it."
-          ],
-          [
-           "AP - Sirius Satellite Radio<br>signed a deal to air the men's<br>NCAA basketball tournament<br>through 2007, the latest move<br>made in an attempt to draw<br>customers through sports<br>programming."
-          ],
-          [
-           "(Sports Network) - The<br>inconsistent San Diego Padres<br>will try for consecutive wins<br>for the first time since<br>August 28-29 tonight, when<br>they begin a huge four-game<br>set against the Los Angeles<br>Dodgers at Dodger Stadium."
-          ],
-          [
-           " NEW YORK (Reuters) - Top seed<br>Roger Federer survived a<br>stirring comeback from twice<br>champion Andre Agassi to reach<br>the  semifinals of the U.S.<br>Open for the first time on<br>Thursday,  squeezing through<br>6-3, 2-6, 7-5, 3-6, 6-3."
-          ],
-          [
-           "SAN FRANCISCO - What Babe Ruth<br>was to the first half of the<br>20th century and Hank Aaron<br>was to the second, Barry Bonds<br>has become for the home run<br>generation."
-          ],
-          [
-           "Birgit Fischer settled for<br>silver, leaving the 42-year-<br>old Olympian with two medals<br>in two days against decidedly<br>younger competition."
-          ],
-          [
-           "There was no mystery ... no<br>secret strategy ... no baited<br>trap that snapped shut and<br>changed the course of history<br>#39;s most lucrative non-<br>heavyweight fight."
-          ],
-          [
-           "Notre Dame accepted an<br>invitation Sunday to play in<br>the Insight Bowl in Phoenix<br>against a Pac-10 team on Dec.<br>28. The Irish (6-5) accepted<br>the bid a day after losing to<br>Southern California"
-          ],
-          [
-           "Greg Anderson has so dominated<br>Pro Stock this season that his<br>championship quest has evolved<br>into a pursuit of NHRA<br>history. By Bob Hesser, Racers<br>Edge Photography."
-          ],
-          [
-           "Michael Powell, chairman of<br>the FCC, said Wednesday he was<br>disappointed with ABC for<br>airing a sexually suggestive<br>opening to \"Monday Night<br>Football.\""
-          ],
-          [
-           "Former Washington football<br>coach Rick Neuheisel looked<br>forward to a return to<br>coaching Wednesday after being<br>cleared by the NCAA of<br>wrongdoing related to his<br>gambling on basketball games."
-          ],
-          [
-           "AP - Rutgers basketball player<br>Shalicia Hurns was suspended<br>from the team after pleading<br>guilty to punching and tying<br>up her roommate during a<br>dispute over painkilling<br>drugs."
-          ],
-          [
-           "This was the event Michael<br>Phelps didn't really need to<br>compete in if his goal was to<br>win eight golds. He probably<br>would have had a better chance<br>somewhere else."
-          ],
-          [
-           "Gabe Kapler became the first<br>player to leave the World<br>Series champion Boston Red<br>Sox, agreeing to a one-year<br>contract with the Yomiuri<br>Giants in Tokyo."
-          ],
-          [
-           "BALI, Indonesia - Svetlana<br>Kuznetsova, fresh off her<br>championship at the US Open,<br>defeated Australian qualifier<br>Samantha Stosur 6-4, 6-4<br>Thursday to reach the<br>quarterfinals of the Wismilak<br>International."
-          ],
-          [
-           "AP - Just like the old days in<br>Dallas, Emmitt Smith made life<br>miserable for the New York<br>Giants on Sunday."
-          ],
-          [
-           "TAMPA, Fla. - Chris Simms<br>first NFL start lasted 19<br>plays, and it might be a while<br>before he plays again for the<br>Tampa Bay Buccaneers."
-          ],
-          [
-           "Jarno Trulli made the most of<br>the conditions in qualifying<br>to claim pole ahead of Michael<br>Schumacher, while Fernando<br>finished third."
-          ],
-          [
-           "AP - Authorities are<br>investigating whether bettors<br>at New York's top thoroughbred<br>tracks were properly informed<br>when jockeys came in<br>overweight at races, a source<br>familiar with the probe told<br>The Associated Press."
-          ],
-          [
-           "Michael Owen scored his first<br>goal for Real Madrid in a 1-0<br>home victory over Dynamo Kiev<br>in the Champions League. The<br>England striker toe-poked home<br>Ronaldo #39;s cross in the<br>35th minute to join the<br>Russians"
-          ],
-          [
-           "Jason Giambi has returned to<br>the New York Yankees'<br>clubhouse but is still<br>clueless as to when he will be<br>able to play again."
-          ],
-          [
-           "Seventy-five National Hockey<br>League players met with union<br>leaders yesterday to get an<br>update on a lockout that shows<br>no sign of ending."
-          ],
-          [
-           "Howard, at 6-4 overall and 3-3<br>in the Mid-Eastern Athletic<br>Conference, can clinch a<br>winning record in the MEAC<br>with a win over Delaware State<br>on Saturday."
-          ],
-          [
-           " ATHENS (Reuters) - Top-ranked<br>Argentina booked their berth<br>in the women's hockey semi-<br>finals at the Athens Olympics<br>on  Friday but defending<br>champions Australia now face<br>an obstacle  course to qualify<br>for the medal matches."
-          ],
-          [
-           "The Notre Dame message boards<br>are no longer discussing<br>whether Tyrone Willingham<br>should be fired. Theyre<br>already arguing about whether<br>the next coach should be Barry<br>Alvarez or Steve Spurrier."
-          ],
-          [
-           " THOMASTOWN, Ireland (Reuters)<br>- World number three Ernie<br>Els overcame difficult weather<br>conditions to fire a sparkling<br>eight-under-par 64 and move<br>two shots clear after two<br>rounds of  the WGC-American<br>Express Championship Friday."
-          ],
-          [
-           "Lamar Odom supplemented 20<br>points with 13 rebounds and<br>Kobe Bryant added 19 points to<br>overcome a big night from Yao<br>Ming as the Los Angeles Lakers<br>ground out an 84-79 win over<br>the Rockets in Houston<br>Saturday."
-          ],
-          [
-           "It rained Sunday, of course,<br>and but another soppy, sloppy<br>gray day at Westside Tennis<br>Club did nothing to deter<br>Roger Federer from his<br>appointed rounds."
-          ],
-          [
-           "Amelie Mauresmo was handed a<br>place in the Advanta<br>Championships final after<br>Maria Sharapova withdrew from<br>their semi-final because of<br>injury."
-          ],
-          [
-           " EAST RUTHERFORD, New Jersey<br>(Sports Network) - Retired NBA<br>center and seven-time All-<br>Star Alonzo Mourning is going<br>to  give his playing career<br>one more shot."
-          ],
-          [
-           "Jordan have confirmed that<br>Timo Glock will replace<br>Giorgio Pantano for this<br>weekend #39;s Chinese GP as<br>the team has terminated its<br>contract with Pantano."
-          ],
-          [
-           "The continuing heartache of<br>Wake Forest #39;s ACC football<br>season was best described by<br>fifth-ranked Florida State<br>coach Bobby Bowden, after his<br>Seminoles had edged the<br>Deacons 20-17 Saturday at<br>Groves Stadium."
-          ],
-          [
-           "THE glory days have returned<br>to White Hart Lane. When Spurs<br>new first-team coach Martin<br>Jol promised a return to the<br>traditions of the 1960s,<br>nobody could have believed he<br>was so determined to act so<br>quickly and so literally."
-          ],
-          [
-           "AP - When Paula Radcliffe<br>dropped out of the Olympic<br>marathon miles from the<br>finish, she sobbed<br>uncontrollably. Margaret Okayo<br>knew the feeling. Okayo pulled<br>out of the marathon at the<br>15th mile with a left leg<br>injury, and she cried, too.<br>When she watched Radcliffe<br>quit, Okayo thought, \"Let's<br>cry together.\""
-          ],
-          [
-           " ATLANTA (Sports Network) -<br>The Atlanta Hawks signed free<br>agent Kevin Willis on<br>Wednesday, nearly a decade<br>after the  veteran big man<br>ended an 11- year stint with<br>the team."
-          ],
-          [
-           "When his right-front tire went<br>flying off early in the Ford<br>400, the final race of the<br>NASCAR Nextel Cup Series<br>season, Kurt Busch, it seemed,<br>was destined to spend his<br>offseason"
-          ],
-          [
-           "Brandon Backe and Woody<br>Williams pitched well last<br>night even though neither<br>earned a win. But their<br>outings will show up in the<br>record books."
-          ],
-          [
-           "The Football Association today<br>decided not to charge David<br>Beckham with bringing the game<br>into disrepute. The FA made<br>the surprise announcement<br>after their compliance unit<br>ruled"
-          ],
-          [
-           " CRANS-SUR-SIERRE, Switzerland<br>(Reuters) - World number<br>three Ernie Els says he feels<br>a failure after narrowly<br>missing  out on three of the<br>year's four major<br>championships."
-          ],
-          [
-           "Striker Bonaventure Kalou<br>netted twice to send AJ<br>Auxerre through to the first<br>knockout round of the UEFA Cup<br>at the expense of Rangers on<br>Wednesday."
-          ],
-          [
-           "THIS weekend sees the<br>quot;other quot; showdown<br>between New York and New<br>England as the Jets and<br>Patriots clash in a battle of<br>the unbeaten teams."
-          ],
-          [
-           "Nicolas Anelka is fit for<br>Manchester City #39;s<br>Premiership encounter against<br>Tottenham at Eastlands, but<br>the 13million striker will<br>have to be content with a<br>place on the bench."
-          ],
-          [
-           " PITTSBURGH (Reuters) - Ben<br>Roethlisberger passed for 183<br>yards and two touchdowns,<br>Hines Ward scored twice and<br>the  Pittsburgh Steelers<br>rolled to a convincing 27-3<br>victory over  Philadelphia on<br>Sunday for their second<br>straight win against an<br>undefeated opponent."
-          ],
-          [
-           " ATHENS (Reuters) - The U.S.<br>men's basketball team got<br>their  first comfortable win<br>at the Olympic basketball<br>tournament  Monday, routing<br>winless Angola 89-53 in their<br>final preliminary  round game."
-          ],
-          [
-           "Often, the older a pitcher<br>becomes, the less effective he<br>is on the mound. Roger Clemens<br>apparently didn #39;t get that<br>memo. On Tuesday, the 42-year-<br>old Clemens won an<br>unprecedented"
-          ],
-          [
-           "PSV Eindhoven faces Arsenal at<br>Highbury tomorrow night on the<br>back of a free-scoring start<br>to the season. Despite losing<br>Mateja Kezman to Chelsea in<br>the summer, the Dutch side has<br>scored 12 goals in the first"
-          ],
-          [
-           "PLAYER OF THE GAME: Playing<br>with a broken nose, Seattle<br>point guard Sue Bird set a<br>WNBA playoff record for<br>assists with 14, also pumping<br>in 10 points as the Storm<br>claimed the Western Conference<br>title last night."
-          ],
-          [
-           "Frankfurt - World Cup winners<br>Brazil were on Monday drawn to<br>meet European champions<br>Greece, Gold Cup winners<br>Mexico and Asian champions<br>Japan at the 2005<br>Confederations Cup."
-          ],
-          [
-           "Third baseman Vinny Castilla<br>said he fits fine with the<br>Colorado youth movement, even<br>though he #39;ll turn 38 next<br>season and the Rockies are<br>coming off the second-worst"
-          ],
-          [
-           "(Sports Network) - Two of the<br>top teams in the American<br>League tangle in a possible<br>American League Division<br>Series preview tonight, as the<br>West-leading Oakland Athletics<br>host the wild card-leading<br>Boston Red Sox for the first<br>of a three-game set at the"
-          ],
-          [
-           "Inverness Caledonian Thistle<br>appointed Craig Brewster as<br>its new manager-player<br>Thursday although he #39;s<br>unable to play for the team<br>until January."
-          ],
-          [
-           "ATHENS, Greece -- Alan Shearer<br>converted an 87th-minute<br>penalty to give Newcastle a<br>1-0 win over Panionios in<br>their UEFA Cup Group D match."
-          ],
-          [
-           "Derek Jeter turned a season<br>that started with a terrible<br>slump into one of the best in<br>his accomplished 10-year<br>career.  quot;I don #39;t<br>think there is any question,<br>quot; the New York Yankees<br>manager said."
-          ],
-          [
-           "China's Guo Jingjing easily<br>won the women's 3-meter<br>springboard last night, and Wu<br>Minxia made it a 1-2 finish<br>for the world's diving<br>superpower, taking the silver."
-          ],
-          [
-           "GREEN BAY, Wisconsin (Ticker)<br>-- Brett Favre will be hoping<br>his 200th consecutive start<br>turns out better than his last<br>two have against the St."
-          ],
-          [
-           "When an NFL team opens with a<br>prolonged winning streak,<br>former Miami Dolphins coach<br>Don Shula and his players from<br>the 17-0 team of 1972 root<br>unabashedly for the next<br>opponent."
-          ],
-          [
-           "MIANNE Bagger, the transsexual<br>golfer who prompted a change<br>in the rules to allow her to<br>compete on the professional<br>circuit, made history<br>yesterday by qualifying to<br>play full-time on the Ladies<br>European Tour."
-          ],
-          [
-           "Great Britain #39;s gold medal<br>tally now stands at five after<br>Leslie Law was handed the<br>individual three day eventing<br>title - in a courtroom."
-          ],
-          [
-           "Mayor Tom Menino must be<br>proud. His Boston Red Sox just<br>won their first World Series<br>in 86 years and his Hyde Park<br>Blue Stars yesterday clinched<br>their first Super Bowl berth<br>in 32 years, defeating<br>O'Bryant, 14-0. Who would have<br>thought?"
-          ],
-          [
-           "South Korea have appealed to<br>sport #39;s supreme legal body<br>in an attempt to award Yang<br>Tae-young the Olympic<br>gymnastics all-round gold<br>medal after a scoring error<br>robbed him of the title in<br>Athens."
-          ],
-          [
-           "AP - Johan Santana had an<br>early lead and was well on his<br>way to his 10th straight win<br>when the rain started to fall."
-          ],
-          [
-           "ATHENS-In one of the biggest<br>shocks in Olympic judo<br>history, defending champion<br>Kosei Inoue was defeated by<br>Dutchman Elco van der Geest in<br>the men #39;s 100-kilogram<br>category Thursday."
-          ],
-          [
-           "NBC is adding a 5-second delay<br>to its Nascar telecasts after<br>Dale Earnhardt Jr. used a<br>vulgarity during a postrace<br>interview last weekend."
-          ],
-          [
-           "San Francisco Giants<br>outfielder Barry Bonds, who<br>became the third player in<br>Major League Baseball history<br>to hit 700 career home runs,<br>won the National League Most<br>Valuable Player Award"
-          ],
-          [
-           "Portsmouth chairman Milan<br>Mandaric said on Tuesday that<br>Harry Redknapp, who resigned<br>as manager last week, was<br>innocent of any wrong-doing<br>over agent or transfer fees."
-          ],
-          [
-           "This record is for all the<br>little guys, for all the<br>players who have to leg out<br>every hit instead of taking a<br>relaxing trot around the<br>bases, for all the batters<br>whose muscles aren #39;t"
-          ],
-          [
-           "Charlie Hodgson #39;s record-<br>equalling performance against<br>South Africa was praised by<br>coach Andy Robinson after the<br>Sale flyhalf scored 27 points<br>in England #39;s 32-16 victory<br>here at Twickenham on<br>Saturday."
-          ],
-          [
-           "BASEBALL Atlanta (NL):<br>Optioned P Roman Colon to<br>Greenville (Southern);<br>recalled OF Dewayne Wise from<br>Richmond (IL). Boston (AL):<br>Purchased C Sandy Martinez<br>from Cleveland (AL) and<br>assigned him to Pawtucket<br>(IL). Cleveland (AL): Recalled<br>OF Ryan Ludwick from Buffalo<br>(IL). Chicago (NL): Acquired<br>OF Ben Grieve from Milwaukee<br>(NL) for player to be named<br>and cash; acquired C Mike ..."
-          ],
-          [
-           "BRONX, New York (Ticker) --<br>Kelvim Escobar was the latest<br>Anaheim Angels #39; pitcher to<br>subdue the New York Yankees.<br>Escobar pitched seven strong<br>innings and Bengie Molina tied<br>a career-high with four hits,<br>including"
-          ],
-          [
-           "Sep 08 - Vijay Singh revelled<br>in his status as the new world<br>number one after winning the<br>Deutsche Bank Championship by<br>three shots in Boston on<br>Monday."
-          ],
-          [
-           "Many people in golf are asking<br>that today. He certainly wasn<br>#39;t A-list and he wasn #39;t<br>Larry Nelson either. But you<br>couldn #39;t find a more solid<br>guy to lead the United States<br>into Ireland for the 2006<br>Ryder Cup Matches."
-          ],
-          [
-           "Australian Stuart Appleby, who<br>was the joint second-round<br>leader, returned a two-over 74<br>to drop to third at three-<br>under while American Chris<br>DiMarco moved into fourth with<br>a round of 69."
-          ],
-          [
-           "With a doubleheader sweep of<br>the Minnesota Twins, the New<br>York Yankees moved to the<br>verge of clinching their<br>seventh straight AL East<br>title."
-          ],
-          [
-           "Athens, Greece (Sports<br>Network) - The first official<br>track event took place this<br>morning and Italy #39;s Ivano<br>Brugnetti won the men #39;s<br>20km walk at the Summer<br>Olympics in Athens."
-          ],
-          [
-           "Champions Arsenal opened a<br>five-point lead at the top of<br>the Premier League after a 4-0<br>thrashing of Charlton Athletic<br>at Highbury Saturday."
-          ],
-          [
-           "The Redskins and Browns have<br>traded field goals and are<br>tied, 3-3, in the first<br>quarter in Cleveland."
-          ],
-          [
-           "Forget September call-ups. The<br>Red Sox may tap their minor<br>league system for an extra<br>player or two when the rules<br>allow them to expand their<br>25-man roster Wednesday, but<br>any help from the farm is<br>likely to pale against the<br>abundance of talent they gain<br>from the return of numerous<br>players, including Trot Nixon<br>, from the disabled list."
-          ],
-          [
-           "THOUSAND OAKS -- Anonymity is<br>only a problem if you want it<br>to be, and it is obvious Vijay<br>Singh doesn #39;t want it to<br>be. Let others chase fame."
-          ],
-          [
-           "David Coulthard #39;s season-<br>long search for a Formula One<br>drive next year is almost<br>over. Negotiations between Red<br>Bull Racing and Coulthard, who<br>tested for the Austrian team<br>for the first time"
-          ],
-          [
-           "AP - Southern California<br>tailback LenDale White<br>remembers Justin Holland from<br>high school. The Colorado<br>State quarterback made quite<br>an impression."
-          ],
-          [
-           "TIM HENMAN last night admitted<br>all of his energy has been<br>drained away as he bowed out<br>of the Madrid Masters. The top<br>seed, who had a blood test on<br>Wednesday to get to the bottom<br>of his fatigue, went down"
-          ],
-          [
-           "ATHENS -- US sailors needed a<br>big day to bring home gold and<br>bronze medals from the sailing<br>finale here yesterday. But<br>rolling the dice on windshifts<br>and starting tactics backfired<br>both in Star and Tornado<br>classes, and the Americans had<br>to settle for a single silver<br>medal."
-          ],
-          [
-           "AP - Cavaliers forward Luke<br>Jackson was activated<br>Wednesday after missing five<br>games because of tendinitis in<br>his right knee. Cleveland also<br>placed forward Sasha Pavlovic<br>on the injured list."
-          ],
-          [
-           "The Brisbane Lions #39;<br>football manager stepped out<br>of the changerooms just before<br>six o #39;clock last night and<br>handed one of the milling<br>supporters a six-pack of beer."
-          ],
-          [
-           "Cavaliers owner Gordon Gund is<br>in  quot;serious quot;<br>negotiations to sell the NBA<br>franchise, which has enjoyed a<br>dramatic financial turnaround<br>since the arrival of star<br>LeBron James."
-          ],
-          [
-           "After two days of gloom, China<br>was back on the winning rails<br>on Thursday with Liu Chunhong<br>winning a weightlifting title<br>on her record-shattering binge<br>and its shuttlers contributing<br>two golds in the cliff-hanging<br>finals."
-          ],
-          [
-           "One question that arises<br>whenever a player is linked to<br>steroids is, \"What would he<br>have done without them?\"<br>Baseball history whispers an<br>answer."
-          ],
-          [
-           "The second round of the<br>Canadian Open golf tournament<br>continues Saturday Glenn Abbey<br>Golf Club in Oakville,<br>Ontario, after play was<br>suspended late Friday due to<br>darkness."
-          ],
-          [
-           "A massive plan to attract the<br>2012 Summer Olympics to New<br>York, touting the city's<br>diversity, financial and media<br>power, was revealed Wednesday."
-          ],
-          [
-           "NICK Heidfeld #39;s test with<br>Williams has been brought<br>forward after BAR blocked<br>plans for Anthony Davidson to<br>drive its Formula One rival<br>#39;s car."
-          ],
-          [
-           "Grace Park closed with an<br>eagle and two birdies for a<br>7-under-par 65 and a two-<br>stroke lead after three rounds<br>of the Wachovia LPGA Classic<br>on Saturday."
-          ],
-          [
-           "Carlos Beltran drives in five<br>runs to carry the Astros to a<br>12-3 rout of the Braves in<br>Game 5 of their first-round NL<br>playoff series."
-          ],
-          [
-           "Since Lennox Lewis #39;s<br>retirement, the heavyweight<br>division has been knocked for<br>having more quantity than<br>quality. Eight heavyweights on<br>Saturday night #39;s card at<br>Madison Square Garden hope to<br>change that perception, at<br>least for one night."
-          ],
-          [
-           "Tim Duncan had 17 points and<br>10 rebounds, helping the San<br>Antonio Spurs to a 99-81<br>victory over the New York<br>Kicks. This was the Spurs<br>fourth straight win this<br>season."
-          ],
-          [
-           "Nagpur: India suffered a<br>double blow even before the<br>first ball was bowled in the<br>crucial third cricket Test<br>against Australia on Tuesday<br>when captain Sourav Ganguly<br>and off spinner Harbhajan<br>Singh were ruled out of the<br>match."
-          ],
-          [
-           "AP - Former New York Yankees<br>hitting coach Rick Down was<br>hired for the same job by the<br>Mets on Friday, reuniting him<br>with new manager Willie<br>Randolph."
-          ],
-          [
-           "FILDERSTADT (Germany) - Amelie<br>Mauresmo and Lindsay Davenport<br>took their battle for the No.<br>1 ranking and Porsche Grand<br>Prix title into the semi-<br>finals with straight-sets<br>victories on Friday."
-          ],
-          [
-           "Carter returned, but it was<br>running back Curtis Martin and<br>the offensive line that put<br>the Jets ahead. Martin rushed<br>for all but 10 yards of a<br>45-yard drive that stalled at<br>the Cardinals 10."
-          ],
-          [
-           "DENVER (Ticker) -- Jake<br>Plummer more than made up for<br>a lack of a running game.<br>Plummer passed for 294 yards<br>and two touchdowns as the<br>Denver Broncos posted a 23-13<br>victory over the San Diego<br>Chargers in a battle of AFC<br>West Division rivals."
-          ],
-          [
-           "It took all of about five<br>minutes of an introductory<br>press conference Wednesday at<br>Heritage Hall for USC<br>basketball to gain something<br>it never really had before."
-          ],
-          [
-           "AP - The Boston Red Sox looked<br>at the out-of-town scoreboard<br>and could hardly believe what<br>they saw. The New York Yankees<br>were trailing big at home<br>against the Cleveland Indians<br>in what would be the worst<br>loss in the 101-year history<br>of the storied franchise."
-          ],
-          [
-           "The Red Sox will either<br>complete an amazing comeback<br>as the first team to rebound<br>from a 3-0 deficit in<br>postseason history, or the<br>Yankees will stop them."
-          ],
-          [
-           "The Red Sox have reached<br>agreement with free agent<br>pitcher Matt Clement yesterday<br>on a three-year deal that will<br>pay him around \\$25 million,<br>his agent confirmed yesterday."
-          ],
-          [
-           "HEN Manny Ramirez and David<br>Ortiz hit consecutive home<br>runs Sunday night in Chicago<br>to put the Red Sox ahead,<br>there was dancing in the<br>streets in Boston."
-          ],
-          [
-           "MIAMI -- Bryan Randall grabbed<br>a set of Mardi Gras beads and<br>waved them aloft, while his<br>teammates exalted in the<br>prospect of a trip to New<br>Orleans."
-          ],
-          [
-           "TORONTO (CP) - With an injured<br>Vince Carter on the bench, the<br>Toronto Raptors dropped their<br>sixth straight game Friday,<br>101-87 to the Denver Nuggets."
-          ],
-          [
-           "While not quite a return to<br>glory, Monday represents the<br>Redskins' return to the<br>national consciousness."
-          ],
-          [
-           "Vijay Singh has won the US PGA<br>Tour player of the year award<br>for the first time, ending<br>Tiger Woods #39;s five-year<br>hold on the honour."
-          ],
-          [
-           "England got strikes from<br>sparkling debut starter<br>Jermain Defoe and Michael Owen<br>to defeat Poland in a Uefa<br>World Cup qualifier in<br>Chorzow."
-          ],
-          [
-           "Titleholder Ernie Els moved<br>within sight of a record sixth<br>World Match Play title on<br>Saturday by solving a putting<br>problem to overcome injured<br>Irishman Padraig Harrington 5<br>and 4."
-          ],
-          [
-           "If the Washington Nationals<br>never win a pennant, they have<br>no reason to ever doubt that<br>DC loves them. Yesterday, the<br>District City Council<br>tentatively approved a tab for<br>a publicly financed ballpark<br>that could amount to as much<br>as \\$630 million."
-          ],
-          [
-           "Defensive back Brandon<br>Johnson, who had two<br>interceptions for Tennessee at<br>Mississippi, was suspended<br>indefinitely Monday for<br>violation of team rules."
-          ],
-          [
-           "Points leader Kurt Busch spun<br>out and ran out of fuel, and<br>his misfortune was one of the<br>reasons crew chief Jimmy<br>Fennig elected not to pit with<br>20 laps to go."
-          ],
-          [
-           "(CP) - The NHL all-star game<br>hasn #39;t been cancelled<br>after all. It #39;s just been<br>moved to Russia. The agent for<br>New York Rangers winger<br>Jaromir Jagr confirmed Monday<br>that the Czech star had joined<br>Omsk Avangard"
-          ],
-          [
-           "HERE in the land of myth, that<br>familiar god of sports --<br>karma -- threw a bolt of<br>lightning into the Olympic<br>stadium yesterday. Marion<br>Jones lunged desperately with<br>her baton in the 4 x 100m<br>relay final, but couldn #39;t<br>reach her target."
-          ],
-          [
-           "AP - Kenny Rogers lost at the<br>Coliseum for the first time in<br>more than 10 years, with Bobby<br>Crosby's three-run double in<br>the fifth inning leading the<br>Athletics to a 5-4 win over<br>the Texas Rangers on Thursday."
-          ],
-          [
-           "Dambulla, Sri Lanka - Kumar<br>Sangakkara and Avishka<br>Gunawardene slammed impressive<br>half-centuries to help an<br>under-strength Sri Lanka crush<br>South Africa by seven wickets<br>in the fourth one-day<br>international here on<br>Saturday."
-          ],
-          [
-           "Fresh off being the worst team<br>in baseball, the Arizona<br>Diamondbacks set a new record<br>this week: fastest team to<br>both hire and fire a manager."
-          ],
-          [
-           "Nebraska head coach Bill<br>Callahan runs off the field at<br>halftime of the game against<br>Baylor in Lincoln, Neb.,<br>Saturday, Oct. 16, 2004."
-          ],
-          [
-           " EAST RUTHERFORD, N.J. (Sports<br>Network) - The Toronto<br>Raptors have traded All-Star<br>swingman Vince Carter to the<br>New  Jersey Nets in exchange<br>for center Alonzo Mourning,<br>forward  Eric Williams,<br>center/forward Aaron Williams<br>and two first-  round draft<br>picks."
-          ],
-          [
-           "What riot?  quot;An Argentine<br>friend of mine was a little<br>derisive of the Pacers-Pistons<br>eruption, quot; says reader<br>Mike Gaynes.  quot;He snorted,<br>#39;Is that what Americans<br>call a riot?"
-          ],
-          [
-           "All season, Chris Barnicle<br>seemed prepared for just about<br>everything, but the Newton<br>North senior was not ready for<br>the hot weather he encountered<br>yesterday in San Diego at the<br>Footlocker Cross-Country<br>National Championships. Racing<br>in humid conditions with<br>temperatures in the 70s, the<br>Massachusetts Division 1 state<br>champion finished sixth in 15<br>minutes 34 seconds in the<br>5-kilometer race. ..."
-          ],
-          [
-           "AP - Coach Tyrone Willingham<br>was fired by Notre Dame on<br>Tuesday after three seasons in<br>which he failed to return one<br>of the nation's most storied<br>football programs to<br>prominence."
-          ],
-          [
-           "COLLEGE PARK, Md. -- Joel<br>Statham completed 18 of 25<br>passes for 268 yards and two<br>touchdowns in No. 23<br>Maryland's 45-22 victory over<br>Temple last night, the<br>Terrapins' 12th straight win<br>at Byrd Stadium."
-          ],
-          [
-           "Manchester United boss Sir<br>Alex Ferguson wants the FA to<br>punish Arsenal good guy Dennis<br>Bergkamp for taking a swing at<br>Alan Smith last Sunday."
-          ],
-          [
-           "Published reports say Barry<br>Bonds has testified that he<br>used a clear substance and a<br>cream given to him by a<br>trainer who was indicted in a<br>steroid-distribution ring."
-          ],
-          [
-           " ATHENS (Reuters) - Christos<br>Angourakis added his name to<br>Greece's list of Paralympic<br>medal winners when he claimed<br>a  bronze in the T53 shot put<br>competition Thursday."
-          ],
-          [
-           "Jay Fiedler threw for one<br>touchdown, Sage Rosenfels<br>threw for another and the<br>Miami Dolphins got a victory<br>in a game they did not want to<br>play, beating the New Orleans<br>Saints 20-19 Friday night."
-          ],
-          [
-           " NEW YORK (Reuters) - Terrell<br>Owens scored three touchdowns<br>and the Philadelphia Eagles<br>amassed 35 first-half points<br>on the  way to a 49-21<br>drubbing of the Dallas Cowboys<br>in Irving, Texas,  Monday."
-          ],
-          [
-           "A late strike by Salomon Kalou<br>sealed a 2-1 win for Feyenoord<br>over NEC Nijmegen, while<br>second placed AZ Alkmaar<br>defeated ADO Den Haag 2-0 in<br>the Dutch first division on<br>Sunday."
-          ],
-          [
-           "What a disgrace Ron Artest has<br>become. And the worst part is,<br>the Indiana Pacers guard just<br>doesn #39;t get it. Four days<br>after fueling one of the<br>biggest brawls in the history<br>of pro sports, Artest was on<br>national"
-          ],
-          [
-           "Jenson Button has revealed<br>dissatisfaction with the way<br>his management handled a<br>fouled switch to Williams. Not<br>only did the move not come<br>off, his reputation may have<br>been irreparably damaged amid<br>news headline"
-          ],
-          [
-           "Redknapp and his No2 Jim Smith<br>resigned from Portsmouth<br>yesterday, leaving<br>controversial new director<br>Velimir Zajec in temporary<br>control."
-          ],
-          [
-           "As the season winds down for<br>the Frederick Keys, Manager<br>Tom Lawless is starting to<br>enjoy the progress his<br>pitching staff has made this<br>season."
-          ],
-          [
-           "Britain #39;s Bradley Wiggins<br>won the gold medal in men<br>#39;s individual pursuit<br>Saturday, finishing the<br>4,000-meter final in 4:16."
-          ],
-          [
-           "And when David Akers #39;<br>50-yard field goal cleared the<br>crossbar in overtime, they did<br>just that. They escaped a<br>raucous Cleveland Browns<br>Stadium relieved but not<br>broken, tested but not<br>cracked."
-          ],
-          [
-           "San Antonio, TX (Sports<br>Network) - Dean Wilson shot a<br>five-under 65 on Friday to<br>move into the lead at the<br>halfway point of the Texas<br>Open."
-          ],
-          [
-           "Now that Chelsea have added<br>Newcastle United to the list<br>of clubs that they have given<br>what for lately, what price<br>Jose Mourinho covering the<br>Russian-funded aristocrats of<br>west London in glittering<br>glory to the tune of four<br>trophies?"
-          ],
-          [
-           "AP - Former Seattle Seahawks<br>running back Chris Warren has<br>been arrested in Virginia on a<br>federal warrant, accused of<br>failing to pay  #36;137,147 in<br>child support for his two<br>daughters in Washington state."
-          ],
-          [
-           "It #39;s official: US Open had<br>never gone into the third<br>round with only two American<br>men, including the defending<br>champion, Andy Roddick."
-          ],
-          [
-           "WASHINGTON, Aug. 17<br>(Xinhuanet) -- England coach<br>Sven-Goran Eriksson has urged<br>the international soccer<br>authorities to preserve the<br>health of the world superstar<br>footballers for major<br>tournaments, who expressed his<br>will in Slaley of England on<br>Tuesday ..."
-          ],
-          [
-           "Juventus coach Fabio Capello<br>has ordered his players not to<br>kick the ball out of play when<br>an opponent falls to the<br>ground apparently hurt because<br>he believes some players fake<br>injury to stop the match."
-          ],
-          [
-           "You #39;re angry. You want to<br>lash out. The Red Sox are<br>doing it to you again. They<br>#39;re blowing a playoff<br>series, and to the Yankees no<br>less."
-          ],
-          [
-           "TORONTO -- There is no<br>mystique to it anymore,<br>because after all, the<br>Russians have become commoners<br>in today's National Hockey<br>League, and Finns, Czechs,<br>Slovaks, and Swedes also have<br>been entrenched in the<br>Original 30 long enough to<br>turn the ongoing World Cup of<br>Hockey into a protracted<br>trailer for the NHL season."
-          ],
-          [
-           "Indianapolis, IN (Sports<br>Network) - The Indiana Pacers<br>try to win their second<br>straight game tonight, as they<br>host Kevin Garnett and the<br>Minnesota Timberwolves in the<br>third of a four-game homestand<br>at Conseco Fieldhouse."
-          ],
-          [
-           "It is a team game, this Ryder<br>Cup stuff that will commence<br>Friday at Oakland Hills<br>Country Club. So what are the<br>teams? For the Americans,<br>captain Hal Sutton isn't<br>saying."
-          ],
-          [
-           "MANCHESTER United today<br>dramatically rejected the<br>advances of Malcolm Glazer,<br>the US sports boss who is<br>mulling an 825m bid for the<br>football club."
-          ],
-          [
-           "As usual, the Big Ten coaches<br>were out in full force at<br>today #39;s Big Ten<br>Teleconference. Both OSU head<br>coach Jim Tressel and Iowa<br>head coach Kirk Ferentz<br>offered some thoughts on the<br>upcoming game between OSU"
-          ],
-          [
-           "New York Knicks #39; Stephon<br>Marbury (3) fires over New<br>Orleans Hornets #39; Dan<br>Dickau (2) during the second<br>half in New Orleans Wednesday<br>night, Dec. 8, 2004."
-          ],
-          [
-           "At the very moment when the<br>Red Sox desperately need<br>someone slightly larger than<br>life to rally around, they<br>suddenly have the man for the<br>job: Thrilling Schilling."
-          ],
-          [
-           "Dale Earnhardt Jr, right,<br>talks with Matt Kenseth, left,<br>during a break in practice at<br>Lowe #39;s Motor Speedway in<br>Concord, NC, Thursday Oct. 14,<br>2004 before qualifying for<br>Saturday #39;s UAW-GM Quality<br>500 NASCAR Nextel Cup race."
-          ],
-          [
-           "Several starting spots may<br>have been usurped or at least<br>threatened after relatively<br>solid understudy showings<br>Sunday, but few players<br>welcome the kind of shot<br>delivered to Oakland"
-          ],
-          [
-           "TEMPE, Ariz. -- Neil Rackers<br>kicked four field goals and<br>the Arizona Cardinals stifled<br>rookie Chris Simms and the<br>rest of the Tampa Bay offense<br>for a 12-7 victory yesterday<br>in a matchup of two sputtering<br>teams out of playoff<br>contention. Coach Jon Gruden's<br>team lost its fourth in a row<br>to finish 5-11, Tampa Bay's<br>worst record since going ..."
-          ],
-          [
-           "ATHENS France, Britain and the<br>United States issued a joint<br>challenge Thursday to Germany<br>#39;s gold medal in equestrian<br>team three-day eventing."
-          ],
-          [
-           "ATLANTA - Who could have<br>imagined Tommy Tuberville in<br>this position? Yet there he<br>was Friday, standing alongside<br>the SEC championship trophy,<br>posing for pictures and<br>undoubtedly chuckling a bit on<br>the inside."
-          ],
-          [
-           "John Thomson threw shutout<br>ball for seven innings<br>Wednesday night in carrying<br>Atlanta to a 2-0 blanking of<br>the New York Mets. New York<br>lost for the 21st time in 25<br>games on the"
-          ],
-          [
-           "Vikram Solanki beat the rain<br>clouds to register his second<br>one-day international century<br>as England won the third one-<br>day international to wrap up a<br>series victory."
-          ],
-          [
-           "A three-touchdown point spread<br>and a recent history of late-<br>season collapses had many<br>thinking the UCLA football<br>team would provide little<br>opposition to rival USC #39;s<br>march to the BCS-championship<br>game at the Orange Bowl."
-          ],
-          [
-           " PHOENIX (Sports Network) -<br>Free agent third baseman Troy<br>Glaus is reportedly headed to<br>the Arizona Diamondbacks."
-          ],
-          [
-           "Third-string tailback Chris<br>Markey ran for 131 yards to<br>lead UCLA to a 34-26 victory<br>over Oregon on Saturday.<br>Markey, playing because of an<br>injury to starter Maurice<br>Drew, also caught five passes<br>for 84 yards"
-          ],
-          [
-           "Jay Payton #39;s three-run<br>homer led the San Diego Padres<br>to a 5-1 win over the San<br>Francisco Giants in National<br>League play Saturday, despite<br>a 701st career blast from<br>Barry Bonds."
-          ],
-          [
-           "The optimists among Rutgers<br>fans were delighted, but the<br>Scarlet Knights still gave the<br>pessimists something to worry<br>about."
-          ],
-          [
-           "Perhaps the sight of Maria<br>Sharapova opposite her tonight<br>will jog Serena Williams #39;<br>memory. Wimbledon. The final.<br>You and Maria."
-          ],
-          [
-           "Five days after making the<br>putt that won the Ryder Cup,<br>Colin Montgomerie looked set<br>to miss the cut at a European<br>PGA tour event."
-          ],
-          [
-           "Karachi - Captain Inzamam ul-<br>Haq and coach Bob Woolmer came<br>under fire on Thursday for<br>choosing to bat first on a<br>tricky pitch after Pakistan<br>#39;s humiliating defeat in<br>the ICC Champions Trophy semi-<br>final."
-          ],
-          [
-           "Scottish champions Celtic saw<br>their three-year unbeaten home<br>record in Europe broken<br>Tuesday as they lost 3-1 to<br>Barcelona in the Champions<br>League Group F opener."
-          ],
-          [
-           "AP - Andy Roddick searched out<br>Carlos Moya in the throng of<br>jumping, screaming Spanish<br>tennis players, hoping to<br>shake hands."
-          ],
-          [
-           "ENGLAND captain and Real<br>Madrid midfielder David<br>Beckham has played down<br>speculation that his club are<br>moving for England manager<br>Sven-Goran Eriksson."
-          ],
-          [
-           "AFP - National Basketball<br>Association players trying to<br>win a fourth consecutive<br>Olympic gold medal for the<br>United States have gotten the<br>wake-up call that the \"Dream<br>Team\" days are done even if<br>supporters have not."
-          ],
-          [
-           "England will be seeking their<br>third clean sweep of the<br>summer when the NatWest<br>Challenge against India<br>concludes at Lord #39;s. After<br>beating New Zealand and West<br>Indies 3-0 and 4-0 in Tests,<br>they have come alive"
-          ],
-          [
-           "AP - Mark Richt knows he'll<br>have to get a little creative<br>when he divvies up playing<br>time for Georgia's running<br>backs next season. Not so on<br>Saturday. Thomas Brown is the<br>undisputed starter for the<br>biggest game of the season."
-          ],
-          [
-           "Michael Phelps, the six-time<br>Olympic champion, issued an<br>apology yesterday after being<br>arrested and charged with<br>drunken driving in the United<br>States."
-          ],
-          [
-           "ATHENS Larry Brown, the US<br>coach, leaned back against the<br>scorer #39;s table, searching<br>for support on a sinking ship.<br>His best player, Tim Duncan,<br>had just fouled out, and the<br>options for an American team<br>that"
-          ],
-          [
-           "Spain have named an unchanged<br>team for the Davis Cup final<br>against the United States in<br>Seville on 3-5 December.<br>Carlos Moya, Juan Carlos<br>Ferrero, Rafael Nadal and<br>Tommy Robredo will take on the<br>US in front of 22,000 fans at<br>the converted Olympic stadium."
-          ],
-          [
-           "Last Tuesday night, Harvard<br>knocked off rival Boston<br>College, which was ranked No.<br>1 in the country. Last night,<br>the Crimson knocked off<br>another local foe, Boston<br>University, 2-1, at Walter<br>Brown Arena, which marked the<br>first time since 1999 that<br>Harvard had beaten them both<br>in the same season."
-          ],
-          [
-           "About 500 prospective jurors<br>will be in an Eagle, Colorado,<br>courtroom Friday, answering an<br>82-item questionnaire in<br>preparation for the Kobe<br>Bryant sexual assault trial."
-          ],
-          [
-           "BEIJING The NBA has reached<br>booming, basketball-crazy<br>China _ but the league doesn<br>#39;t expect to make any money<br>soon. The NBA flew more than<br>100 people halfway around the<br>world for its first games in<br>China, featuring"
-          ],
-          [
-           " NEW YORK (Reuters) - Curt<br>Schilling pitched 6 2/3<br>innings  and Manny Ramirez hit<br>a three-run homer in a seven-<br>run fourth  frame to lead the<br>Boston Red Sox to a 9-3 win<br>over the host  Anaheim Angels<br>in their American League<br>Divisional Series  opener<br>Tuesday."
-          ],
-          [
-           "AP - The game between the<br>Minnesota Twins and the New<br>York Yankees on Tuesday night<br>was postponed by rain."
-          ],
-          [
-           "PARIS The verdict is in: The<br>world #39;s greatest race car<br>driver, the champion of<br>champions - all disciplines<br>combined - is Heikki<br>Kovalainen."
-          ],
-          [
-           "Pakistan won the toss and<br>unsurprisingly chose to bowl<br>first as they and West Indies<br>did battle at the Rose Bowl<br>today for a place in the ICC<br>Champions Trophy final against<br>hosts England."
-          ],
-          [
-           "AP - Boston Red Sox center<br>fielder Johnny Damon is having<br>a recurrence of migraine<br>headaches that first bothered<br>him after a collision in last<br>year's playoffs."
-          ],
-          [
-           "Felix Cardenas of Colombia won<br>the 17th stage of the Spanish<br>Vuelta cycling race Wednesday,<br>while defending champion<br>Roberto Heras held onto the<br>overall leader #39;s jersey<br>for the sixth day in a row."
-          ],
-          [
-           "Established star Landon<br>Donovan and rising sensation<br>Eddie Johnson carried the<br>United States into the<br>regional qualifying finals for<br>the 2006 World Cup in emphatic<br>fashion Wednesday night."
-          ],
-          [
-           "Wizards coach Eddie Jordan<br>says the team is making a<br>statement that immaturity will<br>not be tolerated by suspending<br>Kwame Brown one game for not<br>taking part in a team huddle<br>during a loss to Denver."
-          ],
-          [
-           "AP - Andy Roddick has yet to<br>face a challenge in his U.S.<br>Open title defense. He beat<br>No. 18 Tommy Robredo of Spain<br>6-3, 6-2, 6-4 Tuesday night to<br>move into the quarterfinals<br>without having lost a set."
-          ],
-          [
-           "Now that hell froze over in<br>Boston, New England braces for<br>its rarest season -- a winter<br>of content. Red Sox fans are<br>adrift from the familiar<br>torture of the past."
-          ],
-          [
-           "THE South Africans have called<br>the Wallabies scrum cheats as<br>a fresh round of verbal<br>warfare opened in the Republic<br>last night."
-          ],
-          [
-           "An overwhelming majority of<br>NHL players who expressed<br>their opinion in a poll said<br>they would not support a<br>salary cap even if it meant<br>saving a season that was<br>supposed to have started Oct.<br>13."
-          ],
-          [
-           "Tony Eury Sr. oversees Dale<br>Earnhardt Jr. on the<br>racetrack, but Sunday he<br>extended his domain to Victory<br>Lane. Earnhardt was unbuckling<br>to crawl out of the No."
-          ],
-          [
-           "(Sports Network) - The New<br>York Yankees try to move one<br>step closer to a division<br>title when they conclude their<br>critical series with the<br>Boston Red Sox at Fenway Park."
-          ],
-          [
-           "Kurt Busch claimed a stake in<br>the points lead in the NASCAR<br>Chase for the Nextel Cup<br>yesterday, winning the<br>Sylvania 300 at New Hampshire<br>International Speedway."
-          ],
-          [
-           "LOUDON, NH - As this<br>newfangled stretch drive for<br>the Nextel Cup championship<br>ensues, Jeff Gordon has to be<br>considered the favorite for a<br>fifth title."
-          ],
-          [
-           "By nick giongco. YOU KNOW you<br>have reached the status of a<br>boxing star when ring<br>announcer extraordinaire<br>Michael Buffer calls out your<br>name in his trademark booming<br>voice during a high-profile<br>event like yesterday"
-          ],
-          [
-           "AP - Even with a big lead,<br>Eric Gagne wanted to pitch in<br>front of his hometown fans one<br>last time."
-          ],
-          [
-           "ATHENS, Greece -- Larry Brown<br>was despondent, the head of<br>the US selection committee was<br>defensive and an irritated<br>Allen Iverson was hanging up<br>on callers who asked what went<br>wrong."
-          ],
-          [
-           "AP - Courtney Brown refuses to<br>surrender to injuries. He's<br>already planning another<br>comeback."
-          ],
-          [
-           "It took an off-the-cuff<br>reference to a serial<br>murderer/cannibal to punctuate<br>the Robby Gordon storyline.<br>Gordon has been vilified by<br>his peers and put on probation"
-          ],
-          [
-           "By BOBBY ROSS JR. Associated<br>Press Writer. play the Atlanta<br>Hawks. They will be treated to<br>free food and drink and have.<br>their pictures taken with<br>Mavericks players, dancers and<br>team officials."
-          ],
-          [
-           "ARSENAL #39;S Brazilian World<br>Cup winning midfielder<br>Gilberto Silva is set to be<br>out for at least a month with<br>a back injury, the Premiership<br>leaders said."
-          ],
-          [
-           "INDIANAPOLIS -- With a package<br>of academic reforms in place,<br>the NCAA #39;s next crusade<br>will address what its<br>president calls a dangerous<br>drift toward professionalism<br>and sports entertainment."
-          ],
-          [
-           "AP - It was difficult for<br>Southern California's Pete<br>Carroll and Oklahoma's Bob<br>Stoops to keep from repeating<br>each other when the two<br>coaches met Thursday."
-          ],
-          [
-           "Andy Roddick, along with<br>Olympic silver medalist Mardy<br>Fish and the doubles pair of<br>twins Bob and Mike Bryan will<br>make up the US team to compete<br>with Belarus in the Davis Cup,<br>reported CRIENGLISH."
-          ],
-          [
-           "While the world #39;s best<br>athletes fight the noble<br>Olympic battle in stadiums and<br>pools, their fans storm the<br>streets of Athens, turning the<br>Greek capital into a huge<br>international party every<br>night."
-          ],
-          [
-           "EVERTON showed they would not<br>be bullied into selling Wayne<br>Rooney last night by rejecting<br>a 23.5million bid from<br>Newcastle - as Manchester<br>United gamble on Goodison<br>#39;s resolve to keep the<br>striker."
-          ],
-          [
-           "After months of legal<br>wrangling, the case of<br>&lt;em&gt;People v. Kobe Bean<br>Bryant&lt;/em&gt; commences on<br>Friday in Eagle, Colo., with<br>testimony set to begin next<br>month."
-          ],
-          [
-           "Lyon coach Paul le Guen has<br>admitted his side would be<br>happy with a draw at Old<br>Trafford on Tuesday night. The<br>three-times French champions<br>have assured themselves of<br>qualification for the<br>Champions League"
-          ],
-          [
-           "Reuters - Barry Bonds failed<br>to collect a hit in\\his bid to<br>join the 700-homer club, but<br>he did score a run to\\help the<br>San Francisco Giants edge the<br>host Milwaukee Brewers\\3-2 in<br>National League action on<br>Tuesday."
-          ],
-          [
-           "After waiting an entire summer<br>for the snow to fall and<br>Beaver Creek to finally open,<br>skiers from around the planet<br>are coming to check out the<br>Birds of Prey World Cup action<br>Dec. 1 - 5. Although everyones"
-          ],
-          [
-           "I confess that I am a complete<br>ignoramus when it comes to<br>women #39;s beach volleyball.<br>In fact, I know only one thing<br>about the sport - that it is<br>the supreme aesthetic<br>experience available on planet<br>Earth."
-          ],
-          [
-           "Manchester United Plc may<br>offer US billionaire Malcolm<br>Glazer a seat on its board if<br>he agrees to drop a takeover<br>bid for a year, the Observer<br>said, citing an unidentified<br>person in the soccer industry."
-          ],
-          [
-           "For a guy who spent most of<br>his first four professional<br>seasons on the disabled list,<br>Houston Astros reliever Brad<br>Lidge has developed into quite<br>the ironman these past two<br>days."
-          ],
-          [
-           "Former Bengal Corey Dillon<br>found his stride Sunday in his<br>second game for the New<br>England Patriots. Dillon<br>gained 158 yards on 32 carries<br>as the Patriots beat the<br>Arizona Cardinals, 23-12, for<br>their 17th victory in a row."
-          ],
-          [
-           "If legend is to be believed,<br>the end of a victorious war<br>was behind Pheidippides #39;<br>trek from Marathon to Athens<br>2,500 years ago."
-          ],
-          [
-           " BEIJING (Reuters) - Wimbledon<br>champion Maria Sharapova<br>demolished fellow Russian<br>Tatiana Panova 6-1, 6-1 to<br>advance to  the quarter-finals<br>of the China Open on<br>Wednesday."
-          ],
-          [
-           "Padres general manager Kevin<br>Towers called Expos general<br>manager Omar Minaya on<br>Thursday afternoon and told<br>him he needed a shortstop<br>because Khalil Greene had<br>broken his"
-          ],
-          [
-           "Motorsport.com. Nine of the<br>ten Formula One teams have<br>united to propose cost-cutting<br>measures for the future, with<br>the notable exception of<br>Ferrari."
-          ],
-          [
-           "Steve Francis and Shaquille O<br>#39;Neal enjoyed big debuts<br>with their new teams. Kobe<br>Bryant found out he can #39;t<br>carry the Lakers all by<br>himself."
-          ],
-          [
-           "Australia, by winning the<br>third Test at Nagpur on<br>Friday, also won the four-<br>match series 2-0 with one<br>match to go. Australia had<br>last won a Test series in<br>India way back in December<br>1969 when Bill Lawry #39;s<br>team beat Nawab Pataudi #39;s<br>Indian team 3-1."
-          ],
-          [
-           "Final Score: Connecticut 61,<br>New York 51 New York, NY<br>(Sports Network) - Nykesha<br>Sales scored 15 points to lead<br>Connecticut to a 61-51 win<br>over New York in Game 1 of<br>their best-of-three Eastern<br>Conference Finals series at<br>Madison Square Garden."
-          ],
-          [
-           "Charlotte, NC -- LeBron James<br>poured in a game-high 19<br>points and Jeff McInnis scored<br>18 as the Cleveland Cavaliers<br>routed the Charlotte Bobcats,<br>106-89, at the Charlotte<br>Coliseum."
-          ],
-          [
-           "Lehmann, who was at fault in<br>two matches in the tournament<br>last season, was blundering<br>again with the German set to<br>take the rap for both Greek<br>goals."
-          ],
-          [
-           "Jeju Island, South Korea<br>(Sports Network) - Grace Park<br>and Carin Koch posted matching<br>rounds of six-under-par 66 on<br>Friday to share the lead after<br>the first round of the CJ Nine<br>Bridges Classic."
-          ],
-          [
-           "Benfica and Real Madrid set<br>the standard for soccer<br>success in Europe in the late<br>1950s and early  #39;60s. The<br>clubs have evolved much<br>differently, but both have<br>struggled"
-          ],
-          [
-           "Pakistan are closing in fast<br>on Sri Lanka #39;s first<br>innings total after impressing<br>with both ball and bat on the<br>second day of the opening Test<br>in Faisalabad."
-          ],
-          [
-           "Ron Artest has been hit with a<br>season long suspension,<br>unprecedented for the NBA<br>outside doping cases; Stephen<br>Jackson banned for 30 games;<br>Jermaine O #39;Neal for 25<br>games and Anthony Johnson for<br>five."
-          ],
-          [
-           "Three shots behind Grace Park<br>with five holes to go, six-<br>time LPGA player of the year<br>Sorenstam rallied with an<br>eagle, birdie and three pars<br>to win her fourth Samsung<br>World Championship by three<br>shots over Park on Sunday."
-          ],
-          [
-           "NSW Rugby CEO Fraser Neill<br>believes Waratah star Mat<br>Rogers has learned his lesson<br>after he was fined and ordered<br>to do community service<br>following his controversial<br>comments about the club rugby<br>competition."
-          ],
-          [
-           "ATHENS: China, the dominant<br>force in world diving for the<br>best part of 20 years, won six<br>out of eight Olympic titles in<br>Athens and prompted<br>speculation about a clean<br>sweep when they stage the<br>Games in Beijing in 2008."
-          ],
-          [
-           "The Houston Astros won their<br>19th straight game at home and<br>are one game from winning<br>their first playoff series in<br>42 years."
-          ],
-          [
-           "The eighth-seeded American<br>fell to sixth-seeded Elena<br>Dementieva of Russia, 0-6 6-2<br>7-6 (7-5), on Friday - despite<br>being up a break on four<br>occasions in the third set."
-          ],
-          [
-           "TUCSON, Arizona (Ticker) --<br>No. 20 Arizona State tries to<br>post its first three-game<br>winning streak over Pac-10<br>Conference rival Arizona in 26<br>years when they meet Friday."
-          ],
-          [
-           "AP - Phillip Fulmer kept his<br>cool when starting center<br>Jason Respert drove off in the<br>coach's golf cart at practice."
-          ],
-          [
-           "GOALS from Wayne Rooney and<br>Ruud van Nistelrooy gave<br>Manchester United the win at<br>Newcastle. Alan Shearer<br>briefly levelled matters for<br>the Magpies but United managed<br>to scrape through."
-          ],
-          [
-           "AP - Two-time U.S. Open<br>doubles champion Max Mirnyi<br>will lead the Belarus team<br>that faces the United States<br>in the Davis Cup semifinals in<br>Charleston later this month."
-          ],
-          [
-           "AP - New York Jets safety Erik<br>Coleman got his souvenir<br>football from the equipment<br>manager and held it tightly."
-          ],
-          [
-           "Ivan Hlinka coached the Czech<br>Republic to the hockey gold<br>medal at the 1998 Nagano<br>Olympics and became the coach<br>of the Pittsburgh Penguins two<br>years later."
-          ],
-          [
-           "AUBURN - Ah, easy street. No<br>game this week. Light<br>practices. And now Auburn is<br>being touted as the No. 3 team<br>in the Bowl Championship<br>Series standings."
-          ],
-          [
-           "Portsmouth #39;s Harry<br>Redknapp has been named as the<br>Barclays manager of the month<br>for October. Redknapp #39;s<br>side were unbeaten during the<br>month and maintained an<br>impressive climb to ninth in<br>the Premiership."
-          ],
-          [
-           "Three directors of Manchester<br>United have been ousted from<br>the board after US tycoon<br>Malcolm Glazer, who is<br>attempting to buy the club,<br>voted against their re-<br>election."
-          ],
-          [
-           "AP - Manny Ramirez singled and<br>scored before leaving with a<br>bruised knee, and the<br>streaking Boston Red Sox beat<br>the Detroit Tigers 5-3 Friday<br>night for their 10th victory<br>in 11 games."
-          ],
-          [
-           "The news comes fast and<br>furious. Pedro Martinez goes<br>to Tampa to visit George<br>Steinbrenner. Theo Epstein and<br>John Henry go to Florida for<br>their turn with Pedro. Carl<br>Pavano comes to Boston to<br>visit Curt Schilling. Jason<br>Varitek says he's not a goner.<br>Derek Lowe is a goner, but he<br>says he wishes it could be<br>different. Orlando Cabrera ..."
-          ],
-          [
-           "FRED Hale Sr, documented as<br>the worlds oldest man, has<br>died at the age of 113. Hale<br>died in his sleep on Friday at<br>a hospital in Syracuse, New<br>York, while trying to recover<br>from a bout of pneumonia, his<br>grandson, Fred Hale III said."
-          ],
-          [
-           "The Oakland Raiders have<br>traded Jerry Rice to the<br>Seattle Seahawks in a move<br>expected to grant the most<br>prolific receiver in National<br>Football League history his<br>wish to get more playing time."
-          ],
-          [
-           "AP - Florida coach Ron Zook<br>was fired Monday but will be<br>allowed to finish the season,<br>athletic director Jeremy Foley<br>told The Gainesville Sun."
-          ],
-          [
-           "Troy Brown has had to make a<br>lot of adjustments while<br>playing both sides of the<br>football.  quot;You always<br>want to score when you get the<br>ball -- offense or defense"
-          ],
-          [
-           "Jenson Button will tomorrow<br>discover whether he is allowed<br>to quit BAR and move to<br>Williams for 2005. The<br>Englishman has signed<br>contracts with both teams but<br>prefers a switch to Williams,<br>where he began his Formula One<br>career in 2000."
-          ],
-          [
-           "ARSENAL boss Arsene Wenger<br>last night suffered a<br>Champions League setback as<br>Brazilian midfielder Gilberto<br>Silva (above) was left facing<br>a long-term injury absence."
-          ],
-          [
-           "American improves to 3-1 on<br>the season with a hard-fought<br>overtime win, 74-63, against<br>Loyala at Bender Arena on<br>Friday night."
-          ],
-          [
-           "Bee Staff Writers. SAN<br>FRANCISCO - As Eric Johnson<br>drove to the stadium Sunday<br>morning, his bruised ribs were<br>so sore, he wasn #39;t sure he<br>#39;d be able to suit up for<br>the game."
-          ],
-          [
-           "The New England Patriots are<br>so single-minded in pursuing<br>their third Super Bowl triumph<br>in four years that they almost<br>have no room for any other<br>history."
-          ],
-          [
-           "Because, while the Eagles are<br>certain to stumble at some<br>point during the regular<br>season, it seems inconceivable<br>that they will falter against<br>a team with as many offensive<br>problems as Baltimore has<br>right now."
-          ],
-          [
-           "AP - J.J. Arrington ran for 84<br>of his 121 yards in the second<br>half and Aaron Rodgers shook<br>off a slow start to throw two<br>touchdown passes to help No. 5<br>California beat Washington<br>42-12 on Saturday."
-          ],
-          [
-           "SHANGHAI, China The Houston<br>Rockets have arrived in<br>Shanghai with hometown<br>favorite Yao Ming declaring<br>himself  quot;here on<br>business."
-          ],
-          [
-           "Charleston, SC (Sports<br>Network) - Andy Roddick and<br>Mardy Fish will play singles<br>for the United States in this<br>weekend #39;s Davis Cup<br>semifinal matchup against<br>Belarus."
-          ],
-          [
-           "RICKY PONTING believes the<br>game #39;s watchers have<br>fallen for the  quot;myth<br>quot; that New Zealand know<br>how to rattle Australia."
-          ],
-          [
-           "MILWAUKEE (SportsTicker) -<br>Barry Bonds tries to go where<br>just two players have gone<br>before when the San Francisco<br>Giants visit the Milwaukee<br>Brewers on Tuesday."
-          ],
-          [
-           "AP - With Tom Brady as their<br>quarterback and a stingy,<br>opportunistic defense, it's<br>difficult to imagine when the<br>New England Patriots might<br>lose again. Brady and<br>defensive end Richard Seymour<br>combined to secure the<br>Patriots' record-tying 18th<br>straight victory, 31-17 over<br>the Buffalo Bills on Sunday."
-          ],
-          [
-           "Approaching Hurricane Ivan has<br>led to postponement of the<br>game Thursday night between<br>10th-ranked California and<br>Southern Mississippi in<br>Hattiesburg, Cal #39;s<br>athletic director said Monday."
-          ],
-          [
-           "SAN DIEGO (Ticker) - The San<br>Diego Padres lacked speed and<br>an experienced bench last<br>season, things veteran<br>infielder Eric Young is<br>capable of providing."
-          ],
-          [
-           "This is an eye chart,<br>reprinted as a public service<br>to the New York Mets so they<br>may see from what they suffer:<br>myopia. Has ever a baseball<br>franchise been so shortsighted<br>for so long?"
-          ],
-          [
-           " LONDON (Reuters) - A medical<br>product used to treat both<br>male hair loss and prostate<br>problems has been added to the<br>list  of banned drugs for<br>athletes."
-          ],
-          [
-           "AP - Curtis Martin and Jerome<br>Bettis have the opportunity to<br>go over 13,000 career yards<br>rushing in the same game when<br>Bettis and the Pittsburgh<br>Steelers play Martin and the<br>New York Jets in a big AFC<br>matchup Sunday."
-          ],
-          [
-           "Michigan Stadium was mostly<br>filled with empty seats. The<br>only cheers were coming from<br>near one end zone -he Iowa<br>section. By Carlos Osorio, AP."
-          ],
-          [
-           "The International Rugby Board<br>today confirmed that three<br>countries have expressed an<br>interest in hosting the 2011<br>World Cup. New Zealand, South<br>Africa and Japan are leading<br>the race to host rugby union<br>#39;s global spectacular in<br>seven years #39; time."
-          ],
-          [
-           "MIAMI (Ticker) -- In its first<br>season in the Atlantic Coast<br>Conference, No. 11 Virginia<br>Tech is headed to the BCS.<br>Bryan Randall threw two<br>touchdown passes and the<br>Virginia Tech defense came up<br>big all day as the Hokies<br>knocked off No."
-          ],
-          [
-           "(CP) - Somehow, in the span of<br>half an hour, the Detroit<br>Tigers #39; pitching went from<br>brutal to brilliant. Shortly<br>after being on the wrong end<br>of several records in a 26-5<br>thrashing from to the Kansas<br>City"
-          ],
-          [
-           "With the Huskies reeling at<br>0-4 - the only member of a<br>Bowl Championship Series<br>conference left without a win<br>-an Jose State suddenly looms<br>as the only team left on the<br>schedule that UW will be<br>favored to beat."
-          ],
-          [
-           "Darryl Sutter, who coached the<br>Calgary Flames to the Stanley<br>Cup finals last season, had an<br>emergency appendectomy and was<br>recovering Friday."
-          ],
-          [
-           "Athens, Greece (Sports<br>Network) - For the second<br>straight day a Briton captured<br>gold at the Olympic Velodrome.<br>Bradley Wiggins won the men<br>#39;s individual 4,000-meter<br>pursuit Saturday, one day<br>after teammate"
-          ],
-          [
-           "A Steffen Iversen penalty was<br>sufficient to secure the<br>points for Norway at Hampden<br>on Saturday. James McFadden<br>was ordered off after 53<br>minutes for deliberate<br>handball as he punched Claus<br>Lundekvam #39;s header off the<br>line."
-          ],
-          [
-           "AP - Ailing St. Louis reliever<br>Steve Kline was unavailable<br>for Game 3 of the NL<br>championship series on<br>Saturday, but Cardinals<br>manager Tony LaRussa hopes the<br>left-hander will pitch later<br>this postseason."
-          ],
-          [
-           "MADRID: A stunning first-half<br>free kick from David Beckham<br>gave Real Madrid a 1-0 win<br>over newly promoted Numancia<br>at the Bernabeu last night."
-          ],
-          [
-           "Favourites Argentina beat<br>Italy 3-0 this morning to<br>claim their place in the final<br>of the men #39;s Olympic<br>football tournament. Goals by<br>leading goalscorer Carlos<br>Tevez, with a smart volley<br>after 16 minutes, and"
-          ],
-          [
-           "Shortly after Steve Spurrier<br>arrived at Florida in 1990,<br>the Gators were placed on NCAA<br>probation for a year stemming<br>from a child-support payment<br>former coach Galen Hall made<br>for a player."
-          ]
-         ],
-         "hovertemplate": "label=Sports<br>Component 0=%{x}<br>Component 1=%{y}<br>string=%{customdata[0]}<extra></extra>",
-         "legendgroup": "Sports",
-         "marker": {
-          "color": "#00cc96",
-          "size": 5,
-          "symbol": "square"
-         },
-         "mode": "markers",
-         "name": "Sports",
-         "showlegend": true,
-         "type": "scattergl",
-         "x": [
-          16.660423,
-          49.959976,
-          54.445854,
-          30.389194,
-          13.9476,
-          47.226242,
-          51.068775,
-          50.124294,
-          44.945942,
-          46.406788,
-          48.53827,
-          31.687206,
-          40.537342,
-          63.37852,
-          56.515934,
-          45.10189,
-          48.401085,
-          36.802402,
-          54.15107,
-          58.71805,
-          38.756367,
-          59.531124,
-          47.890396,
-          36.084118,
-          39.42093,
-          55.4732,
-          60.896523,
-          56.4989,
-          48.16754,
-          47.840588,
-          60.467564,
-          31.210938,
-          49.345882,
-          58.657722,
-          37.406326,
-          45.95487,
-          27.38124,
-          46.569256,
-          40.19783,
-          -38.585472,
-          48.277,
-          48.961315,
-          46.0185,
-          59.281708,
-          58.10119,
-          41.329796,
-          60.929493,
-          49.080627,
-          52.442997,
-          25.193996,
-          13.627039,
-          49.169395,
-          50.209198,
-          38.928047,
-          57.835648,
-          25.167212,
-          54.942364,
-          31.13371,
-          45.565693,
-          56.076347,
-          47.481384,
-          54.362545,
-          53.08307,
-          55.395947,
-          32.21779,
-          36.722115,
-          58.705086,
-          30.618706,
-          23.218187,
-          48.1655,
-          39.944633,
-          51.72719,
-          57.632236,
-          18.106745,
-          40.575005,
-          49.25058,
-          52.102192,
-          45.8365,
-          41.15665,
-          45.06367,
-          50.470036,
-          55.406406,
-          34.643066,
-          44.60481,
-          40.65631,
-          49.13915,
-          29.803865,
-          25.779589,
-          56.531708,
-          37.571487,
-          65.59185,
-          38.63354,
-          46.481388,
-          46.68557,
-          49.08016,
-          14.032702,
-          23.928396,
-          -6.620774,
-          45.88543,
-          35.342182,
-          47.523766,
-          47.32294,
-          34.786186,
-          43.796356,
-          49.697426,
-          37.340225,
-          54.74676,
-          41.444393,
-          30.604837,
-          60.995483,
-          66.21081,
-          35.24333,
-          57.111607,
-          48.019886,
-          52.86177,
-          52.435543,
-          51.07264,
-          61.549442,
-          42.282997,
-          33.828228,
-          56.65421,
-          43.26525,
-          62.865932,
-          39.05222,
-          41.410755,
-          38.42368,
-          56.985188,
-          57.739395,
-          50.66318,
-          48.850945,
-          36.300686,
-          39.32889,
-          31.211935,
-          39.84183,
-          40.939545,
-          48.37629,
-          25.452175,
-          51.559708,
-          46.41191,
-          52.77315,
-          55.190277,
-          38.03023,
-          59.759964,
-          48.908253,
-          49.40172,
-          49.71215,
-          40.702366,
-          57.916637,
-          51.67792,
-          30.202019,
-          57.654526,
-          34.585587,
-          61.278408,
-          23.422081,
-          39.786133,
-          54.46313,
-          48.63991,
-          35.595135,
-          50.553566,
-          54.101334,
-          51.79524,
-          42.513103,
-          39.504147,
-          20.738512,
-          47.29459,
-          51.208797,
-          61.06654,
-          59.059566,
-          41.391323,
-          56.262905,
-          46.51155,
-          27.989025,
-          57.75085,
-          35.379726,
-          40.129883,
-          51.36741,
-          44.124233,
-          38.459312,
-          42.09723,
-          54.85633,
-          48.645084,
-          33.95719,
-          34.440483,
-          45.367435,
-          57.216434,
-          49.150986,
-          40.020714,
-          36.398586,
-          49.763367,
-          44.87128,
-          34.063007,
-          29.130596,
-          40.65309,
-          33.885105,
-          42.74865,
-          46.39128,
-          63.1983,
-          49.79338,
-          54.410885,
-          63.605362,
-          39.934895,
-          17.519335,
-          40.63617,
-          30.811249,
-          47.465935,
-          47.272655,
-          63.177612,
-          41.66488,
-          51.543095,
-          38.820065,
-          40.088383,
-          60.45724,
-          52.433907,
-          38.667847,
-          57.766346,
-          42.41823,
-          19.677572,
-          -36.831997,
-          56.381645,
-          53.579098,
-          59.620773,
-          48.37667,
-          35.445507,
-          46.157833,
-          49.838924,
-          29.182852,
-          38.542347,
-          30.625587,
-          43.841885,
-          56.74711,
-          51.738125,
-          51.774147,
-          43.796253,
-          47.406204,
-          -6.8207917,
-          41.08887,
-          62.321815,
-          30.915781,
-          49.839912,
-          48.11404,
-          37.93922,
-          58.07306,
-          50.09836,
-          54.922394,
-          52.352432,
-          53.529724,
-          25.636118,
-          38.338932,
-          37.103165,
-          45.54423,
-          53.86991,
-          47.012283,
-          60.093002,
-          32.56739,
-          60.606064,
-          39.772743,
-          48.95457,
-          44.68764,
-          48.906673,
-          47.63983,
-          62.788,
-          38.030407,
-          56.60054,
-          40.073948,
-          60.232296,
-          56.806816,
-          45.64992,
-          39.266872,
-          62.91453,
-          50.306213,
-          53.805332,
-          50.443317,
-          53.03957,
-          44.309578,
-          54.42772,
-          34.023724,
-          61.473892,
-          50.651646,
-          27.97626,
-          59.39454,
-          32.39917,
-          59.94177,
-          42.23158,
-          56.222717,
-          59.36177,
-          57.550297,
-          60.801098,
-          57.966537,
-          55.964886,
-          45.870426,
-          38.638237,
-          49.729176,
-          58.080826,
-          58.289707,
-          25.88273,
-          63.36231,
-          50.890648,
-          45.88053,
-          50.78542,
-          43.456127,
-          28.731657,
-          50.339493,
-          61.357586,
-          56.755314,
-          13.779188,
-          25.783823,
-          55.462612,
-          58.314003,
-          53.49091,
-          49.449314,
-          37.930157,
-          57.86416,
-          52.26376,
-          47.072803,
-          48.17513,
-          44.906193,
-          56.61765,
-          56.60834,
-          56.066643,
-          56.162464,
-          53.77512,
-          47.758217,
-          50.96032,
-          58.05466,
-          41.446438,
-          58.41072,
-          11.970405,
-          35.8429,
-          47.047108,
-          54.494556,
-          47.79968,
-          59.32574,
-          40.920834,
-          55.53207,
-          44.559975,
-          53.77833,
-          32.079,
-          47.351242,
-          38.30059,
-          48.4094,
-          33.499294,
-          29.347134,
-          45.721344,
-          45.999187,
-          49.048878,
-          39.29256,
-          32.81585,
-          26.376568,
-          32.12724,
-          59.9222,
-          45.969334,
-          47.935875,
-          57.007023,
-          34.043217,
-          30.42877,
-          53.714108,
-          34.008293,
-          33.648438,
-          59.613667,
-          31.749115,
-          52.849945,
-          61.664543,
-          30.838337,
-          43.08786,
-          49.605602,
-          63.165108,
-          47.894882,
-          51.314476,
-          44.60029,
-          44.015842,
-          39.41502,
-          59.81665,
-          41.209156,
-          47.579025,
-          56.48261,
-          46.025146,
-          58.74744,
-          46.206974,
-          53.145702,
-          60.687424,
-          38.102413,
-          39.646805,
-          52.38563,
-          34.14185,
-          31.320894,
-          40.573475,
-          41.94092,
-          30.75048,
-          39.690254,
-          53.560726,
-          50.696335,
-          0.011293956,
-          29.16581,
-          58.507614,
-          40.03086,
-          48.50645,
-          38.79774,
-          62.77733,
-          47.435825,
-          43.003845,
-          34.368248,
-          53.752186,
-          55.804855,
-          26.508045,
-          30.6338,
-          47.806313,
-          56.805237,
-          49.249695,
-          49.522606,
-          61.757652,
-          61.630924,
-          39.668633,
-          51.79226,
-          28.194004,
-          53.427227,
-          45.15016,
-          36.015182,
-          43.020264,
-          54.577732,
-          18.002365,
-          31.860546,
-          -0.10420398,
-          37.094307,
-          58.735332,
-          12.898047,
-          35.940807,
-          30.280912,
-          63.004868,
-          47.676117,
-          43.803253,
-          52.02361,
-          57.569775,
-          -31.23627,
-          51.3331,
-          40.77166,
-          48.259228,
-          49.969627,
-          36.618427,
-          55.361397,
-          40.71827,
-          39.666965,
-          33.43409,
-          55.207115,
-          32.183567,
-          16.695406,
-          55.5641,
-          51.27627,
-          47.339336,
-          63.347527,
-          39.062187,
-          54.67712,
-          65.51466,
-          45.10427,
-          47.36583,
-          35.328148,
-          30.716692,
-          58.147617,
-          64.86492,
-          32.677113,
-          55.061314,
-          38.546684,
-          43.151165,
-          26.161028,
-          44.980778,
-          47.840103,
-          49.251343,
-          52.69105,
-          49.939175,
-          46.95092,
-          28.887644,
-          54.523384,
-          27.097654,
-          58.47151,
-          50.23622,
-          39.812546,
-          59.636997,
-          57.34273,
-          -18.721113,
-          48.26851,
-          42.70037,
-          15.134995,
-          49.12623,
-          59.67211,
-          47.292377,
-          47.805153,
-          46.018627,
-          37.074707,
-          64.22567,
-          40.90623,
-          42.02211,
-          36.001675
-         ],
-         "xaxis": "x",
-         "y": [
-          -20.803589,
-          -3.7095485,
-          -10.627376,
-          -3.9541492,
-          -17.816854,
-          -21.783358,
-          -12.137919,
-          8.247171,
-          -27.218586,
-          -35.47235,
-          0.2254613,
-          -32.542274,
-          -29.048313,
-          -18.953293,
-          -16.318848,
-          1.29799,
-          0.27214336,
-          -22.427275,
-          1.5617585,
-          -13.859794,
-          -10.261337,
-          2.3437028,
-          -11.51763,
-          -28.920532,
-          -14.537146,
-          -28.30168,
-          -17.185091,
-          10.214211,
-          -11.397742,
-          -29.872732,
-          -19.64737,
-          0.16790108,
-          9.72588,
-          -19.213398,
-          -17.097263,
-          -23.540205,
-          -22.659904,
-          -30.161833,
-          -32.789925,
-          4.0007343,
-          -30.553509,
-          -19.611755,
-          8.52158,
-          4.1424494,
-          1.4751459,
-          -12.852704,
-          -20.392239,
-          -4.5837173,
-          8.166061,
-          -11.337284,
-          -16.43065,
-          -22.28117,
-          7.9826016,
-          -13.418971,
-          -24.45379,
-          -11.355663,
-          9.545558,
-          -32.61165,
-          11.230936,
-          -13.468946,
-          -5.462048,
-          -13.069021,
-          1.5735915,
-          -23.937035,
-          -15.694869,
-          -25.943512,
-          0.82049704,
-          -3.9954906,
-          -18.380714,
-          -21.956186,
-          -17.928478,
-          -17.166925,
-          1.8213869,
-          -20.784616,
-          -11.329836,
-          -8.567718,
-          -11.798271,
-          -25.911339,
-          -10.770047,
-          -15.446808,
-          -32.171726,
-          -29.32608,
-          -35.429436,
-          -11.357406,
-          -14.503349,
-          -3.407611,
-          -5.3719177,
-          -9.659326,
-          -19.531103,
-          -14.720505,
-          -27.277906,
-          -15.416589,
-          0.7872089,
-          -23.089176,
-          -19.599855,
-          -17.141865,
-          -14.515779,
-          -8.936446,
-          -31.523523,
-          -15.298813,
-          -11.721406,
-          -20.626392,
-          -8.267473,
-          -22.223913,
-          -28.966488,
-          -21.779205,
-          -27.218397,
-          -36.186253,
-          0.31401816,
-          -22.044197,
-          -25.348227,
-          -15.303513,
-          2.799256,
-          -27.043676,
-          -29.502745,
-          -6.9711366,
-          -13.013833,
-          2.553211,
-          -14.678428,
-          -19.333553,
-          5.2738123,
-          -30.191147,
-          -8.254407,
-          -16.734713,
-          -36.29533,
-          -0.7015533,
-          -19.59588,
-          -19.748474,
-          -18.429428,
-          -24.985508,
-          -14.398376,
-          -23.032887,
-          -27.591204,
-          -13.656402,
-          -33.948692,
-          -33.920197,
-          -9.174384,
-          8.925708,
-          -22.970503,
-          1.9238061,
-          -5.8668604,
-          -27.786598,
-          -11.159512,
-          -32.18803,
-          -16.650103,
-          -18.147429,
-          -14.823587,
-          3.2132275,
-          -28.899687,
-          0.73946625,
-          -14.675726,
-          -24.362509,
-          -18.907366,
-          -18.148087,
-          -24.660992,
-          -12.368451,
-          10.51185,
-          -10.045945,
-          -30.512154,
-          -0.48769227,
-          -22.191689,
-          -9.914337,
-          -10.982109,
-          31.096636,
-          -11.43558,
-          6.894826,
-          4.1693807,
-          1.2161766,
-          -9.937122,
-          -27.618727,
-          -22.007416,
-          -22.37126,
-          -22.028944,
-          -10.037108,
-          -7.7222157,
-          3.5807598,
-          -6.6086307,
-          -19.699232,
-          -17.251148,
-          9.637636,
-          -10.8705435,
-          8.272561,
-          8.240764,
-          -22.69967,
-          -29.479254,
-          -11.955685,
-          -4.9588523,
-          -16.469437,
-          9.750696,
-          -14.905879,
-          -20.787516,
-          -3.1344242,
-          -3.9499974,
-          8.201109,
-          -19.819767,
-          -4.076858,
-          -24.730019,
-          -13.261404,
-          -11.716383,
-          -18.290712,
-          -15.495678,
-          -32.85601,
-          -13.886067,
-          -33.77542,
-          -22.37821,
-          -33.790863,
-          -23.158052,
-          -23.911886,
-          -28.11098,
-          -15.843517,
-          -24.879805,
-          -27.03218,
-          5.8135962,
-          -25.135891,
-          -25.89945,
-          -18.168903,
-          -15.80312,
-          -29.042156,
-          -23.639217,
-          1.8415234,
-          -16.338673,
-          10.431047,
-          -34.98855,
-          -30.50168,
-          -1.8533841,
-          -23.127438,
-          -26.898434,
-          -6.0696855,
-          -0.83113074,
-          -13.937987,
-          8.4994335,
-          -25.814455,
-          -25.507462,
-          -1.2937344,
-          -9.251707,
-          -11.8820095,
-          -13.837845,
-          -33.480656,
-          -20.987251,
-          6.7093077,
-          -24.921698,
-          3.5488389,
-          -18.068623,
-          3.0699391,
-          9.083556,
-          -13.918425,
-          -16.273378,
-          -22.65874,
-          -12.477235,
-          11.250292,
-          -13.376665,
-          -5.0115275,
-          -23.036457,
-          -11.463062,
-          3.7194152,
-          -12.564382,
-          -29.44567,
-          -9.352621,
-          -23.756565,
-          -17.759132,
-          -15.3389635,
-          -13.819872,
-          -6.09211,
-          -7.863438,
-          -13.616495,
-          -23.899826,
-          -9.426962,
-          -12.24037,
-          -18.85435,
-          11.024011,
-          -19.68378,
-          -26.103676,
-          10.497953,
-          3.9857144,
-          -22.706993,
-          -2.4754145,
-          -21.39815,
-          3.600532,
-          -22.364601,
-          -16.769764,
-          -12.030829,
-          -28.317688,
-          -4.760545,
-          -17.78651,
-          -20.541088,
-          1.3681566,
-          1.0861593,
-          4.390221,
-          -22.447065,
-          2.2553952,
-          -14.250181,
-          -28.855429,
-          -23.47392,
-          -0.6379835,
-          -17.019722,
-          -23.794706,
-          2.3137836,
-          6.832896,
-          -11.976225,
-          -16.869408,
-          -14.887161,
-          11.149261,
-          -15.141055,
-          5.0789285,
-          -17.239506,
-          -16.723783,
-          9.832679,
-          -19.392942,
-          -24.406261,
-          -17.971964,
-          -2.6890767,
-          -13.708067,
-          9.420364,
-          -26.4286,
-          -23.904675,
-          -33.521553,
-          -27.414234,
-          -24.713099,
-          -13.032957,
-          -20.86936,
-          -17.725012,
-          -13.713904,
-          -27.97785,
-          1.1649175,
-          -12.003306,
-          3.4183521,
-          -18.329607,
-          -22.500238,
-          -5.1817036,
-          -10.172258,
-          8.929348,
-          -18.92016,
-          -4.0155163,
-          -29.874123,
-          -23.89452,
-          -14.478729,
-          -21.707514,
-          2.8463974,
-          -24.179169,
-          -22.502762,
-          -18.470171,
-          -5.5552483,
-          2.6354103,
-          -25.625107,
-          -23.603718,
-          -13.1784725,
-          -21.927172,
-          -17.776453,
-          -12.744574,
-          -24.39855,
-          1.6557639,
-          -25.33089,
-          3.7044208,
-          -14.088412,
-          1.8123101,
-          3.1115727,
-          -9.5224,
-          -8.527657,
-          -27.493273,
-          -28.8183,
-          -21.120987,
-          -0.42459357,
-          -13.964472,
-          -30.554207,
-          -16.260057,
-          -20.409258,
-          -3.838907,
-          -30.899261,
-          -25.502863,
-          4.312004,
-          -26.893,
-          -20.63535,
-          -4.0243726,
-          -33.28943,
-          -13.433018,
-          -21.37861,
-          -17.676962,
-          -33.109673,
-          7.7211857,
-          2.9930232,
-          -3.4584122,
-          -17.335155,
-          0.4309157,
-          -9.979049,
-          -27.767008,
-          -2.7953665,
-          -23.63617,
-          -0.20407373,
-          2.833431,
-          -1.6160171,
-          -22.09123,
-          -15.144995,
-          -27.617838,
-          -20.576097,
-          -32.521618,
-          -1.5771652,
-          -3.4706712,
-          -13.110925,
-          1.27955,
-          -13.123537,
-          -21.404385,
-          2.485261,
-          -26.038076,
-          -8.591754,
-          -32.257572,
-          -3.6816385,
-          -23.705658,
-          -3.3590631,
-          -2.241037,
-          -7.3185177,
-          -20.510658,
-          2.8498745,
-          -14.110134,
-          -21.078281,
-          -16.38932,
-          -10.101326,
-          -29.059853,
-          -31.21759,
-          -1.3346295,
-          -20.799906,
-          -14.345478,
-          -15.090428,
-          -16.226871,
-          -17.027992,
-          -20.647305,
-          -34.179035,
-          -14.075991,
-          -15.682211,
-          -23.77744,
-          2.101532,
-          8.422051,
-          -12.298222,
-          2.824297,
-          -18.204716,
-          -2.6403008,
-          -17.935425,
-          -18.721956,
-          -6.343975,
-          9.154357,
-          -16.127396,
-          -2.973772,
-          -22.44099,
-          10.113919,
-          -16.923988,
-          -18.502573,
-          -22.337847,
-          5.892835,
-          -30.008844,
-          -26.583797,
-          -12.331805,
-          -1.2270886,
-          -26.34871,
-          -13.808859,
-          -32.725826,
-          -12.638194,
-          -13.887938,
-          -20.714098,
-          -18.954786,
-          8.2712965,
-          -14.246153,
-          -24.174063,
-          -22.63233,
-          -17.627256,
-          -10.120339,
-          -18.194794,
-          -8.593113,
-          -27.35188,
-          -31.873516,
-          -21.917208,
-          -27.548603,
-          -0.95101047,
-          -8.804195,
-          -16.590578,
-          -25.044327,
-          -32.0242,
-          -14.339118,
-          -28.126497,
-          17.26326,
-          -27.410538,
-          -27.716919,
-          -16.625145,
-          -21.870625,
-          -21.870728,
-          -32.103767,
-          -10.273103,
-          1.9282136,
-          -10.849964,
-          -15.895552,
-          -12.564632,
-          -13.048038,
-          -23.010983
-         ],
-         "yaxis": "y"
-        },
-        {
-         "customdata": [
-          [
-           "The EU and US moved closer to<br>an aviation trade war after<br>failing to reach agreement<br>during talks Thursday on<br>subsidies to Airbus Industrie."
-          ],
-          [
-           " SAN FRANCISCO (Reuters) -<br>Nike Inc. &lt;A HREF=\"http://w<br>ww.investor.reuters.com/FullQu<br>ote.aspx?ticker=NKE.N target=/<br>stocks/quickinfo/fullquote\"&gt<br>;NKE.N&lt;/A&gt;, the world's<br>largest athletic shoe company,<br>on Monday reported a 25<br>percent  rise in quarterly<br>profit, beating analysts'<br>estimates, on  strong demand<br>for high-end running and<br>basketball shoes in the<br>United States."
-          ],
-          [
-           "NEW YORK (CBS.MW) - US stocks<br>traded mixed Thurday as Merck<br>shares lost a quarter of their<br>value, dragging blue chips<br>lower, but the Nasdaq moved<br>higher, buoyed by gains in the<br>semiconductor sector."
-          ],
-          [
-           "Bankrupt ATA Airlines #39;<br>withdrawal from Chicago #39;s<br>Midway International Airport<br>presents a juicy opportunity<br>for another airline to beef up<br>service in the Midwest"
-          ],
-          [
-           "The Instinet Group, owner of<br>one of the largest electronic<br>stock trading systems, is for<br>sale, executives briefed on<br>the plan say."
-          ],
-          [
-           "The Auburn Hills-based<br>Chrysler Group made a profit<br>of \\$269 million in the third<br>quarter, even though worldwide<br>sales and revenues declined,<br>contributing to a \\$1."
-          ],
-          [
-           "SAN FRANCISCO (CBS.MW) -- UAL<br>Corp., parent of United<br>Airlines, said Wednesday it<br>will overhaul its route<br>structure to reduce costs and<br>offset rising fuel costs."
-          ],
-          [
-           "Annual economic growth in<br>China has slowed for the third<br>quarter in a row, falling to<br>9.1 per cent, third-quarter<br>data shows. The slowdown shows<br>the economy is responding to<br>Beijing #39;s efforts to rein<br>in break-neck investment and<br>lending."
-          ],
-          [
-           "THE All-India Motor Transport<br>Congress (AIMTC) on Saturday<br>called off its seven-day<br>strike after finalising an<br>agreement with the Government<br>on the contentious issue of<br>service tax and the various<br>demands including tax deducted<br>at source (TDS), scrapping"
-          ],
-          [
-           "AP - The euro-zone economy<br>grew by 0.5 percent in the<br>second quarter of 2004, a<br>touch slower than in the first<br>three months of the year,<br>according to initial estimates<br>released Tuesday by the<br>European Union."
-          ],
-          [
-           "A few years ago, casinos<br>across the United States were<br>closing their poker rooms to<br>make space for more popular<br>and lucrative slot machines."
-          ],
-          [
-           "WASHINGTON -- Consumers were<br>tightfisted amid soaring<br>gasoline costs in August and<br>hurricane-related disruptions<br>last week sent applications<br>for jobless benefits to their<br>highest level in seven months."
-          ],
-          [
-           "Talking kitchens and vanities.<br>Musical jump ropes and potty<br>seats. Blusterous miniature<br>leaf blowers and vacuum<br>cleaners -- almost as loud as<br>the real things."
-          ],
-          [
-           "Online merchants in the United<br>States have become better at<br>weeding out fraudulent credit<br>card orders, a new survey<br>indicates. But shipping<br>overseas remains a risky<br>venture. By Joanna Glasner."
-          ],
-          [
-           "Popping a gadget into a cradle<br>to recharge it used to mean<br>downtime, but these days<br>chargers are doing double<br>duty, keeping your portable<br>devices playing even when<br>they're charging."
-          ],
-          [
-           " SAN FRANCISCO (Reuters) -<br>Texas Instruments Inc. &lt;A H<br>REF=\"http://www.investor.reute<br>rs.com/FullQuote.aspx?ticker=T<br>XN.N target=/stocks/quickinfo/<br>fullquote\"&gt;TXN.N&lt;/A&gt;,<br>the largest maker of chips for<br>cellular phones, on Monday<br>said  record demand for its<br>handset and television chips<br>boosted  quarterly profit by<br>26 percent, even as it<br>struggles with a  nagging<br>inventory problem."
-          ],
-          [
-           "LONDON ARM Holdings, a British<br>semiconductor designer, said<br>on Monday that it would buy<br>Artisan Components for \\$913<br>million to broaden its product<br>range."
-          ],
-          [
-           "MELBOURNE: Global shopping<br>mall owner Westfield Group<br>will team up with Australian<br>developer Multiplex Group to<br>bid 585mil (US\\$1."
-          ],
-          [
-           "Reuters - Delta Air Lines Inc.<br>, which is\\racing to cut costs<br>to avoid bankruptcy, on<br>Wednesday reported\\a wider<br>quarterly loss amid soaring<br>fuel prices and weak\\domestic<br>airfares."
-          ],
-          [
-           "Energy utility TXU Corp. on<br>Monday more than quadrupled<br>its quarterly dividend payment<br>and raised its projected<br>earnings for 2004 and 2005<br>after a companywide<br>performance review."
-          ],
-          [
-           "Northwest Airlines Corp., the<br>fourth- largest US airline,<br>and its pilots union reached<br>tentative agreement on a<br>contract that would cut pay<br>and benefits, saving the<br>company \\$265 million a year."
-          ],
-          [
-           "Microsoft Corp. MSFT.O and<br>cable television provider<br>Comcast Corp. CMCSA.O said on<br>Monday that they would begin<br>deploying set-top boxes<br>powered by Microsoft software<br>starting next week."
-          ],
-          [
-           "Philippines mobile phone<br>operator Smart Communications<br>Inc. is in talks with<br>Singapore #39;s Mobile One for<br>a possible tie-up,<br>BusinessWorld reported Monday."
-          ],
-          [
-           "Airline warns it may file for<br>bankruptcy if too many senior<br>pilots take early retirement<br>option. Delta Air LInes #39;<br>CEO says it faces bankruptcy<br>if it can #39;t slow the pace<br>of pilots taking early<br>retirement."
-          ],
-          [
-           "Kodak Versamark #39;s parent<br>company, Eastman Kodak Co.,<br>reported Tuesday it plans to<br>eliminate almost 900 jobs this<br>year in a restructuring of its<br>overseas operations."
-          ],
-          [
-           "A top official of the US Food<br>and Drug Administration said<br>Friday that he and his<br>colleagues  quot;categorically<br>reject quot; earlier<br>Congressional testimony that<br>the agency has failed to<br>protect the public against<br>dangerous drugs."
-          ],
-          [
-           "AFP - British retailer Marks<br>and Spencer announced a major<br>management shake-up as part of<br>efforts to revive its<br>fortunes, saying trading has<br>become tougher ahead of the<br>crucial Christmas period."
-          ],
-          [
-           " ATLANTA (Reuters) - Home<br>Depot Inc. &lt;A HREF=\"http://<br>www.investor.reuters.com/FullQ<br>uote.aspx?ticker=HD.N target=/<br>stocks/quickinfo/fullquote\"&gt<br>;HD.N&lt;/A&gt;, the top home<br>improvement retailer, on<br>Tuesday reported a 15 percent<br>rise in  third-quarter profit,<br>topping estimates, aided by<br>installed  services and sales<br>to contractors."
-          ],
-          [
-           " LONDON (Reuters) - The dollar<br>fought back from one-month<br>lows against the euro and<br>Swiss franc on Wednesday as<br>investors  viewed its sell-off<br>in the wake of the Federal<br>Reserve's  verdict on interest<br>rates as overdone."
-          ],
-          [
-           "Boston Scientific Corp said on<br>Friday it has recalled an ear<br>implant the company acquired<br>as part of its purchase of<br>Advanced Bionics in June."
-          ],
-          [
-           "MarketWatch.com. Richemont<br>sees significant H1 lift,<br>unclear on FY (2:53 AM ET)<br>LONDON (CBS.MW) -- Swiss<br>luxury goods maker<br>Richemont(zz:ZZ:001273145:<br>news, chart, profile), which<br>also is a significant"
-          ],
-          [
-           "Crude oil climbed more than<br>\\$1 in New York on the re-<br>election of President George<br>W. Bush, who has been filling<br>the US Strategic Petroleum<br>Reserve."
-          ],
-          [
-           "Yukos #39; largest oil-<br>producing unit regained power<br>supplies from Tyumenenergo, a<br>Siberia-based electricity<br>generator, Friday after the<br>subsidiary pledged to pay 440<br>million rubles (\\$15 million)<br>in debt by Oct. 3."
-          ],
-          [
-           "US STOCKS vacillated yesterday<br>as rising oil prices muted<br>Wall Streets excitement over<br>strong results from Lehman<br>Brothers and Sprints \\$35<br>billion acquisition of Nextel<br>Communications."
-          ],
-          [
-           "At the head of the class,<br>Rosabeth Moss Kanter is an<br>intellectual whirlwind: loud,<br>expansive, in constant motion."
-          ],
-          [
-           "A bitter row between America<br>and the European Union over<br>alleged subsidies to rival<br>aircraft makers Boeing and<br>Airbus intensified yesterday."
-          ],
-          [
-           "Amsterdam (pts) - Dutch<br>electronics company Philips<br>http://www.philips.com has<br>announced today, Friday, that<br>it has cut its stake in Atos<br>Origin by more than a half."
-          ],
-          [
-           "TORONTO (CP) - Two-thirds of<br>banks around the world have<br>reported an increase in the<br>volume of suspicious<br>activities that they report to<br>police, a new report by KPMG<br>suggests."
-          ],
-          [
-           "The Atkins diet frenzy slowed<br>growth briefly, but the<br>sandwich business is booming,<br>with \\$105 billion in sales<br>last year."
-          ],
-          [
-           "Luxury carmaker Jaguar said<br>Friday it was stopping<br>production at a factory in<br>central England, resulting in<br>a loss of 1,100 jobs,<br>following poor sales in the<br>key US market."
-          ],
-          [
-           "John Gibson said Friday that<br>he decided to resign as chief<br>executive officer of<br>Halliburton Energy Services<br>when it became apparent he<br>couldn #39;t become the CEO of<br>the entire corporation, after<br>getting a taste of the No."
-          ],
-          [
-           "NEW YORK (Reuters) - Outback<br>Steakhouse Inc. said Tuesday<br>it lost about 130 operating<br>days and up to \\$2 million in<br>revenue because it had to<br>close some restaurants in the<br>South due to Hurricane<br>Charley."
-          ],
-          [
-           "State insurance commissioners<br>from across the country have<br>proposed new rules governing<br>insurance brokerage fees,<br>winning praise from an<br>industry group and criticism<br>from"
-          ],
-          [
-           "SOFTWARE giant Oracle #39;s<br>stalled \\$7.7bn (4.2bn) bid to<br>take over competitor<br>PeopleSoft has received a huge<br>boost after a US judge threw<br>out an anti-trust lawsuit<br>filed by the Department of<br>Justice to block the<br>acquisition."
-          ],
-          [
-           "Office Depot Inc. (ODP.N:<br>Quote, Profile, Research) on<br>Tuesday warned of weaker-than-<br>expected profits for the rest<br>of the year because of<br>disruptions from the string of<br>hurricanes"
-          ],
-          [
-           "THE photo-equipment maker<br>Kodak yesterday announced<br>plans to axe 600 jobs in the<br>UK and close a factory in<br>Nottinghamshire, in a move in<br>line with the giants global<br>restructuring strategy<br>unveiled last January."
-          ],
-          [
-           "China's central bank on<br>Thursday raised interest rates<br>for the first time in nearly a<br>decade, signaling deepening<br>unease with the breakneck pace<br>of development and an intent<br>to reign in a construction<br>boom now sowing fears of<br>runaway inflation."
-          ],
-          [
-           "CHICAGO - Delta Air Lines<br>(DAL) said Wednesday it plans<br>to eliminate between 6,000 and<br>6,900 jobs during the next 18<br>months, implement a 10 across-<br>the-board pay reduction and<br>reduce employee benefits."
-          ],
-          [
-           " NEW YORK (Reuters) - U.S.<br>stocks were likely to open<br>flat  on Wednesday, with high<br>oil prices and profit warnings<br>weighing  on the market before<br>earnings reports start and key<br>jobs data  is released this<br>week."
-          ],
-          [
-           "Best known for its popular<br>search engine, Google is<br>rapidly rolling out new<br>products and muscling into<br>Microsoft's stronghold: the<br>computer desktop. The<br>competition means consumers<br>get more choices and better<br>products."
-          ],
-          [
-           " MOSCOW (Reuters) - Russia's<br>Gazprom said on Tuesday it<br>will  bid for embattled oil<br>firm YUKOS' main unit next<br>month, as the  Kremlin seeks<br>to turn the world's biggest<br>gas producer into a  major oil<br>player."
-          ],
-          [
-           "Federal Reserve officials<br>raised a key short-term<br>interest rate Tuesday for the<br>fifth time this year, and<br>indicated they will gradually<br>move rates higher next year to<br>keep inflation under control<br>as the economy expands."
-          ],
-          [
-           "Canadians are paying more to<br>borrow money for homes, cars<br>and other purchases today<br>after a quarter-point<br>interest-rate increase by the<br>Bank of Canada yesterday was<br>quickly matched by the<br>chartered banks."
-          ],
-          [
-           "Delta Air Lines is to issue<br>millions of new shares without<br>shareholder consent as part of<br>moves to ensure its survival."
-          ],
-          [
-           "Genta (GNTA:Nasdaq - news -<br>research) is never boring!<br>Monday night, the company<br>announced that its phase III<br>Genasense study in chronic<br>lymphocytic leukemia (CLL) met<br>its primary endpoint, which<br>was tumor shrinkage."
-          ],
-          [
-           "While the entire airline<br>industry #39;s finances are<br>under water, ATA Airlines will<br>have to hold its breath longer<br>than its competitors to keep<br>from going belly up."
-          ],
-          [
-           "One day after ousting its<br>chief executive, the nation's<br>largest insurance broker said<br>it will tell clients exactly<br>how much they are paying for<br>services and renounce back-<br>door payments from carriers."
-          ],
-          [
-           "LONDON (CBS.MW) -- Outlining<br>an expectation for higher oil<br>prices and increasing demand,<br>Royal Dutch/Shell on Wednesday<br>said it #39;s lifting project<br>spending to \\$45 billion over<br>the next three years."
-          ],
-          [
-           "Tuesday #39;s meeting could<br>hold clues to whether it<br>#39;ll be a November or<br>December pause in rate hikes.<br>By Chris Isidore, CNN/Money<br>senior writer."
-          ],
-          [
-           "The dollar may fall against<br>the euro for a third week in<br>four on concern near-record<br>crude oil prices will temper<br>the pace of expansion in the<br>US economy, a survey by<br>Bloomberg News indicates."
-          ],
-          [
-           "The battle for the British-<br>based Chelsfield plc hotted up<br>at the weekend, with reports<br>from London that the property<br>giant #39;s management was<br>working on its own bid to<br>thwart the 585 million (\\$A1."
-          ],
-          [
-           "SAN DIEGO --(Business Wire)--<br>Oct. 11, 2004 -- Breakthrough<br>PeopleSoft EnterpriseOne 8.11<br>Applications Enable<br>Manufacturers to Become<br>Demand-Driven."
-          ],
-          [
-           "Reuters - Oil prices rose on<br>Friday as tight\\supplies of<br>distillate fuel, including<br>heating oil, ahead of\\the<br>northern hemisphere winter<br>spurred buying."
-          ],
-          [
-           "Nov. 18, 2004 - An FDA<br>scientist says the FDA, which<br>is charged with protecting<br>America #39;s prescription<br>drug supply, is incapable of<br>doing so."
-          ],
-          [
-           "The UK's inflation rate fell<br>in September, thanks in part<br>to a fall in the price of<br>airfares, increasing the<br>chance that interest rates<br>will be kept on hold."
-          ],
-          [
-           " HONG KONG/SAN FRANCISCO<br>(Reuters) - IBM is selling its<br>PC-making business to China's<br>largest personal computer<br>company, Lenovo Group Ltd.,<br>for \\$1.25 billion, marking<br>the U.S.  firm's retreat from<br>an industry it helped pioneer<br>in 1981."
-          ],
-          [
-           "Nordstrom reported a strong<br>second-quarter profit as it<br>continued to select more<br>relevant inventory and sell<br>more items at full price."
-          ],
-          [
-           "The Bank of England is set to<br>keep interest rates on hold<br>following the latest meeting<br>of the its Monetary Policy<br>Committee."
-          ],
-          [
-           "The Bush administration upheld<br>yesterday the imposition of<br>penalty tariffs on shrimp<br>imports from China and<br>Vietnam, handing a victory to<br>beleaguered US shrimp<br>producers."
-          ],
-          [
-           "House prices rose 0.2 percent<br>in September compared with the<br>month before to stand up 17.8<br>percent on a year ago, the<br>Nationwide Building Society<br>says."
-          ],
-          [
-           "Nortel Networks says it will<br>again delay the release of its<br>restated financial results.<br>The Canadian telecom vendor<br>originally promised to release<br>the restated results in<br>September."
-          ],
-          [
-           " CHICAGO (Reuters) - At first<br>glance, paying \\$13 or \\$14<br>for  a hard-wired Internet<br>laptop connection in a hotel<br>room might  seem expensive."
-          ],
-          [
-           "Reuters - An investigation<br>into U.S. insurers\\and brokers<br>rattled insurance industry<br>stocks for a second day\\on<br>Friday as investors, shaken<br>further by subpoenas<br>delivered\\to the top U.S. life<br>insurer, struggled to gauge<br>how deep the\\probe might<br>reach."
-          ],
-          [
-           "The Dow Jones Industrial<br>Average failed three times<br>this year to exceed its<br>previous high and fell to<br>about 10,000 each time, most<br>recently a week ago."
-          ],
-          [
-           " SINGAPORE (Reuters) - Asian<br>share markets staged a  broad-<br>based retreat on Wednesday,<br>led by steelmakers amid<br>warnings of price declines,<br>but also enveloping technology<br>and  financial stocks on<br>worries that earnings may<br>disappoint."
-          ],
-          [
-           "NEW YORK - CNN has a new boss<br>for the second time in 14<br>months: former CBS News<br>executive Jonathan Klein, who<br>will oversee programming and<br>editorial direction at the<br>second-ranked cable news<br>network."
-          ],
-          [
-           "Cut-price carrier Virgin Blue<br>said Tuesday the cost of using<br>Australian airports is<br>spiraling upward and asked the<br>government to review the<br>deregulated system of charges."
-          ],
-          [
-           "Saudi Arabia, Kuwait and the<br>United Arab Emirates, which<br>account for almost half of<br>OPEC #39;s oil output, said<br>they #39;re committed to<br>boosting capacity to meet<br>soaring demand that has driven<br>prices to a record."
-          ],
-          [
-           "The US Commerce Department<br>said Thursday personal income<br>posted its biggest increase in<br>three months in August. The<br>government agency also said<br>personal spending was<br>unchanged after rising<br>strongly in July."
-          ],
-          [
-           " TOKYO (Reuters) - Tokyo's<br>Nikkei average opened up 0.54<br>percent on Monday with banks<br>and exporters leading the way<br>as a  stronger finish on Wall<br>Street and declining oil<br>prices soothed  worries over<br>the global economic outlook."
-          ],
-          [
-           "Bruce Wasserstein, head of<br>Lazard LLC, is asking partners<br>to take a one-third pay cut as<br>he readies the world #39;s<br>largest closely held<br>investment bank for a share<br>sale, people familiar with the<br>situation said."
-          ],
-          [
-           "The Lemon Bay Manta Rays were<br>not going to let a hurricane<br>get in the way of football. On<br>Friday, they headed to the<br>practice field for the first<br>time in eight"
-          ],
-          [
-           "Microsoft Corp. Chairman Bill<br>Gates has donated \\$400,000 to<br>a campaign in California<br>trying to win approval of a<br>measure calling for the state<br>to sell \\$3 billion in bonds<br>to fund stem-cell research."
-          ],
-          [
-           "Newspaper publisher Pulitzer<br>Inc. said Sunday that company<br>officials are considering a<br>possible sale of the firm to<br>boost shareholder value."
-          ],
-          [
-           "Shares of Merck  amp; Co.<br>plunged almost 10 percent<br>yesterday after a media report<br>said that documents show the<br>pharmaceutical giant hid or<br>denied"
-          ],
-          [
-           "Reuters - Wall Street was<br>expected to dip at\\Thursday's<br>opening, but shares of Texas<br>Instruments Inc.\\, may climb<br>after it gave upbeat earnings<br>guidance."
-          ],
-          [
-           "Late in August, Boeing #39;s<br>top sales execs flew to<br>Singapore for a crucial sales<br>pitch. They were close to<br>persuading Singapore Airlines,<br>one of the world #39;s leading<br>airlines, to buy the American<br>company #39;s new jet, the<br>mid-sized 7E7."
-          ],
-          [
-           "SBC Communications and<br>BellSouth will acquire<br>YellowPages.com with the goal<br>of building the site into a<br>nationwide online business<br>index, the companies said<br>Thursday."
-          ],
-          [
-           "The sounds of tinkling bells<br>could be heard above the<br>bustle of the Farmers Market<br>on the Long Beach Promenade,<br>leading shoppers to a row of<br>bright red tin kettles dotting<br>a pathway Friday."
-          ],
-          [
-           "LONDON Santander Central<br>Hispano of Spain looked<br>certain to clinch its bid for<br>the British mortgage lender<br>Abbey National, after HBOS,<br>Britain #39;s biggest home-<br>loan company, said Wednesday<br>it would not counterbid, and<br>after the European Commission<br>cleared"
-          ],
-          [
-           " WASHINGTON (Reuters) - The<br>Justice Department is<br>investigating possible<br>accounting fraud at Fannie<br>Mae, bringing  greater<br>government scrutiny to bear on<br>the mortgage finance  company,<br>already facing a parallel<br>inquiry by the SEC, a source<br>close to the matter said on<br>Thursday."
-          ],
-          [
-           "Indian industrial group Tata<br>agrees to invest \\$2bn in<br>Bangladesh, the biggest single<br>deal agreed by a firm in the<br>south Asian country."
-          ],
-          [
-           "The steel tubing company<br>reports sharply higher<br>earnings, but the stock is<br>falling."
-          ],
-          [
-           "Playboy Enterprises, the adult<br>entertainment company, has<br>announced plans to open a<br>private members club in<br>Shanghai even though the<br>company #39;s flagship men<br>#39;s magazine is still banned<br>in China."
-          ],
-          [
-           "TORONTO (CP) - Earnings<br>warnings from Celestica and<br>Coca-Cola along with a<br>slowdown in US industrial<br>production sent stock markets<br>lower Wednesday."
-          ],
-          [
-           "Eastman Kodak Co., the world<br>#39;s largest maker of<br>photographic film, said<br>Wednesday it expects sales of<br>digital products and services<br>to grow at an annual rate of<br>36 percent between 2003 and<br>2007, above prior growth rate<br>estimates of 26 percent<br>between 2002"
-          ],
-          [
-           "AFP - The Iraqi government<br>plans to phase out slowly<br>subsidies on basic products,<br>such as oil and electricity,<br>which comprise 50 percent of<br>public spending, equal to 15<br>billion dollars, the planning<br>minister said."
-          ],
-          [
-           "The federal agency that<br>insures pension plans said<br>that its deficit, already at<br>the highest in its history,<br>had doubled in its last fiscal<br>year, to \\$23.3 billion."
-          ],
-          [
-           "A Milan judge on Tuesday opens<br>hearings into whether to put<br>on trial 32 executives and<br>financial institutions over<br>the collapse of international<br>food group Parmalat in one of<br>Europe #39;s biggest fraud<br>cases."
-          ],
-          [
-           "The Bank of England on<br>Thursday left its benchmark<br>interest rate unchanged, at<br>4.75 percent, as policy makers<br>assessed whether borrowing<br>costs, already the highest in<br>the Group of Seven, are<br>constraining consumer demand."
-          ],
-          [
-           "Fashion retailers Austin Reed<br>and Ted Baker have reported<br>contrasting fortunes on the<br>High Street. Austin Reed<br>reported interim losses of 2."
-          ],
-          [
-           " NEW YORK (Reuters) - A<br>federal judge on Friday<br>approved  Citigroup Inc.'s<br>\\$2.6 billion settlement with<br>WorldCom Inc.  investors who<br>lost billions when an<br>accounting scandal plunged<br>the telecommunications company<br>into bankruptcy protection."
-          ],
-          [
-           "An unspecified number of<br>cochlear implants to help<br>people with severe hearing<br>loss are being recalled<br>because they may malfunction<br>due to ear moisture, the US<br>Food and Drug Administration<br>announced."
-          ],
-          [
-           "Profits triple at McDonald's<br>Japan after the fast-food<br>chain starts selling larger<br>burgers."
-          ],
-          [
-           "Britain #39;s inflation rate<br>fell in August further below<br>its 2.0 percent government-set<br>upper limit target with<br>clothing and footwear prices<br>actually falling, official<br>data showed on Tuesday."
-          ],
-          [
-           " LONDON (Reuters) - European<br>shares shrugged off a spike in<br>the euro to a fresh all-time<br>high Wednesday, with telecoms<br>again leading the way higher<br>after interim profits at<br>Britain's  mm02 beat<br>expectations."
-          ],
-          [
-           "WASHINGTON - Weighed down by<br>high energy prices, the US<br>economy grew slower than the<br>government estimated in the<br>April-June quarter, as higher<br>oil prices limited consumer<br>spending and contributed to a<br>record trade deficit."
-          ],
-          [
-           "CHICAGO United Airlines says<br>it will need even more labor<br>cuts than anticipated to get<br>out of bankruptcy. United told<br>a bankruptcy court judge in<br>Chicago today that it intends<br>to start talks with unions<br>next month on a new round of<br>cost savings."
-          ],
-          [
-           "The University of California,<br>Berkeley, has signed an<br>agreement with the Samoan<br>government to isolate, from a<br>tree, the gene for a promising<br>anti- Aids drug and to share<br>any royalties from the sale of<br>a gene-derived drug with the<br>people of Samoa."
-          ],
-          [
-           " TOKYO (Reuters) - Tokyo's<br>Nikkei average jumped 2.5<br>percent  by mid-afternoon on<br>Monday as semiconductor-<br>related stocks such  as<br>Advantest Corp. mirrored a<br>rally by their U.S. peers<br>while  banks and brokerages<br>extended last week's gains."
-          ],
-          [
-           "General Motors (GM) plans to<br>announce a massive<br>restructuring Thursday that<br>will eliminate as many as<br>12,000 jobs in Europe in a<br>move to stem the five-year<br>flow of red ink from its auto<br>operations in the region."
-          ],
-          [
-           " LONDON (Reuters) - Oil prices<br>held firm on Wednesday as<br>Hurricane Ivan closed off<br>crude output and shut<br>refineries in  the Gulf of<br>Mexico, while OPEC's Gulf<br>producers tried to  reassure<br>traders by recommending an<br>output hike."
-          ],
-          [
-           "State-owned, running a<br>monopoly on imports of jet<br>fuel to China #39;s fast-<br>growing aviation industry and<br>a prized member of Singapore<br>#39;s Stock Exchange."
-          ],
-          [
-           "Google has won a trade mark<br>dispute, with a District Court<br>judge finding that the search<br>engines sale of sponsored<br>search terms Geico and Geico<br>Direct did not breach car<br>insurance firm GEICOs rights<br>in the trade marked terms."
-          ],
-          [
-           "Wall Street bounded higher for<br>the second straight day<br>yesterday as investors reveled<br>in sharply falling oil prices<br>and the probusiness agenda of<br>the second Bush<br>administration. The Dow Jones<br>industrials gained more than<br>177 points for its best day of<br>2004, while the Standard  amp;<br>Poor's 500 closed at its<br>highest level since early<br>2002."
-          ],
-          [
-           "Key factors help determine if<br>outsourcing benefits or hurts<br>Americans."
-          ],
-          [
-           "The US Trade Representative on<br>Monday rejected the European<br>Union #39;s assertion that its<br>ban on beef from hormone-<br>treated cattle is now<br>justified by science and that<br>US and Canadian retaliatory<br>sanctions should be lifted."
-          ],
-          [
-           "NEW YORK -- Wall Street's<br>fourth-quarter rally gave<br>stock mutual funds a solid<br>performance for 2004, with<br>small-cap equity funds and<br>real estate funds scoring some<br>of the biggest returns. Large-<br>cap growth equities and<br>technology-focused funds had<br>the slimmest gains."
-          ],
-          [
-           "Big Food Group Plc, the UK<br>owner of the Iceland grocery<br>chain, said second-quarter<br>sales at stores open at least<br>a year dropped 3.3 percent,<br>the second consecutive<br>decline, after competitors cut<br>prices."
-          ],
-          [
-           " WASHINGTON (Reuters) - The<br>first case of soybean rust has<br>been found on the mainland<br>United States and could affect<br>U.S.  crops for the near<br>future, costing farmers<br>millions of dollars,  the<br>Agriculture Department said on<br>Wednesday."
-          ],
-          [
-           "The Supreme Court today<br>overturned a five-figure<br>damage award to an Alexandria<br>man for a local auto dealer<br>#39;s alleged loan scam,<br>ruling that a Richmond-based<br>federal appeals court had<br>wrongly"
-          ],
-          [
-           "Official figures show the<br>12-nation eurozone economy<br>continues to grow, but there<br>are warnings it may slow down<br>later in the year."
-          ],
-          [
-           "In upholding a lower court<br>#39;s ruling, the Supreme<br>Court rejected arguments that<br>the Do Not Call list violates<br>telemarketers #39; First<br>Amendment rights."
-          ],
-          [
-           "Infineon Technologies, the<br>second-largest chip maker in<br>Europe, said Wednesday that it<br>planned to invest about \\$1<br>billion in a new factory in<br>Malaysia to expand its<br>automotive chip business and<br>be closer to customers in the<br>region."
-          ],
-          [
-           " NEW YORK (Reuters) -<br>Washington Post Co. &lt;A HREF<br>=\"http://www.investor.reuters.<br>com/FullQuote.aspx?ticker=WPO.<br>N target=/stocks/quickinfo/ful<br>lquote\"&gt;WPO.N&lt;/A&gt;<br>said on  Friday that quarterly<br>profit jumped, beating<br>analysts'  forecasts, boosted<br>by results at its Kaplan<br>education unit and  television<br>broadcasting operations."
-          ],
-          [
-           "New orders for US-made durable<br>goods increased 0.2pc in<br>September, held back by a big<br>drop in orders for<br>transportation goods, the US<br>Commerce Department said<br>today."
-          ],
-          [
-           "Siblings are the first ever to<br>be convicted for sending<br>boatloads of junk e-mail<br>pushing bogus products. Also:<br>Microsoft takes MSN music<br>download on a Euro trip....<br>Nokia begins legal battle<br>against European<br>counterparts.... and more."
-          ],
-          [
-           "I always get a kick out of the<br>annual list published by<br>Forbes singling out the<br>richest people in the country.<br>It #39;s almost as amusing as<br>those on the list bickering<br>over their placement."
-          ],
-          [
-           "Williams-Sonoma Inc., operator<br>of home furnishing chains<br>including Pottery Barn, said<br>third-quarter earnings rose 19<br>percent, boosted by store<br>openings and catalog sales."
-          ],
-          [
-           "TOKYO - Mitsubishi Heavy<br>Industries said today it #39;s<br>in talks to buy a plot of land<br>in central Japan #39;s Nagoya<br>city from Mitsubishi Motors<br>for building aircraft parts."
-          ],
-          [
-           "Japan #39;s Sumitomo Mitsui<br>Financial Group Inc. said<br>Tuesday it proposed to UFJ<br>Holdings Inc. that the two<br>banks merge on an equal basis<br>in its latest attempt to woo<br>UFJ away from a rival suitor."
-          ],
-          [
-           "Oil futures prices were little<br>changed Thursday as traders<br>anxiously watched for<br>indications that the supply or<br>demand picture would change in<br>some way to add pressure to<br>the market or take some away."
-          ],
-          [
-           " CHICAGO (Reuters) - Delta Air<br>Lines Inc. &lt;A HREF=\"http://<br>www.investor.reuters.com/FullQ<br>uote.aspx?ticker=DAL.N target=<br>/stocks/quickinfo/fullquote\"&g<br>t;DAL.N&lt;/A&gt; said on<br>Tuesday it will cut wages by<br>10 percent and its chief<br>executive  will go unpaid for<br>the rest of the year, but it<br>still warned of  bankruptcy<br>within weeks unless more cuts<br>are made."
-          ],
-          [
-           " WASHINGTON (Reuters) - A<br>former Fannie Mae &lt;A HREF=\"<br>http://www.investor.reuters.co<br>m/FullQuote.aspx?ticker=FNM.N <br>target=/stocks/quickinfo/fullq<br>uote\"&gt;FNM.N&lt;/A&gt;<br>employee  who gave U.S.<br>officials information about<br>what he saw as  accounting<br>irregularities will not<br>testify as planned before a<br>congressional hearing next<br>week, a House committee said<br>on  Friday."
-          ],
-          [
-           "PARIS, Nov 4 (AFP) - The<br>European Aeronautic Defence<br>and Space Company reported<br>Thursday that its nine-month<br>net profit more than doubled,<br>thanks largely to sales of<br>Airbus aircraft, and raised<br>its full-year forecast."
-          ],
-          [
-           "The number of people claiming<br>unemployment benefit last<br>month fell by 6,100 to<br>830,200, according to the<br>Office for National<br>Statistics."
-          ],
-          [
-           "Tyler airlines are gearing up<br>for the beginning of holiday<br>travel, as officials offer<br>tips to help travelers secure<br>tickets and pass through<br>checkpoints with ease."
-          ],
-          [
-           "A criminal trial scheduled to<br>start Monday involving former<br>Enron Corp. executives may<br>shine a rare and potentially<br>harsh spotlight on the inner<br>workings"
-          ],
-          [
-           "Wal-Mart Stores Inc. #39;s<br>Asda, the UK #39;s second<br>biggest supermarket chain,<br>surpassed Marks  amp; Spencer<br>Group Plc as Britain #39;s<br>largest clothing retailer in<br>the last three months,<br>according to the Sunday<br>Telegraph."
-          ],
-          [
-           "Oil supply concerns and broker<br>downgrades of blue-chip<br>companies left stocks mixed<br>yesterday, raising doubts that<br>Wall Street #39;s year-end<br>rally would continue."
-          ],
-          [
-           "Genentech Inc. said the<br>marketing of Rituxan, a cancer<br>drug that is the company #39;s<br>best-selling product, is the<br>subject of a US criminal<br>investigation."
-          ],
-          [
-           " The world's No. 2 soft drink<br>company said on Thursday<br>quarterly profit rose due to<br>tax benefits."
-          ],
-          [
-           "USATODAY.com - Personal<br>finance software programs are<br>the computer industry's<br>version of veggies: Everyone<br>knows they're good for you,<br>but it's just hard to get<br>anyone excited about them."
-          ],
-          [
-           " NEW YORK (Reuters) - The<br>dollar rebounded on Monday<br>after  last week's heavy<br>selloff, but analysts were<br>uncertain if the  rally would<br>hold after fresh economic data<br>suggested the  December U.S.<br>jobs report due Friday might<br>not live up to  expectations."
-          ],
-          [
-           " NEW YORK (Reuters) - U.S.<br>stock futures pointed to a<br>lower  open on Wall Street on<br>Thursday, extending the<br>previous  session's sharp<br>fall, with rising energy<br>prices feeding  investor<br>concerns about corporate<br>profits and slower growth."
-          ],
-          [
-           "MILAN General Motors and Fiat<br>on Wednesday edged closer to<br>initiating a legal battle that<br>could pit the two carmakers<br>against each other in a New<br>York City court room as early<br>as next month."
-          ],
-          [
-           "Two of the Ford Motor Company<br>#39;s most senior executives<br>retired on Thursday in a sign<br>that the company #39;s deep<br>financial crisis has abated,<br>though serious challenges<br>remain."
-          ],
-          [
-           " LONDON (Reuters) - Wall<br>Street was expected to start<br>little  changed on Friday as<br>investors continue to fret<br>over the impact  of high oil<br>prices on earnings, while<br>Boeing &lt;A HREF=\"http://www.<br>investor.reuters.com/FullQuote<br>.aspx?ticker=BA.N target=/stoc<br>ks/quickinfo/fullquote\"&gt;BA.<br>N&lt;/A&gt; will be  eyed<br>after it reiterated its<br>earnings forecast."
-          ],
-          [
-           "Having an always-on, fast net<br>connection is changing the way<br>Britons use the internet,<br>research suggests."
-          ],
-          [
-           "Crude oil futures prices<br>dropped below \\$51 a barrel<br>yesterday as supply concerns<br>ahead of the Northern<br>Hemisphere winter eased after<br>an unexpectedly high rise in<br>US inventories."
-          ],
-          [
-           "By Lilly Vitorovich Of DOW<br>JONES NEWSWIRES SYDNEY (Dow<br>Jones)--Rupert Murdoch has<br>seven weeks to convince News<br>Corp. (NWS) shareholders a<br>move to the US will make the<br>media conglomerate more<br>attractive to"
-          ],
-          [
-           "The long-term economic health<br>of the United States is<br>threatened by \\$53 trillion in<br>government debts and<br>liabilities that start to come<br>due in four years when baby<br>boomers begin to retire."
-          ],
-          [
-           "The Moscow Arbitration Court<br>ruled on Monday that the YUKOS<br>oil company must pay RUR<br>39.113bn (about \\$1.34bn) as<br>part of its back tax claim for<br>2001."
-          ],
-          [
-           "NOVEMBER 11, 2004 -- Bankrupt<br>US Airways this morning said<br>it had reached agreements with<br>lenders and lessors to<br>continue operating nearly all<br>of its mainline and US Airways<br>Express fleets."
-          ],
-          [
-           "The US government asks the<br>World Trade Organisation to<br>step in to stop EU member<br>states from \"subsidising\"<br>planemaker Airbus."
-          ],
-          [
-           "Boston Scientific Corp.<br>(BSX.N: Quote, Profile,<br>Research) said on Wednesday it<br>received US regulatory<br>approval for a device to treat<br>complications that arise in<br>patients with end-stage kidney<br>disease who need dialysis."
-          ],
-          [
-           "With the economy slowly<br>turning up, upgrading hardware<br>has been on businesses radar<br>in the past 12 months as their<br>number two priority."
-          ],
-          [
-           "Toyota Motor Corp. #39;s<br>shares fell for a second day,<br>after the world #39;s second-<br>biggest automaker had an<br>unexpected quarterly profit<br>drop."
-          ],
-          [
-           "Britain-based HBOS says it<br>will file a complaint to the<br>European Commission against<br>Spanish bank Santander Central<br>Hispano (SCH) in connection<br>with SCH #39;s bid to acquire<br>British bank Abbey National"
-          ],
-          [
-           "Verizon Wireless on Thursday<br>announced an agreement to<br>acquire all the PCS spectrum<br>licenses of NextWave Telecom<br>Inc. in 23 markets for \\$3<br>billion."
-          ],
-          [
-           " WASHINGTON (Reuters) - The<br>PIMCO mutual fund group has<br>agreed to pay \\$50 million to<br>settle fraud charges involving<br>improper rapid dealing in<br>mutual fund shares, the U.S.<br>Securities and Exchange<br>Commission said on Monday."
-          ],
-          [
-           "The Conference Board reported<br>Thursday that the Leading<br>Economic Index fell for a<br>third consecutive month in<br>August, suggesting slower<br>economic growth ahead amid<br>rising oil prices."
-          ],
-          [
-           " SAN FRANCISCO (Reuters) -<br>Software maker Adobe Systems<br>Inc.&lt;A HREF=\"http://www.inv<br>estor.reuters.com/FullQuote.as<br>px?ticker=ADBE.O target=/stock<br>s/quickinfo/fullquote\"&gt;ADBE<br>.O&lt;/A&gt; on Thursday<br>posted a quarterly profit that<br>rose  more than one-third from<br>a year ago, but shares fell 3<br>percent  after the maker of<br>Photoshop and Acrobat software<br>did not raise  forecasts for<br>fiscal 2005."
-          ],
-          [
-           "William Morrison Supermarkets<br>has agreed to sell 114 small<br>Safeway stores and a<br>distribution centre for 260.2<br>million pounds. Morrison<br>bought these stores as part of<br>its 3 billion pound"
-          ],
-          [
-           "Pepsi pushes a blue version of<br>Mountain Dew only at Taco<br>Bell. Is this a winning<br>strategy?"
-          ],
-          [
-           "As the election approaches,<br>Congress abandons all pretense<br>of fiscal responsibility,<br>voting tax cuts that would<br>drive 10-year deficits past<br>\\$3 trillion."
-          ],
-          [
-           "ServiceMaster profitably<br>bundles services and pays a<br>healthy 3.5 dividend."
-          ],
-          [
-           "\\$222.5 million -- in an<br>ongoing securities class<br>action lawsuit against Enron<br>Corp. The settlement,<br>announced Friday and"
-          ],
-          [
-           " NEW YORK (Reuters) -<br>Lifestyle guru Martha Stewart<br>said on  Wednesday she wants<br>to start serving her prison<br>sentence for  lying about a<br>suspicious stock sale as soon<br>as possible, so she  can put<br>her \"nightmare\" behind her."
-          ],
-          [
-           "Apple Computer's iPod remains<br>the king of digital music<br>players, but robust pretenders<br>to the throne have begun to<br>emerge in the Windows<br>universe. One of them is the<br>Zen Touch, from Creative Labs."
-          ],
-          [
-           "SAN FRANCISCO (CBS.MW) --<br>Crude futures closed under<br>\\$46 a barrel Wednesday for<br>the first time since late<br>September and heating-oil and<br>unleaded gasoline prices<br>dropped more than 6 percent<br>following an across-the-board<br>climb in US petroleum<br>inventories."
-          ],
-          [
-           "The University of Iowa #39;s<br>market for US presidential<br>futures, founded 16-years ago,<br>has been overtaken by a<br>Dublin-based exchange that is<br>now 25 times larger."
-          ],
-          [
-           "President Bush #39;s drive to<br>deploy a multibillion-dollar<br>shield against ballistic<br>missiles was set back on<br>Wednesday by what critics<br>called a stunning failure of<br>its first full flight test in<br>two years."
-          ],
-          [
-           "Air travelers moved one step<br>closer to being able to talk<br>on cell phones and surf the<br>Internet from laptops while in<br>flight, thanks to votes by the<br>Federal Communications<br>Commission yesterday."
-          ],
-          [
-           "DESPITE the budget deficit,<br>continued increases in oil and<br>consumer prices, the economy,<br>as measured by gross domestic<br>product, grew by 6.3 percent<br>in the third"
-          ],
-          [
-           "Consumers who cut it close by<br>paying bills from their<br>checking accounts a couple of<br>days before depositing funds<br>will be out of luck under a<br>new law that takes effect Oct.<br>28."
-          ],
-          [
-           "Component problems meant<br>Brillian's new big screens<br>missed the NFL's kickoff<br>party."
-          ],
-          [
-           "A Russian court on Thursday<br>rejected an appeal by the<br>Yukos oil company seeking to<br>overturn a freeze on the<br>accounts of the struggling oil<br>giant #39;s core subsidiaries."
-          ],
-          [
-           "Switzerland #39;s struggling<br>national airline reported a<br>second-quarter profit of 45<br>million Swiss francs (\\$35.6<br>million) Tuesday, although its<br>figures were boosted by a<br>legal settlement in France."
-          ],
-          [
-           "SIPTU has said it is strongly<br>opposed to any privatisation<br>of Aer Lingus as pressure<br>mounts on the Government to<br>make a decision on the future<br>funding of the airline."
-          ],
-          [
-           "Molson Inc. Chief Executive<br>Officer Daniel O #39;Neill<br>said he #39;ll provide<br>investors with a positive #39;<br>#39; response to their<br>concerns over the company<br>#39;s plan to let stock-<br>option holders vote on its<br>planned merger with Adolph<br>Coors Co."
-          ],
-          [
-           " NEW YORK (Reuters) - The<br>world's largest gold producer,<br>Newmont Mining Corp. &lt;A HRE<br>F=\"http://www.investor.reuters<br>.com/FullQuote.aspx?ticker=NEM<br>.N target=/stocks/quickinfo/fu<br>llquote\"&gt;NEM.N&lt;/A&gt;,<br>on Wednesday said higher gold<br>prices drove up quarterly<br>profit by 12.5 percent, even<br>though  it sold less of the<br>precious metal."
-          ],
-          [
-           " WASHINGTON (Reuters) - Fannie<br>Mae executives and their<br>regulator squared off on<br>Wednesday, with executives<br>denying any  accounting<br>irregularity and the regulator<br>saying the housing  finance<br>company's management may need<br>to go."
-          ],
-          [
-           "As the first criminal trial<br>stemming from the financial<br>deals at Enron opened in<br>Houston on Monday, it is<br>notable as much for who is not<br>among the six defendants as<br>who is - and for how little<br>money was involved compared<br>with how much in other Enron"
-          ],
-          [
-           "LONDON (CBS.MW) -- British<br>bank Barclays on Thursday said<br>it is in talks to buy a<br>majority stake in South<br>African bank ABSA. Free!"
-          ],
-          [
-           "Investors sent stocks sharply<br>lower yesterday as oil prices<br>continued their climb higher<br>and new questions about the<br>safety of arthritis drugs<br>pressured pharmaceutical<br>stocks."
-          ],
-          [
-           "Reuters - The head of UAL<br>Corp.'s United\\Airlines said<br>on Thursday the airline's<br>restructuring plan\\would lead<br>to a significant number of job<br>losses, but it was\\not clear<br>how many."
-          ],
-          [
-           "com September 14, 2004, 9:12<br>AM PT. With the economy slowly<br>turning up, upgrading hardware<br>has been on businesses radar<br>in the past 12 months as their<br>number two priority."
-          ],
-          [
-           " NEW YORK (Reuters) -<br>Children's Place Retail Stores<br>Inc.  &lt;A HREF=\"http://www.i<br>nvestor.reuters.com/FullQuote.<br>aspx?ticker=PLCE.O target=/sto<br>cks/quickinfo/fullquote\"&gt;PL<br>CE.O&lt;/A&gt; said on<br>Wednesday it will buy 313<br>retail stores from  Walt<br>Disney Co., and its stock rose<br>more than 14 percent in  early<br>morning trade."
-          ],
-          [
-           "ALBANY, N.Y. -- A California-<br>based company that brokers<br>life, accident, and disability<br>policies for leading US<br>companies pocketed millions of<br>dollars a year in hidden<br>payments from insurers and<br>from charges on clients'<br>unsuspecting workers, New York<br>Attorney General Eliot Spitzer<br>charged yesterday."
-          ],
-          [
-           "NORTEL Networks plans to slash<br>its workforce by 3500, or ten<br>per cent, as it struggles to<br>recover from an accounting<br>scandal that toppled three top<br>executives and led to a<br>criminal investigation and<br>lawsuits."
-          ],
-          [
-           "Ebay Inc. (EBAY.O: Quote,<br>Profile, Research) said on<br>Friday it would buy Rent.com,<br>an Internet housing rental<br>listing service, for \\$415<br>million in a deal that gives<br>it access to a new segment of<br>the online real estate market."
-          ],
-          [
-           "Noranda Inc., Canada #39;s<br>biggest mining company, began<br>exclusive talks on a takeover<br>proposal from China Minmetals<br>Corp. that would lead to the<br>spinoff of Noranda #39;s<br>aluminum business to<br>shareholders."
-          ],
-          [
-           "Google warned Thursday that<br>increased competition and the<br>maturing of the company would<br>result in an  quot;inevitable<br>quot; slowing of its growth."
-          ],
-          [
-           " TOKYO (Reuters) - The Nikkei<br>average rose 0.55 percent by<br>midsession on Wednesday as<br>some techs including Advantest<br>Corp.  gained ground after<br>Wall Street reacted positively<br>to results  from Intel Corp.<br>released after the U.S. market<br>close."
-          ],
-          [
-           " ATLANTA (Reuters) - Soft<br>drink giant Coca-Cola Co.<br>&lt;A HREF=\"http://www.investo<br>r.reuters.com/FullQuote.aspx?t<br>icker=KO.N target=/stocks/quic<br>kinfo/fullquote\"&gt;KO.N&lt;/A<br>&gt;,  stung by a prolonged<br>downturn in North America,<br>Germany and  other major<br>markets, on Thursday lowered<br>its key long-term  earnings<br>and sales targets."
-          ],
-          [
-           "A Canadian court approved Air<br>Canada #39;s (AC.TO: Quote,<br>Profile, Research) plan of<br>arrangement with creditors on<br>Monday, clearing the way for<br>the world #39;s 11th largest<br>airline to emerge from<br>bankruptcy protection at the<br>end of next month"
-          ],
-          [
-           " LONDON (Reuters) - Oil prices<br>eased on Monday after rebels<br>in Nigeria withdrew a threat<br>to target oil operations, but<br>lingering concerns over<br>stretched supplies ahead of<br>winter kept  prices close to<br>\\$50."
-          ],
-          [
-           " LONDON (Reuters) - Oil prices<br>climbed above \\$42 a barrel on<br>Wednesday, rising for the<br>third day in a row as cold<br>weather  gripped the U.S.<br>Northeast, the world's biggest<br>heating fuel  market."
-          ],
-          [
-           "Travelers headed home for<br>Thanksgiving were greeted<br>Wednesday with snow-covered<br>highways in the Midwest, heavy<br>rain and tornadoes in parts of<br>the South, and long security<br>lines at some of the nation<br>#39;s airports."
-          ],
-          [
-           "The union representing flight<br>attendants on Friday said it<br>mailed more than 5,000 strike<br>authorization ballots to its<br>members employed by US Airways<br>as both sides continued talks<br>that are expected to stretch<br>through the weekend."
-          ],
-          [
-           "LOS ANGELES (CBS.MW) - The US<br>Securities and Exchange<br>Commission is probing<br>transactions between Delphi<br>Corp and EDS, which supplies<br>the automotive parts and<br>components giant with<br>technology services, Delphi<br>said late Wednesday."
-          ],
-          [
-           "MONTREAL (CP) - Molson Inc.<br>and Adolph Coors Co. are<br>sweetening their brewery<br>merger plan with a special<br>dividend to Molson<br>shareholders worth \\$381<br>million."
-          ],
-          [
-           "WELLINGTON: National carrier<br>Air New Zealand said yesterday<br>the Australian Competition<br>Tribunal has approved a<br>proposed alliance with Qantas<br>Airways Ltd, despite its<br>rejection in New Zealand."
-          ],
-          [
-           "\"Everyone's nervous,\" Acting<br>Undersecretary of Defense<br>Michael W. Wynne warned in a<br>confidential e-mail to Air<br>Force Secretary James G. Roche<br>on July 8, 2003."
-          ],
-          [
-           "Reuters - Alpharma Inc.  on<br>Friday began\\selling a cheaper<br>generic version of Pfizer<br>Inc.'s   #36;3\\billion a year<br>epilepsy drug Neurontin<br>without waiting for a\\court<br>ruling on Pfizer's request to<br>block the copycat medicine."
-          ],
-          [
-           "Opinion: Privacy hysterics<br>bring old whine in new bottles<br>to the Internet party. The<br>desktop search beta from this<br>Web search leader doesn #39;t<br>do anything you can #39;t do<br>already."
-          ],
-          [
-           "The Nordics fared well because<br>of their long-held ideals of<br>keeping corruption clamped<br>down and respect for<br>contracts, rule of law and<br>dedication to one-on-one<br>business relationships."
-          ],
-          [
-           "Don't bother with the small<br>stuff. Here's what really<br>matters to your lender."
-          ],
-          [
-           "UK interest rates have been<br>kept on hold at 4.75 following<br>the latest meeting of the Bank<br>of England #39;s rate-setting<br>committee."
-          ],
-          [
-           "Resurgent oil prices paused<br>for breath as the United<br>States prepared to draw on its<br>emergency reserves to ease<br>supply strains caused by<br>Hurricane Ivan."
-          ],
-          [
-           "President Bush, who credits<br>three years of tax relief<br>programs with helping<br>strengthen the slow economy,<br>said Saturday he would sign<br>into law the Working Families<br>Tax Relief Act to preserve tax<br>cuts."
-          ],
-          [
-           "HEN investors consider the<br>bond market these days, the<br>low level of interest rates<br>should be more cause for worry<br>than for gratitude."
-          ],
-          [
-           " NEW YORK (Reuters) - U.S.<br>stocks rallied on Monday after<br>software maker PeopleSoft Inc.<br>&lt;A HREF=\"http://www.investo<br>r.reuters.com/FullQuote.aspx?t<br>icker=PSFT.O target=/stocks/qu<br>ickinfo/fullquote\"&gt;PSFT.O&l<br>t;/A&gt; accepted a sweetened<br>\\$10.3 billion buyout by rival<br>Oracle Corp.'s &lt;A HREF=\"htt<br>p://www.investor.reuters.com/F<br>ullQuote.aspx?ticker=ORCL.O ta<br>rget=/stocks/quickinfo/fullquo<br>te\"&gt;ORCL.O&lt;/A&gt; and<br>other  big deals raised<br>expectations of more<br>takeovers."
-          ],
-          [
-           "The New Jersey-based Accoona<br>Corporation, an industry<br>pioneer in artificial<br>intelligence search<br>technology, announced on<br>Monday the launch of Accoona."
-          ],
-          [
-           "Goldman Sachs Group Inc. on<br>Thursday said fourth-quarter<br>profit rose as its fixed-<br>income, currency and<br>commodities business soared<br>while a rebounding stock<br>market boosted investment<br>banking."
-          ],
-          [
-           " NEW YORK (Reuters) - The<br>dollar rose on Monday in a<br>retracement from last week's<br>steep losses, but dealers said<br>the  bias toward a weaker<br>greenback remained intact."
-          ],
-          [
-           "Moscow - Russia plans to<br>combine Gazprom, the world<br>#39;s biggest natural gas<br>producer, with state-owned oil<br>producer Rosneft, easing rules<br>for trading Gazprom shares and<br>creating a company that may<br>dominate the country #39;s<br>energy industry."
-          ],
-          [
-           "Diversified manufacturer<br>Honeywell International Inc.<br>(HON.N: Quote, Profile,<br>Research) posted a rise in<br>quarterly profit as strong<br>demand for aerospace equipment<br>and automobile components"
-          ],
-          [
-           "Reuters - U.S. housing starts<br>jumped a\\larger-than-expected<br>6.4 percent in October to the<br>busiest pace\\since December as<br>buyers took advantage of low<br>mortgage rates,\\a government<br>report showed on Wednesday."
-          ],
-          [
-           "The Securities and Exchange<br>Commission ordered mutual<br>funds to stop paying higher<br>commissions to brokers who<br>promote the companies' funds<br>and required portfolio<br>managers to reveal investments<br>in funds they supervise."
-          ],
-          [
-           "Sumitomo Mitsui Financial<br>Group (SMFG), Japans second<br>largest bank, today put<br>forward a 3,200 billion (\\$29<br>billion) takeover bid for<br>United Financial Group (UFJ),<br>the countrys fourth biggest<br>lender, in an effort to regain<br>initiative in its bidding"
-          ],
-          [
-           " NEW YORK (Reuters) - U.S.<br>chain store retail sales<br>slipped  during the<br>Thanksgiving holiday week, as<br>consumers took  advantage of<br>discounted merchandise, a<br>retail report said on<br>Tuesday."
-          ],
-          [
-           "By George Chamberlin , Daily<br>Transcript Financial<br>Correspondent. Concerns about<br>oil production leading into<br>the winter months sent shivers<br>through the stock market<br>Wednesday."
-          ],
-          [
-           "Airbus has withdrawn a filing<br>that gave support for<br>Microsoft in an antitrust case<br>before the European Union<br>#39;s Court of First Instance,<br>a source close to the<br>situation said on Friday."
-          ],
-          [
-           " NEW YORK (Reuters) - U.S.<br>stocks rose on Wednesday<br>lifted  by a merger between<br>retailers Kmart and Sears,<br>better-than-expected earnings<br>from Hewlett-Packard and data<br>showing a slight rise in core<br>inflation."
-          ],
-          [
-           "European Commission president<br>Romano Prodi has unveiled<br>proposals to loosen the<br>deficit rules under the EU<br>Stability Pact. The loosening<br>was drafted by monetary<br>affairs commissioner Joaquin<br>Almunia, who stood beside the<br>president at the announcement."
-          ],
-          [
-           "Retail sales in Britain saw<br>the fastest growth in<br>September since January,<br>casting doubts on the view<br>that the economy is slowing<br>down, according to official<br>figures released Thursday."
-          ],
-          [
-           " NEW YORK (Reuters) -<br>Interstate Bakeries Corp.<br>&lt;A HREF=\"http://www.investo<br>r.reuters.com/FullQuote.aspx?t<br>icker=IBC.N target=/stocks/qui<br>ckinfo/fullquote\"&gt;IBC.N&lt;<br>/A&gt;,  maker of Hostess<br>Twinkies and Wonder Bread,<br>filed for  bankruptcy on<br>Wednesday after struggling<br>with more than \\$1.3  billion<br>in debt and high costs."
-          ],
-          [
-           "Delta Air Lines (DAL.N: Quote,<br>Profile, Research) on Thursday<br>said it reached a deal with<br>FedEx Express to sell eight<br>McDonnell Douglas MD11<br>aircraft and four spare<br>engines for delivery in 2004."
-          ],
-          [
-           "Leading OPEC producer Saudi<br>Arabia said on Monday in<br>Vienna, Austria, that it had<br>made a renewed effort to<br>deflate record high world oil<br>prices by upping crude output<br>again."
-          ],
-          [
-           "The founders of the Pilgrim<br>Baxter  amp; Associates money-<br>management firm agreed<br>yesterday to personally fork<br>over \\$160 million to settle<br>charges they allowed a friend<br>to"
-          ],
-          [
-           "IBM Corp. Tuesday announced<br>plans to acquire software<br>vendor Systemcorp ALG for an<br>undisclosed amount. Systemcorp<br>of Montreal makes project<br>portfolio management software<br>aimed at helping companies<br>better manage their IT<br>projects."
-          ],
-          [
-           "Forbes.com - By now you<br>probably know that earnings of<br>Section 529 college savings<br>accounts are free of federal<br>tax if used for higher<br>education. But taxes are only<br>part of the problem. What if<br>your investments tank? Just<br>ask Laurence and Margo<br>Williams of Alexandria, Va. In<br>2000 they put  #36;45,000 into<br>the Virginia Education Savings<br>Trust to open accounts for<br>daughters Lea, now 5, and<br>Anne, now 3. Since then their<br>investment has shrunk 5 while<br>the average private college<br>tuition has climbed 18 to<br>#36;18,300."
-          ],
-          [
-           "Coca-Cola Amatil Ltd.,<br>Australia #39;s biggest soft-<br>drink maker, offered A\\$500<br>million (\\$382 million) in<br>cash and stock for fruit<br>canner SPC Ardmona Ltd."
-          ],
-          [
-           "US technology shares tumbled<br>on Friday after technology<br>bellwether Intel Corp.<br>(INTC.O: Quote, Profile,<br>Research) slashed its revenue<br>forecast, but blue chips were<br>only moderately lower as drug<br>and industrial stocks made<br>solid gains."
-          ],
-          [
-           " WASHINGTON (Reuters) - Final<br>U.S. government tests on an<br>animal suspected of having mad<br>cow disease were not yet<br>complete, the U.S. Agriculture<br>Department said, with no<br>announcement on the results<br>expected on Monday."
-          ],
-          [
-           "Metro, Germany's biggest<br>retailer, turns in weaker-<br>than-expected profits as sales<br>at its core supermarkets<br>division dip lower."
-          ],
-          [
-           "BOSTON (CBS.MW) -- First<br>Command has reached a \\$12<br>million settlement with<br>federal regulators for making<br>misleading statements and<br>omitting important information<br>when selling mutual funds to<br>US military personnel."
-          ],
-          [
-           "The federal government, banks<br>and aircraft lenders are<br>putting the clamps on<br>airlines, particularly those<br>operating under bankruptcy<br>protection."
-          ],
-          [
-           "EURO DISNEY, the financially<br>crippled French theme park<br>operator, has admitted that<br>its annual losses more than<br>doubled last financial year as<br>it was hit by a surge in<br>costs."
-          ],
-          [
-           "WASHINGTON The idea of a no-<br>bid contract for maintaining<br>airport security equipment has<br>turned into a non-starter for<br>the Transportation Security<br>Administration."
-          ],
-          [
-           "Eyetech (EYET:Nasdaq - news -<br>research) did not open for<br>trading Friday because a Food<br>and Drug Administration<br>advisory committee is meeting<br>to review the small New York-<br>based biotech #39;s<br>experimental eye disease drug."
-          ],
-          [
-           "On September 13, 2001, most<br>Americans were still reeling<br>from the shock of the<br>terrorist attacks on New York<br>and the Pentagon two days<br>before."
-          ],
-          [
-           "Domestic air travelers could<br>be surfing the Web by 2006<br>with government-approved<br>technology that allows people<br>access to high-speed Internet<br>connections while they fly."
-          ],
-          [
-           "GENEVA: Cross-border<br>investment is set to bounce in<br>2004 after three years of deep<br>decline, reflecting a stronger<br>world economy and more<br>international merger activity,<br>the United Nations (UN) said<br>overnight."
-          ],
-          [
-           "Chewing gum giant Wm. Wrigley<br>Jr. Co. on Thursday said it<br>plans to phase out production<br>of its Eclipse breath strips<br>at a plant in Phoenix, Arizona<br>and shift manufacturing to<br>Poznan, Poland."
-          ],
-          [
-           "com September 16, 2004, 7:58<br>AM PT. This fourth priority<br>#39;s main focus has been<br>improving or obtaining CRM and<br>ERP software for the past year<br>and a half."
-          ],
-          [
-           "Tightness in the labour market<br>notwithstanding, the prospects<br>for hiring in the third<br>quarter are down from the<br>second quarter, according to<br>the new Manpower Employment<br>Outlook Survey."
-          ],
-          [
-           " NEW YORK (Reuters) - The<br>dollar rose on Friday, after a<br>U.S. report showed consumer<br>prices in line with<br>expections,  reminding<br>investors that the Federal<br>Reserve was likely to<br>continue raising interest<br>rates, analysts said."
-          ],
-          [
-           "Last year some election<br>watchers made a bold<br>prediction that this<br>presidential election would<br>set a record: the first half<br>billion dollar campaign in<br>hard money alone."
-          ],
-          [
-           "It #39;s one more blow to<br>patients who suffer from<br>arthritis. Pfizer, the maker<br>of Celebrex, says it #39;s<br>painkiller poses an increased<br>risk of heart attacks to<br>patients using the drugs."
-          ],
-          [
-           "The economic growth rate in<br>the July-September period was<br>revised slightly downward from<br>an already weak preliminary<br>report, the government said<br>Wednesday."
-          ],
-          [
-           "A drug company executive who<br>spoke out in support of<br>Montgomery County's proposal<br>to import drugs from Canada<br>and similar legislation before<br>Congress said that his company<br>has launched an investigation<br>into his political activities."
-          ],
-          [
-           "SYDNEY (AFP) - Australia #39;s<br>commodity exports are forecast<br>to increase by 15 percent to a<br>record 95 billion dollars (71<br>million US), the government<br>#39;s key economic forecaster<br>said."
-          ],
-          [
-           "Google won a major legal<br>victory when a federal judge<br>ruled that the search engines<br>advertising policy does not<br>violate federal trademark<br>laws."
-          ],
-          [
-           "AT amp;T Corp. on Thursday<br>said it is reducing one fifth<br>of its workforce this year and<br>will record a non-cash charge<br>of approximately \\$11."
-          ],
-          [
-           "A rift appeared within Canada<br>#39;s music industry yesterday<br>as prominent artists called on<br>the CRTC to embrace satellite<br>radio and the industry warned<br>of lost revenue and job<br>losses."
-          ],
-          [
-           "NEW DELHI: India and Pakistan<br>agreed on Monday to step up<br>cooperation in the energy<br>sector, which could lead to<br>Pakistan importing large<br>amounts of diesel fuel from<br>its neighbour, according to<br>Pakistani Foreign Minister<br>Khurshid Mehmood Kasuri."
-          ],
-          [
-           "TORONTO (CP) - Glamis Gold of<br>Reno, Nev., is planning a<br>takeover bid for Goldcorp Inc.<br>of Toronto - but only if<br>Goldcorp drops its<br>\\$2.4-billion-Cdn offer for<br>another Canadian firm, made in<br>early December."
-          ],
-          [
-           "This week will see the release<br>of October new and existing<br>home sales, a measure of<br>strength in the housing<br>industry. But the short<br>holiday week will also leave<br>investors looking ahead to the<br>holiday travel season."
-          ],
-          [
-           " BETHESDA, Md. (Reuters) - The<br>use of some antidepressant<br>drugs appears linked to an<br>increase in suicidal behavior<br>in  some children and teen-<br>agers, a U.S. advisory panel<br>concluded  on Tuesday."
-          ],
-          [
-           " NEW YORK (Reuters) - U.S.<br>technology stocks opened lower<br>on  Thursday after a sales<br>warning from Applied Materials<br>Inc.  &lt;A HREF=\"http://www.i<br>nvestor.reuters.com/FullQuote.<br>aspx?ticker=AMAT.O target=/sto<br>cks/quickinfo/fullquote\"&gt;AM<br>AT.O&lt;/A&gt;, while weekly<br>jobless claims data met Wall<br>Street's  expectations,<br>leaving the Dow and S P 500<br>market measures  little<br>changed."
-          ],
-          [
-           "CHICAGO : Interstate Bakeries<br>Corp., the maker of popular,<br>old-style snacks Twinkies and<br>Hostess Cakes, filed for<br>bankruptcy, citing rising<br>costs and falling sales."
-          ],
-          [
-           "Delta Air Lines (DAL:NYSE -<br>commentary - research) will<br>cut employees and benefits but<br>give a bigger-than-expected<br>role to Song, its low-cost<br>unit, in a widely anticipated<br>but still unannounced<br>overhaul, TheStreet.com has<br>learned."
-          ],
-          [
-           "Instead of the skinny black<br>line, showing a hurricane<br>#39;s forecast track,<br>forecasters have drafted a<br>couple of alternative graphics<br>to depict where the storms<br>might go -- and they want your<br>opinion."
-          ],
-          [
-           "BERLIN - Volkswagen AG #39;s<br>announcement this week that it<br>has forged a new partnership<br>deal with Malaysian carmaker<br>Proton comes as a strong euro<br>and Europe #39;s weak economic<br>performance triggers a fresh<br>wave of German investment in<br>Asia."
-          ],
-          [
-           "Consumers in Dublin pay more<br>for basic goods and services<br>that people elsewhere in the<br>country, according to figures<br>released today by the Central<br>Statistics Office."
-          ],
-          [
-           "LIBERTY Media #39;s move last<br>week to grab up to 17.1 per<br>cent of News Corporation<br>voting stock has prompted the<br>launch of a defensive<br>shareholder rights plan."
-          ],
-          [
-           "The blue-chip Hang Seng Index<br>rose 171.88 points, or 1.22<br>percent, to 14,066.91. On<br>Friday, the index had slipped<br>31.58 points, or 0.2 percent."
-          ],
-          [
-           "Shares plunge after company<br>says its vein graft treatment<br>failed to show benefit in<br>late-stage test. CHICAGO<br>(Reuters) - Biotechnology<br>company Corgentech Inc."
-          ],
-          [
-           "US blue-chip stocks rose<br>slightly on Friday as<br>government data showed better-<br>than-expected demand in August<br>for durable goods other than<br>transportation equipment, but<br>climbing oil prices limited<br>gains."
-          ],
-          [
-           "Business software maker<br>PeopleSoft Inc. said Monday<br>that it expects third-quarter<br>revenue to range between \\$680<br>million and \\$695 million,<br>above average Wall Street<br>estimates of \\$651."
-          ],
-          [
-           "Reuters - Enron Corp. ,<br>desperate to\\meet profit<br>targets, \"parked\" unwanted<br>power generating barges\\at<br>Merrill Lynch in a sham sale<br>designed to be reversed,<br>a\\prosecutor said on Tuesday<br>in the first criminal trial<br>of\\former executives at the<br>fallen energy company."
-          ],
-          [
-           " NEW YORK (Reuters) - The<br>dollar rebounded on Monday<br>after a  heavy selloff last<br>week, but analysts were<br>uncertain if the  rally could<br>hold as the drumbeat of<br>expectation began for to  the<br>December U.S. jobs report due<br>Friday."
-          ],
-          [
-           "Coles Myer Ltd. Australia<br>#39;s biggest retailer,<br>increased second-half profit<br>by 26 percent after opening<br>fuel and convenience stores,<br>selling more-profitable<br>groceries and cutting costs."
-          ],
-          [
-           "MOSCOW: Us oil major<br>ConocoPhillips is seeking to<br>buy up to 25 in Russian oil<br>giant Lukoil to add billions<br>of barrels of reserves to its<br>books, an industry source<br>familiar with the matter said<br>on Friday."
-          ],
-          [
-           "US Airways Group (otc: UAIRQ -<br>news - people ) on Thursday<br>said it #39;ll seek a court<br>injunction to prohibit a<br>strike by disaffected unions."
-          ],
-          [
-           "Shares in Unilever fall after<br>the Anglo-Dutch consumer goods<br>giant issued a surprise<br>profits warning."
-          ],
-          [
-           "SAN FRANCISCO (CBS.MW) - The<br>Canadian government will sell<br>its 19 percent stake in Petro-<br>Canada for \\$2.49 billion,<br>according to the final<br>prospectus filed with the US<br>Securities and Exchange<br>Commission Thursday."
-          ],
-          [
-           " HYDERABAD, India (Reuters) -<br>Microsoft Corp. &lt;A HREF=\"ht<br>tp://www.investor.reuters.com/<br>FullQuote.aspx?ticker=MSFT.O t<br>arget=/stocks/quickinfo/fullqu<br>ote\"&gt;MSFT.O&lt;/A&gt; will<br>hire several hundred new staff<br>at its new Indian campus in<br>the  next year, its chief<br>executive said on Monday, in a<br>move aimed  at strengthening<br>its presence in Asia's fourth-<br>biggest economy."
-          ],
-          [
-           "Alitalia SpA, Italy #39;s<br>largest airline, reached an<br>agreement with its flight<br>attendants #39; unions to cut<br>900 jobs, qualifying the<br>company for a government<br>bailout that will keep it in<br>business for another six<br>months."
-          ],
-          [
-           "P amp;Os cutbacks announced<br>today are the result of the<br>waves of troubles that have<br>swamped the ferry industry of<br>late. Some would say the<br>company has done well to<br>weather the storms for as long<br>as it has."
-          ],
-          [
-           "TORONTO (CP) - Russia #39;s<br>Severstal has made an offer to<br>buy Stelco Inc., in what #39;s<br>believed to be one of several<br>competing offers emerging for<br>the restructuring but<br>profitable Hamilton steel<br>producer."
-          ],
-          [
-           "Walt Disney Co. #39;s<br>directors nominated Michael<br>Ovitz to serve on its board<br>for another three years at a<br>meeting just weeks before<br>forcing him out of his job as"
-          ],
-          [
-           "The European Union, Japan,<br>Brazil and five other<br>countries won World Trade<br>Organization approval to<br>impose tariffs worth more than<br>\\$150 million a year on<br>imports from the United"
-          ],
-          [
-           "Industrial conglomerate<br>Honeywell International on<br>Wednesday said it has filed a<br>lawsuit against 34 electronics<br>companies including Apple<br>Computer and Eastman Kodak,<br>claiming patent infringement<br>of its liquid crystal display<br>technology."
-          ],
-          [
-           "Australia #39;s Computershare<br>has agreed to buy EquiServe of<br>the United States for US\\$292<br>million (\\$423 million),<br>making it the largest US share<br>registrar and driving its<br>shares up by a third."
-          ],
-          [
-           "Interest rates on short-term<br>Treasury securities were mixed<br>in yesterday's auction. The<br>Treasury Department sold \\$18<br>billion in three-month bills<br>at a discount rate of 1.640<br>percent, up from 1.635 percent<br>last week. An additional \\$16<br>billion was sold in six-month<br>bills at a rate of 1.840<br>percent, down from 1.860<br>percent."
-          ],
-          [
-           "Two top executives of scandal-<br>tarred insurance firm Marsh<br>Inc. were ousted yesterday,<br>the company said, the latest<br>casualties of an industry<br>probe by New York's attorney<br>general."
-          ],
-          [
-           "USDA #39;s Animal Plant Health<br>Inspection Service (APHIS)<br>this morning announced it has<br>confirmed a detection of<br>soybean rust from two test<br>plots at Louisiana State<br>University near Baton Rouge,<br>Louisiana."
-          ],
-          [
-           "Mexican Cemex, being the third<br>largest cement maker in the<br>world, agreed to buy its<br>British competitor - RMC Group<br>- for \\$5.8 billion, as well<br>as their debts in order to<br>expand their activity on the<br>building materials market of<br>the USA and Europe."
-          ],
-          [
-           "The  world's largest insurance<br>group pays \\$126m in fines as<br>part of a settlement with US<br>regulators over its dealings<br>with two firms."
-          ],
-          [
-           "The tobacco firm John Player<br>amp; Sons has announced plans<br>to lay off 90 workers at its<br>cigarette factory in Dublin.<br>The company said it was<br>planning a phased closure of<br>the factory between now and<br>February as part of a review<br>of its global operations."
-          ],
-          [
-           "AP - Consumers borrowed more<br>freely in September,<br>especially when it came to<br>racking up charges on their<br>credit cards, the Federal<br>Reserve reported Friday."
-          ],
-          [
-           "Bold, innovative solutions are<br>key to addressing the rapidly<br>rising costs of higher<br>education and the steady<br>reduction in government-<br>subsidized help to finance<br>such education."
-          ],
-          [
-           "Just as the PhD crowd emerge<br>with different interpretations<br>of today's economy, everyday<br>Americans battling to balance<br>the checkbook hold diverse<br>opinions about where things<br>stand now and in the future."
-          ],
-          [
-           "Authorities here are always<br>eager to show off their<br>accomplishments, so when<br>Beijing hosted the World<br>Toilet Organization conference<br>last week, delegates were<br>given a grand tour of the<br>city's toilets."
-          ],
-          [
-           "WASHINGTON Trying to break a<br>deadlock on energy policy, a<br>diverse group of<br>environmentalists, academics<br>and former government<br>officials were to publish a<br>report on Wednesday that<br>presents strategies for making<br>the United States cleaner,<br>more competitive"
-          ],
-          [
-           "A consortium led by Royal<br>Dutch/Shell Group that is<br>developing gas reserves off<br>Russia #39;s Sakhalin Island<br>said Thursday it has struck a<br>US\\$6 billion (euro4."
-          ],
-          [
-           "An audit by international<br>observers supported official<br>elections results that gave<br>President Hugo Chavez a<br>victory over a recall vote<br>against him, the secretary-<br>general of the Organisation of<br>American States announced."
-          ],
-          [
-           "Apple is recalling 28,000<br>faulty batteries for its<br>15-inch Powerbook G4 laptops."
-          ],
-          [
-           "The former Chief Executive<br>Officer of Computer Associates<br>was indicted by a federal<br>grand jury in New York<br>Wednesday for allegedly<br>participating in a massive<br>fraud conspiracy and an<br>elaborate cover up of a scheme<br>that cost investors"
-          ],
-          [
-           "Honeywell International Inc.,<br>the world #39;s largest<br>supplier of building controls,<br>agreed to buy Novar Plc for<br>798 million pounds (\\$1.53<br>billion) to expand its<br>security, fire and<br>ventilation-systems business<br>in Europe."
-          ],
-          [
-           "San Francisco investment bank<br>Thomas Weisel Partners on<br>Thursday agreed to pay \\$12.5<br>million to settle allegations<br>that some of the stock<br>research the bank published<br>during the Internet boom was<br>tainted by conflicts of<br>interest."
-          ],
-          [
-           "Forbes.com - Peter Frankling<br>tapped an unusual source to<br>fund his new business, which<br>makes hot-dog-shaped ice cream<br>treats known as Cool Dogs: Two<br>investors, one a friend and<br>the other a professional<br>venture capitalist, put in<br>more than  #36;100,000 each<br>from their Individual<br>Retirement Accounts. Later<br>Franklin added  #36;150,000<br>from his own IRA."
-          ],
-          [
-           "A San Diego insurance<br>brokerage has been sued by New<br>York Attorney General Elliot<br>Spitzer for allegedly<br>soliciting payoffs in exchange<br>for steering business to<br>preferred insurance companies."
-          ],
-          [
-           "The European Union agreed<br>Monday to lift penalties that<br>have cost American exporters<br>\\$300 million, following the<br>repeal of a US corporate tax<br>break deemed illegal under<br>global trade rules."
-          ],
-          [
-           " LONDON (Reuters) - European<br>stock markets scaled<br>near-2-1/2  year highs on<br>Friday as oil prices held<br>below \\$48 a barrel, and  the<br>euro held off from mounting<br>another assault on \\$1.30 but<br>hovered near record highs<br>against the dollar."
-          ],
-          [
-           "Reuters - The company behind<br>the Atkins Diet\\on Friday<br>shrugged off a recent decline<br>in interest in low-carb\\diets<br>as a seasonal blip, and its<br>marketing chief said\\consumers<br>would cut out starchy foods<br>again after picking up\\pounds<br>over the holidays."
-          ],
-          [
-           "There #39;s something to be<br>said for being the  quot;first<br>mover quot; in an industry<br>trend. Those years of extra<br>experience in tinkering with a<br>new idea can be invaluable in<br>helping the first"
-          ],
-          [
-           " NEW YORK (Reuters) - Shares<br>of Chiron Corp. &lt;A HREF=\"ht<br>tp://www.investor.reuters.com/<br>FullQuote.aspx?ticker=CHIR.O t<br>arget=/stocks/quickinfo/fullqu<br>ote\"&gt;CHIR.O&lt;/A&gt; fell<br>7  percent before the market<br>open on Friday, a day after<br>the  biopharmaceutical company<br>said it is delaying shipment<br>of its  flu vaccine, Fluvirin,<br>because lots containing 4<br>million  vaccines do not meet<br>product sterility standards."
-          ],
-          [
-           "The nation's top<br>telecommunications regulator<br>said yesterday he will push --<br>before the next president is<br>inaugurated -- to protect<br>fledgling Internet telephone<br>services from getting taxed<br>and heavily regulated by the<br>50 state governments."
-          ],
-          [
-           "DALLAS -- Belo Corp. said<br>yesterday that it would cut<br>250 jobs, more than half of<br>them at its flagship<br>newspaper, The Dallas Morning<br>News, and that an internal<br>investigation into circulation<br>overstatements"
-          ],
-          [
-           "The Federal Reserve still has<br>some way to go to restore US<br>interest rates to more normal<br>levels, Philadelphia Federal<br>Reserve President Anthony<br>Santomero said on Monday."
-          ],
-          [
-           "Delta Air Lines (DAL.N: Quote,<br>Profile, Research) said on<br>Wednesday its auditors have<br>expressed doubt about the<br>airline #39;s financial<br>viability."
-          ],
-          [
-           "Takeover target Ronin Property<br>Group said it would respond to<br>an offer by Multiplex Group<br>for all the securities in the<br>company in about three weeks."
-          ],
-          [
-           "Google Inc. is trying to<br>establish an online reading<br>room for five major libraries<br>by scanning stacks of hard-to-<br>find books into its widely<br>used Internet search engine."
-          ],
-          [
-           "HOUSTON--(BUSINESS<br>WIRE)--Sept. 1, 2004-- L<br>#39;operazione crea una<br>centrale globale per l<br>#39;analisi strategica el<br>#39;approfondimento del<br>settore energetico IHS Energy,<br>fonte globale leader di<br>software, analisi e<br>informazioni"
-          ],
-          [
-           "The US airline industry,<br>riddled with excess supply,<br>will see a significant drop in<br>capacity, or far fewer seats,<br>as a result of at least one<br>airline liquidating in the<br>next year, according to<br>AirTran Airways Chief<br>Executive Joe Leonard."
-          ],
-          [
-           "Boeing (nyse: BA - news -<br>people ) Chief Executive Harry<br>Stonecipher is keeping the<br>faith. On Monday, the head of<br>the aerospace and military<br>contractor insists he #39;s<br>confident his firm will<br>ultimately win out"
-          ],
-          [
-           "Australia #39;s biggest<br>supplier of fresh milk,<br>National Foods, has posted a<br>net profit of \\$68.7 million,<br>an increase of 14 per cent on<br>last financial year."
-          ],
-          [
-           "Lawyers for customers suing<br>Merck  amp; Co. want to<br>question CEO Raymond Gilmartin<br>about what he knew about the<br>dangers of Vioxx before the<br>company withdrew the drug from<br>the market because of health<br>hazards."
-          ],
-          [
-           "New York; September 23, 2004 -<br>The Department of Justice<br>(DoJ), FBI and US Attorney<br>#39;s Office handed down a<br>10-count indictment against<br>former Computer Associates<br>(CA) chairman and CEO Sanjay<br>Kumar and Stephen Richards,<br>former CA head of worldwide<br>sales."
-          ],
-          [
-           "PACIFIC Hydro shares yesterday<br>caught an updraught that sent<br>them more than 20 per cent<br>higher after the wind farmer<br>moved to flush out a bidder."
-          ],
-          [
-           " NEW YORK (Reuters) - U.S.<br>consumer confidence retreated<br>in  August while Chicago-area<br>business activity slowed,<br>according  to reports on<br>Tuesday that added to worries<br>the economy's patch  of slow<br>growth may last beyond the<br>summer."
-          ],
-          [
-           "Unilever has reported a three<br>percent rise in third-quarter<br>earnings but warned it is<br>reviewing its targets up to<br>2010, after issuing a shock<br>profits warning last month."
-          ],
-          [
-           " LONDON (Reuters) - Oil prices<br>extended recent heavy losses<br>on Wednesday ahead of weekly<br>U.S. data expected to show<br>fuel  stocks rising in time<br>for peak winter demand."
-          ],
-          [
-           "Vodafone has increased the<br>competition ahead of Christmas<br>with plans to launch 10<br>handsets before the festive<br>season. The Newbury-based<br>group said it will begin<br>selling the phones in<br>November."
-          ],
-          [
-           "A former assistant treasurer<br>at Enron Corp. (ENRNQ.PK:<br>Quote, Profile, Research)<br>agreed to plead guilty to<br>conspiracy to commit<br>securities fraud on Tuesday<br>and will cooperate with"
-          ],
-          [
-           "UK house prices fell by 1.1 in<br>October, confirming a<br>softening of the housing<br>market, Halifax has said. The<br>UK #39;s biggest mortgage<br>lender said prices rose 18."
-          ],
-          [
-           "More than six newspaper<br>companies have received<br>letters from the Securities<br>and Exchange Commission<br>seeking information about<br>their circulation practices."
-          ],
-          [
-           "THE 64,000 dollar -<br>correction, make that 500<br>million dollar -uestion<br>hanging over Shire<br>Pharmaceuticals is whether the<br>5 per cent jump in the<br>companys shares yesterday<br>reflects relief that US<br>regulators have finally<br>approved its drug for"
-          ],
-          [
-           "Businesses saw inventories<br>rise in July and sales picked<br>up, the government reported<br>Wednesday. The Commerce<br>Department said that stocks of<br>unsold goods increased 0.9 in<br>July, down from a 1.1 rise in<br>June."
-          ],
-          [
-           "Shares of Genta Inc. (GNTA.O:<br>Quote, Profile, Research)<br>soared nearly 50 percent on<br>Monday after the biotechnology<br>company presented promising<br>data on an experimental<br>treatment for blood cancers."
-          ],
-          [
-           "SBC Communications Inc. plans<br>to cut at least 10,000 jobs,<br>or 6 percent of its work<br>force, by the end of next year<br>to compensate for a drop in<br>the number of local-telephone<br>customers."
-          ],
-          [
-           " WASHINGTON (Reuters) - Major<br>cigarette makers go on trial<br>on Tuesday in the U.S.<br>government's \\$280 billion<br>racketeering  case that<br>charges the tobacco industry<br>with deliberately  deceiving<br>the public about the risks of<br>smoking since the  1950s."
-          ],
-          [
-           "Federal Reserve policy-makers<br>raised the benchmark US<br>interest rate a quarter point<br>to 2.25 per cent and restated<br>a plan to carry out"
-          ],
-          [
-           " DETROIT (Reuters) - A<br>Canadian law firm on Tuesday<br>said it  had filed a lawsuit<br>against Ford Motor Co. &lt;A H<br>REF=\"http://www.investor.reute<br>rs.com/FullQuote.aspx?ticker=F<br>.N target=/stocks/quickinfo/fu<br>llquote\"&gt;F.N&lt;/A&gt; over<br>what it  claims are defective<br>door latches on about 400,000<br>of the  automaker's popular<br>pickup trucks and SUVs."
-          ],
-          [
-           "AstraZeneca Plc suffered its<br>third setback in two months on<br>Friday as lung cancer drug<br>Iressa failed to help patients<br>live longer"
-          ],
-          [
-           "Bruce Wasserstein, the<br>combative chief executive of<br>investment bank Lazard, is<br>expected to agree this week<br>that he will quit the group<br>unless he can pull off a<br>successful"
-          ],
-          [
-           "Dr. David J. Graham, the FDA<br>drug safety reviewer who<br>sounded warnings over five<br>drugs he felt could become the<br>next Vioxx has turned to a<br>Whistleblower protection group<br>for legal help."
-          ],
-          [
-           "The Kmart purchase of Sears,<br>Roebuck may be the ultimate<br>expression of that old saying<br>in real estate: location,<br>location, location."
-          ],
-          [
-           "Sprint Corp. (FON.N: Quote,<br>Profile, Research) on Friday<br>said it plans to cut up to 700<br>jobs as it realigns its<br>business to focus on wireless<br>and Internet services and<br>takes a non-cash network<br>impairment charge."
-          ],
-          [
-           "Says that amount would have<br>been earned for the first 9<br>months of 2004, before AT<br>amp;T purchase. LOS ANGELES,<br>(Reuters) - Cingular Wireless<br>would have posted a net profit<br>of \\$650 million for the first<br>nine months"
-          ],
-          [
-           " CHICAGO (Reuters) - Goodyear<br>Tire   Rubber Co. &lt;A HREF=\"<br>http://www.investor.reuters.co<br>m/FullQuote.aspx?ticker=GT.N t<br>arget=/stocks/quickinfo/fullqu<br>ote\"&gt;GT.N&lt;/A&gt; said<br>on Friday it will cut 340 jobs<br>in its engineered products and<br>chemical units as part of its<br>cost-reduction efforts,<br>resulting  in a third-quarter<br>charge."
-          ],
-          [
-           "Reuters - Shares of long-<br>distance phone\\companies AT T<br>Corp.  and MCI Inc.  have<br>plunged\\about 20 percent this<br>year, but potential buyers<br>seem to be\\holding out for<br>clearance sales."
-          ],
-          [
-           "Russian oil giant Yukos files<br>for bankruptcy protection in<br>the US in a last ditch effort<br>to stop the Kremlin auctioning<br>its main production unit."
-          ],
-          [
-           "British Airways #39; (BA)<br>chief executive Rod Eddington<br>has admitted that the company<br>quot;got it wrong quot; after<br>staff shortages led to three<br>days of travel chaos for<br>passengers."
-          ],
-          [
-           "The issue of drug advertising<br>directly aimed at consumers is<br>becoming political."
-          ],
-          [
-           "AP - China's economic boom is<br>still roaring despite efforts<br>to cool sizzling growth, with<br>the gross domestic product<br>climbing 9.5 percent in the<br>first three quarters of this<br>year, the government reported<br>Friday."
-          ],
-          [
-           "Soaring petroleum prices<br>pushed the cost of goods<br>imported into the U.S. much<br>higher than expected in<br>August, the government said<br>today."
-          ],
-          [
-           "Anheuser-Busch teams up with<br>Vietnam's largest brewer,<br>laying the groundwork for<br>future growth in the region."
-          ],
-          [
-           "CHARLOTTE, NC - Shares of<br>Krispy Kreme Doughnuts Inc.<br>#39;s fell sharply Monday as a<br>79 percent plunge in third-<br>quarter earnings and an<br>intensifying accounting<br>investigation overshadowed the<br>pastrymaker #39;s statement<br>that the low-carb craze might<br>be easing."
-          ],
-          [
-           "OXNARD - A leak of explosive<br>natural gas forced dozens of<br>workers to evacuate an<br>offshore oil platform for<br>hours Thursday but no damage<br>or injuries were reported."
-          ],
-          [
-           "AP - Assets of the nation's<br>retail money market mutual<br>funds rose by  #36;2.85<br>billion in the latest week to<br>#36;845.69 billion, the<br>Investment Company Institute<br>said Thursday."
-          ],
-          [
-           "Peter Mandelson provoked fresh<br>Labour in-fighting yesterday<br>with an implied attack on<br>Gordon Brown #39;s<br>quot;exaggerated gloating<br>quot; about the health of the<br>British economy."
-          ],
-          [
-           "JC Penney said yesterday that<br>Allen I. Questrom, the chief<br>executive who has restyled the<br>once-beleaguered chain into a<br>sleeker and more profitable<br>entity, would be succeeded by<br>Myron E. Ullman III, another<br>longtime retail executive."
-          ],
-          [
-           " In the cosmetics department<br>at Hecht's in downtown<br>Washington, construction crews<br>have ripped out the<br>traditional glass display<br>cases, replacing them with a<br>system of open shelves stacked<br>high with fragrances from<br>Chanel, Burberry and Armani,<br>now easily within arm's reach<br>of the impulse buyer."
-          ],
-          [
-           " LONDON (Reuters) - Oil prices<br>slid from record highs above<br>\\$50 a barrel Wednesday as the<br>U.S. government reported a<br>surprise increase in crude<br>stocks and rebels in Nigeria's<br>oil-rich delta region agreed<br>to a preliminary cease-fire."
-          ],
-          [
-           "Rocky Shoes and Boots makes an<br>accretive acquisition -- and<br>gets Dickies and John Deere as<br>part of the deal."
-          ],
-          [
-           "BONN: Deutsche Telekom is<br>bidding 2.9 bn for the 26 it<br>does not own in T-Online<br>International, pulling the<br>internet service back into the<br>fold four years after selling<br>stock to the public."
-          ],
-          [
-           "Motorola Inc. says it #39;s<br>ready to make inroads in the<br>cell-phone market after<br>posting a third straight<br>strong quarter and rolling out<br>a series of new handsets in<br>time for the holiday selling<br>season."
-          ],
-          [
-           "Costs of employer-sponsored<br>health plans are expected to<br>climb an average of 8 percent<br>in 2005, the first time in<br>five years increases have been<br>in single digits."
-          ],
-          [
-           "After again posting record<br>earnings for the third<br>quarter, Taiwan Semiconductor<br>Manufacturing Company (TSMC)<br>expects to see its first<br>sequential drop in fourth-<br>quarter revenues, coupled with<br>a sharp drop in capacity<br>utilization rates."
-          ],
-          [
-           "Many people who have never<br>bounced a check in their life<br>could soon bounce their first<br>check if they write checks to<br>pay bills a couple of days<br>before their paycheck is<br>deposited into their checking<br>account."
-          ],
-          [
-           " LUXEMBOURG (Reuters) -<br>Microsoft Corp told a judge on<br>Thursday that the European<br>Commission must be stopped<br>from  ordering it to give up<br>secret technology to<br>competitors."
-          ],
-          [
-           "Dow Jones Industrial Average<br>futures declined amid concern<br>an upcoming report on<br>manufacturing may point to<br>slowing economic growth."
-          ],
-          [
-           "Reuters - U.S. industrial<br>output advanced in\\July, as<br>American factories operated at<br>their highest capacity\\in more<br>than three years, a Federal<br>Reserve report on<br>Tuesday\\showed."
-          ],
-          [
-           "Sir Martin Sorrell, chief<br>executive of WPP, yesterday<br>declared he was  quot;very<br>impressed quot; with Grey<br>Global, stoking speculation<br>WPP will bid for the US<br>advertising company."
-          ],
-          [
-           "Like introductory credit card<br>rates and superior customer<br>service, some promises just<br>aren #39;t built to last. And<br>so it is that Bank of America<br>- mere months after its pledge<br>to preserve"
-          ],
-          [
-           "Reuters - Accounting firm KPMG<br>will pay  #36;10\\million to<br>settle charges of improper<br>professional conduct\\while<br>acting as auditor for Gemstar-<br>TV Guide International Inc.\\,<br>the U.S. Securities and<br>Exchange Commission said<br>on\\Wednesday."
-          ],
-          [
-           "Family matters made public: As<br>eager cousins wait for a slice<br>of the \\$15 billion cake that<br>is the Pritzker Empire,<br>Circuit Court Judge David<br>Donnersberger has ruled that<br>the case will be conducted in<br>open court."
-          ],
-          [
-           "The weekly survey from<br>mortgage company Freddie Mac<br>had rates on 30-year fixed-<br>rate mortgages inching higher<br>this week, up to an average<br>5.82 percent from last week<br>#39;s 5.81 percent."
-          ],
-          [
-           "The classic power struggle<br>between Walt Disney Co. CEO<br>Michael Eisner and former<br>feared talent agent Michael<br>Ovitz makes for high drama in<br>the courtroom - and apparently<br>on cable."
-          ],
-          [
-           "LONDON (CBS.MW) -- Elan<br>(UK:ELA) (ELN) and partner<br>Biogen (BIIB) said the FDA has<br>approved new drug Tysabri to<br>treat relapsing forms of<br>multiple sclerosis."
-          ],
-          [
-           "Bank of New Zealand has frozen<br>all accounts held in the name<br>of Access Brokerage, which was<br>yesterday placed in<br>liquidation after a client<br>fund shortfall of around \\$5<br>million was discovered."
-          ],
-          [
-           "ZDNet #39;s survey of IT<br>professionals in August kept<br>Wired  amp; Wireless on top<br>for the 18th month in a row.<br>Telecommunications equipment<br>maker Motorola said Tuesday<br>that it would cut 1,000 jobs<br>and take related"
-          ],
-          [
-           "BRITAIN #39;S largest<br>financial institutions are<br>being urged to take lead roles<br>in lawsuits seeking hundreds<br>of millions of dollars from<br>the scandal-struck US<br>insurance industry."
-          ],
-          [
-           "Bankrupt UAL Corp. (UALAQ.OB:<br>Quote, Profile, Research) on<br>Thursday reported a narrower<br>third-quarter net loss. The<br>parent of United Airlines<br>posted a loss of \\$274<br>million, or"
-          ],
-          [
-           "The European Union #39;s head<br>office issued a bleak economic<br>report Tuesday, warning that<br>the sharp rise in oil prices<br>will  quot;take its toll quot;<br>on economic growth next year<br>while the euro #39;s renewed<br>climb could threaten crucial<br>exports."
-          ],
-          [
-           "Though Howard Stern's<br>defection from broadcast to<br>satellite radio is still 16<br>months off, the industry is<br>already trying to figure out<br>what will fill the crater in<br>ad revenue and listenership<br>that he is expected to leave<br>behind."
-          ],
-          [
-           " WASHINGTON (Reuters) - The<br>United States set final  anti-<br>dumping duties of up to 112.81<br>percent on shrimp imported<br>from China and up to 25.76<br>percent on shrimp from Vietnam<br>to  offset unfair pricing, the<br>Commerce Department said on<br>Tuesday."
-          ],
-          [
-           "NEW YORK -- When Office Depot<br>Inc. stores ran an electronics<br>recycling drive last summer<br>that accepted everything from<br>cellphones to televisions,<br>some stores were overwhelmed<br>by the amount of e-trash they<br>received."
-          ],
-          [
-           "The International Monetary<br>Fund expressed concern Tuesday<br>about the impact of the<br>troubles besetting oil major<br>Yukos on Russia #39;s standing<br>as a place to invest."
-          ],
-          [
-           "LinuxWorld Conference  amp;<br>Expo will come to Boston for<br>the first time in February,<br>underscoring the area's<br>standing as a hub for the<br>open-source software being<br>adopted by thousands of<br>businesses."
-          ],
-          [
-           "Interest rates on short-term<br>Treasury securities rose in<br>yesterday's auction. The<br>Treasury Department sold \\$19<br>billion in three-month bills<br>at a discount rate of 1.710<br>percent, up from 1.685 percent<br>last week. An additional \\$17<br>billion was sold in six-month<br>bills at a rate of 1.950<br>percent, up from 1.870<br>percent."
-          ],
-          [
-           "Moody #39;s Investors Service<br>on Wednesday said it may cut<br>its bond ratings on HCA Inc.<br>(HCA.N: Quote, Profile,<br>Research) deeper into junk,<br>citing the hospital operator<br>#39;s plan to buy back about<br>\\$2."
-          ],
-          [
-           "Telekom Austria AG, the<br>country #39;s biggest phone<br>operator, won the right to buy<br>Bulgaria #39;s largest mobile<br>phone company, MobilTel EAD,<br>for 1.6 billion euros (\\$2.1<br>billion), an acquisition that<br>would add 3 million<br>subscribers."
-          ],
-          [
-           "Shares of ID Biomedical jumped<br>after the company reported<br>Monday that it signed long-<br>term agreements with the three<br>largest flu vaccine<br>wholesalers in the United<br>States in light of the<br>shortage of vaccine for the<br>current flu season."
-          ],
-          [
-           "The federal government closed<br>its window on the oil industry<br>Thursday, saying that it is<br>selling its last 19 per cent<br>stake in Calgary-based Petro-<br>Canada."
-          ],
-          [
-           " NEW YORK, Nov. 11 -- The 40<br>percent share price slide in<br>Merck  #38; Co. in the five<br>weeks after it pulled the<br>painkiller Vioxx off the<br>market highlighted larger<br>problems in the pharmaceutical<br>industry that may depress<br>performance for years,<br>according to academics and<br>stock analysts who follow the<br>sector."
-          ],
-          [
-           "Low-fare carrier Southwest<br>Airlines Co. said Thursday<br>that its third-quarter profit<br>rose 12.3 percent to beat Wall<br>Street expectations despite<br>higher fuel costs."
-          ],
-          [
-           "Another shock hit the drug<br>sector Friday when<br>pharmaceutical giant Pfizer<br>Inc. announced that it found<br>an increased heart risk to<br>patients for its blockbuster<br>arthritis drug Celebrex."
-          ],
-          [
-           "The number of US information<br>technology workers rose 2<br>percent to 10.5 million in the<br>first quarter of this year,<br>but demand for them is<br>dropping, according to a new<br>report."
-          ],
-          [
-           "Insurance firm says its board<br>now consists of its new CEO<br>Michael Cherkasky and 10<br>outside members. NEW YORK<br>(Reuters) - Marsh  amp;<br>McLennan Cos."
-          ],
-          [
-           "Slot machine maker<br>International Game Technology<br>(IGT.N: Quote, Profile,<br>Research) on Tuesday posted<br>better-than-expected quarterly<br>earnings, as casinos bought"
-          ],
-          [
-           "Venezuelan election officials<br>say they expect to announce<br>Saturday, results of a partial<br>audit of last Sunday #39;s<br>presidential recall<br>referendum."
-          ],
-          [
-           "Sony Ericsson Mobile<br>Communications Ltd., the<br>mobile-phone venture owned by<br>Sony Corp. and Ericsson AB,<br>said third-quarter profit rose<br>45 percent on camera phone<br>demand and forecast this<br>quarter will be its strongest."
-          ],
-          [
-           "NEW YORK, September 17<br>(newratings.com) - Alcatel<br>(ALA.NYS) has expanded its<br>operations and presence in the<br>core North American<br>telecommunication market with<br>two separate acquisitions for<br>about \\$277 million."
-          ],
-          [
-           "Oil giant Shell swept aside<br>nearly 100 years of history<br>today when it unveiled plans<br>to merge its UK and Dutch<br>parent companies. Shell said<br>scrapping its twin-board<br>structure"
-          ],
-          [
-           "Caesars Entertainment Inc. on<br>Thursday posted a rise in<br>third-quarter profit as Las<br>Vegas hotels filled up and<br>Atlantic City properties<br>squeaked out a profit that was<br>unexpected by the company."
-          ],
-          [
-           "One of India #39;s leading<br>telecommunications providers<br>will use Cisco Systems #39;<br>gear to build its new<br>Ethernet-based broadband<br>network."
-          ],
-          [
-           "Shares of Beacon Roofing<br>Suppler Inc. shot up as much<br>as 26 percent in its trading<br>debut Thursday, edging out<br>bank holding company Valley<br>Bancorp as the biggest gainer<br>among a handful of new stocks<br>that went public this week."
-          ],
-          [
-           "The first weekend of holiday<br>shopping went from red-hot to<br>dead white, as a storm that<br>delivered freezing, snowy<br>weather across Colorado kept<br>consumers at home."
-          ],
-          [
-           " LONDON (Reuters) - The dollar<br>fell within half a cent of<br>last week's record low against<br>the euro on Thursday after<br>capital inflows data added to<br>worries the United States may<br>struggle to fund its current<br>account deficit."
-          ],
-          [
-           "China has pledged to invest<br>\\$20 billion in Argentina in<br>the next 10 years, La Nacion<br>reported Wednesday. The<br>announcement came during the<br>first day of a two-day visit"
-          ],
-          [
-           "Toyota Motor Corp., the world<br>#39;s biggest carmaker by<br>value, will invest 3.8 billion<br>yuan (\\$461 million) with its<br>partner Guangzhou Automobile<br>Group to boost manufacturing<br>capacity in"
-          ],
-          [
-           "BAE Systems has launched a<br>search for a senior American<br>businessman to become a non-<br>executive director. The high-<br>profile appointment is<br>designed to strengthen the<br>board at a time when the<br>defence giant is"
-          ],
-          [
-           "Computer Associates<br>International is expected to<br>announce that its new chief<br>executive will be John<br>Swainson, an I.B.M. executive<br>with strong technical and<br>sales credentials."
-          ],
-          [
-           "STOCKHOLM (Dow<br>Jones)--Expectations for<br>Telefon AB LM Ericsson #39;s<br>(ERICY) third-quarter<br>performance imply that while<br>sales of mobile telephony<br>equipment are expected to have<br>dipped, the company"
-          ],
-          [
-           "The Anglo-Dutch oil giant<br>Shell today sought to draw a<br>line under its reserves<br>scandal by announcing plans to<br>spend \\$15bn (8.4bn) a year to<br>replenish reserves and develop<br>production in its oil and gas<br>business."
-          ],
-          [
-           "Circulation declined at most<br>major US newspapers in the<br>last half year, the latest<br>blow for an industry already<br>rocked by a scandal involving<br>circulation misstatements that<br>has undermined the confidence<br>of investors and advertisers."
-          ],
-          [
-           "INDIANAPOLIS - ATA Airlines<br>has accepted a \\$117 million<br>offer from Southwest Airlines<br>that would forge close ties<br>between two of the largest US<br>discount carriers."
-          ],
-          [
-           "EVERETT  Fire investigators<br>are still trying to determine<br>what caused a two-alarm that<br>destroyed a portion of a South<br>Everett shopping center this<br>morning."
-          ],
-          [
-           "Sure, the PeopleSoft board<br>told shareholders to just say<br>no. This battle will go down<br>to the wire, and even<br>afterward Ellison could<br>prevail."
-          ],
-          [
-           "Investors cheered by falling<br>oil prices and an improving<br>job picture sent stocks higher<br>Tuesday, hoping that the news<br>signals a renewal of economic<br>strength and a fall rally in<br>stocks."
-          ],
-          [
-           " CHICAGO (Reuters) - Wal-Mart<br>Stores Inc. &lt;A HREF=\"http:/<br>/www.investor.reuters.com/Full<br>Quote.aspx?ticker=WMT.N target<br>=/stocks/quickinfo/fullquote\"&<br>gt;WMT.N&lt;/A&gt;, the<br>world's largest retailer, said<br>on Saturday it still<br>anticipates  September U.S.<br>sales to be up 2 percent to 4<br>percent at stores  open at<br>least a year."
-          ],
-          [
-           " TOKYO (Reuters) - Tokyo's<br>Nikkei stock average opened<br>down  0.15 percent on<br>Wednesday as investors took a<br>breather from the  market's<br>recent rises and sold shares<br>of gainers such as Sharp<br>Corp."
-          ],
-          [
-           "NEW YORK : World oil prices<br>fell, capping a drop of more<br>than 14 percent in a two-and-<br>a-half-week slide triggered by<br>a perception of growing US<br>crude oil inventories."
-          ],
-          [
-           "SUFFOLK -- Virginia Tech<br>scientists are preparing to<br>protect the state #39;s<br>largest crop from a disease<br>with strong potential to do<br>damage."
-          ],
-          [
-           " NEW YORK (Reuters) -<br>Citigroup Inc. &lt;A HREF=\"htt<br>p://www.investor.reuters.com/F<br>ullQuote.aspx?ticker=C.N targe<br>t=/stocks/quickinfo/fullquote\"<br>&gt;C.N&lt;/A&gt; the world's<br>largest financial services<br>company, said on Tuesday it<br>will  acquire First American<br>Bank in the quickly-growing<br>Texas  market."
-          ],
-          [
-           " SINGAPORE (Reuters) - U.S.<br>oil prices hovered just below<br>\\$50 a barrel on Tuesday,<br>holding recent gains on a rash<br>of  crude supply outages and<br>fears over thin heating oil<br>tanks."
-          ],
-          [
-           "US retail sales fell 0.3 in<br>August as rising energy costs<br>and bad weather persuaded<br>shoppers to reduce their<br>spending."
-          ],
-          [
-           "GEORGETOWN, Del., Oct. 28 --<br>Plaintiffs in a shareholder<br>lawsuit over former Walt<br>Disney Co. president Michael<br>Ovitz's \\$140 million<br>severance package attempted<br>Thursday to portray Ovitz as a<br>dishonest bumbler who botched<br>the hiring of a major<br>television executive and<br>pushed the release of a movie<br>that angered the Chinese<br>government, damaging Disney's<br>business prospects in the<br>country."
-          ],
-          [
-           "US stocks gained ground in<br>early trading Thursday after<br>tame inflation reports and<br>better than expected jobless<br>news. Oil prices held steady<br>as Hurricane Ivan battered the<br>Gulf coast, where oil<br>operations have halted."
-          ],
-          [
-           "PepsiCo. Inc., the world #39;s<br>No. 2 soft- drink maker, plans<br>to buy General Mills Inc.<br>#39;s stake in their European<br>joint venture for \\$750<br>million in cash, giving it<br>complete ownership of Europe<br>#39;s largest snack-food<br>company."
-          ],
-          [
-           " NEW YORK (Reuters) - U.S.<br>stocks opened little changed<br>on  Friday, after third-<br>quarter gross domestic product<br>data showed  the U.S. economy<br>grew at a slower-than-expected<br>pace."
-          ],
-          [
-           " NEW YORK (Reuters) - Limited<br>Brands Inc. &lt;A HREF=\"http:/<br>/www.investor.reuters.com/Full<br>Quote.aspx?ticker=LTD.N target<br>=/stocks/quickinfo/fullquote\"&<br>gt;LTD.N&lt;/A&gt; on<br>Thursday reported higher<br>quarterly operating profit as<br>cost  controls and strong<br>lingerie sales offset poor<br>results at the  retailer's<br>Express apparel stores."
-          ],
-          [
-           "General Motors and<br>DaimlerChrysler are<br>collaborating on development<br>of fuel- saving hybrid engines<br>in hopes of cashing in on an<br>expanding market dominated by<br>hybrid leaders Toyota and<br>Honda."
-          ],
-          [
-           " TOKYO (Reuters) - Nintendo<br>Co. Ltd. raised its 2004<br>shipment target for its DS<br>handheld video game device by<br>40  percent to 2.8 million<br>units on Thursday after many<br>stores in  Japan and the<br>United States sold out in the<br>first week of  sales."
-          ],
-          [
-           "Autodesk  this week unwrapped<br>an updated version of its<br>hosted project collaboration<br>service targeted at the<br>construction and manufacturing<br>industries. Autodesk Buzzsaw<br>lets multiple, dispersed<br>project participants --<br>including building owners,<br>developers, architects,<br>construction teams, and<br>facility managers -- share and<br>manage data throughout the<br>life of a project, according<br>to Autodesk officials."
-          ],
-          [
-           " WASHINGTON (Reuters) - U.S.<br>employers hired just 96,000<br>workers in September, the<br>government said on Friday in a<br>weak  jobs snapshot, the final<br>one ahead of presidential<br>elections  that also fueled<br>speculation about a pause in<br>interest-rate  rises."
-          ],
-          [
-           "SAN FRANCISCO (CBS.MW) -- The<br>magazine known for evaluating<br>cars and electronics is<br>setting its sights on finding<br>the best value and quality of<br>prescription drugs on the<br>market."
-          ],
-          [
-           "A mouse, a house, and your<br>tax-planning spouse all factor<br>huge in the week of earnings<br>that lies ahead."
-          ],
-          [
-           "DALLAS (CBS.MW) -- Royal<br>Dutch/Shell Group will pay a<br>\\$120 million penalty to<br>settle a Securities and<br>Exchange Commission<br>investigation of its<br>overstatement of nearly 4.5<br>billion barrels of proven<br>reserves, the federal agency<br>said Tuesday."
-          ],
-          [
-           "PHOENIX America West Airlines<br>has backed away from a<br>potential bidding war for<br>bankrupt ATA Airlines, paving<br>the way for AirTran to take<br>over ATA operations."
-          ],
-          [
-           "US stock-index futures<br>declined. Dow Jones Industrial<br>Average shares including<br>General Electric Co. slipped<br>in Europe. Citigroup Inc."
-          ],
-          [
-           "Federal Reserve Chairman Alan<br>Greenspan has done it again.<br>For at least the fourth time<br>this year, he has touched the<br>electrified third rail of<br>American politics - Social<br>Security."
-          ],
-          [
-           "Description: Scientists say<br>the arthritis drug Bextra may<br>pose increased risk of<br>cardiovascular troubles.<br>Bextra is related to Vioxx,<br>which was pulled off the<br>market in September for the<br>same reason."
-          ],
-          [
-           "The trial of a lawsuit by Walt<br>Disney Co. shareholders who<br>accuse the board of directors<br>of rubberstamping a deal to<br>hire Michael Ovitz"
-          ],
-          [
-           "LOS ANGELES Grocery giant<br>Albertsons says it has<br>purchased Bristol Farms, which<br>operates eleven upscale stores<br>in Southern California."
-          ],
-          [
-           "The figures from a survey<br>released today are likely to<br>throw more people into the<br>ranks of the uninsured,<br>analysts said."
-          ],
-          [
-           "JB Oxford Holdings Inc., a<br>Beverly Hills-based discount<br>brokerage firm, was sued by<br>the Securities and Exchange<br>Commission for allegedly<br>allowing thousands of improper<br>trades in more than 600 mutual<br>funds."
-          ],
-          [
-           "Goldman Sachs reported strong<br>fourth quarter and full year<br>earnings of \\$1.19bn, up 36<br>per cent on the previous<br>quarter. Full year profit rose<br>52 per cent from the previous<br>year to \\$4.55bn."
-          ],
-          [
-           "Argosy Gaming (AGY:NYSE - news<br>- research) jumped in early<br>trading Thursday, after the<br>company agreed to be acquired<br>by Penn National Gaming<br>(PENN:Nasdaq - news -<br>research) in a \\$1."
-          ],
-          [
-           "The DuPont Co. has agreed to<br>pay up to \\$340 million to<br>settle a lawsuit that it<br>contaminated water supplies in<br>West Virginia and Ohio with a<br>chemical used to make Teflon,<br>one of its best-known brands."
-          ],
-          [
-           "Reuters - Jeffrey Greenberg,<br>chairman and chief\\executive<br>of embattled insurance broker<br>Marsh   McLennan Cos.\\, is<br>expected to step down within<br>hours, a newspaper\\reported on<br>Friday, citing people close to<br>the discussions."
-          ],
-          [
-           "A state regulatory board<br>yesterday handed a five-year<br>suspension to a Lawrence<br>funeral director accused of<br>unprofessional conduct and<br>deceptive practices, including<br>one case where he refused to<br>complete funeral arrangements<br>for a client because she had<br>purchased a lower-priced<br>casket elsewhere."
-          ],
-          [
-           "The California Public<br>Utilities Commission on<br>Thursday upheld a \\$12.1<br>million fine against Cingular<br>Wireless, related to a two-<br>year investigation into the<br>cellular telephone company<br>#39;s business practices."
-          ],
-          [
-           "Barclays, the British bank<br>that left South Africa in 1986<br>after apartheid protests, may<br>soon resume retail operations<br>in the nation."
-          ],
-          [
-           "Italian-based Parmalat is<br>suing its former auditors --<br>Grant Thornton International<br>and Deloitte Touche Tohmatsu<br>-- for billions of dollars in<br>damages. Parmalat blames its<br>demise on the two companies<br>#39; mismanagement of its<br>finances."
-          ],
-          [
-           "update An alliance of<br>technology workers on Tuesday<br>accused conglomerate Honeywell<br>International of planning to<br>move thousands of jobs to low-<br>cost regions over the next<br>five years--a charge that<br>Honeywell denies."
-          ],
-          [
-           " NEW YORK (Reuters) - Northrop<br>Grumman Corp. &lt;A HREF=\"http<br>://www.investor.reuters.com/Fu<br>llQuote.aspx?ticker=NOC.N targ<br>et=/stocks/quickinfo/fullquote<br>\"&gt;NOC.N&lt;/A&gt;  reported<br>higher third-quarter earnings<br>on Wednesday and an 11<br>percent increase in sales on<br>strength in its mission<br>systems,  integrated systems,<br>ships and space technology<br>businesses."
-          ],
-          [
-           "TORONTO (CP) - Shares of<br>Iamgold fell more than 10 per<br>cent after its proposed merger<br>with Gold Fields Ltd. was<br>thrown into doubt Monday as<br>South Africa #39;s Harmony<br>Gold Mining Company Ltd."
-          ],
-          [
-           " LONDON (Reuters) - Oil prices<br>tumbled again on Monday to an<br>8-week low under \\$46 a<br>barrel, as growing fuel stocks<br>in the  United States eased<br>fears of a winter supply<br>crunch."
-          ],
-          [
-           "Alcoa Inc., one of the world<br>#39;s top producers of<br>aluminum, said Monday that it<br>received an unsolicited<br>quot;mini-tender quot; offer<br>from Toronto-based TRC Capital<br>Corp."
-          ],
-          [
-           "The European Commission is to<br>warn Greece about publishing<br>false information about its<br>public finances."
-          ],
-          [
-           " LONDON (Reuters) - U.S.<br>shares were expected to open<br>lower  on Wednesday after<br>crude oil pushed to a fresh<br>high overnight,  while Web<br>search engine Google Inc.<br>dented sentiment as it<br>slashed the price range on its<br>initial public offering."
-          ],
-          [
-           "The telemarketer at the other<br>end of Orlando Castelblanco<br>#39;s line promised to reduce<br>the consumer #39;s credit card<br>debt by at least \\$2,500 and<br>get his 20 percent -- and<br>growing -- interest rates down<br>to single digits."
-          ],
-          [
-           " NEW YORK (Reuters) - Blue-<br>chip stocks fell slightly on<br>Monday after No. 1 retailer<br>Wal-Mart Stores Inc. &lt;A HRE<br>F=\"http://www.investor.reuters<br>.com/FullQuote.aspx?ticker=WMT<br>.N target=/stocks/quickinfo/fu<br>llquote\"&gt;WMT.N&lt;/A&gt;<br>reported lower-than-expected<br>Thanksgiving sales, while<br>technology shares were lifted<br>by a rally in Apple Computer<br>Inc.  &lt;A HREF=\"http://www.i<br>nvestor.reuters.com/FullQuote.<br>aspx?ticker=AAPL.O target=/sto<br>cks/quickinfo/fullquote\"&gt;AA<br>PL.O&lt;/A&gt;."
-          ],
-          [
-           "WPP Group Inc., the world<br>#39;s second- largest<br>marketing and advertising<br>company, said it won the<br>bidding for Grey Global Group<br>Inc."
-          ],
-          [
-           " NEW YORK (Reuters) - Stocks<br>were slightly lower on<br>Tuesday,  as concerns about<br>higher oil prices cutting into<br>corporate  profits and<br>consumer demand weighed on<br>sentiment, while retail  sales<br>posted a larger-than-expected<br>decline in August."
-          ],
-          [
-           " SINGAPORE (Reuters) - Oil<br>prices climbed above \\$42 a<br>barrel  on Wednesday, rising<br>for the third day in a row as<br>the heavy  consuming U.S.<br>Northeast feels the first<br>chills of winter."
-          ],
-          [
-           " NEW YORK (Reuters) - Merck<br>Co Inc. &lt;A HREF=\"http://www<br>.investor.reuters.com/FullQuot<br>e.aspx?ticker=MRK.N target=/st<br>ocks/quickinfo/fullquote\"&gt;M<br>RK.N&lt;/A&gt; on Thursday<br>pulled its arthritis drug<br>Vioxx off the market after a<br>study  showed it doubled the<br>risk of heart attack and<br>stroke, a move  that sent its<br>shares plunging and erased<br>\\$25 billion from its  market<br>value."
-          ],
-          [
-           "The government on Wednesday<br>defended its decision to<br>radically revise the country<br>#39;s deficit figures, ahead<br>of a European Commission<br>meeting to consider possible<br>disciplinary action against<br>Greece for submitting faulty<br>figures."
-          ],
-          [
-           "OPEC ministers yesterday<br>agreed to increase their<br>ceiling for oil production to<br>help bring down stubbornly<br>high prices in a decision that<br>traders and analysts dismissed<br>as symbolic because the cartel<br>already is pumping more than<br>its new target."
-          ],
-          [
-           "Williams-Sonoma Inc. said<br>second- quarter profit rose 55<br>percent, boosted by the<br>addition of Pottery Barn<br>stores and sale of outdoor<br>furniture."
-          ],
-          [
-           " HONG KONG/SAN FRANCISCO<br>(Reuters) - China's largest<br>personal computer maker,<br>Lenovo Group Ltd., said on<br>Tuesday it  was in acquisition<br>talks with a major technology<br>company, which  a source<br>familiar with the situation<br>said was IBM."
-          ],
-          [
-           "Reuters - Oil prices stayed<br>close to  #36;49 a\\barrel on<br>Thursday, supported by a<br>forecast for an early<br>cold\\snap in the United States<br>that could put a strain on a<br>thin\\supply cushion of winter<br>heating fuel."
-          ],
-          [
-           "WASHINGTON (CBS.MW) --<br>President Bush announced<br>Monday that Kellogg chief<br>executive Carlos Gutierrez<br>would replace Don Evans as<br>Commerce secretary, naming the<br>first of many expected changes<br>to his economic team."
-          ],
-          [
-           "Iron Mountain moved further<br>into the backup and recovery<br>space Tuesday with the<br>acquisition of Connected Corp.<br>for \\$117 million. Connected<br>backs up desktop data for more<br>than 600 corporations, with<br>more than"
-          ],
-          [
-           "Montgomery County (website -<br>news) is a big step closer to<br>shopping for prescription<br>drugs north of the border. On<br>a 7-2 vote, the County Council<br>is approving a plan that would<br>give county"
-          ],
-          [
-           "The disclosure this week that<br>a Singapore-listed company<br>controlled by a Chinese state-<br>owned enterprise lost \\$550<br>million in derivatives<br>transactions"
-          ],
-          [
-           "VANCOUVER - A Vancouver-based<br>firm won #39;t sell 1.2<br>million doses of influenza<br>vaccine to the United States<br>after all, announcing Tuesday<br>that it will sell the doses<br>within Canada instead."
-          ],
-          [
-           "consortium led by the Sony<br>Corporation of America reached<br>a tentative agreement today to<br>buy Metro-Goldwyn-Mayer, the<br>Hollywood studio famous for<br>James Bond and the Pink<br>Panther, for"
-          ],
-          [
-           "The country-cooking restaurant<br>chain has agreed to pay \\$8.7<br>million over allegations that<br>it segregated black customers,<br>subjected them to racial slurs<br>and gave black workers<br>inferior jobs."
-          ],
-          [
-           " SINGAPORE (Reuters) -<br>Investors bought shares in<br>Asian  exporters and<br>electronics firms such as<br>Fujitsu Ltd. on  Tuesday,<br>buoyed by a favorable outlook<br>from U.S. technology<br>bellwethers and a slide in oil<br>prices."
-          ],
-          [
-           "Ace Ltd. will stop paying<br>brokers for steering business<br>its way, becoming the third<br>company to make concessions in<br>the five days since New York<br>Attorney General Eliot Spitzer<br>unveiled a probe of the<br>insurance industry."
-          ],
-          [
-           "Wm. Wrigley Jr. Co., the world<br>#39;s largest maker of chewing<br>gum, agreed to buy candy<br>businesses including Altoids<br>mints and Life Savers from<br>Kraft Foods Inc."
-          ],
-          [
-           " #39;Reaching a preliminary<br>pilot agreement is the single<br>most important hurdle they<br>have to clear, but certainly<br>not the only one."
-          ],
-          [
-           "TORONTO (CP) - Canada #39;s<br>big banks are increasing<br>mortgage rates following a<br>decision by the Bank of Canada<br>to raise its overnight rate by<br>one-quarter of a percentage<br>point to 2.25 per cent."
-          ],
-          [
-           "OTTAWA (CP) - The economy<br>created another 43,000 jobs<br>last month, pushing the<br>unemployment rate down to 7.1<br>per cent from 7.2 per cent in<br>August, Statistics Canada said<br>Friday."
-          ],
-          [
-           " TOKYO (Reuters) - Japan's<br>Nikkei average rose 0.39<br>percent  by midsession on<br>Friday, bolstered by solid<br>gains in stocks  dependent on<br>domestic business such as Kao<br>Corp. &lt;A HREF=\"http://www.i<br>nvestor.reuters.com/FullQuote.<br>aspx?ticker=4452.T target=/sto<br>cks/quickinfo/fullquote\"&gt;44<br>52.T&lt;/A&gt;."
-          ],
-          [
-           " FRANKFURT (Reuters) -<br>DaimlerChrysler and General<br>Motors  will jointly develop<br>new hybrid motors to compete<br>against  Japanese rivals on<br>the fuel-saving technology<br>that reduces  harmful<br>emissions, the companies said<br>on Monday."
-          ],
-          [
-           "The bass should be in your<br>face. That's what Matt Kelly,<br>of Boston's popular punk rock<br>band Dropkick Murphys, thinks<br>is the mark of a great stereo<br>system. And he should know.<br>Kelly, 29, is the drummer for<br>the band that likes to think<br>of itself as a bit of an Irish<br>lucky charm for the Red Sox."
-          ],
-          [
-           "Slumping corporate spending<br>and exports caused the economy<br>to slow to a crawl in the<br>July-September period, with<br>real gross domestic product<br>expanding just 0.1 percent<br>from the previous quarter,<br>Cabinet Office data showed<br>Friday."
-          ],
-          [
-           "US President George W. Bush<br>signed into law a bill<br>replacing an export tax<br>subsidy that violated<br>international trade rules with<br>a \\$145 billion package of new<br>corporate tax cuts and a<br>buyout for tobacco farmers."
-          ],
-          [
-           "The Nikkei average was up 0.37<br>percent in mid-morning trade<br>on Thursday as a recovery in<br>the dollar helped auto makers<br>among other exporters, but<br>trade was slow as investors<br>waited for important Japanese<br>economic data."
-          ],
-          [
-           "Jennifer Canada knew she was<br>entering a boy's club when she<br>enrolled in Southern Methodist<br>University's Guildhall school<br>of video-game making."
-          ],
-          [
-           "SYDNEY (Dow Jones)--Colorado<br>Group Ltd. (CDO.AU), an<br>Australian footwear and<br>clothing retailer, said Monday<br>it expects net profit for the<br>fiscal year ending Jan. 29 to<br>be over 30 higher than that of<br>a year earlier."
-          ],
-          [
-           "NEW YORK - What are the odds<br>that a tiny nation like<br>Antigua and Barbuda could take<br>on the United States in an<br>international dispute and win?"
-          ],
-          [
-           "SBC Communications expects to<br>cut 10,000 or more jobs by the<br>end of next year through<br>layoffs and attrition. That<br>#39;s about six percent of the<br>San Antonio-based company<br>#39;s work force."
-          ],
-          [
-           "Another United Airlines union<br>is seeking to oust senior<br>management at the troubled<br>airline, saying its strategies<br>are reckless and incompetent."
-          ],
-          [
-           "Global oil prices boomed on<br>Wednesday, spreading fear that<br>energy prices will restrain<br>economic activity, as traders<br>worried about a heating oil<br>supply crunch in the American<br>winter."
-          ],
-          [
-           "Custom-designed imported<br>furniture was once an<br>exclusive realm. Now, it's the<br>economical alternative for<br>commercial developers and<br>designers needing everything<br>from seats to beds to desks<br>for their projects."
-          ],
-          [
-           "Short-term interest rate<br>futures struggled on Thursday<br>after a government report<br>showing US core inflation for<br>August below market<br>expectations failed to alter<br>views on Federal Reserve rate<br>policy."
-          ],
-          [
-           "Samsung is now the world #39;s<br>second-largest mobile phone<br>maker, behind Nokia. According<br>to market watcher Gartner, the<br>South Korean company has<br>finally knocked Motorola into<br>third place."
-          ],
-          [
-           " TOKYO (Reuters) - Tokyo<br>stocks climbed to a two week<br>high  on Friday after Tokyo<br>Electron Ltd. and other chip-<br>related  stocks were boosted<br>by a bullish revenue outlook<br>from industry  leader Intel<br>Corp."
-          ],
-          [
-           " NEW YORK (Reuters) - Adobe<br>Systems Inc. &lt;A HREF=\"http:<br>//www.investor.reuters.com/Ful<br>lQuote.aspx?ticker=ADBE.O targ<br>et=/stocks/quickinfo/fullquote<br>\"&gt;ADBE.O&lt;/A&gt; on<br>Monday  reported a sharp rise<br>in quarterly profit, driven by<br>robust  demand for its<br>Photoshop and document-sharing<br>software."
-          ],
-          [
-           "Dow Jones  amp; Co., publisher<br>of The Wall Street Journal,<br>has agreed to buy online<br>financial news provider<br>MarketWatch Inc. for about<br>\\$463 million in a bid to<br>boost its revenue from the<br>fast-growing Internet<br>advertising market."
-          ],
-          [
-           "Low-fare airline ATA has<br>announced plans to lay off<br>hundreds of employees and to<br>drop most of its flights out<br>of Midway Airport in Chicago."
-          ],
-          [
-           " WASHINGTON (Reuters) -<br>Germany's Bayer AG &lt;A HREF=<br>\"http://www.investor.reuters.c<br>om/FullQuote.aspx?ticker=BAYG.<br>DE target=/stocks/quickinfo/fu<br>llquote\"&gt;BAYG.DE&lt;/A&gt;<br>has  agreed to plead guilty<br>and pay a \\$4.7 million fine<br>for taking  part in a<br>conspiracy to fix the prices<br>of synthetic rubber, the  U.S.<br>Justice Department said on<br>Wednesday."
-          ],
-          [
-           "The US oil giant got a good<br>price, Russia #39;s No. 1 oil<br>company acquired a savvy<br>partner, and Putin polished<br>Russia #39;s image."
-          ],
-          [
-           "The maker of Hostess Twinkies,<br>a cake bar and a piece of<br>Americana children have<br>snacked on for almost 75<br>years, yesterday raised<br>concerns about the company<br>#39;s ability to stay in<br>business."
-          ],
-          [
-           "Tenet Healthcare Corp., the<br>second- largest US hospital<br>chain, said fourth-quarter<br>charges may exceed \\$1 billion<br>and its loss from continuing<br>operations will widen from the<br>third quarter #39;s because of<br>increased bad debt."
-          ],
-          [
-           "The London-based brokerage<br>Collins Stewart Tullett placed<br>55m of new shares yesterday to<br>help fund the 69.5m purchase<br>of the money and futures<br>broker Prebon."
-          ],
-          [
-           " PARIS (Reuters) - European<br>equities flirted with 5-month<br>peaks as hopes that economic<br>growth was sustainable and a<br>small  dip in oil prices<br>helped lure investors back to<br>recent  underperformers such<br>as technology and insurance<br>stocks."
-          ],
-          [
-           " NEW YORK (Reuters) - U.S.<br>stocks looked to open higher<br>on  Friday, as the fourth<br>quarter begins on Wall Street<br>with oil  prices holding below<br>\\$50 a barrel."
-          ],
-          [
-           "LONDON : World oil prices<br>stormed above 54 US dollars<br>for the first time Tuesday as<br>strikes in Nigeria and Norway<br>raised worries about possible<br>supply shortages during the<br>northern hemisphere winter."
-          ],
-          [
-           "US stocks were little changed<br>on Thursday as an upbeat<br>earnings report from chip<br>maker National Semiconductor<br>Corp. (NSM) sparked some<br>buying, but higher oil prices<br>limited gains."
-          ]
-         ],
-         "hovertemplate": "label=Business<br>Component 0=%{x}<br>Component 1=%{y}<br>string=%{customdata[0]}<extra></extra>",
-         "legendgroup": "Business",
-         "marker": {
-          "color": "#ab63fa",
-          "size": 5,
-          "symbol": "x"
-         },
-         "mode": "markers",
-         "name": "Business",
-         "showlegend": true,
-         "type": "scattergl",
-         "x": [
-          -23.452963,
-          -53.210773,
-          -39.491558,
-          -28.231606,
-          -19.31264,
-          -47.410145,
-          -29.877638,
-          -40.76841,
-          -5.107883,
-          -42.131943,
-          -32.52056,
-          -39.654697,
-          12.912951,
-          -18.497515,
-          -48.55776,
-          -53.367012,
-          -27.265852,
-          -25.208595,
-          -30.356327,
-          -49.554066,
-          -29.197483,
-          -43.75864,
-          -33.627903,
-          -28.459074,
-          -33.894855,
-          -5.484721,
-          -36.616104,
-          -53.822376,
-          -44.628685,
-          -19.861258,
-          -44.997097,
-          -37.276833,
-          -19.60824,
-          -38.214413,
-          20.328302,
-          -23.330465,
-          -35.855865,
-          -18.20647,
-          -53.65577,
-          -33.435104,
-          -1.9387143,
-          -32.65333,
-          -11.705121,
-          -23.656853,
-          -34.370987,
-          -33.846046,
-          -41.55955,
-          -31.4103,
-          -41.654114,
-          -43.58004,
-          -20.22472,
-          -41.80841,
-          -43.47724,
-          -28.54648,
-          -55.67927,
-          -27.870377,
-          -11.352515,
-          -46.313496,
-          -46.637367,
-          -38.786,
-          -18.44551,
-          -34.186226,
-          -37.5602,
-          -5.632542,
-          -45.209023,
-          -31.500145,
-          -51.390118,
-          -42.6501,
-          -6.2927465,
-          -46.257027,
-          -23.71305,
-          -55.86017,
-          -34.78124,
-          -35.732872,
-          -39.5287,
-          -6.6976542,
-          -26.256298,
-          -34.82042,
-          -45.549995,
-          -48.911743,
-          -10.257471,
-          45.230713,
-          -16.951935,
-          -19.065458,
-          -22.693665,
-          -44.68482,
-          -29.42919,
-          -30.674974,
-          13.034079,
-          -15.232134,
-          -7.2577205,
-          -27.285727,
-          -37.857563,
-          -30.674488,
-          -37.931133,
-          -47.091602,
-          -16.122215,
-          -28.833778,
-          -7.503495,
-          -42.6552,
-          -37.64758,
-          -14.742917,
-          -19.793585,
-          -53.133896,
-          -44.98284,
-          -47.514927,
-          -40.143944,
-          -29.305222,
-          -19.33182,
-          -49.376717,
-          -32.70729,
-          -34.81799,
-          -22.524883,
-          -12.82885,
-          -46.24378,
-          -29.501112,
-          -5.0456986,
-          -47.141144,
-          -36.80437,
-          -8.335074,
-          -11.501718,
-          -42.394825,
-          -11.57566,
-          -29.24355,
-          -53.3065,
-          -42.896793,
-          -15.898649,
-          1.5646982,
-          -51.349506,
-          -27.663815,
-          -23.031208,
-          -37.19868,
-          -31.336668,
-          -6.1798644,
-          -50.869877,
-          -44.016224,
-          -24.092436,
-          -6.3253975,
-          -49.846096,
-          -37.92231,
-          -20.485857,
-          -52.251915,
-          -42.127716,
-          -45.652252,
-          -39.891853,
-          -24.499039,
-          -9.765382,
-          -42.07617,
-          -46.420776,
-          -36.030876,
-          -16.348925,
-          -28.402678,
-          -18.734745,
-          -28.94602,
-          -23.825924,
-          -22.952112,
-          -45.96224,
-          -37.039566,
-          -15.194927,
-          -28.049438,
-          -12.567652,
-          -40.062756,
-          -52.438923,
-          -24.236567,
-          -54.033554,
-          -27.801344,
-          -52.71393,
-          -13.981046,
-          -10.861444,
-          -48.87469,
-          -35.826897,
-          -31.892145,
-          -3.1801224,
-          -31.190088,
-          -44.238426,
-          -24.869604,
-          34.078384,
-          -19.088882,
-          -32.190376,
-          -25.71062,
-          -22.265373,
-          -52.42964,
-          -7.045784,
-          -6.436385,
-          -21.87981,
-          -37.63322,
-          -30.145031,
-          -45.900715,
-          -54.722725,
-          -9.91315,
-          -33.41616,
-          -29.682985,
-          -21.902475,
-          -38.86974,
-          -49.362682,
-          -38.69257,
-          -29.136082,
-          -35.14978,
-          -37.452244,
-          1.1558152,
-          -27.990711,
-          -7.9959974,
-          -23.705156,
-          -27.350927,
-          7.0387945,
-          -22.092422,
-          -44.570576,
-          -49.361073,
-          -28.812906,
-          -42.660313,
-          -34.603184,
-          7.4309235,
-          -35.853523,
-          -52.502518,
-          -32.07786,
-          -48.87661,
-          -45.17925,
-          -20.502497,
-          -50.661304,
-          -47.05539,
-          -11.594388,
-          -23.063238,
-          -41.108536,
-          -36.380856,
-          -22.186844,
-          -47.564026,
-          -0.203547,
-          -45.418346,
-          -32.97913,
-          -29.1495,
-          -34.859055,
-          -12.614871,
-          -33.125538,
-          -30.265446,
-          -24.302145,
-          -38.971054,
-          -6.6933794,
-          -37.11219,
-          -12.324585,
-          -27.018137,
-          -30.541101,
-          -23.530384,
-          -23.313187,
-          9.910433,
-          -31.606474,
-          -46.921032,
-          -34.711258,
-          -43.354763,
-          -33.235416,
-          -45.437263,
-          -27.061964,
-          -20.385843,
-          -41.675705,
-          -3.9804885,
-          -48.024345,
-          -12.530503,
-          -34.855972,
-          -17.363302,
-          -0.31910038,
-          -20.422543,
-          -48.115654,
-          -19.632275,
-          -41.17226,
-          -33.03263,
-          -30.970875,
-          1.7612854,
-          -28.959257,
-          -42.69843,
-          -18.173891,
-          -50.46992,
-          -22.095016,
-          -43.79571,
-          -48.04673,
-          -10.504851,
-          -45.725693,
-          -49.58257,
-          -20.070473,
-          -27.236769,
-          -37.01328,
-          -19.117485,
-          -39.115543,
-          -29.740028,
-          -34.482994,
-          -21.63138,
-          -4.696033,
-          -4.852559,
-          -17.729515,
-          -29.865084,
-          -46.45139,
-          -9.0318775,
-          -8.188348,
-          -26.325634,
-          -13.60535,
-          -34.409237,
-          -46.677288,
-          -45.882183,
-          -32.426746,
-          2.8495433,
-          -2.2277532,
-          -18.868166,
-          19.120626,
-          -21.790516,
-          -8.934254,
-          -26.787775,
-          -12.61641,
-          -12.760466,
-          -9.973649,
-          -5.3010283,
-          -46.84005,
-          -40.78544,
-          -46.046387,
-          -23.913462,
-          -10.10402,
-          -34.200912,
-          -40.844006,
-          -29.91782,
-          -19.92304,
-          -41.66086,
-          -57.68235,
-          -29.327738,
-          -27.266224,
-          -49.10616,
-          -4.6537275,
-          -8.695738,
-          -52.898724,
-          -40.76337,
-          -36.72977,
-          -37.2606,
-          -54.428818,
-          -9.159126,
-          -46.200623,
-          -13.831901,
-          -21.605253,
-          -45.533035,
-          -55.4472,
-          -34.02309,
-          -5.918376,
-          -42.396126,
-          -16.095537,
-          -21.678917,
-          -10.15981,
-          -4.0862207,
-          -54.596252,
-          -34.252632,
-          -16.827753,
-          -32.974155,
-          -36.174,
-          -19.309122,
-          -28.692097,
-          -10.5037985,
-          -44.20961,
-          -39.52826,
-          -27.136961,
-          -34.181965,
-          10.556734,
-          -48.20029,
-          9.239984,
-          -7.4418893,
-          -28.779457,
-          -35.19683,
-          -54.1994,
-          -26.758255,
-          -54.634964,
-          -43.92253,
-          -39.611347,
-          -24.87918,
-          -22.471472,
-          -36.996124,
-          -46.204945,
-          -24.678703,
-          -36.588448,
-          -12.811854,
-          -0.94040644,
-          -44.44866,
-          -4.227074,
-          -22.860474,
-          -10.390649,
-          -36.567635,
-          -12.951042,
-          -30.48289,
-          -38.7589,
-          -36.49073,
-          -6.355229,
-          -43.13706,
-          -19.532629,
-          -36.42381,
-          -46.434704,
-          -29.59413,
-          -27.002981,
-          -20.752146,
-          -18.822731,
-          -23.879477,
-          -49.73623,
-          -20.585733,
-          -32.563313,
-          -8.220228,
-          -50.147823,
-          19.135786,
-          -47.881756,
-          -28.388693,
-          -17.01861,
-          -49.997864,
-          -38.691113,
-          -53.174366,
-          0.79674417,
-          -44.02579,
-          0.5841107,
-          -28.108793,
-          -8.663238,
-          -8.084352,
-          -39.750137,
-          -16.89367,
-          -34.483925,
-          -27.989662,
-          12.8087,
-          -25.524998,
-          -46.526306,
-          -54.849133,
-          -40.10975,
-          -36.69884,
-          -9.612953,
-          -28.30938,
-          -35.854397,
-          -40.808376,
-          -5.0891867,
-          -45.114822,
-          -25.18432,
-          -41.517033,
-          -54.139446,
-          -25.219833,
-          -53.989174,
-          -34.2908,
-          -40.278057,
-          -28.372087,
-          -28.535112,
-          -16.299625,
-          -27.921608,
-          -36.991142,
-          6.9097495,
-          -20.261177,
-          -4.775729,
-          -24.145273,
-          -29.613533,
-          -11.283554,
-          -48.772636,
-          -53.829735,
-          -15.053305,
-          -8.963649,
-          -9.277499,
-          -15.22937,
-          -21.86168,
-          -7.6405187,
-          -31.572515,
-          -52.86785,
-          -35.83179,
-          -36.710674,
-          -21.823997,
-          -1.3200667,
-          -40.638805,
-          -12.411886,
-          -41.362526,
-          -24.7866,
-          -40.258007,
-          -37.48171,
-          -23.877874,
-          -0.9994553,
-          -34.842422,
-          -51.40557,
-          -31.760511,
-          -36.74732,
-          -5.775708,
-          -32.659416,
-          -3.8920984,
-          -10.574449,
-          -20.651194,
-          -26.427645,
-          -14.214475,
-          -48.196377,
-          -10.817454,
-          -25.303522,
-          -23.521646,
-          -43.41168,
-          -44.33141,
-          -49.86946,
-          -25.189764,
-          64.17483,
-          -40.866665,
-          7.287593,
-          -48.861267,
-          22.103119,
-          -49.37285,
-          -0.5269812,
-          -33.893284,
-          -27.523653,
-          -37.509644,
-          -48.43532,
-          -37.623196,
-          -55.58907,
-          -49.322422,
-          -52.688995,
-          -29.522964,
-          -30.956533,
-          -15.489649,
-          -21.36634,
-          -32.821945,
-          -30.13521,
-          -20.815348,
-          -47.19078,
-          -45.82224,
-          -36.344696,
-          -43.422806
-         ],
-         "xaxis": "x",
-         "y": [
-          7.8286805,
-          13.600263,
-          18.938295,
-          3.4177885,
-          -23.29184,
-          12.92886,
-          7.4292397,
-          25.03953,
-          -3.3929446,
-          24.970749,
-          0.9335098,
-          26.929127,
-          -26.440922,
-          9.1828,
-          -14.938796,
-          13.022359,
-          -21.471975,
-          -25.318462,
-          9.6741905,
-          12.820546,
-          4.9088416,
-          -17.468342,
-          -20.446613,
-          8.161042,
-          5.007877,
-          6.2455893,
-          12.575957,
-          13.993413,
-          22.678474,
-          14.391562,
-          17.073126,
-          30.481924,
-          -16.22469,
-          20.519714,
-          -24.165535,
-          7.7406225,
-          5.442065,
-          9.661537,
-          7.6243353,
-          4.249151,
-          -21.713743,
-          12.867583,
-          -10.440891,
-          -8.8150835,
-          12.972686,
-          4.730411,
-          30.71818,
-          6.520791,
-          21.164257,
-          -8.373115,
-          -17.390278,
-          31.114712,
-          30.646704,
-          6.923768,
-          20.141148,
-          8.499566,
-          -10.837732,
-          7.830664,
-          24.00407,
-          24.8098,
-          -24.985989,
-          -11.249722,
-          27.957365,
-          6.4599543,
-          28.99686,
-          -18.920874,
-          9.491719,
-          33.583965,
-          -0.7140172,
-          28.585188,
-          1.3020672,
-          -5.6699047,
-          18.828894,
-          20.908062,
-          19.798025,
-          -23.965172,
-          8.796663,
-          32.09736,
-          26.441679,
-          21.586815,
-          -22.324871,
-          -27.750652,
-          -28.93897,
-          -23.277813,
-          16.425425,
-          18.54026,
-          -0.26035935,
-          -21.057713,
-          -26.390093,
-          -21.929888,
-          -11.895842,
-          -26.575148,
-          15.54324,
-          -29.652391,
-          18.134205,
-          10.717227,
-          -19.211506,
-          16.122732,
-          -14.575271,
-          33.287487,
-          12.847039,
-          -13.995945,
-          14.344031,
-          7.419209,
-          28.721743,
-          21.439281,
-          25.772839,
-          5.9104095,
-          -11.143075,
-          20.674139,
-          5.2307787,
-          28.700588,
-          -16.839674,
-          -6.9957857,
-          19.155857,
-          22.57425,
-          4.2664466,
-          17.716654,
-          13.592724,
-          35.79897,
-          -7.505608,
-          25.960653,
-          -6.362675,
-          -25.562366,
-          14.799318,
-          24.331854,
-          -1.1096494,
-          -27.81828,
-          10.189425,
-          -25.194714,
-          -19.704374,
-          23.483368,
-          8.0363655,
-          -11.6483135,
-          12.337329,
-          27.538383,
-          26.484413,
-          -16.154268,
-          7.6020126,
-          20.629124,
-          16.143784,
-          7.7047353,
-          3.5172246,
-          23.261137,
-          21.07103,
-          -14.940109,
-          -20.06512,
-          20.645449,
-          -13.735753,
-          26.788364,
-          -24.88111,
-          16.572128,
-          -15.456796,
-          1.9859632,
-          7.721218,
-          -12.5096655,
-          2.0307107,
-          16.297318,
-          -21.899122,
-          -19.075409,
-          -14.551722,
-          24.951237,
-          15.502925,
-          -26.033178,
-          5.509095,
-          16.660208,
-          9.362999,
-          -14.059228,
-          -17.933233,
-          -22.175861,
-          26.15921,
-          -23.924995,
-          15.090964,
-          -3.5818095,
-          25.846468,
-          23.278618,
-          -25.306404,
-          -15.10728,
-          10.148522,
-          7.5768538,
-          -23.194473,
-          13.976609,
-          -11.945698,
-          -16.428364,
-          -28.303225,
-          19.381159,
-          7.8694215,
-          2.0052595,
-          15.873175,
-          -11.668809,
-          7.235856,
-          -21.42294,
-          -21.904455,
-          9.315685,
-          20.726511,
-          17.144817,
-          2.2092547,
-          27.541485,
-          28.821224,
-          34.996464,
-          4.8909636,
-          -12.007193,
-          -23.275118,
-          1.5220636,
-          -0.8274632,
-          -11.567605,
-          -7.7168093,
-          3.9182017,
-          22.896002,
-          33.52397,
-          29.210163,
-          -4.9220414,
-          22.216219,
-          16.870352,
-          -11.452592,
-          13.475318,
-          22.79436,
-          -17.442066,
-          12.352939,
-          26.730667,
-          -12.461162,
-          -19.692043,
-          16.529331,
-          24.65294,
-          -5.132745,
-          19.01329,
-          -2.7055879,
-          27.475252,
-          14.475491,
-          0.96339697,
-          31.858027,
-          -16.143095,
-          -15.854709,
-          16.484713,
-          -23.097334,
-          18.896671,
-          34.8398,
-          13.576438,
-          -14.182415,
-          8.168441,
-          13.999631,
-          8.972529,
-          14.504229,
-          24.289896,
-          -3.5055225,
-          15.380986,
-          3.7059414,
-          0.16963075,
-          21.913166,
-          22.36791,
-          16.85544,
-          17.925854,
-          25.043688,
-          -13.892162,
-          8.306711,
-          -6.695091,
-          6.3890157,
-          -3.9792998,
-          0.70931256,
-          -20.58928,
-          26.520325,
-          21.436638,
-          18.802984,
-          14.603634,
-          7.0568976,
-          31.796051,
-          -26.096392,
-          28.98958,
-          -24.192507,
-          21.682661,
-          16.40951,
-          20.87726,
-          12.556309,
-          -15.915366,
-          23.323511,
-          8.230685,
-          -17.60057,
-          6.01643,
-          14.907442,
-          -19.740395,
-          -21.907415,
-          5.0985155,
-          10.961509,
-          -21.606695,
-          -19.460848,
-          -1.0193497,
-          -5.6577854,
-          -19.941338,
-          32.26841,
-          -20.533716,
-          35.702885,
-          -22.034695,
-          -13.390235,
-          4.2575808,
-          27.501059,
-          -1.931646,
-          24.216267,
-          -8.099275,
-          2.2845645,
-          -17.30228,
-          -3.5722063,
-          11.71164,
-          -16.890417,
-          -21.589676,
-          -14.588415,
-          -17.137983,
-          -11.65064,
-          -1.327813,
-          21.326263,
-          15.523962,
-          -1.839738,
-          15.938968,
-          -5.59304,
-          8.384921,
-          32.041183,
-          9.530565,
-          -23.740261,
-          -5.3864436,
-          -13.534582,
-          8.064646,
-          -8.887762,
-          8.281391,
-          -14.383507,
-          -17.226963,
-          21.001068,
-          23.757103,
-          14.622503,
-          26.616285,
-          -17.779476,
-          -16.79903,
-          29.02862,
-          -9.61028,
-          -10.290435,
-          26.314108,
-          20.082417,
-          7.00291,
-          -14.920918,
-          31.43023,
-          -10.685339,
-          16.79463,
-          -22.31949,
-          -14.08771,
-          1.3350589,
-          6.380316,
-          -12.914869,
-          6.286185,
-          18.577192,
-          -14.996935,
-          9.808406,
-          7.8065777,
-          25.720367,
-          27.335323,
-          -27.719013,
-          15.222469,
-          31.183216,
-          16.581377,
-          -1.3270321,
-          -24.535004,
-          -35.037914,
-          27.32407,
-          2.2356973,
-          -19.28855,
-          -16.932995,
-          11.079847,
-          11.247658,
-          23.26528,
-          -5.613793,
-          21.349566,
-          26.02513,
-          -20.807219,
-          9.496942,
-          -15.057436,
-          -14.524883,
-          30.993462,
-          -18.399357,
-          -12.452006,
-          -14.193346,
-          7.1376367,
-          -11.71116,
-          10.333615,
-          25.406893,
-          -30.53585,
-          -0.6449607,
-          13.889341,
-          -14.508683,
-          -15.281551,
-          32.249325,
-          12.763572,
-          -19.383118,
-          -11.329933,
-          -19.62514,
-          17.039936,
-          12.198028,
-          17.744976,
-          21.359537,
-          -21.386267,
-          14.2712755,
-          -3.9283407,
-          10.8514185,
-          -19.329512,
-          -17.759117,
-          14.102587,
-          -17.441105,
-          19.873198,
-          35.126564,
-          22.92706,
-          -5.8584995,
-          -25.70212,
-          -24.459936,
-          -24.834877,
-          13.346765,
-          -17.298498,
-          9.108203,
-          1.7839518,
-          33.032204,
-          -8.874142,
-          19.918457,
-          13.791234,
-          19.88417,
-          26.08512,
-          35.79187,
-          -20.758772,
-          27.588259,
-          26.69215,
-          -18.813177,
-          20.353582,
-          -22.663652,
-          22.6146,
-          14.793362,
-          -15.245933,
-          -20.736963,
-          -14.522557,
-          23.530079,
-          -12.780764,
-          24.898293,
-          -16.473738,
-          1.9298484,
-          20.942158,
-          -5.986609,
-          18.014528,
-          -18.893454,
-          -26.197563,
-          19.50926,
-          -13.34786,
-          13.471852,
-          18.979578,
-          -15.592323,
-          -21.118057,
-          -10.412807,
-          -13.279965,
-          -28.35139,
-          -14.49968,
-          4.322983,
-          14.2359915,
-          16.888266,
-          26.655972,
-          -21.796993,
-          -2.695157,
-          20.795307,
-          -25.788994,
-          18.527788,
-          -20.973848,
-          21.49163,
-          28.852188,
-          16.580437,
-          -2.6463892,
-          31.668863,
-          10.09489,
-          -19.010218,
-          27.96568,
-          -24.00849,
-          -16.797096,
-          -5.864986,
-          -14.093458,
-          -11.445573,
-          -23.317041,
-          -15.430166,
-          20.119074,
-          -11.128392,
-          -22.75563,
-          5.6336102,
-          30.831476,
-          27.198599,
-          20.937487,
-          -15.238694,
-          -20.764137,
-          25.318214,
-          -4.7924676,
-          22.43602,
-          -29.857277,
-          9.825396,
-          3.6917143,
-          7.166533,
-          6.549803,
-          27.198914,
-          -3.37324,
-          22.221628,
-          -16.78678,
-          20.027725,
-          15.184932,
-          -21.060045,
-          6.1585164,
-          -11.634907,
-          -17.1438,
-          15.137199,
-          12.653392,
-          -25.22734,
-          20.774977,
-          20.526009,
-          28.81767,
-          19.897066
-         ],
-         "yaxis": "y"
-        }
-       ],
-       "layout": {
-        "height": 500,
-        "legend": {
-         "title": {
-          "text": "label"
-         },
-         "tracegroupgap": 0
-        },
-        "template": {
-         "data": {
-          "bar": [
-           {
-            "error_x": {
-             "color": "#2a3f5f"
-            },
-            "error_y": {
-             "color": "#2a3f5f"
-            },
-            "marker": {
-             "line": {
-              "color": "#E5ECF6",
-              "width": 0.5
-             },
-             "pattern": {
-              "fillmode": "overlay",
-              "size": 10,
-              "solidity": 0.2
-             }
-            },
-            "type": "bar"
-           }
-          ],
-          "barpolar": [
-           {
-            "marker": {
-             "line": {
-              "color": "#E5ECF6",
-              "width": 0.5
-             },
-             "pattern": {
-              "fillmode": "overlay",
-              "size": 10,
-              "solidity": 0.2
-             }
-            },
-            "type": "barpolar"
-           }
-          ],
-          "carpet": [
-           {
-            "aaxis": {
-             "endlinecolor": "#2a3f5f",
-             "gridcolor": "white",
-             "linecolor": "white",
-             "minorgridcolor": "white",
-             "startlinecolor": "#2a3f5f"
-            },
-            "baxis": {
-             "endlinecolor": "#2a3f5f",
-             "gridcolor": "white",
-             "linecolor": "white",
-             "minorgridcolor": "white",
-             "startlinecolor": "#2a3f5f"
-            },
-            "type": "carpet"
-           }
-          ],
-          "choropleth": [
-           {
-            "colorbar": {
-             "outlinewidth": 0,
-             "ticks": ""
-            },
-            "type": "choropleth"
-           }
-          ],
-          "contour": [
-           {
-            "colorbar": {
-             "outlinewidth": 0,
-             "ticks": ""
-            },
-            "colorscale": [
-             [
-              0,
-              "#0d0887"
-             ],
-             [
-              0.1111111111111111,
-              "#46039f"
-             ],
-             [
-              0.2222222222222222,
-              "#7201a8"
-             ],
-             [
-              0.3333333333333333,
-              "#9c179e"
-             ],
-             [
-              0.4444444444444444,
-              "#bd3786"
-             ],
-             [
-              0.5555555555555556,
-              "#d8576b"
-             ],
-             [
-              0.6666666666666666,
-              "#ed7953"
-             ],
-             [
-              0.7777777777777778,
-              "#fb9f3a"
-             ],
-             [
-              0.8888888888888888,
-              "#fdca26"
-             ],
-             [
-              1,
-              "#f0f921"
-             ]
-            ],
-            "type": "contour"
-           }
-          ],
-          "contourcarpet": [
-           {
-            "colorbar": {
-             "outlinewidth": 0,
-             "ticks": ""
-            },
-            "type": "contourcarpet"
-           }
-          ],
-          "heatmap": [
-           {
-            "colorbar": {
-             "outlinewidth": 0,
-             "ticks": ""
-            },
-            "colorscale": [
-             [
-              0,
-              "#0d0887"
-             ],
-             [
-              0.1111111111111111,
-              "#46039f"
-             ],
-             [
-              0.2222222222222222,
-              "#7201a8"
-             ],
-             [
-              0.3333333333333333,
-              "#9c179e"
-             ],
-             [
-              0.4444444444444444,
-              "#bd3786"
-             ],
-             [
-              0.5555555555555556,
-              "#d8576b"
-             ],
-             [
-              0.6666666666666666,
-              "#ed7953"
-             ],
-             [
-              0.7777777777777778,
-              "#fb9f3a"
-             ],
-             [
-              0.8888888888888888,
-              "#fdca26"
-             ],
-             [
-              1,
-              "#f0f921"
-             ]
-            ],
-            "type": "heatmap"
-           }
-          ],
-          "heatmapgl": [
-           {
-            "colorbar": {
-             "outlinewidth": 0,
-             "ticks": ""
-            },
-            "colorscale": [
-             [
-              0,
-              "#0d0887"
-             ],
-             [
-              0.1111111111111111,
-              "#46039f"
-             ],
-             [
-              0.2222222222222222,
-              "#7201a8"
-             ],
-             [
-              0.3333333333333333,
-              "#9c179e"
-             ],
-             [
-              0.4444444444444444,
-              "#bd3786"
-             ],
-             [
-              0.5555555555555556,
-              "#d8576b"
-             ],
-             [
-              0.6666666666666666,
-              "#ed7953"
-             ],
-             [
-              0.7777777777777778,
-              "#fb9f3a"
-             ],
-             [
-              0.8888888888888888,
-              "#fdca26"
-             ],
-             [
-              1,
-              "#f0f921"
-             ]
-            ],
-            "type": "heatmapgl"
-           }
-          ],
-          "histogram": [
-           {
-            "marker": {
-             "pattern": {
-              "fillmode": "overlay",
-              "size": 10,
-              "solidity": 0.2
-             }
-            },
-            "type": "histogram"
-           }
-          ],
-          "histogram2d": [
-           {
-            "colorbar": {
-             "outlinewidth": 0,
-             "ticks": ""
-            },
-            "colorscale": [
-             [
-              0,
-              "#0d0887"
-             ],
-             [
-              0.1111111111111111,
-              "#46039f"
-             ],
-             [
-              0.2222222222222222,
-              "#7201a8"
-             ],
-             [
-              0.3333333333333333,
-              "#9c179e"
-             ],
-             [
-              0.4444444444444444,
-              "#bd3786"
-             ],
-             [
-              0.5555555555555556,
-              "#d8576b"
-             ],
-             [
-              0.6666666666666666,
-              "#ed7953"
-             ],
-             [
-              0.7777777777777778,
-              "#fb9f3a"
-             ],
-             [
-              0.8888888888888888,
-              "#fdca26"
-             ],
-             [
-              1,
-              "#f0f921"
-             ]
-            ],
-            "type": "histogram2d"
-           }
-          ],
-          "histogram2dcontour": [
-           {
-            "colorbar": {
-             "outlinewidth": 0,
-             "ticks": ""
-            },
-            "colorscale": [
-             [
-              0,
-              "#0d0887"
-             ],
-             [
-              0.1111111111111111,
-              "#46039f"
-             ],
-             [
-              0.2222222222222222,
-              "#7201a8"
-             ],
-             [
-              0.3333333333333333,
-              "#9c179e"
-             ],
-             [
-              0.4444444444444444,
-              "#bd3786"
-             ],
-             [
-              0.5555555555555556,
-              "#d8576b"
-             ],
-             [
-              0.6666666666666666,
-              "#ed7953"
-             ],
-             [
-              0.7777777777777778,
-              "#fb9f3a"
-             ],
-             [
-              0.8888888888888888,
-              "#fdca26"
-             ],
-             [
-              1,
-              "#f0f921"
-             ]
-            ],
-            "type": "histogram2dcontour"
-           }
-          ],
-          "mesh3d": [
-           {
-            "colorbar": {
-             "outlinewidth": 0,
-             "ticks": ""
-            },
-            "type": "mesh3d"
-           }
-          ],
-          "parcoords": [
-           {
-            "line": {
-             "colorbar": {
-              "outlinewidth": 0,
-              "ticks": ""
-             }
-            },
-            "type": "parcoords"
-           }
-          ],
-          "pie": [
-           {
-            "automargin": true,
-            "type": "pie"
-           }
-          ],
-          "scatter": [
-           {
-            "marker": {
-             "colorbar": {
-              "outlinewidth": 0,
-              "ticks": ""
-             }
-            },
-            "type": "scatter"
-           }
-          ],
-          "scatter3d": [
-           {
-            "line": {
-             "colorbar": {
-              "outlinewidth": 0,
-              "ticks": ""
-             }
-            },
-            "marker": {
-             "colorbar": {
-              "outlinewidth": 0,
-              "ticks": ""
-             }
-            },
-            "type": "scatter3d"
-           }
-          ],
-          "scattercarpet": [
-           {
-            "marker": {
-             "colorbar": {
-              "outlinewidth": 0,
-              "ticks": ""
-             }
-            },
-            "type": "scattercarpet"
-           }
-          ],
-          "scattergeo": [
-           {
-            "marker": {
-             "colorbar": {
-              "outlinewidth": 0,
-              "ticks": ""
-             }
-            },
-            "type": "scattergeo"
-           }
-          ],
-          "scattergl": [
-           {
-            "marker": {
-             "colorbar": {
-              "outlinewidth": 0,
-              "ticks": ""
-             }
-            },
-            "type": "scattergl"
-           }
-          ],
-          "scattermapbox": [
-           {
-            "marker": {
-             "colorbar": {
-              "outlinewidth": 0,
-              "ticks": ""
-             }
-            },
-            "type": "scattermapbox"
-           }
-          ],
-          "scatterpolar": [
-           {
-            "marker": {
-             "colorbar": {
-              "outlinewidth": 0,
-              "ticks": ""
-             }
-            },
-            "type": "scatterpolar"
-           }
-          ],
-          "scatterpolargl": [
-           {
-            "marker": {
-             "colorbar": {
-              "outlinewidth": 0,
-              "ticks": ""
-             }
-            },
-            "type": "scatterpolargl"
-           }
-          ],
-          "scatterternary": [
-           {
-            "marker": {
-             "colorbar": {
-              "outlinewidth": 0,
-              "ticks": ""
-             }
-            },
-            "type": "scatterternary"
-           }
-          ],
-          "surface": [
-           {
-            "colorbar": {
-             "outlinewidth": 0,
-             "ticks": ""
-            },
-            "colorscale": [
-             [
-              0,
-              "#0d0887"
-             ],
-             [
-              0.1111111111111111,
-              "#46039f"
-             ],
-             [
-              0.2222222222222222,
-              "#7201a8"
-             ],
-             [
-              0.3333333333333333,
-              "#9c179e"
-             ],
-             [
-              0.4444444444444444,
-              "#bd3786"
-             ],
-             [
-              0.5555555555555556,
-              "#d8576b"
-             ],
-             [
-              0.6666666666666666,
-              "#ed7953"
-             ],
-             [
-              0.7777777777777778,
-              "#fb9f3a"
-             ],
-             [
-              0.8888888888888888,
-              "#fdca26"
-             ],
-             [
-              1,
-              "#f0f921"
-             ]
-            ],
-            "type": "surface"
-           }
-          ],
-          "table": [
-           {
-            "cells": {
-             "fill": {
-              "color": "#EBF0F8"
-             },
-             "line": {
-              "color": "white"
-             }
-            },
-            "header": {
-             "fill": {
-              "color": "#C8D4E3"
-             },
-             "line": {
-              "color": "white"
-             }
-            },
-            "type": "table"
-           }
-          ]
-         },
-         "layout": {
-          "annotationdefaults": {
-           "arrowcolor": "#2a3f5f",
-           "arrowhead": 0,
-           "arrowwidth": 1
-          },
-          "autotypenumbers": "strict",
-          "coloraxis": {
-           "colorbar": {
-            "outlinewidth": 0,
-            "ticks": ""
-           }
-          },
-          "colorscale": {
-           "diverging": [
-            [
-             0,
-             "#8e0152"
-            ],
-            [
-             0.1,
-             "#c51b7d"
-            ],
-            [
-             0.2,
-             "#de77ae"
-            ],
-            [
-             0.3,
-             "#f1b6da"
-            ],
-            [
-             0.4,
-             "#fde0ef"
-            ],
-            [
-             0.5,
-             "#f7f7f7"
-            ],
-            [
-             0.6,
-             "#e6f5d0"
-            ],
-            [
-             0.7,
-             "#b8e186"
-            ],
-            [
-             0.8,
-             "#7fbc41"
-            ],
-            [
-             0.9,
-             "#4d9221"
-            ],
-            [
-             1,
-             "#276419"
-            ]
-           ],
-           "sequential": [
-            [
-             0,
-             "#0d0887"
-            ],
-            [
-             0.1111111111111111,
-             "#46039f"
-            ],
-            [
-             0.2222222222222222,
-             "#7201a8"
-            ],
-            [
-             0.3333333333333333,
-             "#9c179e"
-            ],
-            [
-             0.4444444444444444,
-             "#bd3786"
-            ],
-            [
-             0.5555555555555556,
-             "#d8576b"
-            ],
-            [
-             0.6666666666666666,
-             "#ed7953"
-            ],
-            [
-             0.7777777777777778,
-             "#fb9f3a"
-            ],
-            [
-             0.8888888888888888,
-             "#fdca26"
-            ],
-            [
-             1,
-             "#f0f921"
-            ]
-           ],
-           "sequentialminus": [
-            [
-             0,
-             "#0d0887"
-            ],
-            [
-             0.1111111111111111,
-             "#46039f"
-            ],
-            [
-             0.2222222222222222,
-             "#7201a8"
-            ],
-            [
-             0.3333333333333333,
-             "#9c179e"
-            ],
-            [
-             0.4444444444444444,
-             "#bd3786"
-            ],
-            [
-             0.5555555555555556,
-             "#d8576b"
-            ],
-            [
-             0.6666666666666666,
-             "#ed7953"
-            ],
-            [
-             0.7777777777777778,
-             "#fb9f3a"
-            ],
-            [
-             0.8888888888888888,
-             "#fdca26"
-            ],
-            [
-             1,
-             "#f0f921"
-            ]
-           ]
-          },
-          "colorway": [
-           "#636efa",
-           "#EF553B",
-           "#00cc96",
-           "#ab63fa",
-           "#FFA15A",
-           "#19d3f3",
-           "#FF6692",
-           "#B6E880",
-           "#FF97FF",
-           "#FECB52"
-          ],
-          "font": {
-           "color": "#2a3f5f"
-          },
-          "geo": {
-           "bgcolor": "white",
-           "lakecolor": "white",
-           "landcolor": "#E5ECF6",
-           "showlakes": true,
-           "showland": true,
-           "subunitcolor": "white"
-          },
-          "hoverlabel": {
-           "align": "left"
-          },
-          "hovermode": "closest",
-          "mapbox": {
-           "style": "light"
-          },
-          "paper_bgcolor": "white",
-          "plot_bgcolor": "#E5ECF6",
-          "polar": {
-           "angularaxis": {
-            "gridcolor": "white",
-            "linecolor": "white",
-            "ticks": ""
-           },
-           "bgcolor": "#E5ECF6",
-           "radialaxis": {
-            "gridcolor": "white",
-            "linecolor": "white",
-            "ticks": ""
-           }
-          },
-          "scene": {
-           "xaxis": {
-            "backgroundcolor": "#E5ECF6",
-            "gridcolor": "white",
-            "gridwidth": 2,
-            "linecolor": "white",
-            "showbackground": true,
-            "ticks": "",
-            "zerolinecolor": "white"
-           },
-           "yaxis": {
-            "backgroundcolor": "#E5ECF6",
-            "gridcolor": "white",
-            "gridwidth": 2,
-            "linecolor": "white",
-            "showbackground": true,
-            "ticks": "",
-            "zerolinecolor": "white"
-           },
-           "zaxis": {
-            "backgroundcolor": "#E5ECF6",
-            "gridcolor": "white",
-            "gridwidth": 2,
-            "linecolor": "white",
-            "showbackground": true,
-            "ticks": "",
-            "zerolinecolor": "white"
-           }
-          },
-          "shapedefaults": {
-           "line": {
-            "color": "#2a3f5f"
-           }
-          },
-          "ternary": {
-           "aaxis": {
-            "gridcolor": "white",
-            "linecolor": "white",
-            "ticks": ""
-           },
-           "baxis": {
-            "gridcolor": "white",
-            "linecolor": "white",
-            "ticks": ""
-           },
-           "bgcolor": "#E5ECF6",
-           "caxis": {
-            "gridcolor": "white",
-            "linecolor": "white",
-            "ticks": ""
-           }
-          },
-          "title": {
-           "x": 0.05
-          },
-          "xaxis": {
-           "automargin": true,
-           "gridcolor": "white",
-           "linecolor": "white",
-           "ticks": "",
-           "title": {
-            "standoff": 15
-           },
-           "zerolinecolor": "white",
-           "zerolinewidth": 2
-          },
-          "yaxis": {
-           "automargin": true,
-           "gridcolor": "white",
-           "linecolor": "white",
-           "ticks": "",
-           "title": {
-            "standoff": 15
-           },
-           "zerolinecolor": "white",
-           "zerolinewidth": 2
-          }
-         }
-        },
-        "title": {
-         "text": "t-SNE components of article descriptions"
-        },
-        "width": 600,
-        "xaxis": {
-         "anchor": "y",
-         "domain": [
-          0,
-          1
-         ],
-         "title": {
-          "text": "Component 0"
-         }
-        },
-        "yaxis": {
-         "anchor": "x",
-         "domain": [
-          0,
-          1
-         ],
-         "title": {
-          "text": "Component 1"
-         }
-        }
-       }
-      }
-     },
-     "metadata": {},
-     "output_type": "display_data"
-    }
-   ],
-   "source": [
-    "# get embeddings for all article descriptions\n",
-    "embeddings = [embedding_from_string(string) for string in article_descriptions]\n",
-    "# compress the 2048-dimensional embeddings into 2 dimensions using t-SNE\n",
-    "tsne_components = tsne_components_from_embeddings(embeddings)\n",
-    "# get the article labels for coloring the chart\n",
-    "labels = df[\"label\"].tolist()\n",
-    "\n",
-    "chart_from_components(\n",
-    "    components=tsne_components,\n",
-    "    labels=labels,\n",
-    "    strings=article_descriptions,\n",
-    "    width=600,\n",
-    "    height=500,\n",
-    "    title=\"t-SNE components of article descriptions\",\n",
-    ")"
-   ]
-  },
-  {
-   "cell_type": "markdown",
-   "metadata": {},
-   "source": [
-    "As you can see in the chart above, even the highly compressed embeddings do a good job of clustering article descriptions by category. And it's worth emphasizing: this clustering is done with no knowledge of the labels themselves!\n",
-    "\n",
-    "Also, if you look closely at the most egregious outliers, they are often due to mislabeling rather than poor embedding. For example, the majority of the blue World points in the green Sports cluster appear to be Sports stories."
-   ]
-  },
-  {
-   "cell_type": "markdown",
-   "metadata": {},
-   "source": [
-    "Next, let's recolor the points by whether they are a source article, its nearest neighbors, or other."
-   ]
-  },
-  {
-   "cell_type": "code",
-   "execution_count": 10,
-   "metadata": {},
-   "outputs": [],
-   "source": [
-    "# create labels for the recommended articles\n",
-    "def nearest_neighbor_labels(\n",
-    "    list_of_indices: list[int],\n",
-    "    k_nearest_neighbors: int = 5\n",
-    ") -> list[str]:\n",
-    "    \"\"\"Return a list of labels to color the k nearest neighbors.\"\"\"\n",
-    "    labels = [\"Other\" for _ in list_of_indices]\n",
-    "    source_index = list_of_indices[0]\n",
-    "    labels[source_index] = \"Source\"\n",
-    "    for i in range(k_nearest_neighbors):\n",
-    "        nearest_neighbor_index = list_of_indices[i + 1]\n",
-    "        labels[nearest_neighbor_index] = f\"Nearest neighbor (top {k_nearest_neighbors})\"\n",
-    "    return labels\n",
-    "\n",
-    "\n",
-    "tony_blair_labels = nearest_neighbor_labels(tony_blair_articles, k_nearest_neighbors=5)\n",
-    "chipset_security_labels = nearest_neighbor_labels(chipset_security_articles, k_nearest_neighbors=5\n",
-    ")"
-   ]
-  },
-  {
-   "cell_type": "code",
-   "execution_count": 11,
-   "metadata": {},
-   "outputs": [
-    {
-     "data": {
-      "application/vnd.plotly.v1+json": {
-       "config": {
-        "plotlyServerURL": "https://plot.ly"
-       },
-       "data": [
-        {
-         "customdata": [
-          [
-           "PC World - Upcoming chip set<br>will include built-in security<br>features for your PC."
-          ],
-          [
-           "Newspapers in Greece reflect a<br>mixture of exhilaration that<br>the Athens Olympics proved<br>successful, and relief that<br>they passed off without any<br>major setback."
-          ],
-          [
-           "SAN JOSE, Calif. -- Apple<br>Computer (Quote, Chart)<br>unveiled a batch of new iPods,<br>iTunes software and promos<br>designed to keep it atop the<br>heap of digital music players."
-          ],
-          [
-           "Any product, any shape, any<br>size -- manufactured on your<br>desktop! The future is the<br>fabricator. By Bruce Sterling<br>from Wired magazine."
-          ],
-          [
-           "KABUL, Sept 22 (AFP): Three US<br>soldiers were killed and 14<br>wounded in a series of fierce<br>clashes with suspected Taliban<br>fighters in south and eastern<br>Afghanistan this week, the US<br>military said Wednesday."
-          ],
-          [
-           "The EU and US moved closer to<br>an aviation trade war after<br>failing to reach agreement<br>during talks Thursday on<br>subsidies to Airbus Industrie."
-          ],
-          [
-           "AUSTRALIAN journalist John<br>Martinkus is lucky to be alive<br>after spending 24 hours in the<br>hands of Iraqi militants at<br>the weekend. Martinkus was in<br>Baghdad working for the SBS<br>Dateline TV current affairs<br>program"
-          ],
-          [
-           " GAZA (Reuters) - An Israeli<br>helicopter fired a missile<br>into  a town in the southern<br>Gaza Strip late on Wednesday,<br>witnesses  said, hours after a<br>Palestinian suicide bomber<br>blew herself up  in Jerusalem,<br>killing two Israeli border<br>policemen."
-          ],
-          [
-           "The Microsoft CEO says one way<br>to stem growing piracy of<br>Windows and Office in emerging<br>markets is to offer low-cost<br>computers."
-          ],
-          [
-           "RIYADH, Saudi Arabia -- Saudi<br>police are seeking two young<br>men in the killing of a Briton<br>in a Riyadh parking lot, the<br>Interior Ministry said today,<br>and the British ambassador<br>called it a terrorist attack."
-          ],
-          [
-           "Loudon, NH -- As the rain<br>began falling late Friday<br>afternoon at New Hampshire<br>International Speedway, the<br>rich in the Nextel Cup garage<br>got richer."
-          ],
-          [
-           "PalmSource surprised the<br>mobile vendor community today<br>with the announcement that it<br>will acquire China MobileSoft<br>(CMS), ostensibly to leverage<br>that company's expertise in<br>building a mobile version of<br>the Linux operating system."
-          ],
-          [
-           "JEFFERSON CITY - An election<br>security expert has raised<br>questions about Missouri<br>Secretary of State Matt Blunt<br>#39;s plan to let soldiers at<br>remote duty stations or in<br>combat areas cast their<br>ballots with the help of<br>e-mail."
-          ],
-          [
-           "A gas explosion at a coal mine<br>in northern China killed 33<br>workers in the 10th deadly<br>mine blast reported in three<br>months. The explosion occurred<br>yesterday at 4:20 pm at Nanlou<br>township"
-          ],
-          [
-           "Reuters - Palestinian leader<br>Mahmoud Abbas called\\Israel<br>\"the Zionist enemy\" Tuesday,<br>unprecedented language for\\the<br>relative moderate who is<br>expected to succeed Yasser<br>Arafat."
-          ],
-          [
-           "AP - Ottawa Senators right<br>wing Marian Hossa is switching<br>European teams during the NHL<br>lockout."
-          ],
-          [
-           "A new, optional log-on service<br>from America Online that makes<br>it harder for scammers to<br>access a persons online<br>account will not be available<br>for Macintosh"
-          ],
-          [
-           "Nasser al-Qidwa, Palestinian<br>representative at the United<br>Nations and nephew of late<br>leader Yasser Arafat, handed<br>Arafat #39;s death report to<br>the Palestinian National<br>Authority (PNA) on Saturday."
-          ],
-          [
-           "CAIRO, Egypt - France's<br>foreign minister appealed<br>Monday for the release of two<br>French journalists abducted in<br>Baghdad, saying the French<br>respect all religions. He did<br>not rule out traveling to<br>Baghdad..."
-          ],
-          [
-           "Chelsea terminated Romania<br>striker Adrian Mutu #39;s<br>contract, citing gross<br>misconduct after the player<br>failed a doping test for<br>cocaine and admitted taking<br>the drug, the English soccer<br>club said in a statement."
-          ],
-          [
-           "United Arab Emirates President<br>and ruler of Abu Dhabi Sheik<br>Zayed bin Sultan al-Nayhan<br>died Tuesday, official<br>television reports. He was 86."
-          ],
-          [
-           "PALESTINIAN leader Yasser<br>Arafat today issued an urgent<br>call for the immediate release<br>of two French journalists<br>taken hostage in Iraq."
-          ],
-          [
-           "The al-Qaida terrorist network<br>spent less than \\$50,000 on<br>each of its major attacks<br>except for the Sept. 11, 2001,<br>suicide hijackings, and one of<br>its hallmarks is using"
-          ],
-          [
-           " SAN FRANCISCO (Reuters) -<br>Nike Inc. &lt;A HREF=\"http://w<br>ww.investor.reuters.com/FullQu<br>ote.aspx?ticker=NKE.N target=/<br>stocks/quickinfo/fullquote\"&gt<br>;NKE.N&lt;/A&gt;, the world's<br>largest athletic shoe company,<br>on Monday reported a 25<br>percent  rise in quarterly<br>profit, beating analysts'<br>estimates, on  strong demand<br>for high-end running and<br>basketball shoes in the<br>United States."
-          ],
-          [
-           "A FATHER who scaled the walls<br>of a Cardiff court dressed as<br>superhero Robin said the<br>Buckingham Palace protester<br>posed no threat. Fathers 4<br>Justice activist Jim Gibson,<br>who earlier this year staged<br>an eye-catching"
-          ],
-          [
-           "NEW YORK (CBS.MW) - US stocks<br>traded mixed Thurday as Merck<br>shares lost a quarter of their<br>value, dragging blue chips<br>lower, but the Nasdaq moved<br>higher, buoyed by gains in the<br>semiconductor sector."
-          ],
-          [
-           "Julia Gillard has reportedly<br>bowed out of the race to<br>become shadow treasurer,<br>taking enormous pressure off<br>Opposition Leader Mark Latham."
-          ],
-          [
-           "It #39;s official. Microsoft<br>recently stated<br>definitivelyand contrary to<br>rumorsthat there will be no<br>new versions of Internet<br>Explorer for users of older<br>versions of Windows."
-          ],
-          [
-           "The success of Paris #39; bid<br>for Olympic Games 2012 would<br>bring an exceptional<br>development for France for at<br>least 6 years, said Jean-<br>Francois Lamour, French<br>minister for Youth and Sports<br>on Tuesday."
-          ],
-          [
-           "AFP - Maybe it's something to<br>do with the fact that the<br>playing area is so vast that<br>you need a good pair of<br>binoculars to see the action<br>if it's not taking place right<br>in front of the stands."
-          ],
-          [
-           "Egypt #39;s release of accused<br>Israeli spy Azzam Azzam in an<br>apparent swap for six Egyptian<br>students held on suspicion of<br>terrorism is expected to melt<br>the ice and perhaps result"
-          ],
-          [
-           "But fresh antitrust suit is in<br>the envelope, says Novell"
-          ],
-          [
-           "Chips that help a computer's<br>main microprocessors perform<br>specific types of math<br>problems are becoming a big<br>business once again.\\"
-          ],
-          [
-           "GAZA CITY, Gaza Strip: Hamas<br>militants killed an Israeli<br>soldier and wounded four with<br>an explosion in a booby-<br>trapped chicken coop on<br>Tuesday, in what the Islamic<br>group said was an elaborate<br>scheme to lure troops to the<br>area with the help of a double"
-          ],
-          [
-           "A rocket carrying two Russian<br>cosmonauts and an American<br>astronaut to the international<br>space station streaked into<br>orbit on Thursday, the latest<br>flight of a Russian space<br>vehicle to fill in for<br>grounded US shuttles."
-          ],
-          [
-           "Bankrupt ATA Airlines #39;<br>withdrawal from Chicago #39;s<br>Midway International Airport<br>presents a juicy opportunity<br>for another airline to beef up<br>service in the Midwest"
-          ],
-          [
-           "AP - The 300 men filling out<br>forms in the offices of an<br>Iranian aid group were offered<br>three choices: Train for<br>suicide attacks against U.S.<br>troops in Iraq, for suicide<br>attacks against Israelis or to<br>assassinate British author<br>Salman Rushdie."
-          ],
-          [
-           "ATHENS, Greece - Gail Devers,<br>the most talented yet star-<br>crossed hurdler of her<br>generation, was unable to<br>complete even one hurdle in<br>100-meter event Sunday -<br>failing once again to win an<br>Olympic hurdling medal.<br>Devers, 37, who has three<br>world championships in the<br>hurdles but has always flopped<br>at the Olympics, pulled up<br>short and screamed as she slid<br>under the first hurdle..."
-          ],
-          [
-           "OCTOBER 12, 2004<br>(COMPUTERWORLD) - Microsoft<br>Corp. #39;s monthly patch<br>release cycle may be making it<br>more predictable for users to<br>deploy software updates, but<br>there appears to be little<br>letup in the number of holes<br>being discovered in the<br>company #39;s software"
-          ],
-          [
-           "Wearable tech goes mainstream<br>as the Gap introduces jacket<br>with built-in radio.\\"
-          ],
-          [
-           "Madison, WI (Sports Network) -<br>Anthony Davis ran for 122<br>yards and two touchdowns to<br>lead No. 6 Wisconsin over<br>Northwestern, 24-12, to<br>celebrate Homecoming weekend<br>at Camp Randall Stadium."
-          ],
-          [
-           "LaVar Arrington participated<br>in his first practice since<br>Oct. 25, when he aggravated a<br>knee injury that sidelined him<br>for 10 games."
-          ],
-          [
-           " NEW YORK (Reuters) - Billie<br>Jean King cut her final tie<br>with the U.S. Fed Cup team<br>Tuesday when she retired as<br>coach."
-          ],
-          [
-           "The Instinet Group, owner of<br>one of the largest electronic<br>stock trading systems, is for<br>sale, executives briefed on<br>the plan say."
-          ],
-          [
-           "Funding round of \\$105 million<br>brings broadband Internet<br>telephony company's total haul<br>to \\$208 million."
-          ],
-          [
-           "The Miami Dolphins arrived for<br>their final exhibition game<br>last night in New Orleans<br>short nine players."
-          ],
-          [
-           "washingtonpost.com - Anthony<br>Casalena was 17 when he got<br>his first job as a programmer<br>for a start-up called<br>HyperOffice, a software<br>company that makes e-mail and<br>contact management<br>applications for the Web.<br>Hired as an intern, he became<br>a regular programmer after two<br>weeks and rewrote the main<br>product line."
-          ],
-          [
-           "The Auburn Hills-based<br>Chrysler Group made a profit<br>of \\$269 million in the third<br>quarter, even though worldwide<br>sales and revenues declined,<br>contributing to a \\$1."
-          ],
-          [
-           "SAN FRANCISCO (CBS.MW) -- UAL<br>Corp., parent of United<br>Airlines, said Wednesday it<br>will overhaul its route<br>structure to reduce costs and<br>offset rising fuel costs."
-          ],
-          [
-           " NAIROBI (Reuters) - The<br>Sudanese government and its<br>southern rebel opponents have<br>agreed to sign a pledge in the<br>Kenyan capital on Friday to<br>formally end a brutal 21-year-<br>old  civil war, with U.N.<br>Security Council ambassadors<br>as witnesses."
-          ],
-          [
-           "AP - From LSU at No. 1 to Ohio<br>State at No. 10, The AP<br>women's basketball poll had no<br>changes Monday."
-          ],
-          [
-           "nother stage victory for race<br>leader Petter Solberg, his<br>fifth since the start of the<br>rally. The Subaru driver is<br>not pulling away at a fast<br>pace from Gronholm and Loeb<br>but the gap is nonetheless<br>increasing steadily."
-          ],
-          [
-           "The fossilized neck bones of a<br>230-million-year-old sea<br>creature have features<br>suggesting that the animal<br>#39;s snakelike throat could<br>flare open and create suction<br>that would pull in prey."
-          ],
-          [
-           "IBM late on Tuesday announced<br>the biggest update of its<br>popular WebSphere business<br>software in two years, adding<br>features such as automatically<br>detecting and fixing problems."
-          ],
-          [
-           "April 1980 -- Players strike<br>the last eight days of spring<br>training. Ninety-two<br>exhibition games are canceled.<br>June 1981 -- Players stage<br>first midseason strike in<br>history."
-          ],
-          [
-           "AP - Former Guatemalan<br>President Alfonso Portillo<br>#151; suspected of corruption<br>at home  #151; is living and<br>working part-time in the same<br>Mexican city he fled two<br>decades ago to avoid arrest on<br>murder charges, his close<br>associates told The Associated<br>Press on Sunday."
-          ],
-          [
-           "AP - British entrepreneur<br>Richard Branson said Monday<br>that his company plans to<br>launch commercial space<br>flights over the next few<br>years."
-          ],
-          [
-           "Annual economic growth in<br>China has slowed for the third<br>quarter in a row, falling to<br>9.1 per cent, third-quarter<br>data shows. The slowdown shows<br>the economy is responding to<br>Beijing #39;s efforts to rein<br>in break-neck investment and<br>lending."
-          ],
-          [
-           "washingtonpost.com - BRUSSELS,<br>Aug. 26 -- The United States<br>will have to wait until next<br>year to see its fight with the<br>European Union over biotech<br>foods resolved, as the World<br>Trade Organization agreed to<br>an E.U. request to bring<br>scientists into the debate,<br>officials said Thursday."
-          ],
-          [
-           "A group of Internet security<br>and instant messaging<br>providers have teamed up to<br>detect and thwart the growing<br>threat of IM and peer-to-peer<br>viruses and worms, they said<br>this week."
-          ],
-          [
-           "On Sunday, the day after Ohio<br>State dropped to 0-3 in the<br>Big Ten with a 33-7 loss at<br>Iowa, the Columbus Dispatch<br>ran a single word above its<br>game story on the Buckeyes:<br>quot;Embarrassing."
-          ],
-          [
-           "Insisting that Hurriyat<br>Conference is the real<br>representative of Kashmiris,<br>Pakistan has claimed that<br>India is not ready to accept<br>ground realities in Kashmir."
-          ],
-          [
-           "THE All-India Motor Transport<br>Congress (AIMTC) on Saturday<br>called off its seven-day<br>strike after finalising an<br>agreement with the Government<br>on the contentious issue of<br>service tax and the various<br>demands including tax deducted<br>at source (TDS), scrapping"
-          ],
-          [
-           "BOSTON - Curt Schilling got<br>his 20th win on the eve of<br>Boston #39;s big series with<br>the New York Yankees. Now he<br>wants much more.  quot;In a<br>couple of weeks, hopefully, it<br>will get a lot better, quot;<br>he said after becoming"
-          ],
-          [
-           "Shooed the ghosts of the<br>Bambino and the Iron Horse and<br>the Yankee Clipper and the<br>Mighty Mick, on his 73rd<br>birthday, no less, and turned<br>Yankee Stadium into a morgue."
-          ],
-          [
-           "Gold medal-winning Marlon<br>Devonish says the men #39;s<br>4x100m Olympic relay triumph<br>puts British sprinting back on<br>the map. Devonish, Darren<br>Campbell, Jason Gardener and<br>Mark Lewis-Francis edged out<br>the American"
-          ],
-          [
-           "AP - The euro-zone economy<br>grew by 0.5 percent in the<br>second quarter of 2004, a<br>touch slower than in the first<br>three months of the year,<br>according to initial estimates<br>released Tuesday by the<br>European Union."
-          ],
-          [
-           "His first space flight was in<br>1965 when he piloted the first<br>manned Gemini mission. Later<br>he made two trips to the moon<br>-- orbiting during a 1969<br>flight and then walking on the<br>lunar surface during a mission<br>in 1972."
-          ],
-          [
-           "he difficult road conditions<br>created a few incidents in the<br>first run of the Epynt stage.<br>Francois Duval takes his<br>second stage victory since the<br>start of the rally, nine<br>tenths better than Sebastien<br>Loeb #39;s performance in<br>second position."
-          ],
-          [
-           "VIENNA -- After two years of<br>investigating Iran's atomic<br>program, the UN nuclear<br>watchdog still cannot rule out<br>that Tehran has a secret atom<br>bomb project as Washington<br>insists, the agency's chief<br>said yesterday."
-          ],
-          [
-           "By RACHEL KONRAD    SAN<br>FRANCISCO (AP) -- EBay Inc.,<br>which has been aggressively<br>expanding in Asia, plans to<br>increase its stake in South<br>Korea's largest online auction<br>company.    The Internet<br>auction giant said Tuesday<br>night that it would purchase<br>nearly 3 million publicly held<br>shares of Internet Auction<br>Co..."
-          ],
-          [
-           "AFP - US Secretary of State<br>Colin Powell wrapped up a<br>three-nation tour of Asia<br>after winning pledges from<br>Japan, China and South Korea<br>to press North Korea to resume<br>stalled talks on its nuclear<br>weapons programs."
-          ],
-          [
-           "Tallahassee, FL (Sports<br>Network) - Florida State head<br>coach Bobby Bowden has<br>suspended senior wide receiver<br>Craphonso Thorpe for the<br>Seminoles #39; game against<br>fellow Atlantic Coast<br>Conference member Duke on<br>Saturday."
-          ],
-          [
-           "A few years ago, casinos<br>across the United States were<br>closing their poker rooms to<br>make space for more popular<br>and lucrative slot machines."
-          ],
-          [
-           "CAIRO, Egypt An Egyptian<br>company says one of its four<br>workers who had been kidnapped<br>in Iraq has been freed. It<br>says it can #39;t give the<br>status of the others being<br>held hostage but says it is<br>quot;doing its best to secure<br>quot; their release."
-          ],
-          [
-           "WASHINGTON -- Consumers were<br>tightfisted amid soaring<br>gasoline costs in August and<br>hurricane-related disruptions<br>last week sent applications<br>for jobless benefits to their<br>highest level in seven months."
-          ],
-          [
-           "Talking kitchens and vanities.<br>Musical jump ropes and potty<br>seats. Blusterous miniature<br>leaf blowers and vacuum<br>cleaners -- almost as loud as<br>the real things."
-          ],
-          [
-           "Online merchants in the United<br>States have become better at<br>weeding out fraudulent credit<br>card orders, a new survey<br>indicates. But shipping<br>overseas remains a risky<br>venture. By Joanna Glasner."
-          ],
-          [
-           "Former champion Lleyton Hewitt<br>bristled, battled and<br>eventually blossomed as he<br>took another step towards a<br>second US Open title with a<br>second-round victory over<br>Moroccan Hicham Arazi on<br>Friday."
-          ],
-          [
-           "AP - China's biggest computer<br>maker, Lenovo Group, said<br>Wednesday it has acquired a<br>majority stake in<br>International Business<br>Machines Corp.'s personal<br>computer business for<br>#36;1.75 billion, one of the<br>biggest Chinese overseas<br>acquisitions ever."
-          ],
-          [
-           "Popping a gadget into a cradle<br>to recharge it used to mean<br>downtime, but these days<br>chargers are doing double<br>duty, keeping your portable<br>devices playing even when<br>they're charging."
-          ],
-          [
-           "AFP - Hosts India braced<br>themselves for a harrowing<br>chase on a wearing wicket in<br>the first Test after Australia<br>declined to enforce the<br>follow-on here."
-          ],
-          [
-           " SAN FRANCISCO (Reuters) -<br>Texas Instruments Inc. &lt;A H<br>REF=\"http://www.investor.reute<br>rs.com/FullQuote.aspx?ticker=T<br>XN.N target=/stocks/quickinfo/<br>fullquote\"&gt;TXN.N&lt;/A&gt;,<br>the largest maker of chips for<br>cellular phones, on Monday<br>said  record demand for its<br>handset and television chips<br>boosted  quarterly profit by<br>26 percent, even as it<br>struggles with a  nagging<br>inventory problem."
-          ],
-          [
-           "LONDON ARM Holdings, a British<br>semiconductor designer, said<br>on Monday that it would buy<br>Artisan Components for \\$913<br>million to broaden its product<br>range."
-          ],
-          [
-           "Big evolutionary insights<br>sometimes come in little<br>packages. Witness the<br>startling discovery, in a cave<br>on the eastern Indonesian<br>island of Flores, of the<br>partial skeleton of a half-<br>size Homo species that"
-          ],
-          [
-           "Prime Minister Paul Martin of<br>Canada urged Haitian leaders<br>on Sunday to allow the<br>political party of the deposed<br>president, Jean-Bertrand<br>Aristide, to take part in new<br>elections."
-          ],
-          [
-           "Hostage takers holding up to<br>240 people at a school in<br>southern Russia have refused<br>to talk with a top Islamic<br>leader and demanded to meet<br>with regional leaders instead,<br>ITAR-TASS reported on<br>Wednesday."
-          ],
-          [
-           "As the Mets round out their<br>search for a new manager, the<br>club is giving a last-minute<br>nod to its past. Wally<br>Backman, an infielder for the<br>Mets from 1980-88 who played<br>second base on the 1986"
-          ],
-          [
-           "MELBOURNE: Global shopping<br>mall owner Westfield Group<br>will team up with Australian<br>developer Multiplex Group to<br>bid 585mil (US\\$1."
-          ],
-          [
-           "Three children from a care<br>home are missing on the<br>Lancashire moors after they<br>are separated from a group."
-          ],
-          [
-           "Luke Skywalker and Darth Vader<br>may get all the glory, but a<br>new Star Wars video game<br>finally gives credit to the<br>everyday grunts who couldn<br>#39;t summon the Force for<br>help."
-          ],
-          [
-           "AMSTERDAM, Aug 18 (Reuters) -<br>Midfielder Edgar Davids #39;s<br>leadership qualities and<br>never-say-die attitude have<br>earned him the captaincy of<br>the Netherlands under new<br>coach Marco van Basten."
-          ],
-          [
-           "COUNTY KILKENNY, Ireland (PA)<br>-- Hurricane Jeanne has led to<br>world No. 1 Vijay Singh<br>pulling out of this week #39;s<br>WGC-American Express<br>Championship at Mount Juliet."
-          ],
-          [
-           "Green Bay, WI (Sports Network)<br>- The Green Bay Packers will<br>be without the services of Pro<br>Bowl center Mike Flanagan for<br>the remainder of the season,<br>as he will undergo left knee<br>surgery."
-          ],
-          [
-           "Diabetics should test their<br>blood sugar levels more<br>regularly to reduce the risk<br>of cardiovascular disease, a<br>study says."
-          ],
-          [
-           "COLUMBUS, Ohio -- NCAA<br>investigators will return to<br>Ohio State University Monday<br>to take another look at the<br>football program after the<br>latest round of allegations<br>made by former players,<br>according to the Akron Beacon<br>Journal."
-          ],
-          [
-           " LOS ANGELES (Reuters) -<br>Federal authorities raided<br>three  Washington, D.C.-area<br>video game stores and arrested<br>two people  for modifying<br>video game consoles to play<br>pirated video games,  a video<br>game industry group said on<br>Wednesday."
-          ],
-          [
-           "Manchester United gave Alex<br>Ferguson a 1,000th game<br>anniversary present by<br>reaching the last 16 of the<br>Champions League yesterday,<br>while four-time winners Bayern<br>Munich romped into the second<br>round with a 5-1 beating of<br>Maccabi Tel Aviv."
-          ],
-          [
-           "Iraq's interim Prime Minister<br>Ayad Allawi announced that<br>proceedings would begin<br>against former Baath Party<br>leaders."
-          ],
-          [
-           "Reuters - Delta Air Lines Inc.<br>, which is\\racing to cut costs<br>to avoid bankruptcy, on<br>Wednesday reported\\a wider<br>quarterly loss amid soaring<br>fuel prices and weak\\domestic<br>airfares."
-          ],
-          [
-           "Energy utility TXU Corp. on<br>Monday more than quadrupled<br>its quarterly dividend payment<br>and raised its projected<br>earnings for 2004 and 2005<br>after a companywide<br>performance review."
-          ],
-          [
-           "Northwest Airlines Corp., the<br>fourth- largest US airline,<br>and its pilots union reached<br>tentative agreement on a<br>contract that would cut pay<br>and benefits, saving the<br>company \\$265 million a year."
-          ],
-          [
-           "The last time the Angels<br>played the Texas Rangers, they<br>dropped two consecutive<br>shutouts at home in their most<br>agonizing lost weekend of the<br>season."
-          ],
-          [
-           "Microsoft Corp. MSFT.O and<br>cable television provider<br>Comcast Corp. CMCSA.O said on<br>Monday that they would begin<br>deploying set-top boxes<br>powered by Microsoft software<br>starting next week."
-          ],
-          [
-           "SEATTLE - Chasing a nearly<br>forgotten ghost of the game,<br>Ichiro Suzuki broke one of<br>baseball #39;s oldest records<br>Friday night, smoking a single<br>up the middle for his 258th<br>hit of the year and breaking<br>George Sisler #39;s record for<br>the most hits in a season"
-          ],
-          [
-           "Grace Park, her caddie - and<br>fans - were poking around in<br>the desert brush alongside the<br>18th fairway desperately<br>looking for her ball."
-          ],
-          [
-           "Philippines mobile phone<br>operator Smart Communications<br>Inc. is in talks with<br>Singapore #39;s Mobile One for<br>a possible tie-up,<br>BusinessWorld reported Monday."
-          ],
-          [
-           "Washington Redskins kicker<br>John Hall strained his right<br>groin during practice<br>Thursday, his third leg injury<br>of the season. Hall will be<br>held out of practice Friday<br>and is questionable for Sunday<br>#39;s game against the Chicago<br>Bears."
-          ],
-          [
-           "Airline warns it may file for<br>bankruptcy if too many senior<br>pilots take early retirement<br>option. Delta Air LInes #39;<br>CEO says it faces bankruptcy<br>if it can #39;t slow the pace<br>of pilots taking early<br>retirement."
-          ],
-          [
-           "A toxic batch of home-brewed<br>alcohol has killed 31 people<br>in several towns in central<br>Pakistan, police and hospital<br>officials say."
-          ],
-          [
-           "Thornbugs communicate by<br>vibrating the branches they<br>live on. Now scientists are<br>discovering just what the bugs<br>are \"saying.\""
-          ],
-          [
-           "The Florida Gators and<br>Arkansas Razorbacks meet for<br>just the sixth time Saturday.<br>The Gators hold a 4-1<br>advantage in the previous five<br>meetings, including last year<br>#39;s 33-28 win."
-          ],
-          [
-           "Kodak Versamark #39;s parent<br>company, Eastman Kodak Co.,<br>reported Tuesday it plans to<br>eliminate almost 900 jobs this<br>year in a restructuring of its<br>overseas operations."
-          ],
-          [
-           "A top official of the US Food<br>and Drug Administration said<br>Friday that he and his<br>colleagues  quot;categorically<br>reject quot; earlier<br>Congressional testimony that<br>the agency has failed to<br>protect the public against<br>dangerous drugs."
-          ],
-          [
-           " BEIJING (Reuters) - North<br>Korea is committed to holding<br>six-party talks aimed at<br>resolving the crisis over its<br>nuclear  weapons program, but<br>has not indicated when, a top<br>British  official said on<br>Tuesday."
-          ],
-          [
-           "AP - 1941  #151; Brooklyn<br>catcher Mickey Owen dropped a<br>third strike on Tommy Henrich<br>of what would have been the<br>last out of a Dodgers victory<br>against the New York Yankees.<br>Given the second chance, the<br>Yankees scored four runs for a<br>7-4 victory and a 3-1 lead in<br>the World Series, which they<br>ended up winning."
-          ],
-          [
-           "Federal prosecutors cracked a<br>global cartel that had<br>illegally fixed prices of<br>memory chips in personal<br>computers and servers for<br>three years."
-          ],
-          [
-           "AP - Oracle Corp. CEO Larry<br>Ellison reiterated his<br>determination to prevail in a<br>long-running takeover battle<br>with rival business software<br>maker PeopleSoft Inc.,<br>predicting the proposed deal<br>will create a more competitive<br>company with improved customer<br>service."
-          ],
-          [
-           "Braves shortstop Rafael Furcal<br>was arrested on drunken<br>driving charges Friday, his<br>second D.U.I. arrest in four<br>years."
-          ],
-          [
-           "AFP - British retailer Marks<br>and Spencer announced a major<br>management shake-up as part of<br>efforts to revive its<br>fortunes, saying trading has<br>become tougher ahead of the<br>crucial Christmas period."
-          ],
-          [
-           " BAGHDAD (Reuters) - Iraq's<br>interim government extended<br>the  closure of Baghdad<br>international airport<br>indefinitely on  Saturday<br>under emergency rule imposed<br>ahead of this week's  U.S.-led<br>offensive on Falluja."
-          ],
-          [
-           " ATHENS (Reuters) - Natalie<br>Coughlin's run of bad luck<br>finally took a turn for the<br>better when she won the gold<br>medal  in the women's 100<br>meters backstroke at the<br>Athens Olympics  Monday."
-          ],
-          [
-           " ATLANTA (Reuters) - Home<br>Depot Inc. &lt;A HREF=\"http://<br>www.investor.reuters.com/FullQ<br>uote.aspx?ticker=HD.N target=/<br>stocks/quickinfo/fullquote\"&gt<br>;HD.N&lt;/A&gt;, the top home<br>improvement retailer, on<br>Tuesday reported a 15 percent<br>rise in  third-quarter profit,<br>topping estimates, aided by<br>installed  services and sales<br>to contractors."
-          ],
-          [
-           " LONDON (Reuters) - The dollar<br>fought back from one-month<br>lows against the euro and<br>Swiss franc on Wednesday as<br>investors  viewed its sell-off<br>in the wake of the Federal<br>Reserve's  verdict on interest<br>rates as overdone."
-          ],
-          [
-           "Rivaling Bush vs. Kerry for<br>bitterness, doctors and trial<br>lawyers are squaring off this<br>fall in an unprecedented four-<br>state struggle over limiting<br>malpractice awards..."
-          ],
-          [
-           "Boston Scientific Corp said on<br>Friday it has recalled an ear<br>implant the company acquired<br>as part of its purchase of<br>Advanced Bionics in June."
-          ],
-          [
-           "AP - Pedro Feliz hit a<br>tiebreaking grand slam with<br>two outs in the eighth inning<br>for his fourth hit of the day,<br>and the Giants helped their<br>playoff chances with a 9-5<br>victory over the Los Angeles<br>Dodgers on Saturday."
-          ],
-          [
-           "MarketWatch.com. Richemont<br>sees significant H1 lift,<br>unclear on FY (2:53 AM ET)<br>LONDON (CBS.MW) -- Swiss<br>luxury goods maker<br>Richemont(zz:ZZ:001273145:<br>news, chart, profile), which<br>also is a significant"
-          ],
-          [
-           "Crude oil climbed more than<br>\\$1 in New York on the re-<br>election of President George<br>W. Bush, who has been filling<br>the US Strategic Petroleum<br>Reserve."
-          ],
-          [
-           "AP - Hundreds of tribesmen<br>gathered Tuesday near the area<br>where suspected al-Qaida-<br>linked militants are holding<br>two Chinese engineers and<br>demanding safe passage to<br>their reputed leader, a former<br>U.S. prisoner from Guantanamo<br>Bay, Cuba, officials and<br>residents said."
-          ],
-          [
-           "AP - Scientists warned Tuesday<br>that a long-term increase in<br>global temperature of 3.5<br>degrees could threaten Latin<br>American water supplies,<br>reduce food yields in Asia and<br>result in a rise in extreme<br>weather conditions in the<br>Caribbean."
-          ],
-          [
-           "AP - Further proof New York's<br>real estate market is<br>inflated: The city plans to<br>sell space on top of lampposts<br>to wireless phone companies<br>for  #36;21.6 million a year."
-          ],
-          [
-           "In an alarming development,<br>high-precision equipment and<br>materials which could be used<br>for making nuclear bombs have<br>disappeared from some Iraqi<br>facilities, the United Nations<br>watchdog agency has said."
-          ],
-          [
-           "Yukos #39; largest oil-<br>producing unit regained power<br>supplies from Tyumenenergo, a<br>Siberia-based electricity<br>generator, Friday after the<br>subsidiary pledged to pay 440<br>million rubles (\\$15 million)<br>in debt by Oct. 3."
-          ],
-          [
-           "The rollout of new servers and<br>networking switches in stores<br>is part of a five-year<br>agreement supporting 7-Eleven<br>#39;s Retail Information<br>System."
-          ],
-          [
-           "Top Hollywood studios have<br>launched a wave of court cases<br>against internet users who<br>illegally download film files.<br>The Motion Picture Association<br>of America, which acts as the<br>representative of major film"
-          ],
-          [
-           "AUSTRALIANS went into a<br>television-buying frenzy the<br>run-up to the Athens Olympics,<br>suggesting that as a nation we<br>could easily have scored a<br>gold medal for TV purchasing."
-          ],
-          [
-           "US STOCKS vacillated yesterday<br>as rising oil prices muted<br>Wall Streets excitement over<br>strong results from Lehman<br>Brothers and Sprints \\$35<br>billion acquisition of Nextel<br>Communications."
-          ],
-          [
-           "The next time you are in your<br>bedroom with your PC plus<br>Webcam switched on, don #39;t<br>think that your privacy is all<br>intact. If you have a Webcam<br>plugged into an infected<br>computer, there is a<br>possibility that"
-          ],
-          [
-           "At the head of the class,<br>Rosabeth Moss Kanter is an<br>intellectual whirlwind: loud,<br>expansive, in constant motion."
-          ],
-          [
-           "LEVERKUSEN/ROME, Dec 7 (SW) -<br>Dynamo Kiev, Bayer Leverkusen,<br>and Real Madrid all have a<br>good chance of qualifying for<br>the Champions League Round of<br>16 if they can get the right<br>results in Group F on<br>Wednesday night."
-          ],
-          [
-           "Ed Hinkel made a diving,<br>fingertip catch for a key<br>touchdown and No. 16 Iowa<br>stiffened on defense when it<br>needed to most to beat Iowa<br>State 17-10 Saturday."
-          ],
-          [
-           "During last Sunday #39;s<br>Nextel Cup race, amid the<br>ongoing furor over Dale<br>Earnhardt Jr. #39;s salty<br>language, NBC ran a commercial<br>for a show coming on later<br>that night called  quot;Law<br>amp; Order: Criminal Intent."
-          ],
-          [
-           "AP - After playing in hail,<br>fog and chill, top-ranked<br>Southern California finishes<br>its season in familiar<br>comfort. The Trojans (9-0, 6-0<br>Pacific-10) have two games at<br>home  #151; against Arizona on<br>Saturday and Notre Dame on<br>Nov. 27  #151; before their<br>rivalry game at UCLA."
-          ],
-          [
-           "A US airman dies and two are<br>hurt as a helicopter crashes<br>due to technical problems in<br>western Afghanistan."
-          ],
-          [
-           "Jacques Chirac has ruled out<br>any withdrawal of French<br>troops from Ivory Coast,<br>despite unrest and anti-French<br>attacks, which have forced the<br>evacuation of thousands of<br>Westerners."
-          ],
-          [
-           "Japanese Prime Minister<br>Junichiro Koizumi reshuffled<br>his cabinet yesterday,<br>replacing several top<br>ministers in an effort to<br>boost his popularity,<br>consolidate political support<br>and quicken the pace of<br>reforms in the world #39;s<br>second-largest economy."
-          ],
-          [
-           "The remnants of Hurricane<br>Jeanne rained out Monday's<br>game between the Mets and the<br>Atlanta Braves. It will be<br>made up Tuesday as part of a<br>doubleheader."
-          ],
-          [
-           "AP - NASCAR is not expecting<br>any immediate changes to its<br>top-tier racing series<br>following the merger between<br>telecommunications giant<br>Sprint Corp. and Nextel<br>Communications Inc."
-          ],
-          [
-           "AP - Shawn Fanning's Napster<br>software enabled countless<br>music fans to swap songs on<br>the Internet for free, turning<br>him into the recording<br>industry's enemy No. 1 in the<br>process."
-          ],
-          [
-           "TBILISI (Reuters) - At least<br>two Georgian soldiers were<br>killed and five wounded in<br>artillery fire with<br>separatists in the breakaway<br>region of South Ossetia,<br>Georgian officials said on<br>Wednesday."
-          ],
-          [
-           "Like wide-open races? You<br>#39;ll love the Big 12 North.<br>Here #39;s a quick morning<br>line of the Big 12 North as it<br>opens conference play this<br>weekend."
-          ],
-          [
-           "Reuters - Walt Disney Co.<br>is\\increasing investment in<br>video games for hand-held<br>devices and\\plans to look for<br>acquisitions of small game<br>publishers and\\developers,<br>Disney consumer products<br>Chairman Andy Mooney said\\on<br>Monday."
-          ],
-          [
-           "Taquan Dean scored 22 points,<br>Francisco Garcia added 19 and<br>No. 13 Louisville withstood a<br>late rally to beat Florida<br>74-70 Saturday."
-          ],
-          [
-           "BANGKOK - A UN conference last<br>week banned commercial trade<br>in the rare Irrawaddy dolphin,<br>a move environmentalists said<br>was needed to save the<br>threatened species."
-          ],
-          [
-           "Laksamana.Net - Two Indonesian<br>female migrant workers freed<br>by militants in Iraq are<br>expected to arrive home within<br>a day or two, the Foreign<br>Affairs Ministry said<br>Wednesday (6/10/04)."
-          ],
-          [
-           "A bitter row between America<br>and the European Union over<br>alleged subsidies to rival<br>aircraft makers Boeing and<br>Airbus intensified yesterday."
-          ],
-          [
-           "PC World - Updated antivirus<br>software for businesses adds<br>intrusion prevention features."
-          ],
-          [
-           "NEW YORK -- This was all about<br>Athens, about redemption for<br>one and validation for the<br>other. Britain's Paula<br>Radcliffe, the fastest female<br>marathoner in history, failed<br>to finish either of her<br>Olympic races last summer.<br>South Africa's Hendrik Ramaala<br>was a five-ringed dropout,<br>too, reinforcing his<br>reputation as a man who could<br>go only half the distance."
-          ],
-          [
-           "Reuters - Online media company<br>Yahoo Inc.\\ late on Monday<br>rolled out tests of redesigned<br>start\\pages for its popular<br>Yahoo.com and My.Yahoo.com<br>sites."
-          ],
-          [
-           "Amsterdam (pts) - Dutch<br>electronics company Philips<br>http://www.philips.com has<br>announced today, Friday, that<br>it has cut its stake in Atos<br>Origin by more than a half."
-          ],
-          [
-           "TORONTO (CP) - Two-thirds of<br>banks around the world have<br>reported an increase in the<br>volume of suspicious<br>activities that they report to<br>police, a new report by KPMG<br>suggests."
-          ],
-          [
-           "The Sun may have captured<br>thousands or even millions of<br>asteroids from another<br>planetary system during an<br>encounter more than four<br>billion years ago, astronomers<br>are reporting."
-          ],
-          [
-           "LONDON -- Ernie Els has set<br>his sights on an improved<br>putting display this week at<br>the World Golf Championships<br>#39; NEC Invitational in<br>Akron, Ohio, after the<br>disappointment of tying for<br>fourth place at the PGA<br>Championship last Sunday."
-          ],
-          [
-           "The Atkins diet frenzy slowed<br>growth briefly, but the<br>sandwich business is booming,<br>with \\$105 billion in sales<br>last year."
-          ],
-          [
-           "Luxury carmaker Jaguar said<br>Friday it was stopping<br>production at a factory in<br>central England, resulting in<br>a loss of 1,100 jobs,<br>following poor sales in the<br>key US market."
-          ],
-          [
-           "A bus was hijacked today and<br>shots were fired at police who<br>surrounded it on the outskirts<br>of Athens. Police did not know<br>how many passengers were<br>aboard the bus."
-          ],
-          [
-           "Thumb through the book - then<br>buy a clean copy from Amazon"
-          ],
-          [
-           "AP - President Bashar Assad<br>shuffled his Cabinet on<br>Monday, just weeks after the<br>United States and the United<br>Nations challenged Syria over<br>its military presence in<br>Lebanon and the security<br>situation along its border<br>with Iraq."
-          ],
-          [
-           "Fiji #39;s Vijay Singh<br>replaced Tiger Woods as the<br>world #39;s No.1 ranked golfer<br>today by winning the PGA<br>Deutsche Bank Championship."
-          ],
-          [
-           "LEIPZIG, Germany : Jurgen<br>Klinsmann enjoyed his first<br>home win as German manager<br>with his team defeating ten-<br>man Cameroon 3-0 in a friendly<br>match."
-          ],
-          [
-           "AP - Kevin Brown had a chance<br>to claim a place in Yankees<br>postseason history with his<br>start in Game 7 of the AL<br>championship series."
-          ],
-          [
-           "Reuters - High-definition<br>television can\\show the sweat<br>beading on an athlete's brow,<br>but the cost of\\all the<br>necessary electronic equipment<br>can get a shopper's own\\pulse<br>racing."
-          ],
-          [
-           "HOMESTEAD, Fla. -- Kurt Busch<br>got his first big break in<br>NASCAR by winning a 1999<br>talent audition nicknamed<br>quot;The Gong Show. quot; He<br>was selected from dozens of<br>unknown, young race drivers to<br>work for one of the sport<br>#39;s most famous team owners,<br>Jack Roush."
-          ],
-          [
-           "AP - President Vladimir Putin<br>has signed a bill confirming<br>Russia's ratification of the<br>Kyoto Protocol, the Kremlin<br>said Friday, clearing the way<br>for the global climate pact to<br>come into force early next<br>year."
-          ],
-          [
-           "John Gibson said Friday that<br>he decided to resign as chief<br>executive officer of<br>Halliburton Energy Services<br>when it became apparent he<br>couldn #39;t become the CEO of<br>the entire corporation, after<br>getting a taste of the No."
-          ],
-          [
-           "MacCentral - Apple Computer<br>Inc. on Monday released an<br>update for Apple Remote<br>Desktop (ARD), the company's<br>software solution to assist<br>Mac system administrators and<br>computer managers with asset<br>management, software<br>distribution and help desk<br>support. ARD 2.1 includes<br>several enhancements and bug<br>fixes."
-          ],
-          [
-           "NEW YORK (Reuters) - Outback<br>Steakhouse Inc. said Tuesday<br>it lost about 130 operating<br>days and up to \\$2 million in<br>revenue because it had to<br>close some restaurants in the<br>South due to Hurricane<br>Charley."
-          ],
-          [
-           "State insurance commissioners<br>from across the country have<br>proposed new rules governing<br>insurance brokerage fees,<br>winning praise from an<br>industry group and criticism<br>from"
-          ],
-          [
-           "AP - The authenticity of newly<br>unearthed memos stating that<br>George W. Bush failed to meet<br>standards of the Texas Air<br>National Guard during the<br>Vietnam War was questioned<br>Thursday by the son of the<br>late officer who reportedly<br>wrote the memos."
-          ],
-          [
-           "Zurich, Switzerland (Sports<br>Network) - Former world No. 1<br>Venus Williams advanced on<br>Thursday and will now meet<br>Wimbledon champion Maria<br>Sharapova in the quarterfinals<br>at the \\$1."
-          ],
-          [
-           "INDIA #39;S cricket chiefs<br>began a frenetic search today<br>for a broadcaster to show next<br>month #39;s home series<br>against world champion<br>Australia after cancelling a<br>controversial \\$US308 million<br>(\\$440 million) television<br>deal."
-          ],
-          [
-           "Canadian Press - OAKVILLE,<br>Ont. (CP) - The body of a<br>missing autistic man was<br>pulled from a creek Monday,<br>just metres from where a key<br>piece of evidence was<br>uncovered but originally<br>overlooked because searchers<br>had the wrong information."
-          ],
-          [
-           "SOFTWARE giant Oracle #39;s<br>stalled \\$7.7bn (4.2bn) bid to<br>take over competitor<br>PeopleSoft has received a huge<br>boost after a US judge threw<br>out an anti-trust lawsuit<br>filed by the Department of<br>Justice to block the<br>acquisition."
-          ],
-          [
-           "The International Olympic<br>Committee (IOC) has urged<br>Beijing to ensure the city is<br>ready to host the 2008 Games<br>well in advance, an official<br>said on Wednesday."
-          ],
-          [
-           "AFP - German Chancellor<br>Gerhard Schroeder arrived in<br>Libya for an official visit<br>during which he is to hold<br>talks with Libyan leader<br>Moamer Kadhafi."
-          ],
-          [
-           "The fastest-swiveling space<br>science observatory ever built<br>rocketed into orbit on<br>Saturday to scan the universe<br>for celestial explosions."
-          ],
-          [
-           "The government will examine<br>claims 100,000 Iraqi civilians<br>have been killed since the US-<br>led invasion, Jack Straw says."
-          ],
-          [
-           "Virginia Tech scores 24 points<br>off four first-half turnovers<br>in a 55-6 wipeout of Maryland<br>on Thursday to remain alone<br>atop the ACC."
-          ],
-          [
-           "Copernic Unleashes Desktop<br>Search Tool\\\\Copernic<br>Technologies Inc. today<br>announced Copernic Desktop<br>Search(TM) (CDS(TM)), \"The<br>Search Engine For Your PC<br>(TM).\" Copernic has used the<br>experience gained from over 30<br>million downloads of its<br>Windows-based Web search<br>software to develop CDS, a<br>desktop search product that<br>users are saying is far ..."
-          ],
-          [
-           "The DVD Forum moved a step<br>further toward the advent of<br>HD DVD media and drives with<br>the approval of key physical<br>specifications at a meeting of<br>the organisations steering<br>committee last week."
-          ],
-          [
-           "Eton College and Clarence<br>House joined forces yesterday<br>to deny allegations due to be<br>made at an employment tribunal<br>today by a former art teacher<br>that she improperly helped<br>Prince Harry secure an A-level<br>pass in art two years ago."
-          ],
-          [
-           "AFP - Great Britain's chances<br>of qualifying for the World<br>Group of the Davis Cup were<br>evaporating rapidly after<br>Austria moved into a 2-1 lead<br>following the doubles."
-          ],
-          [
-           "AP - Martina Navratilova's<br>long, illustrious career will<br>end without an Olympic medal.<br>The 47-year-old Navratilova<br>and Lisa Raymond lost 6-4,<br>4-6, 6-4 on Thursday night to<br>fifth-seeded Shinobu Asagoe<br>and Ai Sugiyama of Japan in<br>the quarterfinals, one step<br>shy of the medal round."
-          ],
-          [
-           "Often pigeonholed as just a<br>seller of televisions and DVD<br>players, Royal Philips<br>Electronics said third-quarter<br>profit surged despite a slide<br>into the red by its consumer<br>electronics division."
-          ],
-          [
-           "AP - Google, the Internet<br>search engine, has done<br>something that law enforcement<br>officials and their computer<br>tools could not: Identify a<br>man who died in an apparent<br>hit-and-run accident 11 years<br>ago in this small town outside<br>Yakima."
-          ],
-          [
-           "We are all used to IE getting<br>a monthly new security bug<br>found, but Winamp? In fact,<br>this is not the first security<br>flaw found in the application."
-          ],
-          [
-           "The Apache Software Foundation<br>and the Debian Project said<br>they won't support the Sender<br>ID e-mail authentication<br>standard in their products."
-          ],
-          [
-           "USATODAY.com - The newly<br>restored THX 1138 arrives on<br>DVD today with Star Wars<br>creator George Lucas' vision<br>of a Brave New World-like<br>future."
-          ],
-          [
-           "Office Depot Inc. (ODP.N:<br>Quote, Profile, Research) on<br>Tuesday warned of weaker-than-<br>expected profits for the rest<br>of the year because of<br>disruptions from the string of<br>hurricanes"
-          ],
-          [
-           "THE photo-equipment maker<br>Kodak yesterday announced<br>plans to axe 600 jobs in the<br>UK and close a factory in<br>Nottinghamshire, in a move in<br>line with the giants global<br>restructuring strategy<br>unveiled last January."
-          ],
-          [
-           "The chances of scientists<br>making any one of five<br>discoveries by 2010 have been<br>hugely underestimated,<br>according to bookmakers."
-          ],
-          [
-           "Asia-Pacific leaders meet in<br>Australia to discuss how to<br>keep nuclear weapons out of<br>the hands of extremists."
-          ],
-          [
-           " TALL AFAR, Iraq -- A three-<br>foot-high coil of razor wire,<br>21-ton armored vehicles and<br>American soldiers with black<br>M-4 assault rifles stood<br>between tens of thousands of<br>people and their homes last<br>week."
-          ],
-          [
-           "PSV Eindhoven re-established<br>their five-point lead at the<br>top of the Dutch Eredivisie<br>today with a 2-0 win at<br>Vitesse Arnhem. Former<br>Sheffield Wednesday striker<br>Gerald Sibon put PSV ahead in<br>the 56th minute"
-          ],
-          [
-           "China's central bank on<br>Thursday raised interest rates<br>for the first time in nearly a<br>decade, signaling deepening<br>unease with the breakneck pace<br>of development and an intent<br>to reign in a construction<br>boom now sowing fears of<br>runaway inflation."
-          ],
-          [
-           "Deepening its commitment to<br>help corporate users create<br>SOAs (service-oriented<br>architectures) through the use<br>of Web services, IBM's Global<br>Services unit on Thursday<br>announced the formation of an<br>SOA Management Practice."
-          ],
-          [
-           "TODAY AUTO RACING 3 p.m. --<br>NASCAR Nextel Cup Sylvania 300<br>qualifying at N.H.<br>International Speedway,<br>Loudon, N.H., TNT PRO BASEBALL<br>7 p.m. -- Red Sox at New York<br>Yankees, Ch. 38, WEEI (850)<br>(on cable systems where Ch. 38<br>is not available, the game<br>will air on NESN); Chicago<br>Cubs at Cincinnati, ESPN 6<br>p.m. -- Eastern League finals:<br>..."
-          ],
-          [
-           "MUMBAI, SEPTEMBER 21: The<br>Board of Control for Cricket<br>in India (BCCI) today informed<br>the Bombay High Court that it<br>was cancelling the entire<br>tender process regarding<br>cricket telecast rights as<br>also the conditional deal with<br>Zee TV."
-          ],
-          [
-           "CHICAGO - Delta Air Lines<br>(DAL) said Wednesday it plans<br>to eliminate between 6,000 and<br>6,900 jobs during the next 18<br>months, implement a 10 across-<br>the-board pay reduction and<br>reduce employee benefits."
-          ],
-          [
-           "LAKE GEORGE, N.Y. - Even<br>though he's facing double hip<br>replacement surgery, Bill<br>Smith is more than happy to<br>struggle out the door each<br>morning, limp past his brand<br>new P.T..."
-          ],
-          [
-           " NEW YORK (Reuters) - U.S.<br>stocks were likely to open<br>flat  on Wednesday, with high<br>oil prices and profit warnings<br>weighing  on the market before<br>earnings reports start and key<br>jobs data  is released this<br>week."
-          ],
-          [
-           "Best known for its popular<br>search engine, Google is<br>rapidly rolling out new<br>products and muscling into<br>Microsoft's stronghold: the<br>computer desktop. The<br>competition means consumers<br>get more choices and better<br>products."
-          ],
-          [
-           "Toshiba Corp. #39;s new<br>desktop-replacement multimedia<br>notebooks, introduced on<br>Tuesday, are further evidence<br>that US consumers still have<br>yet to embrace the mobility<br>offered by Intel Corp."
-          ],
-          [
-           "JEJU, South Korea : Grace Park<br>of South Korea won an LPGA<br>Tour tournament, firing a<br>seven-under-par 65 in the<br>final round of the<br>1.35-million dollar CJ Nine<br>Bridges Classic."
-          ],
-          [
-           " JERUSALEM (Reuters) - Israeli<br>Prime Minister Ariel Sharon<br>poured cold water on Tuesday<br>on recent international<br>efforts to  restart stalled<br>peace talks with Syria, saying<br>there was \"no  possibility\" of<br>returning to previous<br>discussions."
-          ],
-          [
-           "Dutch smugness was slapped<br>hard during the past<br>fortnight. The rude awakening<br>began with the barbaric<br>slaying of controversial<br>filmmaker Theo van Gogh on<br>November 2. Then followed a<br>reciprocal cycle of some"
-          ],
-          [
-           "AP - The NHL will lock out its<br>players Thursday, starting a<br>work stoppage that threatens<br>to keep the sport off the ice<br>for the entire 2004-05 season."
-          ],
-          [
-           " MOSCOW (Reuters) - Russia's<br>Gazprom said on Tuesday it<br>will  bid for embattled oil<br>firm YUKOS' main unit next<br>month, as the  Kremlin seeks<br>to turn the world's biggest<br>gas producer into a  major oil<br>player."
-          ],
-          [
-           "pee writes  quot;A passenger<br>on a commuter plane in<br>northern Norway attacked both<br>pilots and at least one<br>passenger with an axe as the<br>aircraft was coming in to<br>land."
-          ],
-          [
-           "Aregular Amazon customer,<br>Yvette Thompson has found<br>shopping online to be mostly<br>convenient and trouble-free.<br>But last month, after ordering<br>two CDs on Amazon.com, the<br>Silver Spring reader<br>discovered on her bank<br>statement that she was double-<br>charged for the \\$26.98 order.<br>And there was a \\$25 charge<br>that was a mystery."
-          ],
-          [
-           "Prime Minister Ariel Sharon<br>pledged Sunday to escalate a<br>broad Israeli offensive in<br>northern Gaza, saying troops<br>will remain until Palestinian<br>rocket attacks are halted.<br>Israeli officials said the<br>offensive -- in which 58<br>Palestinians and three<br>Israelis have been killed --<br>will help clear the way for an<br>Israeli withdrawal."
-          ],
-          [
-           "Federal Reserve officials<br>raised a key short-term<br>interest rate Tuesday for the<br>fifth time this year, and<br>indicated they will gradually<br>move rates higher next year to<br>keep inflation under control<br>as the economy expands."
-          ],
-          [
-           "Canadians are paying more to<br>borrow money for homes, cars<br>and other purchases today<br>after a quarter-point<br>interest-rate increase by the<br>Bank of Canada yesterday was<br>quickly matched by the<br>chartered banks."
-          ],
-          [
-           "NEW YORK - Wall Street<br>professionals know to keep<br>their expectations in check in<br>September, historically the<br>worst month of the year for<br>stocks. As summertime draws to<br>a close, money managers are<br>getting back to business,<br>cleaning house, and often<br>sending the market lower in<br>the process..."
-          ],
-          [
-           "A group linked to al Qaeda<br>ally Abu Musab al-Zarqawi said<br>it had tried to kill Iraq<br>#39;s environment minister on<br>Tuesday and warned it would<br>not miss next time, according<br>to an Internet statement."
-          ],
-          [
-           "The Israeli military killed<br>four Palestinian militants on<br>Wednesday as troops in tanks<br>and armored vehicles pushed<br>into another town in the<br>northern Gaza Strip, extending"
-          ],
-          [
-           "When Paula Radcliffe dropped<br>out of the Olympic marathon<br>miles from the finish, she<br>sobbed uncontrollably.<br>Margaret Okayo knew the<br>feeling."
-          ],
-          [
-           "Delta Air Lines is to issue<br>millions of new shares without<br>shareholder consent as part of<br>moves to ensure its survival."
-          ],
-          [
-           "First baseman Richie Sexson<br>agrees to a four-year contract<br>with the Seattle Mariners on<br>Wednesday."
-          ],
-          [
-           "KIRKUK, Iraq - A suicide<br>attacker detonated a car bomb<br>Saturday outside a police<br>academy in the northern Iraqi<br>city of Kirkuk as hundreds of<br>trainees and civilians were<br>leaving for the day, killing<br>at least 20 people and<br>wounding 36, authorities said.<br>Separately, U.S and Iraqi<br>forces clashed with insurgents<br>in another part of northern<br>Iraq after launching an<br>operation to destroy an<br>alleged militant cell in the<br>town of Tal Afar, the U.S..."
-          ],
-          [
-           "Genta (GNTA:Nasdaq - news -<br>research) is never boring!<br>Monday night, the company<br>announced that its phase III<br>Genasense study in chronic<br>lymphocytic leukemia (CLL) met<br>its primary endpoint, which<br>was tumor shrinkage."
-          ],
-          [
-           "Finnish mobile giant Nokia has<br>described its new Preminet<br>solution, which it launched<br>Monday (Oct. 25), as a<br>quot;major worldwide<br>initiative."
-          ],
-          [
-           "While the entire airline<br>industry #39;s finances are<br>under water, ATA Airlines will<br>have to hold its breath longer<br>than its competitors to keep<br>from going belly up."
-          ],
-          [
-           " SAN FRANCISCO (Reuters) - At<br>virtually every turn, Intel<br>Corp. executives are heaping<br>praise on an emerging long-<br>range  wireless technology<br>known as WiMAX, which can<br>blanket entire  cities with<br>high-speed Internet access."
-          ],
-          [
-           "One day after ousting its<br>chief executive, the nation's<br>largest insurance broker said<br>it will tell clients exactly<br>how much they are paying for<br>services and renounce back-<br>door payments from carriers."
-          ],
-          [
-           "LONDON (CBS.MW) -- Outlining<br>an expectation for higher oil<br>prices and increasing demand,<br>Royal Dutch/Shell on Wednesday<br>said it #39;s lifting project<br>spending to \\$45 billion over<br>the next three years."
-          ],
-          [
-           "Tuesday #39;s meeting could<br>hold clues to whether it<br>#39;ll be a November or<br>December pause in rate hikes.<br>By Chris Isidore, CNN/Money<br>senior writer."
-          ],
-          [
-           "Phishing is one of the<br>fastest-growing forms of<br>personal fraud in the world.<br>While consumers are the most<br>obvious victims, the damage<br>spreads far wider--hurting<br>companies #39; finances and<br>reputations and potentially"
-          ],
-          [
-           "Reuters - The U.S. Interior<br>Department on\\Friday gave<br>final approval to a plan by<br>ConocoPhillips and\\partner<br>Anadarko Petroleum Corp. to<br>develop five tracts around\\the<br>oil-rich Alpine field on<br>Alaska's North Slope."
-          ],
-          [
-           "The dollar may fall against<br>the euro for a third week in<br>four on concern near-record<br>crude oil prices will temper<br>the pace of expansion in the<br>US economy, a survey by<br>Bloomberg News indicates."
-          ],
-          [
-           "The battle for the British-<br>based Chelsfield plc hotted up<br>at the weekend, with reports<br>from London that the property<br>giant #39;s management was<br>working on its own bid to<br>thwart the 585 million (\\$A1."
-          ],
-          [
-           "Atari has opened the initial<br>sign-up phase of the closed<br>beta for its Dungeons  amp;<br>Dragons real-time-strategy<br>title, Dragonshard."
-          ],
-          [
-           "AP - Many states are facing<br>legal challenges over possible<br>voting problems Nov. 2. A look<br>at some of the developments<br>Thursday:"
-          ],
-          [
-           "Israeli troops withdrew from<br>the southern Gaza Strip town<br>of Khan Yunis on Tuesday<br>morning, following a 30-hour<br>operation that left 17<br>Palestinians dead."
-          ],
-          [
-           "Notes and quotes from various<br>drivers following California<br>Speedway #39;s Pop Secret 500.<br>Jeff Gordon slipped to second<br>in points following an engine<br>failure while Jimmie Johnson<br>moved back into first."
-          ],
-          [
-           "PM-designate Omar Karameh<br>forms a new 30-member cabinet<br>which includes women for the<br>first time."
-          ],
-          [
-           "Bahrain #39;s king pardoned a<br>human rights activist who<br>convicted of inciting hatred<br>of the government and<br>sentenced to one year in<br>prison Sunday in a case linked<br>to criticism of the prime<br>minister."
-          ],
-          [
-           "Big Blue adds features, beefs<br>up training efforts in China;<br>rival Unisys debuts new line<br>and pricing plan."
-          ],
-          [
-           " MEMPHIS, Tenn. (Sports<br>Network) - The Memphis<br>Grizzlies  signed All-Star<br>forward Pau Gasol to a multi-<br>year contract on  Friday.<br>Terms of the deal were not<br>announced."
-          ],
-          [
-           "Leaders from 38 Asian and<br>European nations are gathering<br>in Vietnam for a summit of the<br>Asia-Europe Meeting, know as<br>ASEM. One thousand delegates<br>are to discuss global trade<br>and regional politics during<br>the two-day forum."
-          ],
-          [
-           "A US soldier has pleaded<br>guilty to murdering a wounded<br>16-year-old Iraqi boy. Staff<br>Sergeant Johnny Horne was<br>convicted Friday of the<br>unpremeditated murder"
-          ],
-          [
-           "Andre Agassi brushed past<br>Jonas Bjorkman 6-3 6-4 at the<br>Stockholm Open on Thursday to<br>set up a quarter-final meeting<br>with Spanish sixth seed<br>Fernando Verdasco."
-          ],
-          [
-           "South Korea's Hynix<br>Semiconductor Inc. and Swiss-<br>based STMicroelectronics NV<br>signed a joint-venture<br>agreement on Tuesday to<br>construct a memory chip<br>manufacturing plant in Wuxi,<br>about 100 kilometers west of<br>Shanghai, in China."
-          ],
-          [
-           "SAN DIEGO --(Business Wire)--<br>Oct. 11, 2004 -- Breakthrough<br>PeopleSoft EnterpriseOne 8.11<br>Applications Enable<br>Manufacturers to Become<br>Demand-Driven."
-          ],
-          [
-           "Reuters - Oil prices rose on<br>Friday as tight\\supplies of<br>distillate fuel, including<br>heating oil, ahead of\\the<br>northern hemisphere winter<br>spurred buying."
-          ],
-          [
-           "Well, Intel did say -<br>dismissively of course - that<br>wasn #39;t going to try to<br>match AMD #39;s little dual-<br>core Opteron demo coup of last<br>week and show off a dual-core<br>Xeon at the Intel Developer<br>Forum this week and - as good<br>as its word - it didn #39;t."
-          ],
-          [
-           "Guinea-Bissau #39;s army chief<br>of staff and former interim<br>president, General Verissimo<br>Correia Seabra, was killed<br>Wednesday during unrest by<br>mutinous soldiers in the<br>former Portuguese"
-          ],
-          [
-           "31 October 2004 -- Exit polls<br>show that Prime Minister<br>Viktor Yanukovich and<br>challenger Viktor Yushchenko<br>finished on top in Ukraine<br>#39;s presidential election<br>today and will face each other<br>in a run-off next month."
-          ],
-          [
-           "Nov. 18, 2004 - An FDA<br>scientist says the FDA, which<br>is charged with protecting<br>America #39;s prescription<br>drug supply, is incapable of<br>doing so."
-          ],
-          [
-           "Rock singer Bono pledges to<br>spend the rest of his life<br>trying to eradicate extreme<br>poverty around the world."
-          ],
-          [
-           "AP - Just when tourists<br>thought it was safe to go back<br>to the Princess Diana memorial<br>fountain, the mud has struck."
-          ],
-          [
-           "The UK's inflation rate fell<br>in September, thanks in part<br>to a fall in the price of<br>airfares, increasing the<br>chance that interest rates<br>will be kept on hold."
-          ],
-          [
-           " HONG KONG/SAN FRANCISCO<br>(Reuters) - IBM is selling its<br>PC-making business to China's<br>largest personal computer<br>company, Lenovo Group Ltd.,<br>for \\$1.25 billion, marking<br>the U.S.  firm's retreat from<br>an industry it helped pioneer<br>in 1981."
-          ],
-          [
-           "AP - Three times a week, The<br>Associated Press picks an<br>issue and asks President Bush<br>and Democratic presidential<br>candidate John Kerry a<br>question about it. Today's<br>question and their responses:"
-          ],
-          [
-           " BOSTON (Reuters) - Boston was<br>tingling with anticipation on<br>Saturday as the Red Sox<br>prepared to host Game One of<br>the World  Series against the<br>St. Louis Cardinals and take a<br>step toward  ridding<br>themselves of a hex that has<br>hung over the team for  eight<br>decades."
-          ],
-          [
-           "FOR the first time since his<br>appointment as Newcastle<br>United manager, Graeme Souness<br>has been required to display<br>the strong-arm disciplinary<br>qualities that, to Newcastle<br>directors, made"
-          ],
-          [
-           "In an apparent damage control<br>exercise, Russian President<br>Vladimir Putin on Saturday<br>said he favored veto rights<br>for India as new permanent<br>member of the UN Security<br>Council."
-          ],
-          [
-           "Nordstrom reported a strong<br>second-quarter profit as it<br>continued to select more<br>relevant inventory and sell<br>more items at full price."
-          ],
-          [
-           "WHY IT HAPPENED Tom Coughlin<br>won his first game as Giants<br>coach and immediately<br>announced a fine amnesty for<br>all Giants. Just kidding."
-          ],
-          [
-           "A second-place finish in his<br>first tournament since getting<br>married was good enough to<br>take Tiger Woods from third to<br>second in the world rankings."
-          ],
-          [
-           " COLORADO SPRINGS, Colorado<br>(Reuters) - World 400 meters<br>champion Jerome Young has been<br>given a lifetime ban from<br>athletics for a second doping<br>offense, the U.S. Anti-Doping<br>Agency (USADA) said Wednesday."
-          ],
-          [
-           "AP - Nigeria's Senate has<br>ordered a subsidiary of<br>petroleum giant Royal/Dutch<br>Shell to pay a Nigerian ethnic<br>group  #36;1.5 billion for oil<br>spills in their homelands, but<br>the legislative body can't<br>enforce the resolution, an<br>official said Wednesday."
-          ],
-          [
-           "IT #39;S BEEN a heck of an<br>interesting two days here in<br>Iceland. I #39;ve seen some<br>interesting technology, heard<br>some inventive speeches and<br>met some people with different<br>ideas."
-          ],
-          [
-           "The Bank of England is set to<br>keep interest rates on hold<br>following the latest meeting<br>of the its Monetary Policy<br>Committee."
-          ],
-          [
-           "Australian troops in Baghdad<br>came under attack today for<br>the first time since the end<br>of the Iraq war when a car<br>bomb exploded injuring three<br>soldiers and damaging an<br>Australian armoured convoy."
-          ],
-          [
-           "The Bush administration upheld<br>yesterday the imposition of<br>penalty tariffs on shrimp<br>imports from China and<br>Vietnam, handing a victory to<br>beleaguered US shrimp<br>producers."
-          ],
-          [
-           "House prices rose 0.2 percent<br>in September compared with the<br>month before to stand up 17.8<br>percent on a year ago, the<br>Nationwide Building Society<br>says."
-          ],
-          [
-           "Reuters - Two clients of<br>Germany's Postbank\\(DPBGn.DE)<br>fell for an e-mail fraud that<br>led them to reveal\\money<br>transfer codes to a bogus Web<br>site -- the first case of\\this<br>scam in German, prosecutors<br>said on Thursday."
-          ],
-          [
-           "US spending on information<br>technology goods, services,<br>and staff will grow seven<br>percent in 2005 and continue<br>at a similar pace through<br>2008, according to a study<br>released Monday by Forrester<br>Research."
-          ],
-          [
-           "LONDON - In two years, Arsenal<br>will play their home matches<br>in the Emirates stadium. That<br>is what their new stadium at<br>Ashburton Grove will be called<br>after the Premiership<br>champions yesterday agreed to<br>the"
-          ],
-          [
-           "KNOXVILLE, Tenn. -- Jason<br>Campbell threw for 252 yards<br>and two touchdowns, and No. 8<br>Auburn proved itself as a<br>national title contender by<br>overwhelming No. 10 Tennessee,<br>34-10, last night."
-          ],
-          [
-           "Look, Ma, no hands! The U.S.<br>space agency's latest<br>spacecraft can run an entire<br>mission by itself. By Amit<br>Asaravala."
-          ],
-          [
-           "Pakistans decision to refuse<br>the International Atomic<br>Energy Agency to have direct<br>access to Dr AQ Khan is<br>correct on both legal and<br>political counts."
-          ],
-          [
-           "MANILA, 4 December 2004 - With<br>floods receding, rescuers<br>raced to deliver food to<br>famished survivors in<br>northeastern Philippine<br>villages isolated by back-to-<br>back storms that left more<br>than 650 people dead and<br>almost 400 missing."
-          ],
-          [
-           "Talks on where to build the<br>world #39;s first nuclear<br>fusion reactor ended without a<br>deal on Tuesday but the<br>European Union said Japan and<br>the United States no longer<br>firmly opposed its bid to put<br>the plant in France."
-          ],
-          [
-           "Joining America Online,<br>EarthLink and Yahoo against<br>spamming, Microsoft Corp.<br>today announced the filing of<br>three new anti-Spam lawsuits<br>under the CAN-SPAM federal law<br>as part of its initiative in<br>solving the Spam problem for<br>Internet users worldwide."
-          ],
-          [
-           "WASHINGTON -- Another<br>Revolution season concluded<br>with an overtime elimination.<br>Last night, the Revolution<br>thrice rallied from deficits<br>for a 3-3 tie with D.C. United<br>in the Eastern Conference<br>final, then lost in the first-<br>ever Major League Soccer match<br>decided by penalty kicks."
-          ],
-          [
-           "Dwyane Wade calls himself a<br>quot;sidekick, quot; gladly<br>accepting the role Kobe Bryant<br>never wanted in Los Angeles.<br>And not only does second-year<br>Heat point"
-          ],
-          [
-           "A nationwide inspection shows<br>Internet users are not as safe<br>online as they believe. The<br>inspections found most<br>consumers have no firewall<br>protection, outdated antivirus<br>software and dozens of spyware<br>programs secretly running on<br>their computers."
-          ],
-          [
-           "World number one golfer Vijay<br>Singh of Fiji has captured his<br>eighth PGA Tour event of the<br>year with a win at the 84<br>Lumber Classic in Farmington,<br>Pennsylvania."
-          ],
-          [
-           "The noise was deafening and<br>potentially unsettling in the<br>minutes before the start of<br>the men #39;s Olympic<br>200-meter final. The Olympic<br>Stadium crowd chanted<br>quot;Hellas!"
-          ],
-          [
-           "CLEVELAND - The White House<br>said Vice President Dick<br>Cheney faces a \"master<br>litigator\" when he debates<br>Sen. John Edwards Tuesday<br>night, a backhanded compliment<br>issued as the Republican<br>administration defended itself<br>against criticism that it has<br>not acknowledged errors in<br>waging war in Iraq..."
-          ],
-          [
-           "Brazilian forward Ronaldinho<br>scored a sensational goal for<br>Barcelona against Milan,<br>making for a last-gasp 2-1.<br>The 24-year-old #39;s<br>brilliant left-foot hit at the<br>Nou Camp Wednesday night sent<br>Barcelona atop of Group F."
-          ],
-          [
-           "Nortel Networks says it will<br>again delay the release of its<br>restated financial results.<br>The Canadian telecom vendor<br>originally promised to release<br>the restated results in<br>September."
-          ],
-          [
-           " CHICAGO (Reuters) - At first<br>glance, paying \\$13 or \\$14<br>for  a hard-wired Internet<br>laptop connection in a hotel<br>room might  seem expensive."
-          ],
-          [
-           "SEOUL (Reuters) - The chairman<br>of South Korea #39;s ruling<br>Uri Party resigned on Thursday<br>after saying his father had<br>served as a military police<br>officer during Japan #39;s<br>1910-1945 colonial rule on the<br>peninsula."
-          ],
-          [
-           "ALERE, Uganda -- Kasmiro<br>Bongonyinge remembers sitting<br>up suddenly in his bed. It was<br>just after sunrise on a summer<br>morning two years ago, and the<br>old man, 87 years old and<br>blind, knew something was<br>wrong."
-          ],
-          [
-           "Reuters - An investigation<br>into U.S. insurers\\and brokers<br>rattled insurance industry<br>stocks for a second day\\on<br>Friday as investors, shaken<br>further by subpoenas<br>delivered\\to the top U.S. life<br>insurer, struggled to gauge<br>how deep the\\probe might<br>reach."
-          ],
-          [
-           "Bee Staff Writer. SANTA CLARA<br>- Andre Carter #39;s back<br>injury has kept him out of the<br>49ers #39; lineup since Week<br>1. It #39;s also interfering<br>with him rooting on his alma<br>mater in person."
-          ],
-          [
-           "AP - Kellen Winslow Jr. ended<br>his second NFL holdout Friday."
-          ],
-          [
-           "JAKARTA - Official results<br>have confirmed former army<br>general Susilo Bambang<br>Yudhoyono as the winner of<br>Indonesia #39;s first direct<br>presidential election, while<br>incumbent Megawati<br>Sukarnoputri urged her nation<br>Thursday to wait for the<br>official announcement"
-          ],
-          [
-           "HOUSTON - With only a few<br>seconds left in a certain<br>victory for Miami, Peyton<br>Manning threw a meaningless<br>6-yard touchdown pass to<br>Marvin Harrison to cut the<br>score to 24-15."
-          ],
-          [
-           "Reuters - A ragged band of<br>children\\emerges ghost-like<br>from mists in Ethiopia's<br>highlands,\\thrusting bunches<br>of carrots at a car full of<br>foreigners."
-          ],
-          [
-           "DEADLY SCORER: Manchester<br>United #39;s Wayne Rooney<br>celebrating his three goals<br>against Fenerbahce this week<br>at Old Trafford. (AP)."
-          ],
-          [
-           "AP - A U.N. human rights<br>expert criticized the U.S.-led<br>coalition forces in<br>Afghanistan for violating<br>international law by allegedly<br>beating Afghans to death and<br>forcing some to remove their<br>clothes or wear hoods."
-          ],
-          [
-           "You can feel the confidence<br>level, not just with Team<br>Canada but with all of Canada.<br>There #39;s every expectation,<br>from one end of the bench to<br>the other, that Martin Brodeur<br>is going to hold the fort."
-          ],
-          [
-           "Heading into the first game of<br>a new season, every team has<br>question marks. But in 2004,<br>the Denver Broncos seemed to<br>have more than normal."
-          ],
-          [
-           " JERUSALEM (Reuters) - Israeli<br>Prime Minister Ariel Sharon<br>said on Thursday Yasser<br>Arafat's death could be a<br>turning point  for peacemaking<br>but he would pursue a<br>unilateral plan that  would<br>strip Palestinians of some<br>land they want for a state."
-          ],
-          [
-           " AL-ASAD AIRBASE, Iraq<br>(Reuters) - Defense Secretary<br>Donald  Rumsfeld swept into an<br>airbase in Iraq's western<br>desert Sunday  to make a<br>first-hand evaluation of<br>operations to quell a raging<br>Iraqi insurgency in his first<br>such visit in five months."
-          ],
-          [
-           "More than three out of four<br>(76 percent) consumers are<br>experiencing an increase in<br>spoofing and phishing<br>incidents, and 35 percent<br>receive fake e-mails at least<br>once a week, according to a<br>recent national study."
-          ],
-          [
-           "The Dow Jones Industrial<br>Average failed three times<br>this year to exceed its<br>previous high and fell to<br>about 10,000 each time, most<br>recently a week ago."
-          ],
-          [
-           "AP - Deep in the Atlantic<br>Ocean, undersea explorers are<br>living a safer life thanks to<br>germ-fighting clothing made in<br>Kinston."
-          ],
-          [
-           "Anaheim, Calif. - There is a<br>decidedly right lean to the<br>three-time champions of the<br>American League Central. In a<br>span of 26 days, the Minnesota<br>Twins lost the left side of<br>their infield to free agency."
-          ],
-          [
-           "Computer Associates Monday<br>announced the general<br>availability of three<br>Unicenter performance<br>management products for<br>mainframe data management."
-          ],
-          [
-           "Reuters - The European Union<br>approved on\\Wednesday the<br>first biotech seeds for<br>planting and sale across\\EU<br>territory, flying in the face<br>of widespread<br>consumer\\resistance to<br>genetically modified (GMO)<br>crops and foods."
-          ],
-          [
-           "With the NFL trading deadline<br>set for 4 p.m. Tuesday,<br>Patriots coach Bill Belichick<br>said there didn't seem to be<br>much happening on the trade<br>front around the league."
-          ],
-          [
-           "WASHINGTON - Democrat John<br>Kerry accused President Bush<br>on Monday of sending U.S.<br>troops to the \"wrong war in<br>the wrong place at the wrong<br>time\" and said he'd try to<br>bring them all home in four<br>years..."
-          ],
-          [
-           " SINGAPORE (Reuters) - Asian<br>share markets staged a  broad-<br>based retreat on Wednesday,<br>led by steelmakers amid<br>warnings of price declines,<br>but also enveloping technology<br>and  financial stocks on<br>worries that earnings may<br>disappoint."
-          ],
-          [
-           "p2pnet.net News:- A Microsoft<br>UK  quot;WEIGHING THE COST OF<br>LINUX VS. WINDOWS? LET #39;S<br>REVIEW THE FACTS quot;<br>magazine ad has been nailed as<br>misleading by Britain #39;s<br>Advertising Standards<br>Authority (ASA)."
-          ],
-          [
-           "More lorry drivers are<br>bringing supplies to Nepal's<br>capital in defiance of an<br>indefinite blockade by Maoist<br>rebels."
-          ],
-          [
-           "NEW YORK - CNN has a new boss<br>for the second time in 14<br>months: former CBS News<br>executive Jonathan Klein, who<br>will oversee programming and<br>editorial direction at the<br>second-ranked cable news<br>network."
-          ],
-          [
-           "Cut-price carrier Virgin Blue<br>said Tuesday the cost of using<br>Australian airports is<br>spiraling upward and asked the<br>government to review the<br>deregulated system of charges."
-          ],
-          [
-           "The retail sector overall may<br>be reporting a sluggish start<br>to the season, but holiday<br>shoppers are scooping up tech<br>goods at a brisk pace -- and<br>they're scouring the Web for<br>bargains more than ever.<br>&lt;FONT face=\"verdana,MS Sans<br>Serif,arial,helvetica\"<br>size=\"-2\" color=\"#666666\"&gt;&<br>lt;B&gt;-washingtonpost.com&lt<br>;/B&gt;&lt;/FONT&gt;"
-          ],
-          [
-           "AP - David Beckham broke his<br>rib moments after scoring<br>England's second goal in<br>Saturday's 2-0 win over Wales<br>in a World Cup qualifying<br>game."
-          ],
-          [
-           "Saudi Arabia, Kuwait and the<br>United Arab Emirates, which<br>account for almost half of<br>OPEC #39;s oil output, said<br>they #39;re committed to<br>boosting capacity to meet<br>soaring demand that has driven<br>prices to a record."
-          ],
-          [
-           "The US Commerce Department<br>said Thursday personal income<br>posted its biggest increase in<br>three months in August. The<br>government agency also said<br>personal spending was<br>unchanged after rising<br>strongly in July."
-          ],
-          [
-           " TOKYO (Reuters) - Tokyo's<br>Nikkei average opened up 0.54<br>percent on Monday with banks<br>and exporters leading the way<br>as a  stronger finish on Wall<br>Street and declining oil<br>prices soothed  worries over<br>the global economic outlook."
-          ],
-          [
-           " BEIJING (Reuters) - Floods<br>and landslides have killed 76<br>people in southwest China in<br>the past four days and washed<br>away  homes and roads, knocked<br>down power lines and cut off<br>at least  one city, state<br>media said on Monday."
-          ],
-          [
-           "Nothing changed at the top of<br>Serie A as all top teams won<br>their games to keep the<br>distance between one another<br>unaltered. Juventus came back<br>from behind against Lazio to<br>win thanks to another goal by<br>Ibrahimovic"
-          ],
-          [
-           "The team behind the Beagle 2<br>mission has unveiled its<br>design for a successor to the<br>British Mars lander."
-          ],
-          [
-           "Survey points to popularity in<br>Europe, the Middle East and<br>Asia of receivers that skip<br>the pay TV and focus on free<br>programming."
-          ],
-          [
-           "RICHMOND, Va. Jeremy Mayfield<br>won his first race in over<br>four years, taking the<br>Chevrolet 400 at Richmond<br>International Raceway after<br>leader Kurt Busch ran out of<br>gas eight laps from the<br>finish."
-          ],
-          [
-           "AP - Victims of the Sept. 11<br>attacks were mourned worldwide<br>Saturday, but in the Middle<br>East, amid sympathy for the<br>dead, Arabs said Washington's<br>support for Israel and the war<br>on terror launched in the<br>aftermath of the World Trade<br>Center's collapse have only<br>fueled anger and violence."
-          ],
-          [
-           "Linux publisher Red Hat Inc.<br>said Tuesday that information-<br>technology consulting firm<br>Unisys Corp. will begin<br>offering a business version of<br>the company #39;s open-source<br>operating system on its<br>servers."
-          ],
-          [
-           "SEATTLE - Ichiro Suzuki set<br>the major league record for<br>hits in a season with 258,<br>breaking George Sisler's<br>84-year-old mark with a pair<br>of singles Friday night. The<br>Seattle star chopped a leadoff<br>single in the first inning,<br>then made history with a<br>grounder up the middle in the<br>third..."
-          ],
-          [
-           "The intruder who entered<br>British Queen Elizabeth II<br>#39;s official Scottish<br>residence and caused a<br>security scare was a reporter<br>from the London-based Sunday<br>Times newspaper, local media<br>reported Friday."
-          ],
-          [
-           "IBM's p5-575, a specialized<br>server geared for high-<br>performance computing, has<br>eight 1.9GHz Power5<br>processors."
-          ],
-          [
-           "Bruce Wasserstein, head of<br>Lazard LLC, is asking partners<br>to take a one-third pay cut as<br>he readies the world #39;s<br>largest closely held<br>investment bank for a share<br>sale, people familiar with the<br>situation said."
-          ],
-          [
-           "Canadian Press - FREDERICTON<br>(CP) - A New Brunswick truck<br>driver arrested in Ontario<br>this week has been accused by<br>police of stealing 50,000 cans<br>of Moosehead beer."
-          ],
-          [
-           "Reuters - British police said<br>on Monday they had\\charged a<br>man with sending hoax emails<br>to relatives of people\\missing<br>since the Asian tsunami,<br>saying their loved ones<br>had\\been confirmed dead."
-          ],
-          [
-           "The Lemon Bay Manta Rays were<br>not going to let a hurricane<br>get in the way of football. On<br>Friday, they headed to the<br>practice field for the first<br>time in eight"
-          ],
-          [
-           "Microsoft Corp. Chairman Bill<br>Gates has donated \\$400,000 to<br>a campaign in California<br>trying to win approval of a<br>measure calling for the state<br>to sell \\$3 billion in bonds<br>to fund stem-cell research."
-          ],
-          [
-           "AP - Track star Marion Jones<br>filed a defamation lawsuit<br>Wednesday against the man<br>whose company is at the center<br>of a federal investigation<br>into illegal steroid use among<br>some of the nation's top<br>athletes."
-          ],
-          [
-           "LOS ANGELES - On Sept. 1,<br>former secretary of<br>Agriculture Dan Glickman<br>replaced the legendary Jack<br>Valenti as president and CEO<br>of Hollywood #39;s trade<br>group, the Motion Picture<br>Association of America."
-          ],
-          [
-           "England #39;s players hit out<br>at cricket #39;s authorities<br>tonight and claimed they had<br>been used as  quot;political<br>pawns quot; after the Zimbabwe<br>government produced a<br>spectacular U-turn to ensure<br>the controversial one-day<br>series will go ahead."
-          ],
-          [
-           "Newspaper publisher Pulitzer<br>Inc. said Sunday that company<br>officials are considering a<br>possible sale of the firm to<br>boost shareholder value."
-          ],
-          [
-           "Shares of Merck  amp; Co.<br>plunged almost 10 percent<br>yesterday after a media report<br>said that documents show the<br>pharmaceutical giant hid or<br>denied"
-          ],
-          [
-           "AP - The Japanese won the<br>pregame home run derby. Then<br>the game started and the major<br>league All-Stars put their<br>bats to work. Back-to-back<br>home runs by Moises Alou and<br>Vernon Wells in the fourth<br>inning and by Johnny Estrada<br>and Brad Wilkerson in the<br>ninth powered the major<br>leaguers past the Japanese<br>stars 7-3 Sunday for a 3-0<br>lead in the eight-game series."
-          ],
-          [
-           "Reuters - Wall Street was<br>expected to dip at\\Thursday's<br>opening, but shares of Texas<br>Instruments Inc.\\, may climb<br>after it gave upbeat earnings<br>guidance."
-          ],
-          [
-           "Chinese authorities detained a<br>prominent, U.S.-based Buddhist<br>leader in connection with his<br>plans to reopen an ancient<br>temple complex in the Chinese<br>province of Inner Mongolia<br>last week and have forced<br>dozens of his American<br>followers to leave the region,<br>local officials said<br>Wednesday."
-          ],
-          [
-           "The director of the National<br>Hurricane Center stays calm in<br>the midst of a storm, but<br>wants everyone in hurricane-<br>prone areas to get the message<br>from his media advisories:<br>Respect the storm's power and<br>make proper response plans."
-          ],
-          [
-           "With Chelsea losing their<br>unbeaten record and Manchester<br>United failing yet again to<br>win, William Hill now make<br>Arsenal red-hot 2/5 favourites<br>to retain the title."
-          ],
-          [
-           "Late in August, Boeing #39;s<br>top sales execs flew to<br>Singapore for a crucial sales<br>pitch. They were close to<br>persuading Singapore Airlines,<br>one of the world #39;s leading<br>airlines, to buy the American<br>company #39;s new jet, the<br>mid-sized 7E7."
-          ],
-          [
-           "SBC Communications and<br>BellSouth will acquire<br>YellowPages.com with the goal<br>of building the site into a<br>nationwide online business<br>index, the companies said<br>Thursday."
-          ],
-          [
-           "Theresa special bookcase in Al<br>Grohs office completely full<br>of game plans from his days in<br>the NFL. Green ones are from<br>the Jets."
-          ],
-          [
-           "SAN FRANCISCO Several<br>California cities and<br>counties, including Los<br>Angeles and San Francisco, are<br>suing Microsoft for what could<br>amount to billions of dollars."
-          ],
-          [
-           "Newcastle ensured their place<br>as top seeds in Friday #39;s<br>third round UEFA Cup draw<br>after holding Sporting Lisbon<br>to a 1-1 draw at St James #39;<br>Park."
-          ],
-          [
-           "Adorned with Turkish and EU<br>flags, Turkey #39;s newspapers<br>hailed Thursday an official EU<br>report recommending the<br>country start talks to join<br>the bloc, while largely<br>ignoring the stringent<br>conditions attached to the<br>announcement."
-          ],
-          [
-           "Google plans to release a<br>version of its desktop search<br>tool for computers that run<br>Apple Computer #39;s Mac<br>operating system, Google #39;s<br>chief executive, Eric Schmidt,<br>said Friday."
-          ],
-          [
-           "AMD : sicurezza e prestazioni<br>ottimali con il nuovo<br>processore mobile per notebook<br>leggeri e sottili; Acer Inc.<br>preme sull #39;acceleratore<br>con il nuovo notebook a<br>marchio Ferrari."
-          ],
-          [
-           "The sounds of tinkling bells<br>could be heard above the<br>bustle of the Farmers Market<br>on the Long Beach Promenade,<br>leading shoppers to a row of<br>bright red tin kettles dotting<br>a pathway Friday."
-          ],
-          [
-           "CBC SPORTS ONLINE - Bode<br>Miller continued his<br>impressive 2004-05 World Cup<br>skiing season by winning a<br>night slalom race in<br>Sestriere, Italy on Monday."
-          ],
-          [
-           "Firefox use around the world<br>climbed 34 percent in the last<br>month, according to a report<br>published by Web analytics<br>company WebSideStory Monday."
-          ],
-          [
-           "If a plastic card that gives<br>you credit for something you<br>don't want isn't your idea of<br>a great gift, you can put it<br>up for sale or swap."
-          ],
-          [
-           "WASHINGTON Aug. 17, 2004<br>Scientists are planning to<br>take the pulse of the planet<br>and more in an effort to<br>improve weather forecasts,<br>predict energy needs months in<br>advance, anticipate disease<br>outbreaks and even tell<br>fishermen where the catch will<br>be ..."
-          ],
-          [
-           "Damien Rhodes scored on a<br>2-yard run in the second<br>overtime, then Syracuse's<br>defense stopped Pittsburgh on<br>fourth and 1, sending the<br>Orange to a 38-31 victory<br>yesterday in Syracuse, N.Y."
-          ],
-          [
-           "AP - Anthony Harris scored 18<br>of his career-high 23 points<br>in the second half to help<br>Miami upset No. 19 Florida<br>72-65 Saturday and give first-<br>year coach Frank Haith his<br>biggest victory."
-          ],
-          [
-           "LONDON Santander Central<br>Hispano of Spain looked<br>certain to clinch its bid for<br>the British mortgage lender<br>Abbey National, after HBOS,<br>Britain #39;s biggest home-<br>loan company, said Wednesday<br>it would not counterbid, and<br>after the European Commission<br>cleared"
-          ],
-          [
-           "New communications technology<br>could spawn future products.<br>Could your purse tell you to<br>bring an umbrella?"
-          ],
-          [
-           " WASHINGTON (Reuters) - The<br>Justice Department is<br>investigating possible<br>accounting fraud at Fannie<br>Mae, bringing  greater<br>government scrutiny to bear on<br>the mortgage finance  company,<br>already facing a parallel<br>inquiry by the SEC, a source<br>close to the matter said on<br>Thursday."
-          ],
-          [
-           "AP - The five cities looking<br>to host the 2012 Summer Games<br>submitted bids to the<br>International Olympic<br>Committee on Monday, entering<br>the final stage of a long<br>process in hopes of landing<br>one of the biggest prizes in<br>sports."
-          ],
-          [
-           "SAP has won a \\$35 million<br>contract to install its human<br>resources software for the US<br>Postal Service. The NetWeaver-<br>based system will replace the<br>Post Office #39;s current<br>25-year-old legacy application"
-          ],
-          [
-           "The FIA has already cancelled<br>todays activities at Suzuka as<br>Super Typhoon Ma-On heads<br>towards the 5.807km circuit.<br>Saturday practice has been<br>cancelled altogether while<br>pre-qualifying and final<br>qualifying"
-          ],
-          [
-           "Thailand's prime minister<br>visits the southern town where<br>scores of Muslims died in army<br>custody after a rally."
-          ],
-          [
-           "Indian industrial group Tata<br>agrees to invest \\$2bn in<br>Bangladesh, the biggest single<br>deal agreed by a firm in the<br>south Asian country."
-          ],
-          [
-           "NewsFactor - For years,<br>companies large and small have<br>been convinced that if they<br>want the sophisticated<br>functionality of enterprise-<br>class software like ERP and<br>CRM systems, they must buy<br>pre-packaged applications.<br>And, to a large extent, that<br>remains true."
-          ],
-          [
-           "Following in the footsteps of<br>the RIAA, the MPAA (Motion<br>Picture Association of<br>America) announced that they<br>have began filing lawsuits<br>against people who use peer-<br>to-peer software to download<br>copyrighted movies off the<br>Internet."
-          ],
-          [
-           " GRAND PRAIRIE, Texas<br>(Reuters) - Betting on horses<br>was  banned in Texas until as<br>recently as 1987. Times have<br>changed  rapidly since.<br>Saturday, Lone Star Park race<br>track hosts the  \\$14 million<br>Breeders Cup, global racing's<br>end-of-season  extravaganza."
-          ],
-          [
-           "MacCentral - At a special<br>music event featuring Bono and<br>The Edge from rock group U2<br>held on Tuesday, Apple took<br>the wraps off the iPod Photo,<br>a color iPod available in 40GB<br>or 60GB storage capacities.<br>The company also introduced<br>the iPod U2, a special edition<br>of Apple's 20GB player clad in<br>black, equipped with a red<br>Click Wheel and featuring<br>engraved U2 band member<br>signatures. The iPod Photo is<br>available immediately, and<br>Apple expects the iPod U2 to<br>ship in mid-November."
-          ],
-          [
-           "Beijing: At least 170 miners<br>were trapped underground after<br>a gas explosion on Sunday<br>ignited a fire in a coalmine<br>in north-west China #39;s<br>Shaanxi province, reports<br>said."
-          ],
-          [
-           "The steel tubing company<br>reports sharply higher<br>earnings, but the stock is<br>falling."
-          ],
-          [
-           "It might be a stay of<br>execution for Coach P, or it<br>might just be a Christmas<br>miracle come early. SU #39;s<br>upset win over BC has given<br>hope to the Orange playing in<br>a post season Bowl game."
-          ],
-          [
-           "PHIL Neville insists<br>Manchester United don #39;t<br>fear anyone in the Champions<br>League last 16 and declared:<br>quot;Bring on the Italians."
-          ],
-          [
-           "Playboy Enterprises, the adult<br>entertainment company, has<br>announced plans to open a<br>private members club in<br>Shanghai even though the<br>company #39;s flagship men<br>#39;s magazine is still banned<br>in China."
-          ],
-          [
-           "Reuters - Oracle Corp is<br>likely to win clearance\\from<br>the European Commission for<br>its hostile  #36;7.7<br>billion\\takeover of rival<br>software firm PeopleSoft Inc.,<br>a source close\\to the<br>situation said on Friday."
-          ],
-          [
-           "TORONTO (CP) - Earnings<br>warnings from Celestica and<br>Coca-Cola along with a<br>slowdown in US industrial<br>production sent stock markets<br>lower Wednesday."
-          ],
-          [
-           "IBM (Quote, Chart) said it<br>would spend a quarter of a<br>billion dollars over the next<br>year and a half to grow its<br>RFID (define) business."
-          ],
-          [
-           "Eastman Kodak Co., the world<br>#39;s largest maker of<br>photographic film, said<br>Wednesday it expects sales of<br>digital products and services<br>to grow at an annual rate of<br>36 percent between 2003 and<br>2007, above prior growth rate<br>estimates of 26 percent<br>between 2002"
-          ],
-          [
-           "SAMARRA (Iraq): With renewe d<br>wave of skirmishes between the<br>Iraqi insurgents and the US-<br>led coalition marines, several<br>people including top police<br>officers were put to death on<br>Saturday."
-          ],
-          [
-           "SPACE.com - NASA released one<br>of the best pictures ever made<br>of Saturn's moon Titan as the<br>Cassini spacecraft begins a<br>close-up inspection of the<br>satellite today. Cassini is<br>making the nearest flyby ever<br>of the smog-shrouded moon."
-          ],
-          [
-           "AFP - The Iraqi government<br>plans to phase out slowly<br>subsidies on basic products,<br>such as oil and electricity,<br>which comprise 50 percent of<br>public spending, equal to 15<br>billion dollars, the planning<br>minister said."
-          ],
-          [
-           "ANNAPOLIS ROYAL, NS - Nova<br>Scotia Power officials<br>continued to keep the sluice<br>gates open at one of the<br>utility #39;s hydroelectric<br>plants Wednesday in hopes a<br>wayward whale would leave the<br>area and head for the open<br>waters of the Bay of Fundy."
-          ],
-          [
-           "TORONTO -- Toronto Raptors<br>point guard Alvin Williams<br>will miss the rest of the<br>season after undergoing<br>surgery on his right knee<br>Monday."
-          ],
-          [
-           "The federal agency that<br>insures pension plans said<br>that its deficit, already at<br>the highest in its history,<br>had doubled in its last fiscal<br>year, to \\$23.3 billion."
-          ],
-          [
-           "AFP - Like most US Latinos,<br>members of the extended<br>Rodriguez family say they will<br>cast their votes for Democrat<br>John Kerry in next month's<br>presidential polls."
-          ],
-          [
-           "A Milan judge on Tuesday opens<br>hearings into whether to put<br>on trial 32 executives and<br>financial institutions over<br>the collapse of international<br>food group Parmalat in one of<br>Europe #39;s biggest fraud<br>cases."
-          ],
-          [
-           "AP - Tennessee's two freshmen<br>quarterbacks have Volunteers<br>fans fantasizing about the<br>next four years. Brent<br>Schaeffer and Erik Ainge<br>surprised many with the nearly<br>seamless way they rotated<br>throughout a 42-17 victory<br>over UNLV on Sunday night."
-          ],
-          [
-           "In fact, Larry Ellison<br>compares himself to the<br>warlord, according to<br>PeopleSoft's former CEO,<br>defending previous remarks he<br>made."
-          ],
-          [
-           "FALLUJAH, Iraq -- Four Iraqi<br>fighters huddled in a trench,<br>firing rocket-propelled<br>grenades at Lieutenant Eric<br>Gregory's Bradley Fighting<br>Vehicle and the US tanks and<br>Humvees that were lumbering<br>through tight streets between<br>boxlike beige houses."
-          ],
-          [
-           "MADRID, Aug 18 (Reuters) -<br>Portugal captain Luis Figo<br>said on Wednesday he was<br>taking an indefinite break<br>from international football,<br>but would not confirm whether<br>his decision was final."
-          ],
-          [
-           "The Bank of England on<br>Thursday left its benchmark<br>interest rate unchanged, at<br>4.75 percent, as policy makers<br>assessed whether borrowing<br>costs, already the highest in<br>the Group of Seven, are<br>constraining consumer demand."
-          ],
-          [
-           "AP - Several thousand<br>Christians who packed a<br>cathedral compound in the<br>Egyptian capital hurled stones<br>at riot police Wednesday to<br>protest a woman's alleged<br>forced conversion to Islam. At<br>least 30 people were injured."
-          ],
-          [
-           "A group of Saudi religious<br>scholars have signed an open<br>letter urging Iraqis to<br>support jihad against US-led<br>forces.  quot;Fighting the<br>occupiers is a duty for all<br>those who are able, quot; they<br>said in a statement posted on<br>the internet at the weekend."
-          ],
-          [
-           "Fashion retailers Austin Reed<br>and Ted Baker have reported<br>contrasting fortunes on the<br>High Street. Austin Reed<br>reported interim losses of 2."
-          ],
-          [
-           "AP - Shaun Rogers is in the<br>backfield as often as some<br>running backs. Whether teams<br>dare to block Detroit's star<br>defensive tackle with one<br>player or follow the trend of<br>double-teaming him, he often<br>rips through offensive lines<br>with a rare combination of<br>size, speed, strength and<br>nimble footwork."
-          ],
-          [
-           " NEW YORK (Reuters) - A<br>federal judge on Friday<br>approved  Citigroup Inc.'s<br>\\$2.6 billion settlement with<br>WorldCom Inc.  investors who<br>lost billions when an<br>accounting scandal plunged<br>the telecommunications company<br>into bankruptcy protection."
-          ],
-          [
-           "The Lions and Eagles entered<br>Sunday #39;s game at Ford<br>Field in the same place --<br>atop their respective<br>divisions -- and with<br>identical 2-0 records."
-          ],
-          [
-           "An unspecified number of<br>cochlear implants to help<br>people with severe hearing<br>loss are being recalled<br>because they may malfunction<br>due to ear moisture, the US<br>Food and Drug Administration<br>announced."
-          ],
-          [
-           "Profits triple at McDonald's<br>Japan after the fast-food<br>chain starts selling larger<br>burgers."
-          ],
-          [
-           "After Marcos Moreno threw four<br>more interceptions in last<br>week's 14-13 overtime loss at<br>N.C. A T, Bison Coach Ray<br>Petty will start Antoine<br>Hartfield against Norfolk<br>State on Saturday."
-          ],
-          [
-           "You can empty your pockets of<br>change, take off your belt and<br>shoes and stick your keys in<br>the little tray. But if you've<br>had radiation therapy<br>recently, you still might set<br>off Homeland Security alarms."
-          ],
-          [
-           "Mountaineers retrieve three<br>bodies believed to have been<br>buried for 22 years on an<br>Indian glacier."
-          ],
-          [
-           "SEOUL, Oct 19 Asia Pulse -<br>LG.Philips LCD Co.<br>(KSE:034220), the world #39;s<br>second-largest maker of liquid<br>crystal display (LCD), said<br>Tuesday it has developed the<br>world #39;s largest organic<br>light emitting diode"
-          ],
-          [
-           "SOUTH WILLIAMSPORT, Pa. --<br>Looking ahead to the US<br>championship game almost cost<br>Conejo Valley in the<br>semifinals of the Little<br>League World Series."
-          ],
-          [
-           "The Cubs didn #39;t need to<br>fly anywhere near Florida to<br>be in the eye of the storm.<br>For a team that is going on<br>100 years since last winning a<br>championship, the only thing<br>they never are at a loss for<br>is controversy."
-          ],
-          [
-           "Security experts warn of<br>banner ads with a bad attitude<br>--and a link to malicious<br>code. Also: Phishers, be gone."
-          ],
-          [
-           "KETTERING, Ohio Oct. 12, 2004<br>- Cincinnati Bengals defensive<br>end Justin Smith pleaded not<br>guilty to a driving under the<br>influence charge."
-          ],
-          [
-           "com October 15, 2004, 5:11 AM<br>PT. Wood paneling and chrome<br>made your dad #39;s station<br>wagon look like a million<br>bucks, and they might also be<br>just the ticket for Microsoft<br>#39;s fledgling"
-          ],
-          [
-           "President Thabo Mbeki met with<br>Ivory Coast Prime Minister<br>Seydou Diarra for three hours<br>yesterday as part of talks<br>aimed at bringing peace to the<br>conflict-wracked Ivory Coast."
-          ],
-          [
-           "MINNEAPOLIS -- For much of the<br>2004 season, Twins pitcher<br>Johan Santana didn #39;t just<br>beat opposing hitters. Often,<br>he overwhelmed and owned them<br>in impressive fashion."
-          ],
-          [
-           "Britain #39;s inflation rate<br>fell in August further below<br>its 2.0 percent government-set<br>upper limit target with<br>clothing and footwear prices<br>actually falling, official<br>data showed on Tuesday."
-          ],
-          [
-           " KATHMANDU (Reuters) - Nepal's<br>Maoist rebels have<br>temporarily suspended a<br>crippling economic blockade of<br>the  capital from Wednesday,<br>saying the move was in<br>response to  popular appeals."
-          ],
-          [
-           "Reuters - An Algerian<br>suspected of being a leader\\of<br>the Madrid train bombers has<br>been identified as one of<br>seven\\people who blew<br>themselves up in April to<br>avoid arrest, Spain's\\Interior<br>Ministry said on Friday."
-          ],
-          [
-           "KABUL: An Afghan man was found<br>guilty on Saturday of killing<br>four journalists in 2001,<br>including two from Reuters,<br>and sentenced to death."
-          ],
-          [
-           "Yasser Arafat, the leader for<br>decades of a fight for<br>Palestinian independence from<br>Israel, has died at a military<br>hospital in Paris, according<br>to news reports."
-          ],
-          [
-           " LONDON (Reuters) - European<br>shares shrugged off a spike in<br>the euro to a fresh all-time<br>high Wednesday, with telecoms<br>again leading the way higher<br>after interim profits at<br>Britain's  mm02 beat<br>expectations."
-          ],
-          [
-           "WASHINGTON - Weighed down by<br>high energy prices, the US<br>economy grew slower than the<br>government estimated in the<br>April-June quarter, as higher<br>oil prices limited consumer<br>spending and contributed to a<br>record trade deficit."
-          ],
-          [
-           "CHICAGO United Airlines says<br>it will need even more labor<br>cuts than anticipated to get<br>out of bankruptcy. United told<br>a bankruptcy court judge in<br>Chicago today that it intends<br>to start talks with unions<br>next month on a new round of<br>cost savings."
-          ],
-          [
-           " JABALYA, Gaza Strip (Reuters)<br>- Israel pulled most of its<br>forces out of the northern<br>Gaza Strip Saturday after a<br>four-day  incursion it said<br>was staged to halt Palestinian<br>rocket attacks  on southern<br>Israeli towns."
-          ],
-          [
-           "Computer Associates<br>International yesterday<br>reported a 6 increase in<br>revenue during its second<br>fiscal quarter, but posted a<br>\\$94 million loss after paying<br>to settle government<br>investigations into the<br>company, it said yesterday."
-          ],
-          [
-           "THE Turkish embassy in Baghdad<br>was investigating a television<br>report that two Turkish<br>hostages had been killed in<br>Iraq, but no confirmation was<br>available so far, a senior<br>Turkish diplomat said today."
-          ],
-          [
-           "Reuters - Thousands of<br>supporters of<br>Ukraine's\\opposition leader,<br>Viktor Yushchenko, celebrated<br>on the streets\\in the early<br>hours on Monday after an exit<br>poll showed him\\winner of a<br>bitterly fought presidential<br>election."
-          ],
-          [
-           "LONDON : The United States<br>faced rare criticism over<br>human rights from close ally<br>Britain, with an official<br>British government report<br>taking Washington to task over<br>concerns about Iraq and the<br>Guantanamo Bay jail."
-          ],
-          [
-           "The University of California,<br>Berkeley, has signed an<br>agreement with the Samoan<br>government to isolate, from a<br>tree, the gene for a promising<br>anti- Aids drug and to share<br>any royalties from the sale of<br>a gene-derived drug with the<br>people of Samoa."
-          ],
-          [
-           "PC World - Send your video<br>throughout your house--<br>wirelessly--with new gateways<br>and media adapters."
-          ],
-          [
-           "At a charity auction in New<br>Jersey last weekend, baseball<br>memorabilia dealer Warren<br>Heller was approached by a man<br>with an unusual but topical<br>request."
-          ],
-          [
-           " TOKYO (Reuters) - Tokyo's<br>Nikkei average jumped 2.5<br>percent  by mid-afternoon on<br>Monday as semiconductor-<br>related stocks such  as<br>Advantest Corp. mirrored a<br>rally by their U.S. peers<br>while  banks and brokerages<br>extended last week's gains."
-          ],
-          [
-           "INTER Milan coach Roberto<br>Mancini believes the club<br>#39;s lavish (northern) summer<br>signings will enable them to<br>mount a serious Serie A<br>challenge this season."
-          ],
-          [
-           "LONDON - A bomb threat that<br>mentioned Iraq forced a New<br>York-bound Greek airliner to<br>make an emergency landing<br>Sunday at London's Stansted<br>Airport escorted by military<br>jets, authorities said.    An<br>airport spokeswoman said an<br>Athens newspaper had received<br>a phone call saying there was<br>a bomb on board the Olympic<br>Airlines plane..."
-          ],
-          [
-           "Links to this week's topics<br>from search engine forums<br>across the web: New MSN Search<br>Goes LIVE in Beta - Microsoft<br>To Launch New Search Engine -<br>Google Launches 'Google<br>Advertising Professionals' -<br>Organic vs Paid Traffic ROI? -<br>Making Money With AdWords? -<br>Link Building 101"
-          ],
-          [
-           "AP - Brad Ott shot an 8-under<br>64 on Sunday to win the<br>Nationwide Tour's Price Cutter<br>Charity Championship for his<br>first Nationwide victory."
-          ],
-          [
-           "AP - New York Jets running<br>back Curtis Martin passed Eric<br>Dickerson and Jerome Bettis on<br>the NFL career rushing list<br>Sunday against the St. Louis<br>Rams, moving to fourth all-<br>time."
-          ],
-          [
-           "Eight conservation groups are<br>fighting the US government<br>over a plan to poison<br>thousands of prairie dogs in<br>the grasslands of South<br>Dakota, saying wildlife should<br>not take a backseat to<br>ranching interests."
-          ],
-          [
-           "ATHENS, Greece - Sheryl<br>Swoopes made three big plays<br>at the end - two baskets and<br>another on defense - to help<br>the United States squeeze out<br>a 66-62 semifinal victory over<br>Russia on Friday. Now, only<br>one game stands between the<br>U.S..."
-          ],
-          [
-           "Instead of standing for ante<br>meridian and post meridian,<br>though, fans will remember the<br>time periods of pre-Mia and<br>after-Mia. After playing for<br>18 years and shattering nearly<br>every record"
-          ],
-          [
-           "General Motors (GM) plans to<br>announce a massive<br>restructuring Thursday that<br>will eliminate as many as<br>12,000 jobs in Europe in a<br>move to stem the five-year<br>flow of red ink from its auto<br>operations in the region."
-          ],
-          [
-           "Scientists are developing a<br>device which could improve the<br>lives of kidney dialysis<br>patients."
-          ],
-          [
-           "KABUL, Afghanistan The Afghan<br>government is blaming drug<br>smugglers for yesterday #39;s<br>attack on the leading vice<br>presidential candidate ."
-          ],
-          [
-           "Stephon Marbury, concerned<br>about his lousy shooting in<br>Athens, used an off day to go<br>to the gym and work on his<br>shot. By finding his range, he<br>saved the United States #39;<br>hopes for a basketball gold<br>medal."
-          ],
-          [
-           " LONDON (Reuters) - Oil prices<br>held firm on Wednesday as<br>Hurricane Ivan closed off<br>crude output and shut<br>refineries in  the Gulf of<br>Mexico, while OPEC's Gulf<br>producers tried to  reassure<br>traders by recommending an<br>output hike."
-          ],
-          [
-           "State-owned, running a<br>monopoly on imports of jet<br>fuel to China #39;s fast-<br>growing aviation industry and<br>a prized member of Singapore<br>#39;s Stock Exchange."
-          ],
-          [
-           "Google has won a trade mark<br>dispute, with a District Court<br>judge finding that the search<br>engines sale of sponsored<br>search terms Geico and Geico<br>Direct did not breach car<br>insurance firm GEICOs rights<br>in the trade marked terms."
-          ],
-          [
-           "Wall Street bounded higher for<br>the second straight day<br>yesterday as investors reveled<br>in sharply falling oil prices<br>and the probusiness agenda of<br>the second Bush<br>administration. The Dow Jones<br>industrials gained more than<br>177 points for its best day of<br>2004, while the Standard  amp;<br>Poor's 500 closed at its<br>highest level since early<br>2002."
-          ],
-          [
-           "Key factors help determine if<br>outsourcing benefits or hurts<br>Americans."
-          ],
-          [
-           "The US Trade Representative on<br>Monday rejected the European<br>Union #39;s assertion that its<br>ban on beef from hormone-<br>treated cattle is now<br>justified by science and that<br>US and Canadian retaliatory<br>sanctions should be lifted."
-          ],
-          [
-           "One of the leading figures in<br>the Greek Orthodox Church, the<br>Patriarch of Alexandria Peter<br>VII, has been killed in a<br>helicopter crash in the Aegean<br>Sea."
-          ],
-          [
-           "Siding with chip makers,<br>Microsoft said it won't charge<br>double for its per-processor<br>licenses when dual-core chips<br>come to market next year."
-          ],
-          [
-           "NEW YORK -- Wall Street's<br>fourth-quarter rally gave<br>stock mutual funds a solid<br>performance for 2004, with<br>small-cap equity funds and<br>real estate funds scoring some<br>of the biggest returns. Large-<br>cap growth equities and<br>technology-focused funds had<br>the slimmest gains."
-          ],
-          [
-           "CANBERRA, Australia -- The<br>sweat-stained felt hats worn<br>by Australian cowboys, as much<br>a part of the Outback as<br>kangaroos and sun-baked soil,<br>may be heading for the history<br>books. They fail modern<br>industrial safety standards."
-          ],
-          [
-           "Big Food Group Plc, the UK<br>owner of the Iceland grocery<br>chain, said second-quarter<br>sales at stores open at least<br>a year dropped 3.3 percent,<br>the second consecutive<br>decline, after competitors cut<br>prices."
-          ],
-          [
-           "A London-to-Washington flight<br>is diverted after a security<br>alert involving the singer<br>formerly known as Cat Stevens."
-          ],
-          [
-           " WASHINGTON (Reuters) - The<br>first case of soybean rust has<br>been found on the mainland<br>United States and could affect<br>U.S.  crops for the near<br>future, costing farmers<br>millions of dollars,  the<br>Agriculture Department said on<br>Wednesday."
-          ],
-          [
-           "IBM and the Spanish government<br>have introduced a new<br>supercomputer they hope will<br>be the most powerful in<br>Europe, and one of the 10 most<br>powerful in the world."
-          ],
-          [
-           "The Supreme Court today<br>overturned a five-figure<br>damage award to an Alexandria<br>man for a local auto dealer<br>#39;s alleged loan scam,<br>ruling that a Richmond-based<br>federal appeals court had<br>wrongly"
-          ],
-          [
-           "TheSpaceShipOne team is handed<br>the \\$10m cheque and trophy it<br>won for claiming the Ansari<br>X-Prize."
-          ],
-          [
-           "Security officials have<br>identified six of the<br>militants who seized a school<br>in southern Russia as being<br>from Chechnya, drawing a<br>strong connection to the<br>Chechen insurgents who have<br>been fighting Russian forces<br>for years."
-          ],
-          [
-           "AP - Randy Moss is expected to<br>play a meaningful role for the<br>Minnesota Vikings this weekend<br>against the Giants, even<br>without a fully healed right<br>hamstring."
-          ],
-          [
-           "Pros: Fits the recent profile<br>(44, past PGA champion, fiery<br>Ryder Cup player); the job is<br>his if he wants it. Cons:<br>Might be too young to be<br>willing to burn two years of<br>play on tour."
-          ],
-          [
-           "SEOUL -- North Korea set three<br>conditions yesterday to be met<br>before it would consider<br>returning to six-party talks<br>on its nuclear programs."
-          ],
-          [
-           "Official figures show the<br>12-nation eurozone economy<br>continues to grow, but there<br>are warnings it may slow down<br>later in the year."
-          ],
-          [
-           "Elmer Santos scored in the<br>second half, lifting East<br>Boston to a 1-0 win over<br>Brighton yesterday afternoon<br>and giving the Jets an early<br>leg up in what is shaping up<br>to be a tight Boston City<br>League race."
-          ],
-          [
-           "In upholding a lower court<br>#39;s ruling, the Supreme<br>Court rejected arguments that<br>the Do Not Call list violates<br>telemarketers #39; First<br>Amendment rights."
-          ],
-          [
-           "US-backed Iraqi commandos were<br>poised Friday to storm rebel<br>strongholds in the northern<br>city of Mosul, as US military<br>commanders said they had<br>quot;broken the back quot; of<br>the insurgency with their<br>assault on the former rebel<br>bastion of Fallujah."
-          ],
-          [
-           "Infineon Technologies, the<br>second-largest chip maker in<br>Europe, said Wednesday that it<br>planned to invest about \\$1<br>billion in a new factory in<br>Malaysia to expand its<br>automotive chip business and<br>be closer to customers in the<br>region."
-          ],
-          [
-           "Mozilla's new web browser is<br>smart, fast and user-friendly<br>while offering a slew of<br>advanced, customizable<br>functions. By Michelle Delio."
-          ],
-          [
-           "Saints special teams captain<br>Steve Gleason expects to be<br>fined by the league after<br>being ejected from Sunday's<br>game against the Carolina<br>Panthers for throwing a punch."
-          ],
-          [
-           "JERUSALEM (Reuters) - Prime<br>Minister Ariel Sharon, facing<br>a party mutiny over his plan<br>to quit the Gaza Strip, has<br>approved 1,000 more Israeli<br>settler homes in the West Bank<br>in a move that drew a cautious<br>response on Tuesday from ..."
-          ],
-          [
-           "Play has begun in the<br>Australian Masters at<br>Huntingdale in Melbourne with<br>around half the field of 120<br>players completing their first<br>rounds."
-          ],
-          [
-           " NEW YORK (Reuters) -<br>Washington Post Co. &lt;A HREF<br>=\"http://www.investor.reuters.<br>com/FullQuote.aspx?ticker=WPO.<br>N target=/stocks/quickinfo/ful<br>lquote\"&gt;WPO.N&lt;/A&gt;<br>said on  Friday that quarterly<br>profit jumped, beating<br>analysts'  forecasts, boosted<br>by results at its Kaplan<br>education unit and  television<br>broadcasting operations."
-          ],
-          [
-           "GHAZNI, Afghanistan, 6 October<br>2004 - Wartime security was<br>rolled out for Afghanistans<br>interim President Hamid Karzai<br>as he addressed his first<br>election campaign rally<br>outside the capital yesterday<br>amid spiraling violence."
-          ],
-          [
-           "LOUISVILLE, Ky. - Louisville<br>men #39;s basketball head<br>coach Rick Pitino and senior<br>forward Ellis Myles met with<br>members of the media on Friday<br>to preview the Cardinals #39;<br>home game against rival<br>Kentucky on Satursday."
-          ],
-          [
-           "AP - Sounds like David<br>Letterman is as big a \"Pops\"<br>fan as most everyone else."
-          ],
-          [
-           "originally offered on notebook<br>PCs -- to its Opteron 32- and<br>64-bit x86 processors for<br>server applications. The<br>technology will help servers<br>to run"
-          ],
-          [
-           "New orders for US-made durable<br>goods increased 0.2pc in<br>September, held back by a big<br>drop in orders for<br>transportation goods, the US<br>Commerce Department said<br>today."
-          ],
-          [
-           "Siblings are the first ever to<br>be convicted for sending<br>boatloads of junk e-mail<br>pushing bogus products. Also:<br>Microsoft takes MSN music<br>download on a Euro trip....<br>Nokia begins legal battle<br>against European<br>counterparts.... and more."
-          ],
-          [
-           "I always get a kick out of the<br>annual list published by<br>Forbes singling out the<br>richest people in the country.<br>It #39;s almost as amusing as<br>those on the list bickering<br>over their placement."
-          ],
-          [
-           "MacCentral - After Apple<br>unveiled the iMac G5 in Paris<br>this week, Vice President of<br>Hardware Product Marketing<br>Greg Joswiak gave Macworld<br>editors a guided tour of the<br>desktop's new design. Among<br>the topics of conversation:<br>the iMac's cooling system, why<br>pre-installed Bluetooth<br>functionality and FireWire 800<br>were left out, and how this<br>new model fits in with Apple's<br>objectives."
-          ],
-          [
-           "Williams-Sonoma Inc., operator<br>of home furnishing chains<br>including Pottery Barn, said<br>third-quarter earnings rose 19<br>percent, boosted by store<br>openings and catalog sales."
-          ],
-          [
-           "We #39;ve known about<br>quot;strained silicon quot;<br>for a while--but now there<br>#39;s a better way to do it.<br>Straining silicon improves<br>chip performance."
-          ],
-          [
-           "This week, Sir Richard Branson<br>announced his new company,<br>Virgin Galactic, has the<br>rights to the first commercial<br>flights into space."
-          ],
-          [
-           "71-inch HDTV comes with a home<br>stereo system and components<br>painted in 24-karat gold."
-          ],
-          [
-           "Arsenal was held to a 1-1 tie<br>by struggling West Bromwich<br>Albion on Saturday, failing to<br>pick up a Premier League<br>victory when Rob Earnshaw<br>scored with 11 minutes left."
-          ],
-          [
-           "TOKYO - Mitsubishi Heavy<br>Industries said today it #39;s<br>in talks to buy a plot of land<br>in central Japan #39;s Nagoya<br>city from Mitsubishi Motors<br>for building aircraft parts."
-          ],
-          [
-           "China has confirmed that it<br>found a deadly strain of bird<br>flu in pigs as early as two<br>years ago. China #39;s<br>Agriculture Ministry said two<br>cases had been discovered, but<br>it did not say exactly where<br>the samples had been taken."
-          ],
-          [
-           "Baseball #39;s executive vice<br>president Sandy Alderson<br>insisted last month that the<br>Cubs, disciplined for an<br>assortment of run-ins with<br>umpires, would not be targeted<br>the rest of the season by<br>umpires who might hold a<br>grudge."
-          ],
-          [
-           "As Superman and Batman would<br>no doubt reflect during their<br>cigarette breaks, the really<br>draining thing about being a<br>hero was that you have to keep<br>riding to the rescue."
-          ],
-          [
-           "MacCentral - RealNetworks Inc.<br>said on Tuesday that it has<br>sold more than a million songs<br>at its online music store<br>since slashing prices last<br>week as part of a limited-time<br>sale aimed at growing the user<br>base of its new digital media<br>software."
-          ],
-          [
-           "With the presidential election<br>less than six weeks away,<br>activists and security experts<br>are ratcheting up concern over<br>the use of touch-screen<br>machines to cast votes.<br>&lt;FONT face=\"verdana,MS Sans<br>Serif,arial,helvetica\"<br>size=\"-2\"\\ color=\"#666666\"&gt;<br>&lt;B&gt;-washingtonpost.com&l<br>t;/B&gt;&lt;/FONT&gt;"
-          ],
-          [
-           "NEW YORK, September 14 (New<br>Ratings) - Yahoo! Inc<br>(YHOO.NAS) has agreed to<br>acquire Musicmatch Inc, a<br>privately held digital music<br>software company, for about<br>\\$160 million in cash."
-          ],
-          [
-           "Japan #39;s Sumitomo Mitsui<br>Financial Group Inc. said<br>Tuesday it proposed to UFJ<br>Holdings Inc. that the two<br>banks merge on an equal basis<br>in its latest attempt to woo<br>UFJ away from a rival suitor."
-          ],
-          [
-           "Oil futures prices were little<br>changed Thursday as traders<br>anxiously watched for<br>indications that the supply or<br>demand picture would change in<br>some way to add pressure to<br>the market or take some away."
-          ],
-          [
-           "Gov. Rod Blagojevich plans to<br>propose a ban Thursday on the<br>sale of violent and sexually<br>explicit video games to<br>minors, something other states<br>have tried with little<br>success."
-          ],
-          [
-           " CHICAGO (Reuters) - Delta Air<br>Lines Inc. &lt;A HREF=\"http://<br>www.investor.reuters.com/FullQ<br>uote.aspx?ticker=DAL.N target=<br>/stocks/quickinfo/fullquote\"&g<br>t;DAL.N&lt;/A&gt; said on<br>Tuesday it will cut wages by<br>10 percent and its chief<br>executive  will go unpaid for<br>the rest of the year, but it<br>still warned of  bankruptcy<br>within weeks unless more cuts<br>are made."
-          ],
-          [
-           "AP - Ten years after the Irish<br>Republican Army's momentous<br>cease-fire, negotiations<br>resumed Wednesday in hope of<br>reviving a Catholic-Protestant<br>administration, an elusive<br>goal of Northern Ireland's<br>hard-fought peace process."
-          ],
-          [
-           "A cable channel plans to<br>resurrect each of the 1,230<br>regular-season games listed on<br>the league's defunct 2004-2005<br>schedule by setting them in<br>motion on a video game<br>console."
-          ],
-          [
-           "  SANTO DOMINGO, Dominican<br>Republic, Sept. 18 -- Tropical<br>Storm Jeanne headed for the<br>Bahamas on Saturday after an<br>assault on the Dominican<br>Republic that killed 10<br>people, destroyed hundreds of<br>houses and forced thousands<br>from their homes."
-          ],
-          [
-           "An explosion tore apart a car<br>in Gaza City Monday, killing<br>at least one person,<br>Palestinian witnesses said.<br>They said Israeli warplanes<br>were circling overhead at the<br>time of the blast, indicating<br>a possible missile strike."
-          ],
-          [
-           " WASHINGTON (Reuters) - A<br>former Fannie Mae &lt;A HREF=\"<br>http://www.investor.reuters.co<br>m/FullQuote.aspx?ticker=FNM.N <br>target=/stocks/quickinfo/fullq<br>uote\"&gt;FNM.N&lt;/A&gt;<br>employee  who gave U.S.<br>officials information about<br>what he saw as  accounting<br>irregularities will not<br>testify as planned before a<br>congressional hearing next<br>week, a House committee said<br>on  Friday."
-          ],
-          [
-           "Beijing, Oct. 25 (PTI): China<br>and the US today agreed to<br>work jointly to re-energise<br>the six-party talks mechanism<br>aimed at dismantling North<br>Korea #39;s nuclear programmes<br>while Washington urged Beijing<br>to resume"
-          ],
-          [
-           "AFP - Sporadic gunfire and<br>shelling took place overnight<br>in the disputed Georgian<br>region of South Ossetia in<br>violation of a fragile<br>ceasefire, wounding seven<br>Georgian servicemen."
-          ],
-          [
-           "PARIS, Nov 4 (AFP) - The<br>European Aeronautic Defence<br>and Space Company reported<br>Thursday that its nine-month<br>net profit more than doubled,<br>thanks largely to sales of<br>Airbus aircraft, and raised<br>its full-year forecast."
-          ],
-          [
-           "AP - Eric Hinske and Vernon<br>Wells homered, and the Toronto<br>Blue Jays completed a three-<br>game sweep of the Baltimore<br>Orioles with an 8-5 victory<br>Sunday."
-          ],
-          [
-           "SiliconValley.com - When<br>\"Halo\" became a smash video<br>game hit following Microsoft's<br>launch of the Xbox console in<br>2001, it was a no-brainer that<br>there would be a sequel to the<br>science fiction shoot-em-up."
-          ],
-          [
-           "The number of people claiming<br>unemployment benefit last<br>month fell by 6,100 to<br>830,200, according to the<br>Office for National<br>Statistics."
-          ],
-          [
-           " NEW YORK (Reuters) - Todd<br>Walker homered, had three hits<br>and drove in four runs to lead<br>the Chicago Cubs to a 12-5 win<br>over the Cincinnati Reds in<br>National League play at<br>Wrigley  Field on Monday."
-          ],
-          [
-           "PARIS -- The city of Paris<br>intends to reduce its<br>dependence on software<br>suppliers with \"de facto<br>monopolies,\" but considers an<br>immediate switch of its 17,000<br>desktops to open source<br>software too costly, it said<br>Wednesday."
-          ],
-          [
-           " FALLUJA, Iraq (Reuters) -<br>U.S. forces hit Iraq's rebel<br>stronghold of Falluja with the<br>fiercest air and ground<br>bombardment in months, as<br>insurgents struck back on<br>Saturday  with attacks that<br>killed up to 37 people in<br>Samarra."
-          ],
-          [
-           "MIAMI (Sports Network) -<br>Shaquille O #39;Neal made his<br>home debut, but once again it<br>was Dwyane Wade stealing the<br>show with 28 points as the<br>Miami Heat downed the<br>Cleveland Cavaliers, 92-86, in<br>front of a record crowd at<br>AmericanAirlines Arena."
-          ],
-          [
-           "AP - The San Diego Chargers<br>looked sharp  #151; and played<br>the same way. Wearing their<br>powder-blue throwback jerseys<br>and white helmets from the<br>1960s, the Chargers did almost<br>everything right in beating<br>the Jacksonville Jaguars 34-21<br>on Sunday."
-          ],
-          [
-           "The vast majority of consumers<br>are unaware that an Apple iPod<br>digital music player only<br>plays proprietary iTunes<br>files, while a smaller<br>majority agree that it is<br>within RealNetworks #39;<br>rights to develop a program<br>that will make its music files<br>compatible"
-          ],
-          [
-           "Tyler airlines are gearing up<br>for the beginning of holiday<br>travel, as officials offer<br>tips to help travelers secure<br>tickets and pass through<br>checkpoints with ease."
-          ],
-          [
-           " NAJAF, Iraq (Reuters) - The<br>fate of a radical Shi'ite<br>rebellion in the holy city of<br>Najaf was uncertain Friday<br>amid  disputed reports that<br>Iraqi police had gained<br>control of the  Imam Ali<br>Mosque."
-          ],
-          [
-           " PROVIDENCE, R.I. (Reuters) -<br>You change the oil in your car<br>every 5,000 miles or so. You<br>clean your house every week or<br>two. Your PC needs regular<br>maintenance as well --<br>especially if  you're using<br>Windows and you spend a lot of<br>time on the  Internet."
-          ],
-          [
-           "NERVES - no problem. That<br>#39;s the verdict of Jose<br>Mourinho today after his<br>Chelsea side gave a resolute<br>display of character at<br>Highbury."
-          ],
-          [
-           "AP - The latest low point in<br>Ron Zook's tenure at Florida<br>even has the coach wondering<br>what went wrong. Meanwhile,<br>Sylvester Croom's first big<br>win at Mississippi State has<br>given the Bulldogs and their<br>fans a reason to believe in<br>their first-year leader.<br>Jerious Norwood's 37-yard<br>touchdown run with 32 seconds<br>remaining lifted the Bulldogs<br>to a 38-31 upset of the 20th-<br>ranked Gators on Saturday."
-          ],
-          [
-           "A criminal trial scheduled to<br>start Monday involving former<br>Enron Corp. executives may<br>shine a rare and potentially<br>harsh spotlight on the inner<br>workings"
-          ],
-          [
-           "The Motley Fool - Here's<br>something you don't see every<br>day -- the continuing brouhaha<br>between Oracle (Nasdaq: ORCL -<br>News) and PeopleSoft (Nasdaq:<br>PSFT - News) being a notable<br>exception. South Africa's<br>Harmony Gold Mining Company<br>(NYSE: HMY - News) has<br>announced a hostile takeover<br>bid to acquire fellow South<br>African miner Gold Fields<br>Limited (NYSE: GFI - News).<br>The transaction, if it takes<br>place, would be an all-stock<br>acquisition, with Harmony<br>issuing 1.275 new shares in<br>payment for each share of Gold<br>Fields. The deal would value<br>Gold Fields at more than<br>#36;8 billion. ..."
-          ],
-          [
-           "Someone forgot to inform the<br>US Olympic basketball team<br>that it was sent to Athens to<br>try to win a gold medal, not<br>to embarrass its country."
-          ],
-          [
-           "SPACE.com - NASA's Mars \\rover<br>Opportunity nbsp;will back its<br>\\way out of a nbsp;crater it<br>has spent four months<br>exploring after reaching<br>terrain nbsp;that appears \\too<br>treacherous to tread. nbsp;"
-          ],
-          [
-           "Sony Corp. announced Tuesday a<br>new 20 gigabyte digital music<br>player with MP3 support that<br>will be available in Great<br>Britain and Japan before<br>Christmas and elsewhere in<br>Europe in early 2005."
-          ],
-          [
-           "Wal-Mart Stores Inc. #39;s<br>Asda, the UK #39;s second<br>biggest supermarket chain,<br>surpassed Marks  amp; Spencer<br>Group Plc as Britain #39;s<br>largest clothing retailer in<br>the last three months,<br>according to the Sunday<br>Telegraph."
-          ],
-          [
-           "Ten-man Paris St Germain<br>clinched their seventh<br>consecutive victory over arch-<br>rivals Olympique Marseille<br>with a 2-1 triumph in Ligue 1<br>on Sunday thanks to a second-<br>half winner by substitute<br>Edouard Cisse."
-          ],
-          [
-           "Until this week, only a few<br>things about the strange,<br>long-ago disappearance of<br>Charles Robert Jenkins were<br>known beyond a doubt. In the<br>bitter cold of Jan. 5, 1965,<br>the 24-year-old US Army<br>sergeant was leading"
-          ],
-          [
-           "Roy Oswalt wasn #39;t<br>surprised to hear the Astros<br>were flying Sunday night<br>through the remnants of a<br>tropical depression that<br>dumped several inches of rain<br>in Louisiana and could bring<br>showers today in Atlanta."
-          ],
-          [
-           "AP - This hardly seemed<br>possible when Pitt needed<br>frantic rallies to overcome<br>Division I-AA Furman or Big<br>East cellar dweller Temple. Or<br>when the Panthers could barely<br>move the ball against Ohio<br>#151; not Ohio State, but Ohio<br>U."
-          ],
-          [
-           "Everyone is moaning about the<br>fallout from last weekend but<br>they keep on reporting the<br>aftermath.  #39;The fall-out<br>from the so-called<br>quot;Battle of Old Trafford<br>quot; continues to settle over<br>the nation and the debate"
-          ],
-          [
-           "Oil supply concerns and broker<br>downgrades of blue-chip<br>companies left stocks mixed<br>yesterday, raising doubts that<br>Wall Street #39;s year-end<br>rally would continue."
-          ],
-          [
-           "Genentech Inc. said the<br>marketing of Rituxan, a cancer<br>drug that is the company #39;s<br>best-selling product, is the<br>subject of a US criminal<br>investigation."
-          ],
-          [
-           "American Lindsay Davenport<br>regained the No. 1 ranking in<br>the world for the first time<br>since early 2002 by defeating<br>Dinara Safina of Russia 6-4,<br>6-2 in the second round of the<br>Kremlin Cup on Thursday."
-          ],
-          [
-           " The world's No. 2 soft drink<br>company said on Thursday<br>quarterly profit rose due to<br>tax benefits."
-          ],
-          [
-           "TOKYO (AP) -- The electronics<br>and entertainment giant Sony<br>Corp. (SNE) is talking with<br>Wal-Mart Stores Inc..."
-          ],
-          [
-           "After an unprecedented span of<br>just five days, SpaceShipOne<br>is ready for a return trip to<br>space on Monday, its final<br>flight to clinch a \\$10<br>million prize."
-          ],
-          [
-           "The United States on Tuesday<br>modified slightly a threat of<br>sanctions on Sudan #39;s oil<br>industry in a revised text of<br>its UN resolution on<br>atrocities in the country<br>#39;s Darfur region."
-          ],
-          [
-           "Freshman Jeremy Ito kicked<br>four field goals and Ryan<br>Neill scored on a 31-yard<br>interception return to lead<br>improving Rutgers to a 19-14<br>victory on Saturday over<br>visiting Michigan State."
-          ],
-          [
-           "Hi-tech monitoring of<br>livestock at pig farms could<br>help improve the animal growth<br>process and reduce costs."
-          ],
-          [
-           "Third-seeded Guillermo Canas<br>defeated Guillermo Garcia-<br>Lopez of Spain 7-6 (1), 6-3<br>Monday on the first day of the<br>Shanghai Open on Monday."
-          ],
-          [
-           "AP - France intensified<br>efforts Tuesday to save the<br>lives of two journalists held<br>hostage in Iraq, and the Arab<br>League said the militants'<br>deadline for France to revoke<br>a ban on Islamic headscarves<br>in schools had been extended."
-          ],
-          [
-           "Cable  amp; Wireless plc<br>(NYSE: CWP - message board) is<br>significantly ramping up its<br>investment in local loop<br>unbundling (LLU) in the UK,<br>and it plans to spend up to 85<br>million (\\$152."
-          ],
-          [
-           "USATODAY.com - Personal<br>finance software programs are<br>the computer industry's<br>version of veggies: Everyone<br>knows they're good for you,<br>but it's just hard to get<br>anyone excited about them."
-          ],
-          [
-           " NEW YORK (Reuters) - The<br>dollar rebounded on Monday<br>after  last week's heavy<br>selloff, but analysts were<br>uncertain if the  rally would<br>hold after fresh economic data<br>suggested the  December U.S.<br>jobs report due Friday might<br>not live up to  expectations."
-          ],
-          [
-           "AFP - Microsoft said that it<br>had launched a new desktop<br>search tool that allows<br>personal computer users to<br>find documents or messages on<br>their PCs."
-          ],
-          [
-           "At least 12 people die in an<br>explosion at a fuel pipeline<br>on the outskirts of Nigeria's<br>biggest city, Lagos."
-          ],
-          [
-           "The three largest computer<br>makers spearheaded a program<br>today designed to standardize<br>working conditions for their<br>non-US workers."
-          ],
-          [
-           "Description: Illinois Gov. Rod<br>Blagojevich is backing state<br>legislation that would ban<br>sales or rentals of video<br>games with graphic sexual or<br>violent content to children<br>under 18."
-          ],
-          [
-           "Volkswagen demanded a two-year<br>wage freeze for the<br>170,000-strong workforce at<br>Europe #39;s biggest car maker<br>yesterday, provoking union<br>warnings of imminent conflict<br>at key pay and conditions<br>negotiations."
-          ],
-          [
-           " NEW YORK (Reuters) - U.S.<br>stock futures pointed to a<br>lower  open on Wall Street on<br>Thursday, extending the<br>previous  session's sharp<br>fall, with rising energy<br>prices feeding  investor<br>concerns about corporate<br>profits and slower growth."
-          ],
-          [
-           "But to play as feebly as it<br>did for about 35 minutes last<br>night in Game 1 of the WNBA<br>Finals and lose by only four<br>points -- on the road, no less<br>-- has to be the best<br>confidence builder since Cindy<br>St."
-          ],
-          [
-           "MILAN General Motors and Fiat<br>on Wednesday edged closer to<br>initiating a legal battle that<br>could pit the two carmakers<br>against each other in a New<br>York City court room as early<br>as next month."
-          ],
-          [
-           "Are you bidding on keywords<br>through Overture's Precision<br>Match, Google's AdWords or<br>another pay-for-placement<br>service? If so, you're<br>eligible to participate in<br>their contextual advertising<br>programs."
-          ],
-          [
-           "Two of the Ford Motor Company<br>#39;s most senior executives<br>retired on Thursday in a sign<br>that the company #39;s deep<br>financial crisis has abated,<br>though serious challenges<br>remain."
-          ],
-          [
-           "Citing security concerns, the<br>U.S. Embassy on Thursday<br>banned its employees from<br>using the highway linking the<br>embassy area to the<br>international airport, a<br>10-mile stretch of road<br>plagued by frequent suicide<br>car-bomb attacks."
-          ],
-          [
-           "Nobel Laureate Wilkins, 87,<br>played an important role in<br>the discovery of the double<br>helix structure of DNA, the<br>molecule that carries our<br>quot;life code quot;,<br>Kazinform refers to BBC News."
-          ],
-          [
-           "With yesterday #39;s report on<br>its athletic department<br>violations completed, the<br>University of Washington says<br>it is pleased to be able to<br>move forward."
-          ],
-          [
-           " LONDON (Reuters) - Wall<br>Street was expected to start<br>little  changed on Friday as<br>investors continue to fret<br>over the impact  of high oil<br>prices on earnings, while<br>Boeing &lt;A HREF=\"http://www.<br>investor.reuters.com/FullQuote<br>.aspx?ticker=BA.N target=/stoc<br>ks/quickinfo/fullquote\"&gt;BA.<br>N&lt;/A&gt; will be  eyed<br>after it reiterated its<br>earnings forecast."
-          ],
-          [
-           "AP - Tom Daschle bade his<br>fellow Senate Democrats<br>farewell Tuesday with a plea<br>that they seek common ground<br>with Republicans yet continue<br>to fight for the less<br>fortunate."
-          ],
-          [
-           "Sammy Sosa was fined \\$87,400<br>-- one day's salary -- for<br>arriving late to the Cubs'<br>regular-season finale at<br>Wrigley Field and leaving the<br>game early. The slugger's<br>agent, Adam Katz , said<br>yesterday Sosa most likely<br>will file a grievance. Sosa<br>arrived 70 minutes before<br>Sunday's first pitch, and he<br>apparently left 15 minutes<br>after the game started without<br>..."
-          ],
-          [
-           "Having an always-on, fast net<br>connection is changing the way<br>Britons use the internet,<br>research suggests."
-          ],
-          [
-           "AP - Police defused a bomb in<br>a town near Prime Minister<br>Silvio Berlusconi's villa on<br>the island of Sardinia on<br>Wednesday shortly after<br>British Prime Minister Tony<br>Blair finished a visit there<br>with the Italian leader."
-          ],
-          [
-           "Is the Oklahoma defense a<br>notch below its predecessors?<br>Is Texas #39; offense a step-<br>ahead? Why is Texas Tech<br>feeling good about itself<br>despite its recent loss?"
-          ],
-          [
-           "The coffin of Yasser Arafat,<br>draped with the Palestinian<br>flag, was bound for Ramallah<br>in the West Bank Friday,<br>following a formal funeral on<br>a military compound near<br>Cairo."
-          ],
-          [
-           "US Ambassador to the United<br>Nations John Danforth resigned<br>on Thursday after serving in<br>the post for less than six<br>months. Danforth, 68, said in<br>a letter released Thursday"
-          ],
-          [
-           "Crude oil futures prices<br>dropped below \\$51 a barrel<br>yesterday as supply concerns<br>ahead of the Northern<br>Hemisphere winter eased after<br>an unexpectedly high rise in<br>US inventories."
-          ],
-          [
-           "New York gets 57 combined<br>points from its starting<br>backcourt of Jamal Crawford<br>and Stephon Marbury and tops<br>Denver, 107-96."
-          ],
-          [
-           "ISLAMABAD, Pakistan -- Photos<br>were published yesterday in<br>newspapers across Pakistan of<br>six terror suspects, including<br>a senior Al Qaeda operative,<br>the government says were<br>behind attempts to assassinate<br>the nation's president."
-          ],
-          [
-           "AP - Shawn Marion had a<br>season-high 33 points and 15<br>rebounds, leading the Phoenix<br>Suns on a fourth-quarter<br>comeback despite the absence<br>of Steve Nash in a 95-86 win<br>over the New Orleans Hornets<br>on Friday night."
-          ],
-          [
-           "By Lilly Vitorovich Of DOW<br>JONES NEWSWIRES SYDNEY (Dow<br>Jones)--Rupert Murdoch has<br>seven weeks to convince News<br>Corp. (NWS) shareholders a<br>move to the US will make the<br>media conglomerate more<br>attractive to"
-          ],
-          [
-           "A number of signs point to<br>increasing demand for tech<br>workers, but not all the<br>clouds have been driven away."
-          ],
-          [
-           "Messina upset defending<br>champion AC Milan 2-1<br>Wednesday, while Juventus won<br>its third straight game to<br>stay alone atop the Italian<br>league standings."
-          ],
-          [
-           "Microsoft Corp. (MSFT.O:<br>Quote, Profile, Research)<br>filed nine new lawsuits<br>against spammers who send<br>unsolicited e-mail, including<br>an e-mail marketing Web<br>hosting company, the world<br>#39;s largest software maker<br>said on Thursday."
-          ],
-          [
-           "AP - Padraig Harrington<br>rallied to a three-stroke<br>victory in the German Masters<br>on a windy Sunday, closing<br>with a 2-under-par 70 and<br>giving his game a big boost<br>before the Ryder Cup."
-          ],
-          [
-           " ATHENS (Reuters) - The Athens<br>Paralympics canceled<br>celebrations at its closing<br>ceremony after seven<br>schoolchildren  traveling to<br>watch the event died in a bus<br>crash on Monday."
-          ],
-          [
-           "The rocket plane SpaceShipOne<br>is just one flight away from<br>claiming the Ansari X-Prize, a<br>\\$10m award designed to kick-<br>start private space travel."
-          ],
-          [
-           "Reuters - Three American<br>scientists won the\\2004 Nobel<br>physics prize on Tuesday for<br>showing how tiny<br>quark\\particles interact,<br>helping to explain everything<br>from how a\\coin spins to how<br>the universe was built."
-          ],
-          [
-           "Ironically it was the first<br>regular season game for the<br>Carolina Panthers that not<br>only began the history of the<br>franchise, but also saw the<br>beginning of a rivalry that<br>goes on to this day."
-          ],
-          [
-           "Baltimore Ravens running back<br>Jamal Lewis did not appear at<br>his arraignment Friday, but<br>his lawyers entered a not<br>guilty plea on charges in an<br>expanded drug conspiracy<br>indictment."
-          ],
-          [
-           "AP - Sharp Electronics Corp.<br>plans to stop selling its<br>Linux-based handheld computer<br>in the United States, another<br>sign of the slowing market for<br>personal digital assistants."
-          ],
-          [
-           "After serving a five-game<br>suspension, Milton Bradley<br>worked out with the Dodgers as<br>they prepared for Tuesday's<br>opener against the St. Louis<br>Cardinals."
-          ],
-          [
-           "AP - Prime Time won't be<br>playing in prime time this<br>time. Deion Sanders was on the<br>inactive list and missed a<br>chance to strut his stuff on<br>\"Monday Night Football.\""
-          ],
-          [
-           "Reuters - Glaciers once held<br>up by a floating\\ice shelf off<br>Antarctica are now sliding off<br>into the sea --\\and they are<br>going fast, scientists said on<br>Tuesday."
-          ],
-          [
-           "DUBAI : An Islamist group has<br>threatened to kill two Italian<br>women held hostage in Iraq if<br>Rome does not withdraw its<br>troops from the war-torn<br>country within 24 hours,<br>according to an internet<br>statement."
-          ],
-          [
-           "AP - Warning lights flashed<br>atop four police cars as the<br>caravan wound its way up the<br>driveway in a procession fit<br>for a presidential candidate.<br>At long last, Azy and Indah<br>had arrived. They even flew<br>through a hurricane to get<br>here."
-          ],
-          [
-           "The man who delivered the<br>knockout punch was picked up<br>from the Seattle scrap heap<br>just after the All-Star Game.<br>Before that, John Olerud<br>certainly hadn't figured on<br>facing Pedro Martinez in<br>Yankee Stadium in October."
-          ],
-          [
-           "\\Female undergraduates work<br>harder and are more open-<br>minded than males, leading to<br>better results, say<br>scientists."
-          ],
-          [
-           "A heavy quake rocked Indonesia<br>#39;s Papua province killing<br>at least 11 people and<br>wounding 75. The quake<br>destroyed 150 buildings,<br>including churches, mosques<br>and schools."
-          ],
-          [
-           "LONDON : A consortium,<br>including former world<br>champion Nigel Mansell, claims<br>it has agreed terms to ensure<br>Silverstone remains one of the<br>venues for the 2005 Formula<br>One world championship."
-          ],
-          [
-           " BATON ROUGE, La. (Sports<br>Network) - LSU has named Les<br>Miles  its new head football<br>coach, replacing Nick Saban."
-          ],
-          [
-           "The United Nations annual<br>World Robotics Survey predicts<br>the use of robots around the<br>home will surge seven-fold by<br>2007. The boom is expected to<br>be seen in robots that can mow<br>lawns and vacuum floors, among<br>other chores."
-          ],
-          [
-           "The long-term economic health<br>of the United States is<br>threatened by \\$53 trillion in<br>government debts and<br>liabilities that start to come<br>due in four years when baby<br>boomers begin to retire."
-          ],
-          [
-           "Reuters - A small group of<br>suspected\\gunmen stormed<br>Uganda's Water Ministry<br>Wednesday and took<br>three\\people hostage to<br>protest against proposals to<br>allow President\\Yoweri<br>Museveni for a third<br>term.\\Police and soldiers with<br>assault rifles cordoned off<br>the\\three-story building, just<br>328 feet from Uganda's<br>parliament\\building in the<br>capital Kampala."
-          ],
-          [
-           "The Moscow Arbitration Court<br>ruled on Monday that the YUKOS<br>oil company must pay RUR<br>39.113bn (about \\$1.34bn) as<br>part of its back tax claim for<br>2001."
-          ],
-          [
-           "NOVEMBER 11, 2004 -- Bankrupt<br>US Airways this morning said<br>it had reached agreements with<br>lenders and lessors to<br>continue operating nearly all<br>of its mainline and US Airways<br>Express fleets."
-          ],
-          [
-           "Venezuela suggested Friday<br>that exiles living in Florida<br>may have masterminded the<br>assassination of a prosecutor<br>investigating a short-lived<br>coup against leftist President<br>Hugo Chvez"
-          ],
-          [
-           "Want to dive deep -- really<br>deep -- into the technical<br>literature about search<br>engines?  Here's a road map to<br>some of the best web<br>information retrieval<br>resources available online."
-          ],
-          [
-           "Reuters - Ancel Keys, a<br>pioneer in public health\\best<br>known for identifying the<br>connection between<br>a\\cholesterol-rich diet and<br>heart disease, has died."
-          ],
-          [
-           "The US government asks the<br>World Trade Organisation to<br>step in to stop EU member<br>states from \"subsidising\"<br>planemaker Airbus."
-          ],
-          [
-           "Reuters - T-Mobile USA, the<br>U.S. wireless unit\\of Deutsche<br>Telekom AG (DTEGn.DE), does<br>not expect to offer\\broadband<br>mobile data services for at<br>least the next two years,\\its<br>chief executive said on<br>Thursday."
-          ],
-          [
-           "Verizon Communications is<br>stepping further into video as<br>a way to compete against cable<br>companies."
-          ],
-          [
-           "Facing a popular outcry at<br>home and stern warnings from<br>Europe, the Turkish government<br>discreetly stepped back<br>Tuesday from a plan to<br>introduce a motion into a<br>crucial penal reform bill to<br>make adultery a crime<br>punishable by prison."
-          ],
-          [
-           "Boston Scientific Corp.<br>(BSX.N: Quote, Profile,<br>Research) said on Wednesday it<br>received US regulatory<br>approval for a device to treat<br>complications that arise in<br>patients with end-stage kidney<br>disease who need dialysis."
-          ],
-          [
-           "North-west Norfolk MP Henry<br>Bellingham has called for the<br>release of an old college<br>friend accused of plotting a<br>coup in Equatorial Guinea."
-          ],
-          [
-           "With the economy slowly<br>turning up, upgrading hardware<br>has been on businesses radar<br>in the past 12 months as their<br>number two priority."
-          ],
-          [
-           "AP - The Chicago Blackhawks<br>re-signed goaltender Michael<br>Leighton to a one-year<br>contract Wednesday."
-          ],
-          [
-           "Oracle Corp. plans to release<br>the latest version of its CRM<br>(customer relationship<br>management) applications<br>within the next two months, as<br>part of an ongoing update of<br>its E-Business Suite."
-          ],
-          [
-           "Toyota Motor Corp. #39;s<br>shares fell for a second day,<br>after the world #39;s second-<br>biggest automaker had an<br>unexpected quarterly profit<br>drop."
-          ],
-          [
-           "AFP - Want to buy a castle?<br>Head for the former East<br>Germany."
-          ],
-          [
-           "Hosted CRM service provider<br>Salesforce.com took another<br>step forward last week in its<br>strategy to build an online<br>ecosystem of vendors that<br>offer software as a service."
-          ],
-          [
-           "Britain-based HBOS says it<br>will file a complaint to the<br>European Commission against<br>Spanish bank Santander Central<br>Hispano (SCH) in connection<br>with SCH #39;s bid to acquire<br>British bank Abbey National"
-          ],
-          [
-           "AFP - Steven Gerrard has moved<br>to allay Liverpool fans' fears<br>that he could be out until<br>Christmas after breaking a<br>metatarsal bone in his left<br>foot."
-          ],
-          [
-           "Verizon Wireless on Thursday<br>announced an agreement to<br>acquire all the PCS spectrum<br>licenses of NextWave Telecom<br>Inc. in 23 markets for \\$3<br>billion."
-          ],
-          [
-           "washingtonpost.com -<br>Technology giants IBM and<br>Hewlett-Packard are injecting<br>hundreds of millions of<br>dollars into radio-frequency<br>identification technology,<br>which aims to advance the<br>tracking of items from ho-hum<br>bar codes to smart tags packed<br>with data."
-          ],
-          [
-           "ATHENS -- She won her first<br>Olympic gold medal in kayaking<br>when she was 18, the youngest<br>paddler to do so in Games<br>history. Yesterday, at 42,<br>Germany #39;s golden girl<br>Birgit Fischer won her eighth<br>Olympic gold in the four-woman<br>500-metre kayak race."
-          ],
-          [
-           "England boss Sven Goran<br>Eriksson has defended<br>goalkeeper David James after<br>last night #39;s 2-2 draw in<br>Austria. James allowed Andreas<br>Ivanschitz #39;s shot to slip<br>through his fingers to<br>complete Austria comeback from<br>two goals down."
-          ],
-          [
-           "MINSK - Legislative elections<br>in Belarus held at the same<br>time as a referendum on<br>whether President Alexander<br>Lukashenko should be allowed<br>to seek a third term fell<br>significantly short of<br>democratic standards, foreign<br>observers said here Monday."
-          ],
-          [
-           "An Olympic sailor is charged<br>with the manslaughter of a<br>Briton who died after being<br>hit by a car in Athens."
-          ],
-          [
-           "The Norfolk Broads are on<br>their way to getting a clean<br>bill of ecological  health<br>after a century of stagnation."
-          ],
-          [
-           "AP - Secretary of State Colin<br>Powell on Friday praised the<br>peace deal that ended fighting<br>in Iraq's holy city of Najaf<br>and said the presence of U.S.<br>forces in the area helped make<br>it possible."
-          ],
-          [
-           "The  quot;future quot; is<br>getting a chance to revive the<br>presently struggling New York<br>Giants. Two other teams also<br>decided it was time for a<br>change at quarterback, but the<br>Buffalo Bills are not one of<br>them."
-          ],
-          [
-           "For the second time this year,<br>an alliance of major Internet<br>providers - including Atlanta-<br>based EarthLink -iled a<br>coordinated group of lawsuits<br>aimed at stemming the flood of<br>online junk mail."
-          ],
-          [
-           " WASHINGTON (Reuters) - The<br>PIMCO mutual fund group has<br>agreed to pay \\$50 million to<br>settle fraud charges involving<br>improper rapid dealing in<br>mutual fund shares, the U.S.<br>Securities and Exchange<br>Commission said on Monday."
-          ],
-          [
-           "Via Technologies has released<br>a version of the open-source<br>Xine media player that is<br>designed to take advantage of<br>hardware digital video<br>acceleration capabilities in<br>two of the company #39;s PC<br>chipsets, the CN400 and<br>CLE266."
-          ],
-          [
-           "The Conference Board reported<br>Thursday that the Leading<br>Economic Index fell for a<br>third consecutive month in<br>August, suggesting slower<br>economic growth ahead amid<br>rising oil prices."
-          ],
-          [
-           " SAN FRANCISCO (Reuters) -<br>Software maker Adobe Systems<br>Inc.&lt;A HREF=\"http://www.inv<br>estor.reuters.com/FullQuote.as<br>px?ticker=ADBE.O target=/stock<br>s/quickinfo/fullquote\"&gt;ADBE<br>.O&lt;/A&gt; on Thursday<br>posted a quarterly profit that<br>rose  more than one-third from<br>a year ago, but shares fell 3<br>percent  after the maker of<br>Photoshop and Acrobat software<br>did not raise  forecasts for<br>fiscal 2005."
-          ],
-          [
-           "William Morrison Supermarkets<br>has agreed to sell 114 small<br>Safeway stores and a<br>distribution centre for 260.2<br>million pounds. Morrison<br>bought these stores as part of<br>its 3 billion pound"
-          ],
-          [
-           "SCO Group has a plan to keep<br>itself fit enough to continue<br>its legal battles against<br>Linux and to develop its Unix-<br>on-Intel operating systems."
-          ],
-          [
-           "Flushing Meadows, NY (Sports<br>Network) - The men #39;s<br>semifinals at the 2004 US Open<br>will be staged on Saturday,<br>with three of the tournament<br>#39;s top-five seeds ready for<br>action at the USTA National<br>Tennis Center."
-          ],
-          [
-           "Pepsi pushes a blue version of<br>Mountain Dew only at Taco<br>Bell. Is this a winning<br>strategy?"
-          ],
-          [
-           "New software helps corporate<br>travel managers track down<br>business travelers who<br>overspend. But it also poses a<br>dilemma for honest travelers<br>who are only trying to save<br>money."
-          ],
-          [
-           "NATO Secretary-General Jaap de<br>Hoop Scheffer has called a<br>meeting of NATO states and<br>Russia on Tuesday to discuss<br>the siege of a school by<br>Chechen separatists in which<br>more than 335 people died, a<br>NATO spokesman said."
-          ],
-          [
-           "26 August 2004 -- Iraq #39;s<br>top Shi #39;ite cleric, Grand<br>Ayatollah Ali al-Sistani,<br>arrived in the city of Al-<br>Najaf today in a bid to end a<br>weeks-long conflict between US<br>forces and militiamen loyal to<br>Shi #39;ite cleric Muqtada al-<br>Sadr."
-          ],
-          [
-           "AFP - Senior executives at<br>business software group<br>PeopleSoft unanimously<br>recommended that its<br>shareholders reject a 8.8<br>billion dollar takeover bid<br>from Oracle Corp, PeopleSoft<br>said in a statement Wednesday."
-          ],
-          [
-           "Reuters - Neolithic people in<br>China may have\\been the first<br>in the world to make wine,<br>according to\\scientists who<br>have found the earliest<br>evidence of winemaking\\from<br>pottery shards dating from<br>7,000 BC in northern China."
-          ],
-          [
-           "Given nearly a week to examine<br>the security issues raised by<br>the now-infamous brawl between<br>players and fans in Auburn<br>Hills, Mich., Nov. 19, the<br>Celtics returned to the<br>FleetCenter last night with<br>two losses and few concerns<br>about their on-court safety."
-          ],
-          [
-           " TOKYO (Reuters) - Electronics<br>conglomerate Sony Corp.<br>unveiled eight new flat-screen<br>televisions on Thursday in a<br>product push it hopes will<br>help it secure a leading 35<br>percent  of the domestic<br>market in the key month of<br>December."
-          ],
-          [
-           "As the election approaches,<br>Congress abandons all pretense<br>of fiscal responsibility,<br>voting tax cuts that would<br>drive 10-year deficits past<br>\\$3 trillion."
-          ],
-          [
-           "PARIS : French trade unions<br>called on workers at France<br>Telecom to stage a 24-hour<br>strike September 7 to protest<br>government plans to privatize<br>the public telecommunications<br>operator, union sources said."
-          ],
-          [
-           "ServiceMaster profitably<br>bundles services and pays a<br>healthy 3.5 dividend."
-          ],
-          [
-           "The Indonesian tourism<br>industry has so far not been<br>affected by last week #39;s<br>bombing outside the Australian<br>embassy in Jakarta and<br>officials said they do not<br>expect a significant drop in<br>visitor numbers as a result of<br>the attack."
-          ],
-          [
-           "\\$222.5 million -- in an<br>ongoing securities class<br>action lawsuit against Enron<br>Corp. The settlement,<br>announced Friday and"
-          ],
-          [
-           "Arsenals Thierry Henry today<br>missed out on the European<br>Footballer of the Year award<br>as Andriy Shevchenko took the<br>honour. AC Milan frontman<br>Shevchenko held off<br>competition from Barcelona<br>pair Deco and"
-          ],
-          [
-           "Donald Halsted, one target of<br>a class-action suit alleging<br>financial improprieties at<br>bankrupt Polaroid, officially<br>becomes CFO."
-          ],
-          [
-           "Neil Mellor #39;s sensational<br>late winner for Liverpool<br>against Arsenal on Sunday has<br>earned the back-up striker the<br>chance to salvage a career<br>that had appeared to be<br>drifting irrevocably towards<br>the lower divisions."
-          ],
-          [
-           "ABOUT 70,000 people were<br>forced to evacuate Real Madrid<br>#39;s Santiago Bernabeu<br>stadium minutes before the end<br>of a Primera Liga match<br>yesterday after a bomb threat<br>in the name of ETA Basque<br>separatist guerillas."
-          ],
-          [
-           "The team learned on Monday<br>that full-back Jon Ritchie<br>will miss the rest of the<br>season with a torn anterior<br>cruciate ligament in his left<br>knee."
-          ],
-          [
-           " NEW YORK (Reuters) -<br>Lifestyle guru Martha Stewart<br>said on  Wednesday she wants<br>to start serving her prison<br>sentence for  lying about a<br>suspicious stock sale as soon<br>as possible, so she  can put<br>her \"nightmare\" behind her."
-          ],
-          [
-           "Apple Computer's iPod remains<br>the king of digital music<br>players, but robust pretenders<br>to the throne have begun to<br>emerge in the Windows<br>universe. One of them is the<br>Zen Touch, from Creative Labs."
-          ],
-          [
-           "The 7710 model features a<br>touch screen, pen input, a<br>digital camera, an Internet<br>browser, a radio, video<br>playback and streaming and<br>recording capabilities, the<br>company said."
-          ],
-          [
-           "SAN FRANCISCO (CBS.MW) --<br>Crude futures closed under<br>\\$46 a barrel Wednesday for<br>the first time since late<br>September and heating-oil and<br>unleaded gasoline prices<br>dropped more than 6 percent<br>following an across-the-board<br>climb in US petroleum<br>inventories."
-          ],
-          [
-           "The University of Iowa #39;s<br>market for US presidential<br>futures, founded 16-years ago,<br>has been overtaken by a<br>Dublin-based exchange that is<br>now 25 times larger."
-          ],
-          [
-           "Venus Williams barely kept<br>alive her hopes of qualifying<br>for next week #39;s WTA Tour<br>Championships. Williams,<br>seeded fifth, survived a<br>third-set tiebreaker to<br>outlast Yuilana Fedak of the<br>Ukraine, 6-4 2-6 7-6"
-          ],
-          [
-           " SYDNEY (Reuters) - Arnold<br>Palmer has taken a swing at<br>America's top players,<br>criticizing their increasing<br>reluctance  to travel abroad<br>to play in tournaments."
-          ],
-          [
-           "MARK Thatcher will have to<br>wait until at least next April<br>to face trial on allegations<br>he helped bankroll a coup<br>attempt in oil-rich Equatorial<br>Guinea."
-          ],
-          [
-           "A top Red Hat executive has<br>attacked the open-source<br>credentials of its sometime<br>business partner Sun<br>Microsystems. In a Web log<br>posting Thursday, Michael<br>Tiemann, Red Hat #39;s vice<br>president of open-source<br>affairs"
-          ],
-          [
-           "President Bush #39;s drive to<br>deploy a multibillion-dollar<br>shield against ballistic<br>missiles was set back on<br>Wednesday by what critics<br>called a stunning failure of<br>its first full flight test in<br>two years."
-          ],
-          [
-           "Although he was well-beaten by<br>Retief Goosen in Sunday #39;s<br>final round of The Tour<br>Championship in Atlanta, there<br>has been some compensation for<br>the former world number one,<br>Tiger Woods."
-          ],
-          [
-           "WAYNE Rooney and Henrik<br>Larsson are among the players<br>nominated for FIFAs<br>prestigious World Player of<br>the Year award. Rooney is one<br>of four Manchester United<br>players on a list which is<br>heavily influenced by the<br>Premiership."
-          ],
-          [
-           "It didn #39;t look good when<br>it happened on the field, and<br>it looked worse in the<br>clubhouse. Angels second<br>baseman Adam Kennedy left the<br>Angels #39; 5-2 win over the<br>Seattle Mariners"
-          ],
-          [
-           "Air travelers moved one step<br>closer to being able to talk<br>on cell phones and surf the<br>Internet from laptops while in<br>flight, thanks to votes by the<br>Federal Communications<br>Commission yesterday."
-          ],
-          [
-           "MySQL developers turn to an<br>unlikely source for database<br>tool: Microsoft. Also: SGI<br>visualizes Linux, and the<br>return of Java veteran Kim<br>Polese."
-          ],
-          [
-           "DESPITE the budget deficit,<br>continued increases in oil and<br>consumer prices, the economy,<br>as measured by gross domestic<br>product, grew by 6.3 percent<br>in the third"
-          ],
-          [
-           "NEW YORK - A drop in oil<br>prices and upbeat outlooks<br>from Wal-Mart and Lowe's<br>helped send stocks sharply<br>higher Monday on Wall Street,<br>with the swing exaggerated by<br>thin late summer trading. The<br>Dow Jones industrials surged<br>nearly 130 points..."
-          ],
-          [
-           "Freshman Darius Walker ran for<br>115 yards and scored two<br>touchdowns, helping revive an<br>Irish offense that had managed<br>just one touchdown in the<br>season's first six quarters."
-          ],
-          [
-           "Consumers who cut it close by<br>paying bills from their<br>checking accounts a couple of<br>days before depositing funds<br>will be out of luck under a<br>new law that takes effect Oct.<br>28."
-          ],
-          [
-           "Dell Inc. said its profit<br>surged 25 percent in the third<br>quarter as the world's largest<br>personal computer maker posted<br>record sales due to rising<br>technology spending in the<br>corporate and government<br>sectors in the United States<br>and abroad."
-          ],
-          [
-           "AP - NBC is adding a 5-second<br>delay to its NASCAR telecasts<br>after Dale Earnhardt Jr. used<br>a vulgarity during a postrace<br>TV interview last weekend."
-          ],
-          [
-           " BOSTON (Sports Network) - The<br>New York Yankees will start<br>Orlando \"El Duque\" Hernandez<br>in Game 4 of the American<br>League  Championship Series on<br>Saturday against the Boston<br>Red Sox."
-          ],
-          [
-           "The future of Sven-Goran<br>Eriksson as England coach is<br>the subject of intense<br>discussion after the draw in<br>Austria. Has the Swede lost<br>the confidence of the nation<br>or does he remain the best man<br>for the job?"
-          ],
-          [
-           "Component problems meant<br>Brillian's new big screens<br>missed the NFL's kickoff<br>party."
-          ],
-          [
-           "Spain begin their third final<br>in five seasons at the Olympic<br>stadium hoping to secure their<br>second title since their first<br>in Barcelona against Australia<br>in 2000."
-          ],
-          [
-           "Second-seeded David Nalbandian<br>of Argentina lost at the Japan<br>Open on Thursday, beaten by<br>Gilles Muller of Luxembourg<br>7-6 (4), 3-6, 6-4 in the third<br>round."
-          ],
-          [
-           "Thursday #39;s unexpected<br>resignation of Memphis<br>Grizzlies coach Hubie Brown<br>left a lot of questions<br>unanswered. In his unique way<br>of putting things, the<br>71-year-old Brown seemed to<br>indicate he was burned out and<br>had some health concerns."
-          ],
-          [
-           "RUDI Voller had quit as coach<br>of Roma after a 3-1 defeat<br>away to Bologna, the Serie A<br>club said today. Under the<br>former Germany coach, Roma had<br>taken just four league points<br>from a possible 12."
-          ],
-          [
-           "A Russian court on Thursday<br>rejected an appeal by the<br>Yukos oil company seeking to<br>overturn a freeze on the<br>accounts of the struggling oil<br>giant #39;s core subsidiaries."
-          ],
-          [
-           "ONE by one, the players #39;<br>faces had flashed up on the<br>giant Ibrox screens offering<br>season #39;s greetings to the<br>Rangers fans. But the main<br>presents were reserved for<br>Auxerre."
-          ],
-          [
-           "Switzerland #39;s struggling<br>national airline reported a<br>second-quarter profit of 45<br>million Swiss francs (\\$35.6<br>million) Tuesday, although its<br>figures were boosted by a<br>legal settlement in France."
-          ],
-          [
-           "ROSTOV-ON-DON, Russia --<br>Hundreds of protesters<br>ransacked and occupied the<br>regional administration<br>building in a southern Russian<br>province Tuesday, demanding<br>the resignation of the region<br>#39;s president, whose former<br>son-in-law has been linked to<br>a multiple"
-          ],
-          [
-           "SIPTU has said it is strongly<br>opposed to any privatisation<br>of Aer Lingus as pressure<br>mounts on the Government to<br>make a decision on the future<br>funding of the airline."
-          ],
-          [
-           "Reuters - SBC Communications<br>said on Monday it\\would offer<br>a television set-top box that<br>can handle music,\\photos and<br>Internet downloads, part of<br>SBC's efforts to expand\\into<br>home entertainment."
-          ],
-          [
-           "Molson Inc. Chief Executive<br>Officer Daniel O #39;Neill<br>said he #39;ll provide<br>investors with a positive #39;<br>#39; response to their<br>concerns over the company<br>#39;s plan to let stock-<br>option holders vote on its<br>planned merger with Adolph<br>Coors Co."
-          ],
-          [
-           "South Korea #39;s Grace Park<br>shot a seven-under-par 65 to<br>triumph at the CJ Nine Bridges<br>Classic on Sunday. Park #39;s<br>victory made up her final-<br>round collapse at the Samsung<br>World Championship two weeks<br>ago."
-          ],
-          [
-           " WASHINGTON (Reuters) - Hopes<br>-- and worries -- that U.S.<br>regulators will soon end the<br>ban on using wireless phones<br>during U.S. commercial flights<br>are likely at least a year or<br>two early, government<br>officials and analysts say."
-          ],
-          [
-           "AFP - Iraqi Foreign Minister<br>Hoshyar Zebari arrived<br>unexpectedly in the holy city<br>of Mecca Wednesday where he<br>met Crown Prince Abdullah bin<br>Abdul Aziz, the official SPA<br>news agency reported."
-          ],
-          [
-           "Titans QB Steve McNair was<br>released from a Nashville<br>hospital after a two-night<br>stay for treatment of a<br>bruised sternum. McNair was<br>injured during the fourth<br>quarter of the Titans #39;<br>15-12 loss to Jacksonville on<br>Sunday."
-          ],
-          [
-           "Keith Miller, Australia #39;s<br>most prolific all-rounder in<br>Test cricket, died today at a<br>nursing home, Cricket<br>Australia said. He was 84."
-          ],
-          [
-           "Haitian police and UN troops<br>moved into a slum neighborhood<br>on Sunday and cleared street<br>barricades that paralyzed a<br>part of the capital."
-          ],
-          [
-           "TORONTO Former Toronto pitcher<br>John Cerutti (seh-ROO<br>#39;-tee) was found dead in<br>his hotel room today,<br>according to the team. He was<br>44."
-          ],
-          [
-           "withdrawal of troops and<br>settlers from occupied Gaza<br>next year. Militants seek to<br>claim any pullout as a<br>victory.  quot;Islamic Jihad<br>will not be broken by this<br>martyrdom, quot; said Khaled<br>al-Batsh, a senior political<br>leader in Gaza."
-          ],
-          [
-           " NEW YORK (Reuters) - The<br>world's largest gold producer,<br>Newmont Mining Corp. &lt;A HRE<br>F=\"http://www.investor.reuters<br>.com/FullQuote.aspx?ticker=NEM<br>.N target=/stocks/quickinfo/fu<br>llquote\"&gt;NEM.N&lt;/A&gt;,<br>on Wednesday said higher gold<br>prices drove up quarterly<br>profit by 12.5 percent, even<br>though  it sold less of the<br>precious metal."
-          ],
-          [
-           "The U.S. military has found<br>nearly 20 houses where<br>intelligence officers believe<br>hostages were tortured or<br>killed in this city, including<br>the house with the cage that<br>held a British contractor who<br>was beheaded last month."
-          ],
-          [
-           "AFP - Opponents of the Lao<br>government may be plotting<br>bomb attacks in Vientiane and<br>other areas of Laos timed to<br>coincide with a summit of<br>Southeast Asian leaders the<br>country is hosting next month,<br>the United States said."
-          ],
-          [
-           "After a year of pilots and<br>trials, Siebel Systems jumped<br>with both feet into the SMB<br>market Tuesday, announcing a<br>new approach to offer Siebel<br>Professional CRM applications<br>to SMBs (small and midsize<br>businesses) -- companies with<br>revenues up to about \\$500<br>million."
-          ],
-          [
-           "AP - Russia agreed Thursday to<br>send warships to help NATO<br>naval patrols that monitor<br>suspicious vessels in the<br>Mediterranean, part of a push<br>for closer counterterrorism<br>cooperation between Moscow and<br>the western alliance."
-          ],
-          [
-           "Intel won't release a 4-GHz<br>version of its flagship<br>Pentium 4 product, having<br>decided instead to realign its<br>engineers around the company's<br>new design priorities, an<br>Intel spokesman said today.<br>\\\\"
-          ],
-          [
-           "AP - A Soyuz spacecraft<br>carrying two Russians and an<br>American rocketed closer<br>Friday to its docking with the<br>international space station,<br>where the current three-man<br>crew made final departure<br>preparations."
-          ],
-          [
-           "Defense: Ken Lucas. His<br>biggest play was his first<br>one. The fourth-year<br>cornerback intercepted a Ken<br>Dorsey pass that kissed off<br>the hands of wide receiver<br>Rashaun Woods and returned it<br>25 yards to set up the<br>Seahawks #39; first score."
-          ],
-          [
-           "Scientists have manipulated<br>carbon atoms to create a<br>material that could be used to<br>create light-based, versus<br>electronic, switches. The<br>material could lead to a<br>supercharged Internet based<br>entirely on light, scientists<br>say."
-          ],
-          [
-           "A military plane crashed in<br>the mountains near Caracas,<br>killing all 16 persons on<br>board, including two high-<br>ranking military officers,<br>officials said."
-          ],
-          [
-           "The powerful St. Louis trio of<br>Albert Pujols, Scott Rolen and<br>Jim Edmonds is 4 for 23 with<br>one RBI in the series and with<br>runners on base, they are 1<br>for 13."
-          ],
-          [
-           "A voice recording said to be<br>that of suspected Al Qaeda<br>commander Abu Mussab al-<br>Zarqawi, claims Iraq #39;s<br>Prime Minister Iyad Allawi is<br>the militant network #39;s<br>number one target."
-          ],
-          [
-           "BEIJING -- More than a year<br>after becoming China's<br>president, Hu Jintao was<br>handed the full reins of power<br>yesterday when his<br>predecessor, Jiang Zemin, gave<br>up the nation's most powerful<br>military post."
-          ],
-          [
-           "LOS ANGELES (Reuters)<br>Qualcomm has dropped an \\$18<br>million claim for monetary<br>damages from rival Texas<br>Instruments for publicly<br>discussing terms of a<br>licensing pact, a TI<br>spokeswoman confirmed Tuesday."
-          ],
-          [
-           "Hewlett-Packard is the latest<br>IT vendor to try blogging. But<br>analysts wonder if the weblog<br>trend is the 21st century<br>equivalent of CB radios, which<br>made a big splash in the 1970s<br>before fading."
-          ],
-          [
-           " WASHINGTON (Reuters) - Fannie<br>Mae executives and their<br>regulator squared off on<br>Wednesday, with executives<br>denying any  accounting<br>irregularity and the regulator<br>saying the housing  finance<br>company's management may need<br>to go."
-          ],
-          [
-           "The scientists behind Dolly<br>the sheep apply for a license<br>to clone human embryos. They<br>want to take stem cells from<br>the embryos to study Lou<br>Gehrig's disease."
-          ],
-          [
-           "As the first criminal trial<br>stemming from the financial<br>deals at Enron opened in<br>Houston on Monday, it is<br>notable as much for who is not<br>among the six defendants as<br>who is - and for how little<br>money was involved compared<br>with how much in other Enron"
-          ],
-          [
-           "LONDON (CBS.MW) -- British<br>bank Barclays on Thursday said<br>it is in talks to buy a<br>majority stake in South<br>African bank ABSA. Free!"
-          ],
-          [
-           "The Jets signed 33-year-old<br>cornerback Terrell Buckley,<br>who was released by New<br>England on Sunday, after<br>putting nickel back Ray<br>Mickens on season-ending<br>injured reserve yesterday with<br>a torn ACL in his left knee."
-          ],
-          [
-           "Some of the silly tunes<br>Japanese pay to download to<br>use as the ring tone for their<br>mobile phones sure have their<br>knockers, but it #39;s for<br>precisely that reason that a<br>well-known counselor is raking<br>it in at the moment, according<br>to Shukan Gendai (10/2)."
-          ],
-          [
-           "WEST INDIES thrilling victory<br>yesterday in the International<br>Cricket Council Champions<br>Trophy meant the world to the<br>five million people of the<br>Caribbean."
-          ],
-          [
-           "AP - Greenpeace activists<br>scaled the walls of Ford Motor<br>Co.'s Norwegian headquarters<br>Tuesday to protest plans to<br>destroy hundreds of non-<br>polluting electric cars."
-          ],
-          [
-           "Investors sent stocks sharply<br>lower yesterday as oil prices<br>continued their climb higher<br>and new questions about the<br>safety of arthritis drugs<br>pressured pharmaceutical<br>stocks."
-          ],
-          [
-           "Scotland manager Berti Vogts<br>insists he is expecting<br>nothing but victory against<br>Moldova on Wednesday. The game<br>certainly is a must-win affair<br>if the Scots are to have any<br>chance of qualifying for the<br>2006 World Cup finals."
-          ],
-          [
-           "IBM announced yesterday that<br>it will invest US\\$250 million<br>(S\\$425 million) over the next<br>five years and employ 1,000<br>people in a new business unit<br>to support products and<br>services related to sensor<br>networks."
-          ],
-          [
-           "AFP - The chances of Rupert<br>Murdoch's News Corp relocating<br>from Australia to the United<br>States have increased after<br>one of its biggest<br>institutional investors has<br>chosen to abstain from a vote<br>next week on the move."
-          ],
-          [
-           "AFP - An Indian minister said<br>a school text-book used in the<br>violence-prone western state<br>of Gujarat portrayed Adolf<br>Hitler as a role model."
-          ],
-          [
-           "Reuters - The head of UAL<br>Corp.'s United\\Airlines said<br>on Thursday the airline's<br>restructuring plan\\would lead<br>to a significant number of job<br>losses, but it was\\not clear<br>how many."
-          ],
-          [
-           "DOVER, N.H. (AP) -- Democrat<br>John Kerry is seizing on the<br>Bush administration's failure<br>to secure hundreds of tons of<br>explosives now missing in<br>Iraq."
-          ],
-          [
-           "AP - Microsoft Corp. goes into<br>round two Friday of its battle<br>to get the European Union's<br>sweeping antitrust ruling<br>lifted having told a judge<br>that it had been prepared<br>during settlement talks to<br>share more software code with<br>its rivals than the EU<br>ultimately demanded."
-          ],
-          [
-           " INDIANAPOLIS (Reuters) -<br>Jenny Thompson will take the<br>spotlight from injured U.S.<br>team mate Michael Phelps at<br>the  world short course<br>championships Saturday as she<br>brings down  the curtain on a<br>spectacular swimming career."
-          ],
-          [
-           "Martin Brodeur made 27 saves,<br>and Brad Richards, Kris Draper<br>and Joe Sakic scored goals to<br>help Canada beat Russia 3-1<br>last night in the World Cup of<br>Hockey, giving the Canadians a<br>3-0 record in round-robin<br>play."
-          ],
-          [
-           "AP - Sears, Roebuck and Co.,<br>which has successfully sold<br>its tools and appliances on<br>the Web, is counting on having<br>the same magic with bedspreads<br>and sweaters, thanks in part<br>to expertise gained by its<br>purchase of Lands' End Inc."
-          ],
-          [
-           "com September 14, 2004, 9:12<br>AM PT. With the economy slowly<br>turning up, upgrading hardware<br>has been on businesses radar<br>in the past 12 months as their<br>number two priority."
-          ],
-          [
-           " NEW YORK (Reuters) -<br>Children's Place Retail Stores<br>Inc.  &lt;A HREF=\"http://www.i<br>nvestor.reuters.com/FullQuote.<br>aspx?ticker=PLCE.O target=/sto<br>cks/quickinfo/fullquote\"&gt;PL<br>CE.O&lt;/A&gt; said on<br>Wednesday it will buy 313<br>retail stores from  Walt<br>Disney Co., and its stock rose<br>more than 14 percent in  early<br>morning trade."
-          ],
-          [
-           "ALBANY, N.Y. -- A California-<br>based company that brokers<br>life, accident, and disability<br>policies for leading US<br>companies pocketed millions of<br>dollars a year in hidden<br>payments from insurers and<br>from charges on clients'<br>unsuspecting workers, New York<br>Attorney General Eliot Spitzer<br>charged yesterday."
-          ],
-          [
-           "NORTEL Networks plans to slash<br>its workforce by 3500, or ten<br>per cent, as it struggles to<br>recover from an accounting<br>scandal that toppled three top<br>executives and led to a<br>criminal investigation and<br>lawsuits."
-          ],
-          [
-           "Ebay Inc. (EBAY.O: Quote,<br>Profile, Research) said on<br>Friday it would buy Rent.com,<br>an Internet housing rental<br>listing service, for \\$415<br>million in a deal that gives<br>it access to a new segment of<br>the online real estate market."
-          ],
-          [
-           "Austin police are working with<br>overseas officials to bring<br>charges against an English man<br>for sexual assault of a child,<br>a second-degree felony."
-          ],
-          [
-           "United Nations officials<br>report security breaches in<br>internally displaced people<br>and refugee camps in Sudan<br>#39;s embattled Darfur region<br>and neighboring Chad."
-          ],
-          [
-           "Noranda Inc., Canada #39;s<br>biggest mining company, began<br>exclusive talks on a takeover<br>proposal from China Minmetals<br>Corp. that would lead to the<br>spinoff of Noranda #39;s<br>aluminum business to<br>shareholders."
-          ],
-          [
-           "San Francisco<br>developer/publisher lands<br>coveted Paramount sci-fi<br>license, \\$6.5 million in<br>funding on same day. Although<br>it is less than two years old,<br>Perpetual Entertainment has<br>acquired one of the most<br>coveted sci-fi licenses on the<br>market."
-          ],
-          [
-           "ST. LOUIS -- Mike Martz #39;s<br>week of anger was no empty<br>display. He saw the defending<br>NFC West champions slipping<br>and thought taking potshots at<br>his players might be his best<br>shot at turning things around."
-          ],
-          [
-           "Google warned Thursday that<br>increased competition and the<br>maturing of the company would<br>result in an  quot;inevitable<br>quot; slowing of its growth."
-          ],
-          [
-           "By KELLY WIESE    JEFFERSON<br>CITY, Mo. (AP) -- Missouri<br>will allow members of the<br>military stationed overseas to<br>return absentee ballots via<br>e-mail, raising concerns from<br>Internet security experts<br>about fraud and ballot<br>secrecy..."
-          ],
-          [
-           "Avis Europe PLC has dumped a<br>new ERP system based on<br>software from PeopleSoft Inc.<br>before it was even rolled out,<br>citing substantial delays and<br>higher-than-expected costs."
-          ],
-          [
-           " TOKYO (Reuters) - The Nikkei<br>average rose 0.55 percent by<br>midsession on Wednesday as<br>some techs including Advantest<br>Corp.  gained ground after<br>Wall Street reacted positively<br>to results  from Intel Corp.<br>released after the U.S. market<br>close."
-          ],
-          [
-           "Yahoo #39;s (Quote, Chart)<br>public embrace of the RSS<br>content syndication format<br>took a major leap forward with<br>the release of a revamped My<br>Yahoo portal seeking to<br>introduce the technology to<br>mainstream consumers."
-          ],
-          [
-           "KINGSTON, Jamaica - Hurricane<br>Ivan's deadly winds and<br>monstrous waves bore down on<br>Jamaica on Friday, threatening<br>a direct hit on its densely<br>populated capital after<br>ravaging Grenada and killing<br>at least 33 people.    The<br>Jamaican government ordered<br>the evacuation of half a<br>million people from coastal<br>areas, where rains on Ivan's<br>outer edges were already<br>flooding roads..."
-          ],
-          [
-           "North Korea has denounced as<br>quot;wicked terrorists quot;<br>the South Korean officials who<br>orchestrated last month #39;s<br>airlift to Seoul of 468 North<br>Korean defectors."
-          ],
-          [
-           "The Black Watch regiment has<br>returned to its base in Basra<br>in southern Iraq after a<br>month-long mission standing in<br>for US troops in a more<br>violent part of the country,<br>the Ministry of Defence says."
-          ],
-          [
-           "Romanian soccer star Adrian<br>Mutu as he arrives at the<br>British Football Association<br>in London, ahead of his<br>disciplinary hearing, Thursday<br>Nov. 4, 2004."
-          ],
-          [
-           "Australia completed an<br>emphatic Test series sweep<br>over New Zealand with a<br>213-run win Tuesday, prompting<br>a caution from Black Caps<br>skipper Stephen Fleming for<br>other cricket captains around<br>the globe."
-          ],
-          [
-           "AP - A senior Congolese<br>official said Tuesday his<br>nation had been invaded by<br>neighboring Rwanda, and U.N.<br>officials said they were<br>investigating claims of<br>Rwandan forces clashing with<br>militias in the east."
-          ],
-          [
-           "Liverpool, England (Sports<br>Network) - Former English<br>international and Liverpool<br>great Emlyn Hughes passed away<br>Tuesday from a brain tumor."
-          ],
-          [
-           " ATLANTA (Reuters) - Soft<br>drink giant Coca-Cola Co.<br>&lt;A HREF=\"http://www.investo<br>r.reuters.com/FullQuote.aspx?t<br>icker=KO.N target=/stocks/quic<br>kinfo/fullquote\"&gt;KO.N&lt;/A<br>&gt;,  stung by a prolonged<br>downturn in North America,<br>Germany and  other major<br>markets, on Thursday lowered<br>its key long-term  earnings<br>and sales targets."
-          ],
-          [
-           "JACKSONVILLE, Fla. -- They<br>were singing in the Colts #39;<br>locker room today, singing<br>like a bunch of wounded<br>songbirds. Never mind that<br>Marcus Pollard, Dallas Clark<br>and Ben Hartsock won #39;t be<br>recording a remake of Kenny<br>Chesney #39;s song,<br>quot;Young, quot; any time<br>soon."
-          ],
-          [
-           "TOKYO (AP) -- Japanese<br>electronics and entertainment<br>giant Sony Corp. (SNE) plans<br>to begin selling a camcorder<br>designed for consumers that<br>takes video at digital high-<br>definition quality and is<br>being priced at about<br>\\$3,600..."
-          ],
-          [
-           "As the close-knit NASCAR<br>community mourns the loss of<br>team owner Rick Hendrick #39;s<br>son, brother, twin nieces and<br>six others in a plane crash<br>Sunday, perhaps no one outside<br>of the immediate family<br>grieves more deeply than<br>Darrell Waltrip."
-          ],
-          [
-           "AP - Purdue quarterback Kyle<br>Orton has no trouble<br>remembering how he felt after<br>last year's game at Michigan."
-          ],
-          [
-           "UNITED NATIONS - The United<br>Nations #39; nuclear agency<br>says it is concerned about the<br>disappearance of equipment and<br>materials from Iraq that could<br>be used to make nuclear<br>weapons."
-          ],
-          [
-           " BRUSSELS (Reuters) - The EU's<br>historic deal with Turkey to<br>open entry talks with the vast<br>Muslim country was hailed by<br>supporters as a bridge builder<br>between Europe and the Islamic<br>world."
-          ],
-          [
-           "Iraqi President Ghazi al-<br>Yawar, who was due in Paris on<br>Sunday to start a European<br>tour, has postponed his visit<br>to France due to the ongoing<br>hostage drama involving two<br>French journalists, Arab<br>diplomats said Friday."
-          ],
-          [
-           " SAO PAULO, Brazil (Reuters) -<br>President Luiz Inacio Lula da<br>Silva's Workers' Party (PT)<br>won the mayoralty of six state<br>capitals in Sunday's municipal<br>vote but was forced into a<br>run-off to defend its hold on<br>the race's biggest prize, the<br>city of Sao Paulo."
-          ],
-          [
-           "ATHENS, Greece - They are<br>America's newest golden girls<br>- powerful and just a shade<br>from perfection. The U.S..."
-          ],
-          [
-           "AMMAN, Sept. 15. - The owner<br>of a Jordanian truck company<br>announced today that he had<br>ordered its Iraq operations<br>stopped in a bid to save the<br>life of a driver held hostage<br>by a militant group."
-          ],
-          [
-           "AP - U.S. State Department<br>officials learned that seven<br>American children had been<br>abandoned at a Nigerian<br>orphanage but waited more than<br>a week to check on the youths,<br>who were suffering from<br>malnutrition, malaria and<br>typhoid, a newspaper reported<br>Saturday."
-          ],
-          [
-           "\\Angry mobs in Ivory Coast's<br>main city, Abidjan, marched on<br>the airport, hours after it<br>came under French control."
-          ],
-          [
-           "Several workers are believed<br>to have been killed and others<br>injured after a contruction<br>site collapsed at Dubai<br>airport. The workers were<br>trapped under rubble at the<br>site of a \\$4."
-          ],
-          [
-           "Talks between Sudan #39;s<br>government and two rebel<br>groups to resolve the nearly<br>two-year battle resume Friday.<br>By Abraham McLaughlin  Staff<br>writer of The Christian<br>Science Monitor."
-          ],
-          [
-           "In a meeting of the cinematic<br>with the scientific, Hollywood<br>helicopter stunt pilots will<br>try to snatch a returning NASA<br>space probe out of the air<br>before it hits the ground."
-          ],
-          [
-           "Legend has it (incorrectly, it<br>seems) that infamous bank<br>robber Willie Sutton, when<br>asked why banks were his<br>favorite target, responded,<br>quot;Because that #39;s where<br>the money is."
-          ],
-          [
-           "Brown is a second year player<br>from Memphis and has spent the<br>2004 season on the Steelers<br>#39; practice squad. He played<br>in two games last year."
-          ],
-          [
-           "A Canadian court approved Air<br>Canada #39;s (AC.TO: Quote,<br>Profile, Research) plan of<br>arrangement with creditors on<br>Monday, clearing the way for<br>the world #39;s 11th largest<br>airline to emerge from<br>bankruptcy protection at the<br>end of next month"
-          ],
-          [
-           "Pfizer, GlaxoSmithKline and<br>Purdue Pharma are the first<br>drugmakers willing to take the<br>plunge and use radio frequency<br>identification technology to<br>protect their US drug supply<br>chains from counterfeiters."
-          ],
-          [
-           "Barret Jackman, the last of<br>the Blues left to sign before<br>the league #39;s probable<br>lockout on Wednesday,<br>finalized a deal Monday that<br>is rare in the current<br>economic climate but fitting<br>for him."
-          ],
-          [
-           " LONDON (Reuters) - Oil prices<br>eased on Monday after rebels<br>in Nigeria withdrew a threat<br>to target oil operations, but<br>lingering concerns over<br>stretched supplies ahead of<br>winter kept  prices close to<br>\\$50."
-          ],
-          [
-           "AP - In the tumult of the<br>visitors' clubhouse at Yankee<br>Stadium, champagne pouring all<br>around him, Theo Epstein held<br>a beer. \"I came in and there<br>was no champagne left,\" he<br>said this week. \"I said, 'I'll<br>have champagne if we win it<br>all.'\" Get ready to pour a<br>glass of bubbly for Epstein.<br>No I.D. necessary."
-          ],
-          [
-           "Search any fee-based digital<br>music service for the best-<br>loved musical artists of the<br>20th century and most of the<br>expected names show up."
-          ],
-          [
-           "Barcelona held on from an<br>early Deco goal to edge game<br>local rivals Espanyol 1-0 and<br>carve out a five point<br>tabletop cushion. Earlier,<br>Ronaldo rescued a point for<br>Real Madrid, who continued<br>their middling form with a 1-1<br>draw at Real Betis."
-          ],
-          [
-           "MONTREAL (CP) - The Expos may<br>be history, but their demise<br>has heated up the market for<br>team memorabilia. Vintage<br>1970s and 1980s shirts are<br>already sold out, but<br>everything from caps, beer<br>glasses and key-chains to<br>dolls of mascot Youppi!"
-          ],
-          [
-           "Stansted airport is the<br>designated emergency landing<br>ground for planes in British<br>airspace hit by in-flight<br>security alerts. Emergency<br>services at Stansted have<br>successfully dealt"
-          ],
-          [
-           "The massive military operation<br>to retake Fallujah has been<br>quot;accomplished quot;, a<br>senior Iraqi official said.<br>Fierce fighting continued in<br>the war-torn city where<br>pockets of resistance were<br>still holding out against US<br>forces."
-          ],
-          [
-           "There are some signs of<br>progress in resolving the<br>Nigerian conflict that is<br>riling global oil markets. The<br>leader of militia fighters<br>threatening to widen a battle<br>for control of Nigeria #39;s<br>oil-rich south has"
-          ],
-          [
-           "A strong earthquake hit Taiwan<br>on Monday, shaking buildings<br>in the capital Taipei for<br>several seconds. No casualties<br>were reported."
-          ],
-          [
-           "America Online Inc. is<br>packaging new features to<br>combat viruses, spam and<br>spyware in response to growing<br>online security threats.<br>Subscribers will be able to<br>get the free tools"
-          ],
-          [
-           "A 76th minute goal from<br>European Footballer of the<br>Year Pavel Nedved gave<br>Juventus a 1-0 win over Bayern<br>Munich on Tuesday handing the<br>Italians clear control at the<br>top of Champions League Group<br>C."
-          ],
-          [
-           " LONDON (Reuters) - Oil prices<br>climbed above \\$42 a barrel on<br>Wednesday, rising for the<br>third day in a row as cold<br>weather  gripped the U.S.<br>Northeast, the world's biggest<br>heating fuel  market."
-          ],
-          [
-           "A policeman ran amok at a<br>security camp in Indian-<br>controlled Kashmir after an<br>argument and shot dead seven<br>colleagues before he was<br>gunned down, police said on<br>Sunday."
-          ],
-          [
-           "ANN ARBOR, Mich. -- Some NHL<br>players who took part in a<br>charity hockey game at the<br>University of Michigan on<br>Thursday were hopeful the news<br>that the NHL and the players<br>association will resume talks<br>next week"
-          ],
-          [
-           "New York police have developed<br>a pre-emptive strike policy,<br>cutting off demonstrations<br>before they grow large."
-          ],
-          [
-           "CAPE CANAVERAL-- NASA aims to<br>launch its first post-Columbia<br>shuttle mission during a<br>shortened nine-day window<br>March, and failure to do so<br>likely would delay a planned<br>return to flight until at<br>least May."
-          ],
-          [
-           "Travelers headed home for<br>Thanksgiving were greeted<br>Wednesday with snow-covered<br>highways in the Midwest, heavy<br>rain and tornadoes in parts of<br>the South, and long security<br>lines at some of the nation<br>#39;s airports."
-          ],
-          [
-           "BOULDER, Colo. -- Vernand<br>Morency ran for 165 yards and<br>two touchdowns and Donovan<br>Woods threw for three more<br>scores, lifting No. 22<br>Oklahoma State to a 42-14<br>victory over Colorado<br>yesterday."
-          ],
-          [
-           "The Chinese city of Beijing<br>has cancelled an order for<br>Microsoft software, apparently<br>bowing to protectionist<br>sentiment. The deal has come<br>under fire in China, which is<br>trying to build a domestic<br>software industry."
-          ],
-          [
-           "Apple says it will deliver its<br>iTunes music service to more<br>European countries next month.<br>Corroborating several reports<br>in recent months, Reuters is<br>reporting today that Apple<br>Computer is planning the next"
-          ],
-          [
-           "Reuters - Motorola Inc., the<br>world's\\second-largest mobile<br>phone maker, said on Tuesday<br>it expects\\to sustain strong<br>sales growth in the second<br>half of 2004\\thanks to new<br>handsets with innovative<br>designs and features."
-          ],
-          [
-           "PULLMAN - Last week, in<br>studying USC game film, Cougar<br>coaches thought they found a<br>chink in the national<br>champions armor. And not just<br>any chink - one with the<br>potential, right from the get<br>go, to"
-          ],
-          [
-           "The union representing flight<br>attendants on Friday said it<br>mailed more than 5,000 strike<br>authorization ballots to its<br>members employed by US Airways<br>as both sides continued talks<br>that are expected to stretch<br>through the weekend."
-          ],
-          [
-           "AP - Matt Leinart was quite a<br>baseball prospect growing up,<br>showing so much promise as a<br>left-handed pitcher that<br>scouts took notice before high<br>school."
-          ],
-          [
-           "PRAGUE, Czech Republic --<br>Eugene Cernan, the last man to<br>walk on the moon during the<br>final Apollo landing, said<br>Thursday he doesn't expect<br>space tourism to become<br>reality in the near future,<br>despite a strong demand.<br>Cernan, now 70, who was<br>commander of NASA's Apollo 17<br>mission and set foot on the<br>lunar surface in December 1972<br>during his third space flight,<br>acknowledged that \"there are<br>many people interested in<br>space tourism.\"     But the<br>former astronaut said he<br>believed \"we are a long way<br>away from the day when we can<br>send a bus of tourists to the<br>moon.\" He spoke to reporters<br>before being awarded a medal<br>by the Czech Academy of<br>Sciences for his contribution<br>to science..."
-          ],
-          [
-           "Never shy about entering a<br>market late, Microsoft Corp.<br>is planning to open the<br>virtual doors of its long-<br>planned Internet music store<br>next week. &lt;FONT<br>face=\"verdana,MS Sans<br>Serif,arial,helvetica\"<br>size=\"-2\"\\ color=\"#666666\"&gt;<br>&lt;B&gt;-Leslie<br>Walker&lt;/B&gt;&lt;/FONT&gt;"
-          ],
-          [
-           "AP - On his first birthday<br>Thursday, giant panda cub Mei<br>Sheng delighted visitors by<br>playing for the first time in<br>snow delivered to him at the<br>San Diego Zoo. He also sat on<br>his ice cake, wrestled with<br>his mom, got his coat<br>incredibly dirty, and didn't<br>read any of the more than 700<br>birthday wishes sent him via<br>e-mail from as far away as<br>Ireland and Argentina."
-          ],
-          [
-           "AP - Researchers put a<br>satellite tracking device on a<br>15-foot shark that appeared to<br>be lost in shallow water off<br>Cape Cod, the first time a<br>great white has been tagged<br>that way in the Atlantic."
-          ],
-          [
-           "LSU will stick with a two-<br>quarterback rotation Saturday<br>at Auburn, according to Tigers<br>coach Nick Saban, who seemed<br>to have some fun telling the<br>media what he will and won<br>#39;t discuss Monday."
-          ],
-          [
-           "Bulgaria has started its first<br>co-mission with the EU in<br>Bosnia and Herzegovina, along<br>with some 30 countries,<br>including Canada and Turkey."
-          ],
-          [
-           "The Windows Future Storage<br>(WinFS) technology that got<br>cut out of Windows<br>quot;Longhorn quot; is in<br>serious trouble, and not just<br>the hot water a feature might<br>encounter for missing its<br>intended production vehicle."
-          ],
-          [
-           "Seattle -- - Not so long ago,<br>the 49ers were inflicting on<br>other teams the kind of pain<br>and embarrassment they felt in<br>their 34-0 loss to the<br>Seahawks on Sunday."
-          ],
-          [
-           "AP - The pileup of events in<br>the city next week, including<br>the Republican National<br>Convention, will add to the<br>security challenge for the New<br>York Police Department, but<br>commissioner Ray Kelly says,<br>\"With a big, experienced<br>police force, we can do it.\""
-          ],
-          [
-           "washingtonpost.com - Let the<br>games begin. Not the Olympics<br>again, but the all-out battle<br>between video game giants Sony<br>Corp. and Nintendo Co. Ltd.<br>The two Japanese companies are<br>rolling out new gaming<br>consoles, but Nintendo has<br>beaten Sony to the punch by<br>announcing an earlier launch<br>date for its new hand-held<br>game player."
-          ],
-          [
-           "London - Manchester City held<br>fierce crosstown rivals<br>Manchester United to a 0-0<br>draw on Sunday, keeping the<br>Red Devils eleven points<br>behind leaders Chelsea."
-          ],
-          [
-           "LONDON, Dec 11 (IranMania) -<br>Iraqi Vice-President Ibrahim<br>al-Jaafari refused to believe<br>in remarks published Friday<br>that Iran was attempting to<br>influence Iraqi polls with the<br>aim of creating a<br>quot;crescent quot; dominated<br>by Shiites in the region."
-          ],
-          [
-           "LOS ANGELES (CBS.MW) - The US<br>Securities and Exchange<br>Commission is probing<br>transactions between Delphi<br>Corp and EDS, which supplies<br>the automotive parts and<br>components giant with<br>technology services, Delphi<br>said late Wednesday."
-          ],
-          [
-           "MONTREAL (CP) - Molson Inc.<br>and Adolph Coors Co. are<br>sweetening their brewery<br>merger plan with a special<br>dividend to Molson<br>shareholders worth \\$381<br>million."
-          ],
-          [
-           "AP - Echoing what NASA<br>officials said a day earlier,<br>a Russian space official on<br>Friday said the two-man crew<br>on the international space<br>station could be forced to<br>return to Earth if a planned<br>resupply flight cannot reach<br>them with food supplies later<br>this month."
-          ],
-          [
-           "InfoWorld - SANTA CLARA,<br>CALIF. -- Accommodating large<br>patch sets in Linux is<br>expected to mean forking off<br>of the 2.7 version of the<br>platform to accommodate these<br>changes, according to Andrew<br>Morton, lead maintainer of the<br>Linux kernel for Open Source<br>Development Labs (OSDL)."
-          ],
-          [
-           "AMSTERDAM The mobile phone<br>giants Vodafone and Nokia<br>teamed up on Thursday to<br>simplify cellphone software<br>written with the Java computer<br>language."
-          ],
-          [
-           "WELLINGTON: National carrier<br>Air New Zealand said yesterday<br>the Australian Competition<br>Tribunal has approved a<br>proposed alliance with Qantas<br>Airways Ltd, despite its<br>rejection in New Zealand."
-          ],
-          [
-           "The late Princess Dianas<br>former bodyguard, Ken Wharfe,<br>dismisses her suspicions that<br>one of her lovers was bumped<br>off. Princess Diana had an<br>affair with Barry Mannakee, a<br>policeman who was assigned to<br>protect her."
-          ],
-          [
-           "Long considered beyond the<br>reach of mainland mores, the<br>Florida city is trying to<br>limit blatant displays of<br>sexual behavior."
-          ],
-          [
-           "The overall Linux market is<br>far larger than previous<br>estimates show, a new study<br>says. In an analysis of the<br>Linux market released late<br>Tuesday, market research firm<br>IDC estimated that the Linux<br>market -- including"
-          ],
-          [
-           "By PAUL ELIAS    SAN FRANCISCO<br>(AP) -- Several California<br>cities and counties, including<br>San Francisco and Los Angeles,<br>sued Microsoft Corp. (MSFT) on<br>Friday, accusing the software<br>giant of illegally charging<br>inflated prices for its<br>products because of monopoly<br>control of the personal<br>computer operating system<br>market..."
-          ],
-          [
-           "New Ole Miss head coach Ed<br>Orgeron, speaking for the<br>first time since his hiring,<br>made clear the goal of his<br>football program.  quot;The<br>goal of this program will be<br>to go to the Sugar Bowl, quot;<br>Orgeron said."
-          ],
-          [
-           "\"Everyone's nervous,\" Acting<br>Undersecretary of Defense<br>Michael W. Wynne warned in a<br>confidential e-mail to Air<br>Force Secretary James G. Roche<br>on July 8, 2003."
-          ],
-          [
-           "Reuters - Alpharma Inc.  on<br>Friday began\\selling a cheaper<br>generic version of Pfizer<br>Inc.'s   #36;3\\billion a year<br>epilepsy drug Neurontin<br>without waiting for a\\court<br>ruling on Pfizer's request to<br>block the copycat medicine."
-          ],
-          [
-           "Public opinion of the database<br>giant sinks to 12-year low, a<br>new report indicates."
-          ],
-          [
-           "Opinion: Privacy hysterics<br>bring old whine in new bottles<br>to the Internet party. The<br>desktop search beta from this<br>Web search leader doesn #39;t<br>do anything you can #39;t do<br>already."
-          ],
-          [
-           "It is much too easy to call<br>Pedro Martinez the selfish<br>one, to say he is walking out<br>on the Red Sox, his baseball<br>family, for the extra year of<br>the Mets #39; crazy money."
-          ],
-          [
-           "It is impossible for young<br>tennis players today to know<br>what it was like to be Althea<br>Gibson and not to be able to<br>quot;walk in the front door,<br>quot; Garrison said."
-          ],
-          [
-           "Senator John Kerry said today<br>that the war in Iraq was a<br>\"profound diversion\" from the<br>war on terror and Osama bin<br>Laden."
-          ],
-          [
-           "For spammers, it #39;s been a<br>summer of love. Two newly<br>issued reports tracking the<br>circulation of unsolicited<br>e-mails say pornographic spam<br>dominated this summer, nearly<br>all of it originating from<br>Internet addresses in North<br>America."
-          ],
-          [
-           "The Nordics fared well because<br>of their long-held ideals of<br>keeping corruption clamped<br>down and respect for<br>contracts, rule of law and<br>dedication to one-on-one<br>business relationships."
-          ],
-          [
-           "Microsoft portrayed its<br>Longhorn decision as a<br>necessary winnowing to hit the<br>2006 timetable. The<br>announcement on Friday,<br>Microsoft executives insisted,<br>did not point to a setback in<br>software"
-          ],
-          [
-           "Here #39;s an obvious word of<br>advice to Florida athletic<br>director Jeremy Foley as he<br>kicks off another search for<br>the Gators football coach: Get<br>Steve Spurrier on board."
-          ],
-          [
-           "Don't bother with the small<br>stuff. Here's what really<br>matters to your lender."
-          ],
-          [
-           "A problem in the Service Pack<br>2 update for Windows XP may<br>keep owners of AMD-based<br>computers from using the long-<br>awaited security package,<br>according to Microsoft."
-          ],
-          [
-           "Five years ago, running a<br>telephone company was an<br>immensely profitable<br>proposition. Since then, those<br>profits have inexorably<br>declined, and now that decline<br>has taken another gut-<br>wrenching dip."
-          ],
-          [
-           "NEW YORK - The litigious<br>Recording Industry Association<br>of America (RIAA) is involved<br>in another legal dispute with<br>a P-to-P (peer-to-peer)<br>technology maker, but this<br>time, the RIAA is on defense.<br>Altnet Inc. filed a lawsuit<br>Wednesday accusing the RIAA<br>and several of its partners of<br>infringing an Altnet patent<br>covering technology for<br>identifying requested files on<br>a P-to-P network."
-          ],
-          [
-           "A group claiming to have<br>captured two Indonesian women<br>in Iraq has said it will<br>release them if Jakarta frees<br>Muslim cleric Abu Bakar Bashir<br>being held for alleged<br>terrorist links."
-          ],
-          [
-           "Amid the stormy gloom in<br>Gotham, the rain-idled Yankees<br>last night had plenty of time<br>to gather in front of their<br>televisions and watch the Red<br>Sox Express roar toward them.<br>The national telecast might<br>have been enough to send a<br>jittery Boss Steinbrenner<br>searching his Bartlett's<br>Familiar Quotations for some<br>quot;Little Engine That Could<br>quot; metaphor."
-          ],
-          [
-           "FULHAM fans would have been<br>singing the late Elvis #39;<br>hit  #39;The wonder of you<br>#39; to their player Elvis<br>Hammond. If not for Frank<br>Lampard spoiling the party,<br>with his dedication to his<br>late grandfather."
-          ],
-          [
-           "Indonesian police said<br>yesterday that DNA tests had<br>identified a suicide bomber<br>involved in a deadly attack<br>this month on the Australian<br>embassy in Jakarta."
-          ],
-          [
-           "NEW YORK - Wal-Mart Stores<br>Inc.'s warning of<br>disappointing sales sent<br>stocks fluctuating Monday as<br>investors' concerns about a<br>slowing economy offset their<br>relief over a drop in oil<br>prices.    October contracts<br>for a barrel of light crude<br>were quoted at \\$46.48, down<br>24 cents, on the New York<br>Mercantile Exchange..."
-          ],
-          [
-           "Iraq #39;s top Shi #39;ite<br>cleric made a sudden return to<br>the country on Wednesday and<br>said he had a plan to end an<br>uprising in the  quot;burning<br>city quot; of Najaf, where<br>fighting is creeping ever<br>closer to its holiest shrine."
-          ],
-          [
-           "For two weeks before MTV<br>debuted U2 #39;s video for the<br>new single  quot;Vertigo,<br>quot; fans had a chance to see<br>the band perform the song on<br>TV -- in an iPod commercial."
-          ],
-          [
-           "A bird #39;s eye view of the<br>circuit at Shanghai shows what<br>an event Sunday #39;s Chinese<br>Grand Prix will be. The course<br>is arguably one of the best<br>there is, and so it should be<br>considering the amount of<br>money that has been spent on<br>it."
-          ],
-          [
-           "KABUL, Afghanistan Aug. 22,<br>2004 - US soldiers sprayed a<br>pickup truck with bullets<br>after it failed to stop at a<br>roadblock in central<br>Afghanistan, killing two women<br>and a man and critically<br>wounding two other"
-          ],
-          [
-           "Oct. 26, 2004 - The US-<br>European spacecraft Cassini-<br>Huygens on Tuesday made a<br>historic flyby of Titan,<br>Saturn #39;s largest moon,<br>passing so low as to almost<br>touch the fringes of its<br>atmosphere."
-          ],
-          [
-           "Reuters - A volcano in central<br>Japan sent smoke and\\ash high<br>into the sky and spat out<br>molten rock as it erupted\\for<br>a fourth straight day on<br>Friday, but experts said the<br>peak\\appeared to be quieting<br>slightly."
-          ],
-          [
-           "Shares of Google Inc. made<br>their market debut on Thursday<br>and quickly traded up 19<br>percent at \\$101.28. The Web<br>search company #39;s initial<br>public offering priced at \\$85"
-          ],
-          [
-           "SYDNEY -- Prime Minister John<br>Howard of Australia, a key US<br>ally and supporter of the Iraq<br>war, celebrated his election<br>win over opposition Labor<br>after voters enjoying the<br>fruits of a strong economy<br>gave him another term."
-          ],
-          [
-           "Reuters - Global warming is<br>melting\\Ecuador's cherished<br>mountain glaciers and could<br>cause several\\of them to<br>disappear over the next two<br>decades, Ecuadorean and\\French<br>scientists said on Wednesday."
-          ],
-          [
-           "AP - Sirius Satellite Radio<br>signed a deal to air the men's<br>NCAA basketball tournament<br>through 2007, the latest move<br>made in an attempt to draw<br>customers through sports<br>programming."
-          ],
-          [
-           "Rather than tell you, Dan<br>Kranzler chooses instead to<br>show you how he turned Mforma<br>into a worldwide publisher of<br>video games, ringtones and<br>other hot downloads for mobile<br>phones."
-          ],
-          [
-           "UK interest rates have been<br>kept on hold at 4.75 following<br>the latest meeting of the Bank<br>of England #39;s rate-setting<br>committee."
-          ],
-          [
-           "BAGHDAD, Iraq - Two rockets<br>hit a downtown Baghdad hotel<br>housing foreigners and<br>journalists Thursday, and<br>gunfire erupted in the<br>neighborhood across the Tigris<br>River from the U.S. Embassy<br>compound..."
-          ],
-          [
-           "The Prevention of Terrorism<br>Act 2002 (Pota) polarised the<br>country, not just by the<br>manner in which it was pushed<br>through by the NDA government<br>through a joint session of<br>Parliament but by the shabby<br>and often biased manner in<br>which it was enforced."
-          ],
-          [
-           "Not being part of a culture<br>with a highly developed<br>language, could limit your<br>thoughts, at least as far as<br>numbers are concerned, reveals<br>a new study conducted by a<br>psychologist at the Columbia<br>University in New York."
-          ],
-          [
-           "CAMBRIDGE, Mass. A native of<br>Red Oak, Iowa, who was a<br>pioneer in astronomy who<br>proposed the  quot;dirty<br>snowball quot; theory for the<br>substance of comets, has died."
-          ],
-          [
-           "Resurgent oil prices paused<br>for breath as the United<br>States prepared to draw on its<br>emergency reserves to ease<br>supply strains caused by<br>Hurricane Ivan."
-          ],
-          [
-           "(Sports Network) - The<br>inconsistent San Diego Padres<br>will try for consecutive wins<br>for the first time since<br>August 28-29 tonight, when<br>they begin a huge four-game<br>set against the Los Angeles<br>Dodgers at Dodger Stadium."
-          ],
-          [
-           "A Portuguese-sounding version<br>of the virus has appeared in<br>the wild. Be wary of mail from<br>Manaus."
-          ],
-          [
-           " NEW YORK (Reuters) - Top seed<br>Roger Federer survived a<br>stirring comeback from twice<br>champion Andre Agassi to reach<br>the  semifinals of the U.S.<br>Open for the first time on<br>Thursday,  squeezing through<br>6-3, 2-6, 7-5, 3-6, 6-3."
-          ],
-          [
-           "President Bush, who credits<br>three years of tax relief<br>programs with helping<br>strengthen the slow economy,<br>said Saturday he would sign<br>into law the Working Families<br>Tax Relief Act to preserve tax<br>cuts."
-          ],
-          [
-           "HEN investors consider the<br>bond market these days, the<br>low level of interest rates<br>should be more cause for worry<br>than for gratitude."
-          ],
-          [
-           "Reuters - Hunters soon may be<br>able to sit at\\their computers<br>and blast away at animals on a<br>Texas ranch via\\the Internet,<br>a prospect that has state<br>wildlife officials up\\in arms."
-          ],
-          [
-           "The Bedminster-based company<br>yesterday said it was pushing<br>into 21 new markets with the<br>service, AT amp;T CallVantage,<br>and extending an introductory<br>rate offer until Sept. 30. In<br>addition, the company is<br>offering in-home installation<br>of up to five ..."
-          ],
-          [
-           "Samsung Electronics Co., Ltd.<br>has developed a new LCD<br>(liquid crystal display)<br>technology that builds a touch<br>screen into the display, a<br>development that could lead to<br>thinner and cheaper display<br>panels for mobile phones, the<br>company said Tuesday."
-          ],
-          [
-           "The US military says marines<br>in Fallujah shot and killed an<br>insurgent who engaged them as<br>he was faking being dead, a<br>week after footage of a marine<br>killing an apparently unarmed<br>and wounded Iraqi caused a<br>stir in the region."
-          ],
-          [
-           " NEW YORK (Reuters) - U.S.<br>stocks rallied on Monday after<br>software maker PeopleSoft Inc.<br>&lt;A HREF=\"http://www.investo<br>r.reuters.com/FullQuote.aspx?t<br>icker=PSFT.O target=/stocks/qu<br>ickinfo/fullquote\"&gt;PSFT.O&l<br>t;/A&gt; accepted a sweetened<br>\\$10.3 billion buyout by rival<br>Oracle Corp.'s &lt;A HREF=\"htt<br>p://www.investor.reuters.com/F<br>ullQuote.aspx?ticker=ORCL.O ta<br>rget=/stocks/quickinfo/fullquo<br>te\"&gt;ORCL.O&lt;/A&gt; and<br>other  big deals raised<br>expectations of more<br>takeovers."
-          ],
-          [
-           "SAN FRANCISCO - What Babe Ruth<br>was to the first half of the<br>20th century and Hank Aaron<br>was to the second, Barry Bonds<br>has become for the home run<br>generation."
-          ],
-          [
-           "Description: NPR #39;s Alex<br>Chadwick talks to Colin Brown,<br>deputy political editor for<br>the United Kingdom #39;s<br>Independent newspaper,<br>currently covering the British<br>Labour Party Conference."
-          ],
-          [
-           "Birgit Fischer settled for<br>silver, leaving the 42-year-<br>old Olympian with two medals<br>in two days against decidedly<br>younger competition."
-          ],
-          [
-           "The New Jersey-based Accoona<br>Corporation, an industry<br>pioneer in artificial<br>intelligence search<br>technology, announced on<br>Monday the launch of Accoona."
-          ],
-          [
-           "Hamas vowed revenge yesterday<br>after an Israeli airstrike in<br>Gaza killed one of its senior<br>commanders - the latest<br>assassination to have weakened<br>the militant group."
-          ],
-          [
-           "There was no mystery ... no<br>secret strategy ... no baited<br>trap that snapped shut and<br>changed the course of history<br>#39;s most lucrative non-<br>heavyweight fight."
-          ],
-          [
-           "Notre Dame accepted an<br>invitation Sunday to play in<br>the Insight Bowl in Phoenix<br>against a Pac-10 team on Dec.<br>28. The Irish (6-5) accepted<br>the bid a day after losing to<br>Southern California"
-          ],
-          [
-           "Greg Anderson has so dominated<br>Pro Stock this season that his<br>championship quest has evolved<br>into a pursuit of NHRA<br>history. By Bob Hesser, Racers<br>Edge Photography."
-          ],
-          [
-           "Goldman Sachs Group Inc. on<br>Thursday said fourth-quarter<br>profit rose as its fixed-<br>income, currency and<br>commodities business soared<br>while a rebounding stock<br>market boosted investment<br>banking."
-          ],
-          [
-           " NEW YORK (Reuters) - The<br>dollar rose on Monday in a<br>retracement from last week's<br>steep losses, but dealers said<br>the  bias toward a weaker<br>greenback remained intact."
-          ],
-          [
-           "Michael Powell, chairman of<br>the FCC, said Wednesday he was<br>disappointed with ABC for<br>airing a sexually suggestive<br>opening to \"Monday Night<br>Football.\""
-          ],
-          [
-           "The message against illegally<br>copying CDs for uses such as<br>in file-sharing over the<br>Internet has widely sunk in,<br>said the company in it #39;s<br>recent announcement to drop<br>the Copy-Control program."
-          ],
-          [
-           "Former Washington football<br>coach Rick Neuheisel looked<br>forward to a return to<br>coaching Wednesday after being<br>cleared by the NCAA of<br>wrongdoing related to his<br>gambling on basketball games."
-          ],
-          [
-           "Reuters - California will<br>become hotter and\\drier by the<br>end of the century, menacing<br>the valuable wine and\\dairy<br>industries, even if dramatic<br>steps are taken to curb\\global<br>warming, researchers said on<br>Monday."
-          ],
-          [
-           "A senior member of the<br>Palestinian resistance group<br>Hamas has been released from<br>an Israeli prison after<br>completing a two-year<br>sentence."
-          ],
-          [
-           "IBM said Monday that it won a<br>500 million (AUD\\$1.25<br>billion), seven-year services<br>contract to help move UK bank<br>Lloyds TBS from its<br>traditional voice<br>infrastructure to a converged<br>voice and data network."
-          ],
-          [
-           "MPs have announced a new<br>inquiry into family courts and<br>whether parents are treated<br>fairly over issues such as<br>custody or contact with their<br>children."
-          ],
-          [
-           "Canadian Press - MELBOURNE,<br>Australia (AP) - A 36-year-old<br>businesswoman was believed to<br>be the first woman to walk<br>around Australia on Friday<br>after striding into her<br>hometown of Melbourne to<br>complete her 16,700-kilometre<br>trek in 365 days."
-          ],
-          [
-           "Most remaining Pakistani<br>prisoners held at the US<br>Guantanamo Bay prison camp are<br>freed, officials say."
-          ],
-          [
-           "Space shuttle astronauts will<br>fly next year without the<br>ability to repair in orbit the<br>type of damage that destroyed<br>the Columbia vehicle in<br>February 2003."
-          ],
-          [
-           "Moscow - Russia plans to<br>combine Gazprom, the world<br>#39;s biggest natural gas<br>producer, with state-owned oil<br>producer Rosneft, easing rules<br>for trading Gazprom shares and<br>creating a company that may<br>dominate the country #39;s<br>energy industry."
-          ],
-          [
-           "AP - Rutgers basketball player<br>Shalicia Hurns was suspended<br>from the team after pleading<br>guilty to punching and tying<br>up her roommate during a<br>dispute over painkilling<br>drugs."
-          ],
-          [
-           "By cutting WinFS from Longhorn<br>and indefinitely delaying the<br>storage system, Microsoft<br>Corp. has also again delayed<br>the Microsoft Business<br>Framework (MBF), a new Windows<br>programming layer that is<br>closely tied to WinFS."
-          ],
-          [
-           "French police are<br>investigating an arson-caused<br>fire at a Jewish Social Center<br>that might have killed dozens<br>without the quick response of<br>firefighters."
-          ],
-          [
-           "Rodney King, whose videotaped<br>beating led to riots in Los<br>Angeles in 1992, is out of<br>jail now and talking frankly<br>for the first time about the<br>riots, himself and the<br>American way of life."
-          ],
-          [
-           "AFP - Radical Islamic cleric<br>Abu Hamza al-Masri was set to<br>learn Thursday whether he<br>would be charged under<br>Britain's anti-terrorism law,<br>thus delaying his possible<br>extradition to the United<br>States to face terrorism-<br>related charges."
-          ],
-          [
-           "Diversified manufacturer<br>Honeywell International Inc.<br>(HON.N: Quote, Profile,<br>Research) posted a rise in<br>quarterly profit as strong<br>demand for aerospace equipment<br>and automobile components"
-          ],
-          [
-           "This was the event Michael<br>Phelps didn't really need to<br>compete in if his goal was to<br>win eight golds. He probably<br>would have had a better chance<br>somewhere else."
-          ],
-          [
-           "Samsung's new SPH-V5400 mobile<br>phone sports a built-in<br>1-inch, 1.5-gigabyte hard disk<br>that can store about 15 times<br>more data than conventional<br>handsets, Samsung said."
-          ],
-          [
-           "Reuters - U.S. housing starts<br>jumped a\\larger-than-expected<br>6.4 percent in October to the<br>busiest pace\\since December as<br>buyers took advantage of low<br>mortgage rates,\\a government<br>report showed on Wednesday."
-          ],
-          [
-           "Gabe Kapler became the first<br>player to leave the World<br>Series champion Boston Red<br>Sox, agreeing to a one-year<br>contract with the Yomiuri<br>Giants in Tokyo."
-          ],
-          [
-           "Louisen Louis, 30, walked<br>Monday in the middle of a<br>street that resembled a small<br>river with brown rivulets and<br>waves. He wore sandals and had<br>a cut on one of his big toes."
-          ],
-          [
-           "BALI, Indonesia - Svetlana<br>Kuznetsova, fresh off her<br>championship at the US Open,<br>defeated Australian qualifier<br>Samantha Stosur 6-4, 6-4<br>Thursday to reach the<br>quarterfinals of the Wismilak<br>International."
-          ],
-          [
-           "The Securities and Exchange<br>Commission ordered mutual<br>funds to stop paying higher<br>commissions to brokers who<br>promote the companies' funds<br>and required portfolio<br>managers to reveal investments<br>in funds they supervise."
-          ],
-          [
-           "A car bomb exploded outside<br>the main hospital in Chechny<br>#39;s capital, Grozny, on<br>Sunday, injuring 17 people in<br>an attack apparently targeting<br>members of a Chechen security<br>force bringing in wounded from<br>an earlier explosion"
-          ],
-          [
-           "AP - Just like the old days in<br>Dallas, Emmitt Smith made life<br>miserable for the New York<br>Giants on Sunday."
-          ],
-          [
-           "Sumitomo Mitsui Financial<br>Group (SMFG), Japans second<br>largest bank, today put<br>forward a 3,200 billion (\\$29<br>billion) takeover bid for<br>United Financial Group (UFJ),<br>the countrys fourth biggest<br>lender, in an effort to regain<br>initiative in its bidding"
-          ],
-          [
-           "AP - Gay marriage is emerging<br>as a big enough issue in<br>several states to influence<br>races both for Congress and<br>the presidency."
-          ],
-          [
-           "TAMPA, Fla. - Chris Simms<br>first NFL start lasted 19<br>plays, and it might be a while<br>before he plays again for the<br>Tampa Bay Buccaneers."
-          ],
-          [
-           "Vendor says it #39;s<br>developing standards-based<br>servers in various form<br>factors for the telecom<br>market. By Darrell Dunn.<br>Hewlett-Packard on Thursday<br>unveiled plans to create a<br>portfolio of products and<br>services"
-          ],
-          [
-           "Jarno Trulli made the most of<br>the conditions in qualifying<br>to claim pole ahead of Michael<br>Schumacher, while Fernando<br>finished third."
-          ],
-          [
-           "More than 30 aid workers have<br>been airlifted to safety from<br>a town in Sudan #39;s troubled<br>Darfur region after fighting<br>broke out and their base was<br>bombed, a British charity<br>says."
-          ],
-          [
-           " NEW YORK (Reuters) - U.S.<br>chain store retail sales<br>slipped  during the<br>Thanksgiving holiday week, as<br>consumers took  advantage of<br>discounted merchandise, a<br>retail report said on<br>Tuesday."
-          ],
-          [
-           "Ziff Davis - The company this<br>week will unveil more programs<br>and technologies designed to<br>ease users of its high-end<br>servers onto its Integrity<br>line, which uses Intel's<br>64-bit Itanium processor."
-          ],
-          [
-           "The Mac maker says it will<br>replace about 28,000 batteries<br>in one model of PowerBook G4<br>and tells people to stop using<br>the notebook."
-          ],
-          [
-           "It #39;s the mildest of mild<br>winters down here in the south<br>of Italy and, last weekend at<br>Bcoli, a pretty suburb by the<br>seaside west of Naples, the<br>customers of Pizzeria  quot;Da<br>Enrico quot; were making the<br>most of it."
-          ],
-          [
-           "By George Chamberlin , Daily<br>Transcript Financial<br>Correspondent. Concerns about<br>oil production leading into<br>the winter months sent shivers<br>through the stock market<br>Wednesday."
-          ],
-          [
-           "Airbus has withdrawn a filing<br>that gave support for<br>Microsoft in an antitrust case<br>before the European Union<br>#39;s Court of First Instance,<br>a source close to the<br>situation said on Friday."
-          ],
-          [
-           "WASHINGTON - A spotty job<br>market and stagnant paychecks<br>cloud this Labor Day holiday<br>for many workers, highlighting<br>the importance of pocketbook<br>issues in the presidential<br>election.   \"Working harder<br>and enjoying it less,\" said<br>economist Ken Mayland,<br>president of ClearView<br>Economics, summing up the<br>state of working America..."
-          ],
-          [
-           " NEW YORK (Reuters) - U.S.<br>stocks rose on Wednesday<br>lifted  by a merger between<br>retailers Kmart and Sears,<br>better-than-expected earnings<br>from Hewlett-Packard and data<br>showing a slight rise in core<br>inflation."
-          ],
-          [
-           "AP - Authorities are<br>investigating whether bettors<br>at New York's top thoroughbred<br>tracks were properly informed<br>when jockeys came in<br>overweight at races, a source<br>familiar with the probe told<br>The Associated Press."
-          ],
-          [
-           "European Commission president<br>Romano Prodi has unveiled<br>proposals to loosen the<br>deficit rules under the EU<br>Stability Pact. The loosening<br>was drafted by monetary<br>affairs commissioner Joaquin<br>Almunia, who stood beside the<br>president at the announcement."
-          ],
-          [
-           "Canadian Press - MONTREAL (CP)<br>- A 19-year-old man charged in<br>a firebombing at a Jewish<br>elementary school pleaded<br>guilty Thursday to arson."
-          ],
-          [
-           "Retail sales in Britain saw<br>the fastest growth in<br>September since January,<br>casting doubts on the view<br>that the economy is slowing<br>down, according to official<br>figures released Thursday."
-          ],
-          [
-           " NEW YORK (Reuters) -<br>Interstate Bakeries Corp.<br>&lt;A HREF=\"http://www.investo<br>r.reuters.com/FullQuote.aspx?t<br>icker=IBC.N target=/stocks/qui<br>ckinfo/fullquote\"&gt;IBC.N&lt;<br>/A&gt;,  maker of Hostess<br>Twinkies and Wonder Bread,<br>filed for  bankruptcy on<br>Wednesday after struggling<br>with more than \\$1.3  billion<br>in debt and high costs."
-          ],
-          [
-           "Delta Air Lines (DAL.N: Quote,<br>Profile, Research) on Thursday<br>said it reached a deal with<br>FedEx Express to sell eight<br>McDonnell Douglas MD11<br>aircraft and four spare<br>engines for delivery in 2004."
-          ],
-          [
-           "Michael Owen scored his first<br>goal for Real Madrid in a 1-0<br>home victory over Dynamo Kiev<br>in the Champions League. The<br>England striker toe-poked home<br>Ronaldo #39;s cross in the<br>35th minute to join the<br>Russians"
-          ],
-          [
-           " quot;Resuming uranium<br>enrichment is not in our<br>agenda. We are still committed<br>to the suspension, quot;<br>Foreign Ministry spokesman<br>Hamid Reza."
-          ],
-          [
-           "Leading OPEC producer Saudi<br>Arabia said on Monday in<br>Vienna, Austria, that it had<br>made a renewed effort to<br>deflate record high world oil<br>prices by upping crude output<br>again."
-          ],
-          [
-           "The U.S. military presence in<br>Iraq will grow to 150,000<br>troops by next month, the<br>highest level since the<br>invasion last year."
-          ],
-          [
-           "UPDATE, SUN 9PM: More than a<br>million people have left their<br>homes in Cuba, as Hurricane<br>Ivan approaches. The ferocious<br>storm is headed that way,<br>after ripping through the<br>Cayman Islands, tearing off<br>roofs, flooding homes and<br>causing general havoc."
-          ],
-          [
-           "Jason Giambi has returned to<br>the New York Yankees'<br>clubhouse but is still<br>clueless as to when he will be<br>able to play again."
-          ],
-          [
-           "Seventy-five National Hockey<br>League players met with union<br>leaders yesterday to get an<br>update on a lockout that shows<br>no sign of ending."
-          ],
-          [
-           "Howard, at 6-4 overall and 3-3<br>in the Mid-Eastern Athletic<br>Conference, can clinch a<br>winning record in the MEAC<br>with a win over Delaware State<br>on Saturday."
-          ],
-          [
-           "Millions of casual US anglers<br>are having are larger than<br>appreciated impact on sea fish<br>stocks, scientists claim."
-          ],
-          [
-           "The founders of the Pilgrim<br>Baxter  amp; Associates money-<br>management firm agreed<br>yesterday to personally fork<br>over \\$160 million to settle<br>charges they allowed a friend<br>to"
-          ],
-          [
-           " ATHENS (Reuters) - Top-ranked<br>Argentina booked their berth<br>in the women's hockey semi-<br>finals at the Athens Olympics<br>on  Friday but defending<br>champions Australia now face<br>an obstacle  course to qualify<br>for the medal matches."
-          ],
-          [
-           "IBM Corp. Tuesday announced<br>plans to acquire software<br>vendor Systemcorp ALG for an<br>undisclosed amount. Systemcorp<br>of Montreal makes project<br>portfolio management software<br>aimed at helping companies<br>better manage their IT<br>projects."
-          ],
-          [
-           "The Notre Dame message boards<br>are no longer discussing<br>whether Tyrone Willingham<br>should be fired. Theyre<br>already arguing about whether<br>the next coach should be Barry<br>Alvarez or Steve Spurrier."
-          ],
-          [
-           "Forbes.com - By now you<br>probably know that earnings of<br>Section 529 college savings<br>accounts are free of federal<br>tax if used for higher<br>education. But taxes are only<br>part of the problem. What if<br>your investments tank? Just<br>ask Laurence and Margo<br>Williams of Alexandria, Va. In<br>2000 they put  #36;45,000 into<br>the Virginia Education Savings<br>Trust to open accounts for<br>daughters Lea, now 5, and<br>Anne, now 3. Since then their<br>investment has shrunk 5 while<br>the average private college<br>tuition has climbed 18 to<br>#36;18,300."
-          ],
-          [
-           "German Chancellor Gerhard<br>Schroeder said Sunday that<br>there was  quot;no problem<br>quot; with Germany #39;s<br>support to the start of<br>negotiations on Turkey #39;s<br>entrance into EU."
-          ],
-          [
-           "Coca-Cola Amatil Ltd.,<br>Australia #39;s biggest soft-<br>drink maker, offered A\\$500<br>million (\\$382 million) in<br>cash and stock for fruit<br>canner SPC Ardmona Ltd."
-          ],
-          [
-           "US technology shares tumbled<br>on Friday after technology<br>bellwether Intel Corp.<br>(INTC.O: Quote, Profile,<br>Research) slashed its revenue<br>forecast, but blue chips were<br>only moderately lower as drug<br>and industrial stocks made<br>solid gains."
-          ],
-          [
-           " WASHINGTON (Reuters) - Final<br>U.S. government tests on an<br>animal suspected of having mad<br>cow disease were not yet<br>complete, the U.S. Agriculture<br>Department said, with no<br>announcement on the results<br>expected on Monday."
-          ],
-          [
-           "MANILA Fernando Poe Jr., the<br>popular actor who challenged<br>President Gloria Macapagal<br>Arroyo in the presidential<br>elections this year, died<br>early Tuesday."
-          ],
-          [
-           " THOMASTOWN, Ireland (Reuters)<br>- World number three Ernie<br>Els overcame difficult weather<br>conditions to fire a sparkling<br>eight-under-par 64 and move<br>two shots clear after two<br>rounds of  the WGC-American<br>Express Championship Friday."
-          ],
-          [
-           "Lamar Odom supplemented 20<br>points with 13 rebounds and<br>Kobe Bryant added 19 points to<br>overcome a big night from Yao<br>Ming as the Los Angeles Lakers<br>ground out an 84-79 win over<br>the Rockets in Houston<br>Saturday."
-          ],
-          [
-           "AMSTERDAM, NETHERLANDS - A<br>Dutch filmmaker who outraged<br>members of the Muslim<br>community by making a film<br>critical of the mistreatment<br>of women in Islamic society<br>was gunned down and stabbed to<br>death Tuesday on an Amsterdam<br>street."
-          ],
-          [
-           "Microsoft Xbox Live traffic on<br>service provider networks<br>quadrupled following the<br>November 9th launch of Halo-II<br>-- which set entertainment<br>industry records by selling<br>2.4-million units in the US<br>and Canada on the first day of<br>availability, driving cash"
-          ],
-          [
-           "Lawyers in a California class<br>action suit against Microsoft<br>will get less than half the<br>payout they had hoped for. A<br>judge in San Francisco ruled<br>that the attorneys will<br>collect only \\$112."
-          ],
-          [
-           "Google Browser May Become<br>Reality\\\\There has been much<br>fanfare in the Mozilla fan<br>camps about the possibility of<br>Google using Mozilla browser<br>technology to produce a<br>GBrowser - the Google Browser.<br>Over the past two weeks, the<br>news and speculation has<br>escalated to the point where<br>even Google itself is ..."
-          ],
-          [
-           "Metro, Germany's biggest<br>retailer, turns in weaker-<br>than-expected profits as sales<br>at its core supermarkets<br>division dip lower."
-          ],
-          [
-           "It rained Sunday, of course,<br>and but another soppy, sloppy<br>gray day at Westside Tennis<br>Club did nothing to deter<br>Roger Federer from his<br>appointed rounds."
-          ],
-          [
-           "Hewlett-Packard has joined<br>with Brocade to integrate<br>Brocade #39;s storage area<br>network switching technology<br>into HP Bladesystem servers to<br>reduce the amount of fabric<br>infrastructure needed in a<br>datacentre."
-          ],
-          [
-           "Zimbabwe #39;s most persecuted<br>white MP began a year of hard<br>labour last night after<br>parliament voted to jail him<br>for shoving the Justice<br>Minister during a debate over<br>land seizures."
-          ],
-          [
-           "BOSTON (CBS.MW) -- First<br>Command has reached a \\$12<br>million settlement with<br>federal regulators for making<br>misleading statements and<br>omitting important information<br>when selling mutual funds to<br>US military personnel."
-          ],
-          [
-           "A smashing blow is being dealt<br>to thousands of future<br>pensioners by a law that has<br>just been brought into force<br>by the Federal Government."
-          ],
-          [
-           "The US Senate Commerce<br>Committee on Wednesday<br>approved a measure that would<br>provide up to \\$1 billion to<br>ensure consumers can still<br>watch television when<br>broadcasters switch to new,<br>crisp digital signals."
-          ],
-          [
-           "Amelie Mauresmo was handed a<br>place in the Advanta<br>Championships final after<br>Maria Sharapova withdrew from<br>their semi-final because of<br>injury."
-          ],
-          [
-           "AP - An Israeli helicopter<br>fired two missiles in Gaza<br>City after nightfall<br>Wednesday, one at a building<br>in the Zeitoun neighborhood,<br>witnesses said, setting a<br>fire."
-          ],
-          [
-           "Reuters - Internet stocks<br>are\\as volatile as ever, with<br>growth-starved investors<br>flocking to\\the sector in the<br>hope they've bought shares in<br>the next online\\blue chip."
-          ],
-          [
-           "The federal government, banks<br>and aircraft lenders are<br>putting the clamps on<br>airlines, particularly those<br>operating under bankruptcy<br>protection."
-          ],
-          [
-           "EURO DISNEY, the financially<br>crippled French theme park<br>operator, has admitted that<br>its annual losses more than<br>doubled last financial year as<br>it was hit by a surge in<br>costs."
-          ],
-          [
-           " EAST RUTHERFORD, New Jersey<br>(Sports Network) - Retired NBA<br>center and seven-time All-<br>Star Alonzo Mourning is going<br>to  give his playing career<br>one more shot."
-          ],
-          [
-           "NASA has released an inventory<br>of the scientific devices to<br>be put on board the Mars<br>Science Laboratory rover<br>scheduled to land on the<br>surface of Mars in 2009, NASAs<br>news release reads."
-          ],
-          [
-           "The U.S. Congress needs to<br>invest more in the U.S.<br>education system and do more<br>to encourage broadband<br>adoption, the chief executive<br>of Cisco said Wednesday.&lt;p&<br>gt;ADVERTISEMENT&lt;/p&gt;&lt;<br>p&gt;&lt;img src=\"http://ad.do<br>ubleclick.net/ad/idg.us.ifw.ge<br>neral/sbcspotrssfeed;sz=1x1;or<br>d=200301151450?\" width=\"1\"<br>height=\"1\"<br>border=\"0\"/&gt;&lt;a href=\"htt<br>p://ad.doubleclick.net/clk;922<br>8975;9651165;a?http://www.info<br>world.com/spotlights/sbc/main.<br>html?lpid0103035400730000idlp\"<br>&gt;SBC Case Study: Crate   Ba<br>rrel&lt;/a&gt;&lt;br/&gt;What<br>sold them on improving their<br>network? A system that could<br>cut management costs from the<br>get-go. Find out<br>more.&lt;/p&gt;"
-          ],
-          [
-           "The Philippines put the toll<br>at more than 1,000 dead or<br>missing in four storms in two<br>weeks but, even with a break<br>in the weather on Saturday"
-          ],
-          [
-           "Reuters - Four explosions were<br>reported at petrol\\stations in<br>the Madrid area on Friday,<br>Spanish radio stations\\said,<br>following a phone warning in<br>the name of the armed<br>Basque\\separatist group ETA to<br>a Basque newspaper."
-          ],
-          [
-           "Thirty-two countries and<br>regions will participate the<br>Fifth China International<br>Aviation and Aerospace<br>Exhibition, opening Nov. 1 in<br>Zhuhai, a city in south China<br>#39;s Guangdong Province."
-          ],
-          [
-           "Jordan have confirmed that<br>Timo Glock will replace<br>Giorgio Pantano for this<br>weekend #39;s Chinese GP as<br>the team has terminated its<br>contract with Pantano."
-          ],
-          [
-           "WEST PALM BEACH, Fla. -<br>Hurricane Jeanne got stronger,<br>bigger and faster as it<br>battered the Bahamas and bore<br>down on Florida Saturday,<br>sending huge waves crashing<br>onto beaches and forcing<br>thousands into shelters just<br>weeks after Frances ravaged<br>this area..."
-          ],
-          [
-           "p2pnet.net News:- Virgin<br>Electronics has joined the mp3<br>race with a \\$250, five gig<br>player which also handles<br>Microsoft #39;s WMA format."
-          ],
-          [
-           "WASHINGTON The idea of a no-<br>bid contract for maintaining<br>airport security equipment has<br>turned into a non-starter for<br>the Transportation Security<br>Administration."
-          ],
-          [
-           "Eyetech (EYET:Nasdaq - news -<br>research) did not open for<br>trading Friday because a Food<br>and Drug Administration<br>advisory committee is meeting<br>to review the small New York-<br>based biotech #39;s<br>experimental eye disease drug."
-          ],
-          [
-           "The continuing heartache of<br>Wake Forest #39;s ACC football<br>season was best described by<br>fifth-ranked Florida State<br>coach Bobby Bowden, after his<br>Seminoles had edged the<br>Deacons 20-17 Saturday at<br>Groves Stadium."
-          ],
-          [
-           "On September 13, 2001, most<br>Americans were still reeling<br>from the shock of the<br>terrorist attacks on New York<br>and the Pentagon two days<br>before."
-          ],
-          [
-           "Microsoft has suspended the<br>beta testing of the next<br>version of its MSN Messenger<br>client because of a potential<br>security problem, a company<br>spokeswoman said Wednesday."
-          ],
-          [
-           "AP - Business software maker<br>Oracle Corp. attacked the<br>credibility and motives of<br>PeopleSoft Inc.'s board of<br>directors Monday, hoping to<br>rally investor support as the<br>17-month takeover battle<br>between the bitter business<br>software rivals nears a<br>climactic showdown."
-          ],
-          [
-           "NEW YORK - Elena Dementieva<br>shook off a subpar serve that<br>produced 15 double-faults, an<br>aching left thigh and an upset<br>stomach to advance to the<br>semifinals at the U.S. Open<br>with a 4-6, 6-4, 7-6 (1)<br>victory Tuesday over Amelie<br>Mauresmo..."
-          ],
-          [
-           "THE glory days have returned<br>to White Hart Lane. When Spurs<br>new first-team coach Martin<br>Jol promised a return to the<br>traditions of the 1960s,<br>nobody could have believed he<br>was so determined to act so<br>quickly and so literally."
-          ],
-          [
-           "A new worm has been discovered<br>in the wild that #39;s not<br>just settling for invading<br>users #39; PCs--it wants to<br>invade their homes too."
-          ],
-          [
-           "Domestic air travelers could<br>be surfing the Web by 2006<br>with government-approved<br>technology that allows people<br>access to high-speed Internet<br>connections while they fly."
-          ],
-          [
-           "GENEVA: Cross-border<br>investment is set to bounce in<br>2004 after three years of deep<br>decline, reflecting a stronger<br>world economy and more<br>international merger activity,<br>the United Nations (UN) said<br>overnight."
-          ],
-          [
-           "Researchers have for the first<br>time established the existence<br>of odd-parity superconductors,<br>materials that can carry<br>electric current without any<br>resistance."
-          ],
-          [
-           "Chewing gum giant Wm. Wrigley<br>Jr. Co. on Thursday said it<br>plans to phase out production<br>of its Eclipse breath strips<br>at a plant in Phoenix, Arizona<br>and shift manufacturing to<br>Poznan, Poland."
-          ],
-          [
-           "Prime Minister Dr Manmohan<br>Singh inaugurated a research<br>centre in the Capital on<br>Thursday to mark 400 years of<br>compilation of Sikh holy book<br>the Guru Granth Sahib."
-          ],
-          [
-           "com September 16, 2004, 7:58<br>AM PT. This fourth priority<br>#39;s main focus has been<br>improving or obtaining CRM and<br>ERP software for the past year<br>and a half."
-          ],
-          [
-           "BRUSSELS, Belgium (AP) --<br>European antitrust regulators<br>said Monday they have extended<br>their review of a deal between<br>Microsoft Corp. (MSFT) and<br>Time Warner Inc..."
-          ],
-          [
-           "AP - When Paula Radcliffe<br>dropped out of the Olympic<br>marathon miles from the<br>finish, she sobbed<br>uncontrollably. Margaret Okayo<br>knew the feeling. Okayo pulled<br>out of the marathon at the<br>15th mile with a left leg<br>injury, and she cried, too.<br>When she watched Radcliffe<br>quit, Okayo thought, \"Let's<br>cry together.\""
-          ],
-          [
-           "Tightness in the labour market<br>notwithstanding, the prospects<br>for hiring in the third<br>quarter are down from the<br>second quarter, according to<br>the new Manpower Employment<br>Outlook Survey."
-          ],
-          [
-           "Fans who can't get enough of<br>\"The Apprentice\" can visit a<br>new companion Web site each<br>week and watch an extra 40<br>minutes of video not broadcast<br>on the Thursday<br>show.&lt;br&gt;&lt;FONT<br>face=\"verdana,MS Sans<br>Serif,arial,helvetica\"<br>size=\"-2\"\\ color=\"#666666\"&gt;<br>&lt;B&gt;-Leslie<br>Walker&lt;/b&gt;&lt;/font&gt;"
-          ],
-          [
-           " ATLANTA (Sports Network) -<br>The Atlanta Hawks signed free<br>agent Kevin Willis on<br>Wednesday, nearly a decade<br>after the  veteran big man<br>ended an 11- year stint with<br>the team."
-          ],
-          [
-           "An adult Web site publisher is<br>suing Google, saying the<br>search engine company made it<br>easier for users to see the<br>site #39;s copyrighted nude<br>photographs without paying or<br>gaining access through the<br>proper channels."
-          ],
-          [
-           "When his right-front tire went<br>flying off early in the Ford<br>400, the final race of the<br>NASCAR Nextel Cup Series<br>season, Kurt Busch, it seemed,<br>was destined to spend his<br>offseason"
-          ],
-          [
-           "A Washington-based public<br>opinion firm has released the<br>results of an election day<br>survey of Nevada voters<br>showing 81 support for the<br>issuance of paper receipts<br>when votes are cast<br>electronically."
-          ],
-          [
-           "NAPSTER creator SHAWN FANNING<br>has revealed his plans for a<br>new licensed file-sharing<br>service with an almost<br>unlimited selection of tracks."
-          ],
-          [
-           " NEW YORK (Reuters) - The<br>dollar rose on Friday, after a<br>U.S. report showed consumer<br>prices in line with<br>expections,  reminding<br>investors that the Federal<br>Reserve was likely to<br>continue raising interest<br>rates, analysts said."
-          ],
-          [
-           "Brandon Backe and Woody<br>Williams pitched well last<br>night even though neither<br>earned a win. But their<br>outings will show up in the<br>record books."
-          ],
-          [
-           "President George W. Bush<br>pledged Friday to spend some<br>of the political capital from<br>his re-election trying to<br>secure a lasting Middle East<br>peace, and he envisioned the<br>establishment"
-          ],
-          [
-           "The Football Association today<br>decided not to charge David<br>Beckham with bringing the game<br>into disrepute. The FA made<br>the surprise announcement<br>after their compliance unit<br>ruled"
-          ],
-          [
-           "Last year some election<br>watchers made a bold<br>prediction that this<br>presidential election would<br>set a record: the first half<br>billion dollar campaign in<br>hard money alone."
-          ],
-          [
-           "It #39;s one more blow to<br>patients who suffer from<br>arthritis. Pfizer, the maker<br>of Celebrex, says it #39;s<br>painkiller poses an increased<br>risk of heart attacks to<br>patients using the drugs."
-          ],
-          [
-           "NEW DELHI - A bomb exploded<br>during an Independence Day<br>parade in India's remote<br>northeast on Sunday, killing<br>at least 15 people, officials<br>said, just an hour after Prime<br>Minister Manmohan Singh<br>pledged to fight terrorism.<br>The outlawed United Liberation<br>Front of Asom was suspected of<br>being behind the attack in<br>Assam state and a second one<br>later in the area, said Assam<br>Inspector General of Police<br>Khagen Sharma..."
-          ],
-          [
-           "Two separate studies by U.S.<br>researchers find that super<br>drug-resistant strains of<br>tuberculosis are at the<br>tipping point of a global<br>epidemic, and only small<br>changes could help them spread<br>quickly."
-          ],
-          [
-           " CRANS-SUR-SIERRE, Switzerland<br>(Reuters) - World number<br>three Ernie Els says he feels<br>a failure after narrowly<br>missing  out on three of the<br>year's four major<br>championships."
-          ],
-          [
-           "A UN envoy to Sudan will visit<br>Darfur tomorrow to check on<br>the government #39;s claim<br>that some 70,000 people<br>displaced by conflict there<br>have voluntarily returned to<br>their homes, a spokesman said."
-          ],
-          [
-           "Dell cut prices on some<br>servers and PCs by as much as<br>22 percent because it #39;s<br>paying less for parts. The<br>company will pass the savings<br>on components such as memory<br>and liquid crystal displays"
-          ],
-          [
-           "AP - Most of the presidential<br>election provisional ballots<br>rejected so far in Ohio came<br>from people who were not even<br>registered to vote, election<br>officials said after spending<br>nearly two weeks poring over<br>thousands of disputed votes."
-          ],
-          [
-           "Striker Bonaventure Kalou<br>netted twice to send AJ<br>Auxerre through to the first<br>knockout round of the UEFA Cup<br>at the expense of Rangers on<br>Wednesday."
-          ],
-          [
-           "AP - Rival inmates fought each<br>other with knives and sticks<br>Wednesday at a San Salvador<br>prison, leaving at least 31<br>people dead and two dozen<br>injured, officials said."
-          ],
-          [
-           "WASHINGTON: The European-<br>American Cassini-Huygens space<br>probe has detected traces of<br>ice flowing on the surface of<br>Saturn #39;s largest moon,<br>Titan, suggesting the<br>existence of an ice volcano,<br>NASA said Tuesday."
-          ],
-          [
-           "The economic growth rate in<br>the July-September period was<br>revised slightly downward from<br>an already weak preliminary<br>report, the government said<br>Wednesday."
-          ],
-          [
-           "All ISS systems continue to<br>function nominally, except<br>those noted previously or<br>below. Day 7 of joint<br>Exp.9/Exp.10 operations and<br>last full day before 8S<br>undocking."
-          ],
-          [
-           "BAGHDAD - Two Egyptian<br>employees of a mobile phone<br>company were seized when<br>gunmen stormed into their<br>Baghdad office, the latest in<br>a series of kidnappings in the<br>country."
-          ],
-          [
-           "BRISBANE, Australia - The body<br>of a whale resembling a giant<br>dolphin that washed up on an<br>eastern Australian beach has<br>intrigued local scientists,<br>who agreed Wednesday that it<br>is rare but are not sure just<br>how rare."
-          ],
-          [
-           " quot;Magic can happen. quot;<br>Sirius Satellite Radio<br>(nasdaq: SIRI - news - people<br>) may have signed Howard Stern<br>and the men #39;s NCAA<br>basketball tournaments, but XM<br>Satellite Radio (nasdaq: XMSR<br>- news - people ) has its<br>sights on your cell phone."
-          ],
-          [
-           "Trick-or-treaters can expect<br>an early Halloween treat on<br>Wednesday night, when a total<br>lunar eclipse makes the moon<br>look like a glowing pumpkin."
-          ],
-          [
-           "THIS weekend sees the<br>quot;other quot; showdown<br>between New York and New<br>England as the Jets and<br>Patriots clash in a battle of<br>the unbeaten teams."
-          ],
-          [
-           "Sifting through millions of<br>documents to locate a valuable<br>few is tedious enough, but<br>what happens when those files<br>are scattered across different<br>repositories?"
-          ],
-          [
-           "President Bush aims to<br>highlight American drug-<br>fighting aid in Colombia and<br>boost a conservative Latin<br>American leader with a stop in<br>the Andean nation where<br>thousands of security forces<br>are deployed to safeguard his<br>brief stay."
-          ],
-          [
-           "Dubai - Former Palestinian<br>security minister Mohammed<br>Dahlan said on Monday that a<br>quot;gang of mercenaries quot;<br>known to the Palestinian<br>police were behind the<br>shooting that resulted in two<br>deaths in a mourning tent for<br>Yasser Arafat in Gaza."
-          ],
-          [
-           "A drug company executive who<br>spoke out in support of<br>Montgomery County's proposal<br>to import drugs from Canada<br>and similar legislation before<br>Congress said that his company<br>has launched an investigation<br>into his political activities."
-          ],
-          [
-           "Nicolas Anelka is fit for<br>Manchester City #39;s<br>Premiership encounter against<br>Tottenham at Eastlands, but<br>the 13million striker will<br>have to be content with a<br>place on the bench."
-          ],
-          [
-           " PITTSBURGH (Reuters) - Ben<br>Roethlisberger passed for 183<br>yards and two touchdowns,<br>Hines Ward scored twice and<br>the  Pittsburgh Steelers<br>rolled to a convincing 27-3<br>victory over  Philadelphia on<br>Sunday for their second<br>straight win against an<br>undefeated opponent."
-          ],
-          [
-           " ATHENS (Reuters) - The U.S.<br>men's basketball team got<br>their  first comfortable win<br>at the Olympic basketball<br>tournament  Monday, routing<br>winless Angola 89-53 in their<br>final preliminary  round game."
-          ],
-          [
-           "A Frenchman working for Thales<br>SA, Europe #39;s biggest maker<br>of military electronics, was<br>shot dead while driving home<br>at night in the Saudi Arabian<br>city of Jeddah."
-          ],
-          [
-           "Often, the older a pitcher<br>becomes, the less effective he<br>is on the mound. Roger Clemens<br>apparently didn #39;t get that<br>memo. On Tuesday, the 42-year-<br>old Clemens won an<br>unprecedented"
-          ],
-          [
-           "NASA #39;s Mars rovers have<br>uncovered more tantalizing<br>evidence of a watery past on<br>the Red Planet, scientists<br>said Wednesday. And the<br>rovers, Spirit and<br>Opportunity, are continuing to<br>do their jobs months after<br>they were expected to ..."
-          ],
-          [
-           "SYDNEY (AFP) - Australia #39;s<br>commodity exports are forecast<br>to increase by 15 percent to a<br>record 95 billion dollars (71<br>million US), the government<br>#39;s key economic forecaster<br>said."
-          ],
-          [
-           "Google won a major legal<br>victory when a federal judge<br>ruled that the search engines<br>advertising policy does not<br>violate federal trademark<br>laws."
-          ],
-          [
-           "Intel Chief Technology Officer<br>Pat Gelsinger said on<br>Thursday, Sept. 9, that the<br>Internet needed to be upgraded<br>in order to deal with problems<br>that will become real issues<br>soon."
-          ],
-          [
-           "China will take tough measures<br>this winter to improve the<br>country #39;s coal mine safety<br>and prevent accidents. State<br>Councilor Hua Jianmin said<br>Thursday the industry should<br>take"
-          ],
-          [
-           "AT amp;T Corp. on Thursday<br>said it is reducing one fifth<br>of its workforce this year and<br>will record a non-cash charge<br>of approximately \\$11."
-          ],
-          [
-           "BAGHDAD (Iraq): As the<br>intensity of skirmishes<br>swelled on the soils of Iraq,<br>dozens of people were put to<br>death with toxic shots by the<br>US helicopter gunship, which<br>targeted the civilians,<br>milling around a burning<br>American vehicle in a Baghdad<br>street on"
-          ],
-          [
-           " LONDON (Reuters) - Television<br>junkies of the world, get<br>ready for \"Friends,\" \"Big<br>Brother\" and \"The Simpsons\" to<br>phone  home."
-          ],
-          [
-           "A rift appeared within Canada<br>#39;s music industry yesterday<br>as prominent artists called on<br>the CRTC to embrace satellite<br>radio and the industry warned<br>of lost revenue and job<br>losses."
-          ],
-          [
-           "Reuters - A key Iranian<br>nuclear facility which<br>the\\U.N.'s nuclear watchdog<br>has urged Tehran to shut down<br>is\\nearing completion, a<br>senior Iranian nuclear<br>official said on\\Sunday."
-          ],
-          [
-           "Spain's Football Federation<br>launches an investigation into<br>racist comments made by<br>national coach Luis Aragones."
-          ],
-          [
-           "Bricks and plaster blew inward<br>from the wall, as the windows<br>all shattered and I fell to<br>the floorwhether from the<br>shock wave, or just fright, it<br>wasn #39;t clear."
-          ],
-          [
-           "Surfersvillage Global Surf<br>News, 13 September 2004: - -<br>Hurricane Ivan, one of the<br>most powerful storms to ever<br>hit the Caribbean, killed at<br>least 16 people in Jamaica,<br>where it wrecked houses and<br>washed away roads on Saturday,<br>but appears to have spared"
-          ],
-          [
-           "I #39;M FEELING a little bit<br>better about the hundreds of<br>junk e-mails I get every day<br>now that I #39;ve read that<br>someone else has much bigger<br>e-mail troubles."
-          ],
-          [
-           "NEW DELHI: India and Pakistan<br>agreed on Monday to step up<br>cooperation in the energy<br>sector, which could lead to<br>Pakistan importing large<br>amounts of diesel fuel from<br>its neighbour, according to<br>Pakistani Foreign Minister<br>Khurshid Mehmood Kasuri."
-          ],
-          [
-           "LONDON, England -- A US<br>scientist is reported to have<br>observed a surprising jump in<br>the amount of carbon dioxide,<br>the main greenhouse gas."
-          ],
-          [
-           "Microsoft's antispam Sender ID<br>technology continues to get<br>the cold shoulder. Now AOL<br>adds its voice to a growing<br>chorus of businesses and<br>organizations shunning the<br>proprietary e-mail<br>authentication system."
-          ],
-          [
-           "PSV Eindhoven faces Arsenal at<br>Highbury tomorrow night on the<br>back of a free-scoring start<br>to the season. Despite losing<br>Mateja Kezman to Chelsea in<br>the summer, the Dutch side has<br>scored 12 goals in the first"
-          ],
-          [
-           "Through the World Community<br>Grid, your computer could help<br>address the world's health and<br>social problems."
-          ],
-          [
-           "Zimbabwe #39;s ruling Zanu-PF<br>old guard has emerged on top<br>after a bitter power struggle<br>in the deeply divided party<br>during its five-yearly<br>congress, which ended<br>yesterday."
-          ],
-          [
-           "PLAYER OF THE GAME: Playing<br>with a broken nose, Seattle<br>point guard Sue Bird set a<br>WNBA playoff record for<br>assists with 14, also pumping<br>in 10 points as the Storm<br>claimed the Western Conference<br>title last night."
-          ],
-          [
-           "Reuters - Thousands of<br>demonstrators pressing<br>to\\install Ukraine's<br>opposition leader as president<br>after a\\disputed election<br>launched fresh street rallies<br>in the capital\\for the third<br>day Wednesday."
-          ],
-          [
-           "Michael Jackson wishes he had<br>fought previous child<br>molestation claims instead of<br>trying to \"buy peace\", his<br>lawyer says."
-          ],
-          [
-           "North Korea says it will not<br>abandon its weapons programme<br>after the South admitted<br>nuclear activities."
-          ],
-          [
-           "While there is growing<br>attention to ongoing genocide<br>in Darfur, this has not<br>translated into either a<br>meaningful international<br>response or an accurate<br>rendering of the scale and<br>evident course of the<br>catastrophe."
-          ],
-          [
-           "A planned component for<br>Microsoft #39;s next version<br>of Windows is causing<br>consternation among antivirus<br>experts, who say that the new<br>module, a scripting platform<br>called Microsoft Shell, could<br>give birth to a whole new<br>generation of viruses and<br>remotely"
-          ],
-          [
-           "THE prosecution on terrorism<br>charges of extremist Islamic<br>cleric and accused Jemaah<br>Islamiah leader Abu Bakar<br>Bashir will rely heavily on<br>the potentially tainted<br>testimony of at least two<br>convicted Bali bombers, his<br>lawyers have said."
-          ],
-          [
-           "SAN JOSE, California Yahoo<br>will likely have a tough time<br>getting American courts to<br>intervene in a dispute over<br>the sale of Nazi memorabilia<br>in France after a US appeals<br>court ruling."
-          ],
-          [
-           "TORONTO (CP) - Glamis Gold of<br>Reno, Nev., is planning a<br>takeover bid for Goldcorp Inc.<br>of Toronto - but only if<br>Goldcorp drops its<br>\\$2.4-billion-Cdn offer for<br>another Canadian firm, made in<br>early December."
-          ],
-          [
-           "Clashes between US troops and<br>Sadr militiamen escalated<br>Thursday, as the US surrounded<br>Najaf for possible siege."
-          ],
-          [
-           "eBay Style director Constance<br>White joins Post fashion<br>editor Robin Givhan and host<br>Janet Bennett to discuss  how<br>to find trends and bargains<br>and pull together a wardrobe<br>online."
-          ],
-          [
-           "This week will see the release<br>of October new and existing<br>home sales, a measure of<br>strength in the housing<br>industry. But the short<br>holiday week will also leave<br>investors looking ahead to the<br>holiday travel season."
-          ],
-          [
-           "Frankfurt - World Cup winners<br>Brazil were on Monday drawn to<br>meet European champions<br>Greece, Gold Cup winners<br>Mexico and Asian champions<br>Japan at the 2005<br>Confederations Cup."
-          ],
-          [
-           "Third baseman Vinny Castilla<br>said he fits fine with the<br>Colorado youth movement, even<br>though he #39;ll turn 38 next<br>season and the Rockies are<br>coming off the second-worst"
-          ],
-          [
-           "With a sudden shudder, the<br>ground collapsed and the pipe<br>pushed upward, buckling into a<br>humped shape as Cornell<br>University scientists produced<br>the first simulated earthquake"
-          ],
-          [
-           "(Sports Network) - Two of the<br>top teams in the American<br>League tangle in a possible<br>American League Division<br>Series preview tonight, as the<br>West-leading Oakland Athletics<br>host the wild card-leading<br>Boston Red Sox for the first<br>of a three-game set at the"
-          ],
-          [
-           "over half the children in the<br>world - suffer extreme<br>deprivation because of war,<br>HIV/AIDS or poverty, according<br>to a report released yesterday<br>by the United Nations Children<br>#39;s Fund."
-          ],
-          [
-           "Microsoft (Quote, Chart) has<br>fired another salvo in its<br>ongoing spam battle, this time<br>against porn peddlers who don<br>#39;t keep their smut inside<br>the digital equivalent of a<br>quot;Brown Paper Wrapper."
-          ],
-          [
-           " BETHESDA, Md. (Reuters) - The<br>use of some antidepressant<br>drugs appears linked to an<br>increase in suicidal behavior<br>in  some children and teen-<br>agers, a U.S. advisory panel<br>concluded  on Tuesday."
-          ],
-          [
-           " SEATTLE (Reuters) - The next<br>version of the Windows<br>operating system, Microsoft<br>Corp.'s &lt;A HREF=\"http://www<br>.reuters.co.uk/financeQuoteLoo<br>kup.jhtml?ticker=MSFT.O<br>qtype=sym infotype=info<br>qcat=news\"&gt;MSFT.O&lt;/A&gt;<br>flagship product,  will ship<br>in 2006, the world's largest<br>software maker said on<br>Friday."
-          ],
-          [
-           "Reuters - Philippine rescue<br>teams\\evacuated thousands of<br>people from the worst flooding<br>in the\\central Luzon region<br>since the 1970s as hungry<br>victims hunted\\rats and birds<br>for food."
-          ],
-          [
-           "Inverness Caledonian Thistle<br>appointed Craig Brewster as<br>its new manager-player<br>Thursday although he #39;s<br>unable to play for the team<br>until January."
-          ],
-          [
-           "The Afghan president expresses<br>deep concern after a bomb<br>attack which left at least<br>seven people dead."
-          ],
-          [
-           " NEW YORK (Reuters) - U.S.<br>technology stocks opened lower<br>on  Thursday after a sales<br>warning from Applied Materials<br>Inc.  &lt;A HREF=\"http://www.i<br>nvestor.reuters.com/FullQuote.<br>aspx?ticker=AMAT.O target=/sto<br>cks/quickinfo/fullquote\"&gt;AM<br>AT.O&lt;/A&gt;, while weekly<br>jobless claims data met Wall<br>Street's  expectations,<br>leaving the Dow and S P 500<br>market measures  little<br>changed."
-          ],
-          [
-           "ATHENS, Greece -- Alan Shearer<br>converted an 87th-minute<br>penalty to give Newcastle a<br>1-0 win over Panionios in<br>their UEFA Cup Group D match."
-          ],
-          [
-           "Fossil remains of the oldest<br>and smallest known ancestor of<br>Tyrannosaurus rex, the world<br>#39;s favorite ferocious<br>dinosaur, have been discovered<br>in China with evidence that<br>its body was cloaked in downy<br>quot;protofeathers."
-          ],
-          [
-           "Derek Jeter turned a season<br>that started with a terrible<br>slump into one of the best in<br>his accomplished 10-year<br>career.  quot;I don #39;t<br>think there is any question,<br>quot; the New York Yankees<br>manager said."
-          ],
-          [
-           "Gardez (Afghanistan), Sept. 16<br>(Reuters): Afghan President<br>Hamid Karzai escaped an<br>assassination bid today when a<br>rocket was fired at his US<br>military helicopter as it was<br>landing in the southeastern<br>town of Gardez."
-          ],
-          [
-           "The Jets came up with four<br>turnovers by Dolphins<br>quarterback Jay Fiedler in the<br>second half, including an<br>interception returned 66 yards<br>for a touchdown."
-          ],
-          [
-           "China's Guo Jingjing easily<br>won the women's 3-meter<br>springboard last night, and Wu<br>Minxia made it a 1-2 finish<br>for the world's diving<br>superpower, taking the silver."
-          ],
-          [
-           "GREEN BAY, Wisconsin (Ticker)<br>-- Brett Favre will be hoping<br>his 200th consecutive start<br>turns out better than his last<br>two have against the St."
-          ],
-          [
-           "People fishing for sport are<br>doing far more damage to US<br>marine fish stocks than anyone<br>thought, accounting for nearly<br>a quarter of the"
-          ],
-          [
-           "When an NFL team opens with a<br>prolonged winning streak,<br>former Miami Dolphins coach<br>Don Shula and his players from<br>the 17-0 team of 1972 root<br>unabashedly for the next<br>opponent."
-          ],
-          [
-           "MIANNE Bagger, the transsexual<br>golfer who prompted a change<br>in the rules to allow her to<br>compete on the professional<br>circuit, made history<br>yesterday by qualifying to<br>play full-time on the Ladies<br>European Tour."
-          ],
-          [
-           "Great Britain #39;s gold medal<br>tally now stands at five after<br>Leslie Law was handed the<br>individual three day eventing<br>title - in a courtroom."
-          ],
-          [
-           "This particular index is<br>produced by the University of<br>Michigan Business School, in<br>partnership with the American<br>Society for Quality and CFI<br>Group, and is supported in<br>part by ForeSee Results"
-          ],
-          [
-           "CHICAGO : Interstate Bakeries<br>Corp., the maker of popular,<br>old-style snacks Twinkies and<br>Hostess Cakes, filed for<br>bankruptcy, citing rising<br>costs and falling sales."
-          ],
-          [
-           "Delta Air Lines (DAL:NYSE -<br>commentary - research) will<br>cut employees and benefits but<br>give a bigger-than-expected<br>role to Song, its low-cost<br>unit, in a widely anticipated<br>but still unannounced<br>overhaul, TheStreet.com has<br>learned."
-          ],
-          [
-           "PC World - Symantec, McAfee<br>hope raising virus-definition<br>fees will move users to\\<br>suites."
-          ],
-          [
-           "By byron kho. A consortium of<br>movie and record companies<br>joined forces on Friday to<br>request that the US Supreme<br>Court take another look at<br>peer-to-peer file-sharing<br>programs."
-          ],
-          [
-           "DUBLIN -- Prime Minister<br>Bertie Ahern urged Irish<br>Republican Army commanders<br>yesterday to meet what he<br>acknowledged was ''a heavy<br>burden quot;: disarming and<br>disbanding their organization<br>in support of Northern<br>Ireland's 1998 peace accord."
-          ],
-          [
-           "Mayor Tom Menino must be<br>proud. His Boston Red Sox just<br>won their first World Series<br>in 86 years and his Hyde Park<br>Blue Stars yesterday clinched<br>their first Super Bowl berth<br>in 32 years, defeating<br>O'Bryant, 14-0. Who would have<br>thought?"
-          ],
-          [
-           "While reproductive planning<br>and women #39;s equality have<br>improved substantially over<br>the past decade, says a United<br>Nations report, world<br>population will increase from<br>6.4 billion today to 8.9<br>billion by 2050, with the 50<br>poorest countries tripling in"
-          ],
-          [
-           "Instead of the skinny black<br>line, showing a hurricane<br>#39;s forecast track,<br>forecasters have drafted a<br>couple of alternative graphics<br>to depict where the storms<br>might go -- and they want your<br>opinion."
-          ],
-          [
-           "South Korea have appealed to<br>sport #39;s supreme legal body<br>in an attempt to award Yang<br>Tae-young the Olympic<br>gymnastics all-round gold<br>medal after a scoring error<br>robbed him of the title in<br>Athens."
-          ],
-          [
-           "BERLIN - Volkswagen AG #39;s<br>announcement this week that it<br>has forged a new partnership<br>deal with Malaysian carmaker<br>Proton comes as a strong euro<br>and Europe #39;s weak economic<br>performance triggers a fresh<br>wave of German investment in<br>Asia."
-          ],
-          [
-           "AP - Johan Santana had an<br>early lead and was well on his<br>way to his 10th straight win<br>when the rain started to fall."
-          ],
-          [
-           "ATHENS-In one of the biggest<br>shocks in Olympic judo<br>history, defending champion<br>Kosei Inoue was defeated by<br>Dutchman Elco van der Geest in<br>the men #39;s 100-kilogram<br>category Thursday."
-          ],
-          [
-           "Consumers in Dublin pay more<br>for basic goods and services<br>that people elsewhere in the<br>country, according to figures<br>released today by the Central<br>Statistics Office."
-          ],
-          [
-           "LIBERTY Media #39;s move last<br>week to grab up to 17.1 per<br>cent of News Corporation<br>voting stock has prompted the<br>launch of a defensive<br>shareholder rights plan."
-          ],
-          [
-           "NBC is adding a 5-second delay<br>to its Nascar telecasts after<br>Dale Earnhardt Jr. used a<br>vulgarity during a postrace<br>interview last weekend."
-          ],
-          [
-           "LONDON - Wild capuchin monkeys<br>can understand cause and<br>effect well enough to use<br>rocks to dig for food,<br>scientists have found.<br>Capuchin monkeys often use<br>tools and solve problems in<br>captivity and sometimes"
-          ],
-          [
-           "San Francisco Giants<br>outfielder Barry Bonds, who<br>became the third player in<br>Major League Baseball history<br>to hit 700 career home runs,<br>won the National League Most<br>Valuable Player Award"
-          ],
-          [
-           "The blue-chip Hang Seng Index<br>rose 171.88 points, or 1.22<br>percent, to 14,066.91. On<br>Friday, the index had slipped<br>31.58 points, or 0.2 percent."
-          ],
-          [
-           "BAR's Anthony Davidson and<br>Jenson Button set the pace at<br>the first Chinese Grand Prix."
-          ],
-          [
-           "Shares plunge after company<br>says its vein graft treatment<br>failed to show benefit in<br>late-stage test. CHICAGO<br>(Reuters) - Biotechnology<br>company Corgentech Inc."
-          ],
-          [
-           "WASHINGTON - Contradicting the<br>main argument for a war that<br>has cost more than 1,000<br>American lives, the top U.S.<br>arms inspector reported<br>Wednesday that he found no<br>evidence that Iraq produced<br>any weapons of mass<br>destruction after 1991..."
-          ],
-          [
-           "The key to hidden treasure<br>lies in your handheld GPS<br>unit. GPS-based \"geocaching\"<br>is a high-tech sport being<br>played by thousands of people<br>across the globe."
-          ],
-          [
-           "AFP - Style mavens will be<br>scanning the catwalks in Paris<br>this week for next spring's<br>must-have handbag, as a<br>sweeping exhibition at the<br>French capital's fashion and<br>textile museum reveals the bag<br>in all its forms."
-          ],
-          [
-           "Canadian Press - SAINT-<br>QUENTIN, N.B. (CP) - A major<br>highway in northern New<br>Brunswick  remained closed to<br>almost all traffic Monday, as<br>local residents protested<br>planned health care cuts."
-          ],
-          [
-           "The U.S. information tech<br>sector lost 403,300 jobs<br>between March 2001 and April<br>2004, and the market for tech<br>workers remains bleak,<br>according to a new report."
-          ],
-          [
-           " NAJAF, Iraq (Reuters) - A<br>radical Iraqi cleric leading a<br>Shi'ite uprising agreed on<br>Wednesday to disarm his<br>militia and  leave one of the<br>country's holiest Islamic<br>shrines after  warnings of an<br>onslaught by government<br>forces."
-          ],
-          [
-           "Saudi security forces have<br>killed a wanted militant near<br>the scene of a deadly shootout<br>Thursday. Officials say the<br>militant was killed in a<br>gunbattle Friday in the<br>northern town of Buraida,<br>hours after one"
-          ],
-          [
-           "Portsmouth chairman Milan<br>Mandaric said on Tuesday that<br>Harry Redknapp, who resigned<br>as manager last week, was<br>innocent of any wrong-doing<br>over agent or transfer fees."
-          ],
-          [
-           "This record is for all the<br>little guys, for all the<br>players who have to leg out<br>every hit instead of taking a<br>relaxing trot around the<br>bases, for all the batters<br>whose muscles aren #39;t"
-          ],
-          [
-           "Two South Africans acquitted<br>by a Zimbabwean court of<br>charges related to the alleged<br>coup plot in Equatorial Guinea<br>are to be questioned today by<br>the South African authorities."
-          ],
-          [
-           "Charlie Hodgson #39;s record-<br>equalling performance against<br>South Africa was praised by<br>coach Andy Robinson after the<br>Sale flyhalf scored 27 points<br>in England #39;s 32-16 victory<br>here at Twickenham on<br>Saturday."
-          ],
-          [
-           "com September 30, 2004, 11:11<br>AM PT. SanDisk announced<br>Thursday increased capacities<br>for several different flash<br>memory cards. The Sunnyvale,<br>Calif."
-          ],
-          [
-           "MOSCOW (CP) - Russia mourned<br>89 victims of a double air<br>disaster today as debate<br>intensified over whether the<br>two passenger liners could<br>have plunged almost<br>simultaneously from the sky by<br>accident."
-          ],
-          [
-           "US blue-chip stocks rose<br>slightly on Friday as<br>government data showed better-<br>than-expected demand in August<br>for durable goods other than<br>transportation equipment, but<br>climbing oil prices limited<br>gains."
-          ],
-          [
-           "BASEBALL Atlanta (NL):<br>Optioned P Roman Colon to<br>Greenville (Southern);<br>recalled OF Dewayne Wise from<br>Richmond (IL). Boston (AL):<br>Purchased C Sandy Martinez<br>from Cleveland (AL) and<br>assigned him to Pawtucket<br>(IL). Cleveland (AL): Recalled<br>OF Ryan Ludwick from Buffalo<br>(IL). Chicago (NL): Acquired<br>OF Ben Grieve from Milwaukee<br>(NL) for player to be named<br>and cash; acquired C Mike ..."
-          ],
-          [
-           "Australia #39;s prime minister<br>says a body found in Fallujah<br>is likely that of kidnapped<br>aid worker Margaret Hassan.<br>John Howard told Parliament a<br>videotape of an Iraqi<br>terrorist group executing a<br>Western woman appears to have<br>been genuine."
-          ],
-          [
-           "roundup Plus: Tech firms rally<br>against copyright bill...Apple<br>.Mac customers suffer e-mail<br>glitches...Alvarion expands<br>wireless broadband in China."
-          ],
-          [
-           "BRONX, New York (Ticker) --<br>Kelvim Escobar was the latest<br>Anaheim Angels #39; pitcher to<br>subdue the New York Yankees.<br>Escobar pitched seven strong<br>innings and Bengie Molina tied<br>a career-high with four hits,<br>including"
-          ],
-          [
-           "Business software maker<br>PeopleSoft Inc. said Monday<br>that it expects third-quarter<br>revenue to range between \\$680<br>million and \\$695 million,<br>above average Wall Street<br>estimates of \\$651."
-          ],
-          [
-           "Sep 08 - Vijay Singh revelled<br>in his status as the new world<br>number one after winning the<br>Deutsche Bank Championship by<br>three shots in Boston on<br>Monday."
-          ],
-          [
-           "Reuters - Enron Corp. ,<br>desperate to\\meet profit<br>targets, \"parked\" unwanted<br>power generating barges\\at<br>Merrill Lynch in a sham sale<br>designed to be reversed,<br>a\\prosecutor said on Tuesday<br>in the first criminal trial<br>of\\former executives at the<br>fallen energy company."
-          ],
-          [
-           " NEW YORK (Reuters) - The<br>dollar rebounded on Monday<br>after a  heavy selloff last<br>week, but analysts were<br>uncertain if the  rally could<br>hold as the drumbeat of<br>expectation began for to  the<br>December U.S. jobs report due<br>Friday."
-          ],
-          [
-           "AP - Their first debate less<br>than a week away, President<br>Bush and Democrat John Kerry<br>kept their public schedules<br>clear on Saturday and began to<br>focus on their prime-time<br>showdown."
-          ],
-          [
-           "Many people in golf are asking<br>that today. He certainly wasn<br>#39;t A-list and he wasn #39;t<br>Larry Nelson either. But you<br>couldn #39;t find a more solid<br>guy to lead the United States<br>into Ireland for the 2006<br>Ryder Cup Matches."
-          ],
-          [
-           "Coles Myer Ltd. Australia<br>#39;s biggest retailer,<br>increased second-half profit<br>by 26 percent after opening<br>fuel and convenience stores,<br>selling more-profitable<br>groceries and cutting costs."
-          ],
-          [
-           "MOSCOW: Us oil major<br>ConocoPhillips is seeking to<br>buy up to 25 in Russian oil<br>giant Lukoil to add billions<br>of barrels of reserves to its<br>books, an industry source<br>familiar with the matter said<br>on Friday."
-          ],
-          [
-           "Australian Stuart Appleby, who<br>was the joint second-round<br>leader, returned a two-over 74<br>to drop to third at three-<br>under while American Chris<br>DiMarco moved into fourth with<br>a round of 69."
-          ],
-          [
-           "PARIS Getting to the bottom of<br>what killed Yassar Arafat<br>could shape up to be an ugly<br>family tug-of-war. Arafat<br>#39;s half-brother and nephew<br>want copies of Arafat #39;s<br>medical records from the<br>suburban Paris hospital"
-          ],
-          [
-           "Red Hat is acquiring security<br>and authentication tools from<br>Netscape Security Solutions to<br>bolster its software arsenal.<br>Red Hat #39;s CEO and chairman<br>Matthew Szulik spoke about the<br>future strategy of the Linux<br>supplier."
-          ],
-          [
-           "With a doubleheader sweep of<br>the Minnesota Twins, the New<br>York Yankees moved to the<br>verge of clinching their<br>seventh straight AL East<br>title."
-          ],
-          [
-           "Global Web portal Yahoo! Inc.<br>Wednesday night made available<br>a beta version of a new search<br>service for videos. Called<br>Yahoo! Video Search, the<br>search engine crawls the Web<br>for different types of media<br>files"
-          ],
-          [
-           "Interactive posters at 25<br>underground stations are<br>helping Londoners travel<br>safely over Christmas."
-          ],
-          [
-           "Athens, Greece (Sports<br>Network) - The first official<br>track event took place this<br>morning and Italy #39;s Ivano<br>Brugnetti won the men #39;s<br>20km walk at the Summer<br>Olympics in Athens."
-          ],
-          [
-           " THE HAGUE (Reuters) - Former<br>Yugoslav President Slobodan<br>Milosevic condemned his war<br>crimes trial as a \"pure farce\"<br>on  Wednesday in a defiant<br>finish to his opening defense<br>statement  against charges of<br>ethnic cleansing in the<br>Balkans."
-          ],
-          [
-           "US Airways Group (otc: UAIRQ -<br>news - people ) on Thursday<br>said it #39;ll seek a court<br>injunction to prohibit a<br>strike by disaffected unions."
-          ],
-          [
-           "Shares in Unilever fall after<br>the Anglo-Dutch consumer goods<br>giant issued a surprise<br>profits warning."
-          ],
-          [
-           "SAN FRANCISCO (CBS.MW) - The<br>Canadian government will sell<br>its 19 percent stake in Petro-<br>Canada for \\$2.49 billion,<br>according to the final<br>prospectus filed with the US<br>Securities and Exchange<br>Commission Thursday."
-          ],
-          [
-           "Champions Arsenal opened a<br>five-point lead at the top of<br>the Premier League after a 4-0<br>thrashing of Charlton Athletic<br>at Highbury Saturday."
-          ],
-          [
-           "The Redskins and Browns have<br>traded field goals and are<br>tied, 3-3, in the first<br>quarter in Cleveland."
-          ],
-          [
-           " HYDERABAD, India (Reuters) -<br>Microsoft Corp. &lt;A HREF=\"ht<br>tp://www.investor.reuters.com/<br>FullQuote.aspx?ticker=MSFT.O t<br>arget=/stocks/quickinfo/fullqu<br>ote\"&gt;MSFT.O&lt;/A&gt; will<br>hire several hundred new staff<br>at its new Indian campus in<br>the  next year, its chief<br>executive said on Monday, in a<br>move aimed  at strengthening<br>its presence in Asia's fourth-<br>biggest economy."
-          ],
-          [
-           "According to Swiss<br>authorities, history was made<br>Sunday when 2723 people in<br>four communities in canton<br>Geneva, Switzerland, voted<br>online in a national federal<br>referendum."
-          ],
-          [
-           " GUWAHATI, India (Reuters) -<br>People braved a steady drizzle<br>to come out to vote in a<br>remote northeast Indian state<br>on  Thursday, as troops<br>guarded polling stations in an<br>election  being held under the<br>shadow of violence."
-          ],
-          [
-           "AFP - Three of the nine<br>Canadian sailors injured when<br>their newly-delivered,<br>British-built submarine caught<br>fire in the North Atlantic<br>were airlifted Wednesday to<br>hospital in northwest Ireland,<br>officials said."
-          ],
-          [
-           "Alitalia SpA, Italy #39;s<br>largest airline, reached an<br>agreement with its flight<br>attendants #39; unions to cut<br>900 jobs, qualifying the<br>company for a government<br>bailout that will keep it in<br>business for another six<br>months."
-          ],
-          [
-           "BAGHDAD, Iraq - A series of<br>strong explosions shook<br>central Baghdad near dawn<br>Sunday, and columns of thick<br>black smoke rose from the<br>Green Zone where U.S. and<br>Iraqi government offices are<br>located..."
-          ],
-          [
-           "Forget September call-ups. The<br>Red Sox may tap their minor<br>league system for an extra<br>player or two when the rules<br>allow them to expand their<br>25-man roster Wednesday, but<br>any help from the farm is<br>likely to pale against the<br>abundance of talent they gain<br>from the return of numerous<br>players, including Trot Nixon<br>, from the disabled list."
-          ],
-          [
-           "P amp;Os cutbacks announced<br>today are the result of the<br>waves of troubles that have<br>swamped the ferry industry of<br>late. Some would say the<br>company has done well to<br>weather the storms for as long<br>as it has."
-          ],
-          [
-           "Sven-Goran Eriksson may gamble<br>by playing goalkeeper Paul<br>Robinson and striker Jermain<br>Defoe in Poland."
-          ],
-          [
-           "Foreign Secretary Jack Straw<br>has flown to Khartoum on a<br>mission to pile the pressure<br>on the Sudanese government to<br>tackle the humanitarian<br>catastrophe in Darfur."
-          ],
-          [
-           "  Nextel was the big story in<br>telecommunications yesterday,<br>thanks to the Reston company's<br>mega-merger with Sprint, but<br>the future of wireless may be<br>percolating in dozens of<br>Washington area start-ups."
-          ],
-          [
-           "Reuters - A senior U.S.<br>official said on<br>Wednesday\\deals should not be<br>done with hostage-takers ahead<br>of the\\latest deadline set by<br>Afghan Islamic militants who<br>have\\threatened to kill three<br>kidnapped U.N. workers."
-          ],
-          [
-           "I have been anticipating this<br>day like a child waits for<br>Christmas. Today, PalmOne<br>introduces the Treo 650, the<br>answer to my  quot;what smart<br>phone will I buy?"
-          ],
-          [
-           "THOUSAND OAKS -- Anonymity is<br>only a problem if you want it<br>to be, and it is obvious Vijay<br>Singh doesn #39;t want it to<br>be. Let others chase fame."
-          ],
-          [
-           "Wikipedia has surprised Web<br>watchers by growing fast and<br>maturing into one of the most<br>popular reference sites."
-          ],
-          [
-           "It only takes 20 minutes on<br>the Internet for an<br>unprotected computer running<br>Microsoft Windows to be taken<br>over by a hacker. Any personal<br>or financial information<br>stored"
-          ],
-          [
-           "TORONTO (CP) - Russia #39;s<br>Severstal has made an offer to<br>buy Stelco Inc., in what #39;s<br>believed to be one of several<br>competing offers emerging for<br>the restructuring but<br>profitable Hamilton steel<br>producer."
-          ],
-          [
-           "Prices for flash memory cards<br>-- the little modules used by<br>digital cameras, handheld<br>organizers, MP3 players and<br>cell phones to store pictures,<br>music and other data -- are<br>headed down -- way down. Past<br>trends suggest that prices<br>will drop 35 percent a year,<br>but industry analysts think<br>that rate will be more like 40<br>or 50 percent this year and<br>next, due to more<br>manufacturers entering the<br>market."
-          ],
-          [
-           "Walt Disney Co. #39;s<br>directors nominated Michael<br>Ovitz to serve on its board<br>for another three years at a<br>meeting just weeks before<br>forcing him out of his job as"
-          ],
-          [
-           "The European Union, Japan,<br>Brazil and five other<br>countries won World Trade<br>Organization approval to<br>impose tariffs worth more than<br>\\$150 million a year on<br>imports from the United"
-          ],
-          [
-           "Industrial conglomerate<br>Honeywell International on<br>Wednesday said it has filed a<br>lawsuit against 34 electronics<br>companies including Apple<br>Computer and Eastman Kodak,<br>claiming patent infringement<br>of its liquid crystal display<br>technology."
-          ],
-          [
-           "Sinn Fein leader Gerry Adams<br>has put the pressure for the<br>success or failure of the<br>Northern Ireland assembly<br>talks firmly on the shoulders<br>of Ian Paisley."
-          ],
-          [
-           "Australia #39;s Computershare<br>has agreed to buy EquiServe of<br>the United States for US\\$292<br>million (\\$423 million),<br>making it the largest US share<br>registrar and driving its<br>shares up by a third."
-          ],
-          [
-           "David Coulthard #39;s season-<br>long search for a Formula One<br>drive next year is almost<br>over. Negotiations between Red<br>Bull Racing and Coulthard, who<br>tested for the Austrian team<br>for the first time"
-          ],
-          [
-           "Interest rates on short-term<br>Treasury securities were mixed<br>in yesterday's auction. The<br>Treasury Department sold \\$18<br>billion in three-month bills<br>at a discount rate of 1.640<br>percent, up from 1.635 percent<br>last week. An additional \\$16<br>billion was sold in six-month<br>bills at a rate of 1.840<br>percent, down from 1.860<br>percent."
-          ],
-          [
-           "Two top executives of scandal-<br>tarred insurance firm Marsh<br>Inc. were ousted yesterday,<br>the company said, the latest<br>casualties of an industry<br>probe by New York's attorney<br>general."
-          ],
-          [
-           "AP - Southern California<br>tailback LenDale White<br>remembers Justin Holland from<br>high school. The Colorado<br>State quarterback made quite<br>an impression."
-          ],
-          [
-           "TIM HENMAN last night admitted<br>all of his energy has been<br>drained away as he bowed out<br>of the Madrid Masters. The top<br>seed, who had a blood test on<br>Wednesday to get to the bottom<br>of his fatigue, went down"
-          ],
-          [
-           "USDA #39;s Animal Plant Health<br>Inspection Service (APHIS)<br>this morning announced it has<br>confirmed a detection of<br>soybean rust from two test<br>plots at Louisiana State<br>University near Baton Rouge,<br>Louisiana."
-          ],
-          [
-           " JAKARTA (Reuters) - President<br>Megawati Sukarnoputri urged<br>Indonesians on Thursday to<br>accept the results of the<br>country's  first direct<br>election of a leader, but<br>stopped short of  conceding<br>defeat."
-          ],
-          [
-           "ISLAMABAD: Pakistan early<br>Monday test-fired its<br>indigenously developed short-<br>range nuclear-capable Ghaznavi<br>missile, the Inter Services<br>Public Relations (ISPR) said<br>in a statement."
-          ],
-          [
-           "While the US software giant<br>Microsoft has achieved almost<br>sweeping victories in<br>government procurement<br>projects in several Chinese<br>provinces and municipalities,<br>the process"
-          ],
-          [
-           "Mexican Cemex, being the third<br>largest cement maker in the<br>world, agreed to buy its<br>British competitor - RMC Group<br>- for \\$5.8 billion, as well<br>as their debts in order to<br>expand their activity on the<br>building materials market of<br>the USA and Europe."
-          ],
-          [
-           "Microsoft Corp. has delayed<br>automated distribution of a<br>major security upgrade to its<br>Windows XP Professional<br>operating system, citing a<br>desire to give companies more<br>time to test it."
-          ],
-          [
-           "The trial of a man accused of<br>murdering York backpacker<br>Caroline Stuttle begins in<br>Australia."
-          ],
-          [
-           "Gateway computers will be more<br>widely available at Office<br>Depot, in the PC maker #39;s<br>latest move to broaden<br>distribution at retail stores<br>since acquiring rival<br>eMachines this year."
-          ],
-          [
-           "ATHENS -- US sailors needed a<br>big day to bring home gold and<br>bronze medals from the sailing<br>finale here yesterday. But<br>rolling the dice on windshifts<br>and starting tactics backfired<br>both in Star and Tornado<br>classes, and the Americans had<br>to settle for a single silver<br>medal."
-          ],
-          [
-           "Intel Corp. is refreshing its<br>64-bit Itanium 2 processor<br>line with six new chips based<br>on the Madison core. The new<br>processors represent the last<br>single-core Itanium chips that<br>the Santa Clara, Calif."
-          ],
-          [
-           "The  world's largest insurance<br>group pays \\$126m in fines as<br>part of a settlement with US<br>regulators over its dealings<br>with two firms."
-          ],
-          [
-           "BRUSSELS: The EU sought<br>Wednesday to keep pressure on<br>Turkey over its bid to start<br>talks on joining the bloc, as<br>last-minute haggling seemed<br>set to go down to the wire at<br>a summit poised to give a<br>green light to Ankara."
-          ],
-          [
-           "AP - J. Cofer Black, the State<br>Department official in charge<br>of counterterrorism, is<br>leaving government in the next<br>few weeks."
-          ],
-          [
-           "For the first time, broadband<br>connections are reaching more<br>than half (51 percent) of the<br>American online population at<br>home, according to measurement<br>taken in July by<br>Nielsen/NetRatings, a<br>Milpitas-based Internet<br>audience measurement and<br>research ..."
-          ],
-          [
-           "AP - Cavaliers forward Luke<br>Jackson was activated<br>Wednesday after missing five<br>games because of tendinitis in<br>his right knee. Cleveland also<br>placed forward Sasha Pavlovic<br>on the injured list."
-          ],
-          [
-           "The tobacco firm John Player<br>amp; Sons has announced plans<br>to lay off 90 workers at its<br>cigarette factory in Dublin.<br>The company said it was<br>planning a phased closure of<br>the factory between now and<br>February as part of a review<br>of its global operations."
-          ],
-          [
-           "AP - Consumers borrowed more<br>freely in September,<br>especially when it came to<br>racking up charges on their<br>credit cards, the Federal<br>Reserve reported Friday."
-          ],
-          [
-           "AFP - The United States<br>presented a draft UN<br>resolution that steps up the<br>pressure on Sudan over the<br>crisis in Darfur, including<br>possible international<br>sanctions against its oil<br>sector."
-          ],
-          [
-           "AFP - At least 33 people were<br>killed and dozens others<br>wounded when two bombs ripped<br>through a congregation of<br>Sunni Muslims in Pakistan's<br>central city of Multan, police<br>said."
-          ],
-          [
-           "Bold, innovative solutions are<br>key to addressing the rapidly<br>rising costs of higher<br>education and the steady<br>reduction in government-<br>subsidized help to finance<br>such education."
-          ],
-          [
-           "Just as the PhD crowd emerge<br>with different interpretations<br>of today's economy, everyday<br>Americans battling to balance<br>the checkbook hold diverse<br>opinions about where things<br>stand now and in the future."
-          ],
-          [
-           "The Brisbane Lions #39;<br>football manager stepped out<br>of the changerooms just before<br>six o #39;clock last night and<br>handed one of the milling<br>supporters a six-pack of beer."
-          ],
-          [
-           "Authorities here are always<br>eager to show off their<br>accomplishments, so when<br>Beijing hosted the World<br>Toilet Organization conference<br>last week, delegates were<br>given a grand tour of the<br>city's toilets."
-          ],
-          [
-           "Cavaliers owner Gordon Gund is<br>in  quot;serious quot;<br>negotiations to sell the NBA<br>franchise, which has enjoyed a<br>dramatic financial turnaround<br>since the arrival of star<br>LeBron James."
-          ],
-          [
-           "WASHINGTON Trying to break a<br>deadlock on energy policy, a<br>diverse group of<br>environmentalists, academics<br>and former government<br>officials were to publish a<br>report on Wednesday that<br>presents strategies for making<br>the United States cleaner,<br>more competitive"
-          ],
-          [
-           "After two days of gloom, China<br>was back on the winning rails<br>on Thursday with Liu Chunhong<br>winning a weightlifting title<br>on her record-shattering binge<br>and its shuttlers contributing<br>two golds in the cliff-hanging<br>finals."
-          ],
-          [
-           "One question that arises<br>whenever a player is linked to<br>steroids is, \"What would he<br>have done without them?\"<br>Baseball history whispers an<br>answer."
-          ],
-          [
-           "AFP - A series of torchlight<br>rallies and vigils were held<br>after darkness fell on this<br>central Indian city as victims<br>and activists jointly<br>commemorated a night of horror<br>20 years ago when lethal gas<br>leaked from a pesticide plant<br>and killed thousands."
-          ],
-          [
-           "Consider the New World of<br>Information - stuff that,<br>unlike the paper days of the<br>past, doesn't always<br>physically exist. You've got<br>notes, scrawlings and<br>snippets, Web graphics, photos<br>and sounds. Stuff needs to be<br>cut, pasted, highlighted,<br>annotated, crossed out,<br>dragged away. And, as Ross<br>Perot used to say (or maybe it<br>was Dana Carvey impersonating<br>him), don't forget the graphs<br>and charts."
-          ],
-          [
-           "The second round of the<br>Canadian Open golf tournament<br>continues Saturday Glenn Abbey<br>Golf Club in Oakville,<br>Ontario, after play was<br>suspended late Friday due to<br>darkness."
-          ],
-          [
-           "A consortium led by Royal<br>Dutch/Shell Group that is<br>developing gas reserves off<br>Russia #39;s Sakhalin Island<br>said Thursday it has struck a<br>US\\$6 billion (euro4."
-          ],
-          [
-           "Major Hollywood studios on<br>Tuesday announced scores of<br>lawsuits against computer<br>server operators worldwide,<br>including eDonkey, BitTorrent<br>and DirectConnect networks,<br>for allowing trading of<br>pirated movies."
-          ],
-          [
-           "A massive plan to attract the<br>2012 Summer Olympics to New<br>York, touting the city's<br>diversity, financial and media<br>power, was revealed Wednesday."
-          ],
-          [
-           "A Zimbabwe court Friday<br>convicted a British man<br>accused of leading a coup plot<br>against the government of oil-<br>rich Equatorial Guinea on<br>weapons charges, but acquitted<br>most of the 69 other men held<br>with him."
-          ],
-          [
-           "But will Wi-Fi, high-<br>definition broadcasts, mobile<br>messaging and other<br>enhancements improve the game,<br>or wreck it?\\&lt;br /&gt;<br>Photos of tech-friendly parks\\"
-          ],
-          [
-           "An audit by international<br>observers supported official<br>elections results that gave<br>President Hugo Chavez a<br>victory over a recall vote<br>against him, the secretary-<br>general of the Organisation of<br>American States announced."
-          ],
-          [
-           "Canadian Press - TORONTO (CP)<br>- The fatal stabbing of a<br>young man trying to eject<br>unwanted party guests from his<br>family home, the third such<br>knifing in just weeks, has<br>police worried about a<br>potentially fatal holiday<br>recipe: teens, alcohol and<br>knives."
-          ],
-          [
-           "NICK Heidfeld #39;s test with<br>Williams has been brought<br>forward after BAR blocked<br>plans for Anthony Davidson to<br>drive its Formula One rival<br>#39;s car."
-          ],
-          [
-           "MOSCOW - A female suicide<br>bomber set off a shrapnel-<br>filled explosive device<br>outside a busy Moscow subway<br>station on Tuesday night,<br>officials said, killing 10<br>people and injuring more than<br>50."
-          ],
-          [
-           "Grace Park closed with an<br>eagle and two birdies for a<br>7-under-par 65 and a two-<br>stroke lead after three rounds<br>of the Wachovia LPGA Classic<br>on Saturday."
-          ],
-          [
-           "ABIDJAN (AFP) - Two Ivory<br>Coast military aircraft<br>carried out a second raid on<br>Bouake, the stronghold of the<br>former rebel New Forces (FN)<br>in the divided west African<br>country, a French military<br>source told AFP."
-          ],
-          [
-           "Carlos Beltran drives in five<br>runs to carry the Astros to a<br>12-3 rout of the Braves in<br>Game 5 of their first-round NL<br>playoff series."
-          ],
-          [
-           "On-demand viewing isn't just<br>for TiVo owners anymore.<br>Television over internet<br>protocol, or TVIP, offers<br>custom programming over<br>standard copper wires."
-          ],
-          [
-           "Apple is recalling 28,000<br>faulty batteries for its<br>15-inch Powerbook G4 laptops."
-          ],
-          [
-           "Since Lennox Lewis #39;s<br>retirement, the heavyweight<br>division has been knocked for<br>having more quantity than<br>quality. Eight heavyweights on<br>Saturday night #39;s card at<br>Madison Square Garden hope to<br>change that perception, at<br>least for one night."
-          ],
-          [
-           "PalmSource #39;s European<br>developer conference is going<br>on now in Germany, and this<br>company is using this<br>opportunity to show off Palm<br>OS Cobalt 6.1, the latest<br>version of its operating<br>system."
-          ],
-          [
-           "The former Chief Executive<br>Officer of Computer Associates<br>was indicted by a federal<br>grand jury in New York<br>Wednesday for allegedly<br>participating in a massive<br>fraud conspiracy and an<br>elaborate cover up of a scheme<br>that cost investors"
-          ],
-          [
-           "Speaking to members of the<br>Massachusetts Software<br>Council, Microsoft CEO Steve<br>Ballmer touted a bright future<br>for technology but warned his<br>listeners to think twice<br>before adopting open-source<br>products like Linux."
-          ],
-          [
-           "MIAMI - The Trillian instant<br>messaging (IM) application<br>will feature several<br>enhancements in its upcoming<br>version 3.0, including new<br>video and audio chat<br>capabilities, enhanced IM<br>session logs and integration<br>with the Wikipedia online<br>encyclopedia, according to<br>information posted Friday on<br>the product developer's Web<br>site."
-          ],
-          [
-           "Honeywell International Inc.,<br>the world #39;s largest<br>supplier of building controls,<br>agreed to buy Novar Plc for<br>798 million pounds (\\$1.53<br>billion) to expand its<br>security, fire and<br>ventilation-systems business<br>in Europe."
-          ],
-          [
-           "San Francisco investment bank<br>Thomas Weisel Partners on<br>Thursday agreed to pay \\$12.5<br>million to settle allegations<br>that some of the stock<br>research the bank published<br>during the Internet boom was<br>tainted by conflicts of<br>interest."
-          ],
-          [
-           "AFP - A state of civil<br>emergency in the rebellion-hit<br>Indonesian province of Aceh<br>has been formally extended by<br>six month, as the country's<br>president pledged to end<br>violence there without foreign<br>help."
-          ],
-          [
-           "Forbes.com - Peter Frankling<br>tapped an unusual source to<br>fund his new business, which<br>makes hot-dog-shaped ice cream<br>treats known as Cool Dogs: Two<br>investors, one a friend and<br>the other a professional<br>venture capitalist, put in<br>more than  #36;100,000 each<br>from their Individual<br>Retirement Accounts. Later<br>Franklin added  #36;150,000<br>from his own IRA."
-          ],
-          [
-           "Reuters - Online DVD rental<br>service Netflix Inc.\\and TiVo<br>Inc., maker of a digital video<br>recorder, on Thursday\\said<br>they have agreed to develop a<br>joint entertainment\\offering,<br>driving shares of both<br>companies higher."
-          ],
-          [
-           "A San Diego insurance<br>brokerage has been sued by New<br>York Attorney General Elliot<br>Spitzer for allegedly<br>soliciting payoffs in exchange<br>for steering business to<br>preferred insurance companies."
-          ],
-          [
-           "The European Union agreed<br>Monday to lift penalties that<br>have cost American exporters<br>\\$300 million, following the<br>repeal of a US corporate tax<br>break deemed illegal under<br>global trade rules."
-          ],
-          [
-           "US Secretary of State Colin<br>Powell on Monday said he had<br>spoken to both Indian Foreign<br>Minister K Natwar Singh and<br>his Pakistani counterpart<br>Khurshid Mahmud Kasuri late<br>last week before the two met<br>in New Delhi this week for<br>talks."
-          ],
-          [
-           "NEW YORK - Victor Diaz hit a<br>tying, three-run homer with<br>two outs in the ninth inning,<br>and Craig Brazell's first<br>major league home run in the<br>11th gave the New York Mets a<br>stunning 4-3 victory over the<br>Chicago Cubs on Saturday.<br>The Cubs had much on the<br>line..."
-          ],
-          [
-           "AFP - At least 54 people have<br>died and more than a million<br>have fled their homes as<br>torrential rains lashed parts<br>of India and Bangladesh,<br>officials said."
-          ],
-          [
-           "LOS ANGELES - California has<br>adopted the world's first<br>rules to reduce greenhouse<br>emissions for autos, taking<br>what supporters see as a<br>dramatic step toward cleaning<br>up the environment but also<br>ensuring higher costs for<br>drivers.    The rules may lead<br>to sweeping changes in<br>vehicles nationwide,<br>especially if other states opt<br>to follow California's<br>example..."
-          ],
-          [
-           " LONDON (Reuters) - European<br>stock markets scaled<br>near-2-1/2  year highs on<br>Friday as oil prices held<br>below \\$48 a barrel, and  the<br>euro held off from mounting<br>another assault on \\$1.30 but<br>hovered near record highs<br>against the dollar."
-          ],
-          [
-           "Tim Duncan had 17 points and<br>10 rebounds, helping the San<br>Antonio Spurs to a 99-81<br>victory over the New York<br>Kicks. This was the Spurs<br>fourth straight win this<br>season."
-          ],
-          [
-           "Nagpur: India suffered a<br>double blow even before the<br>first ball was bowled in the<br>crucial third cricket Test<br>against Australia on Tuesday<br>when captain Sourav Ganguly<br>and off spinner Harbhajan<br>Singh were ruled out of the<br>match."
-          ],
-          [
-           "AFP - Republican and<br>Democratic leaders each<br>declared victory after the<br>first head-to-head sparring<br>match between President George<br>W. Bush and Democratic<br>presidential hopeful John<br>Kerry."
-          ],
-          [
-           "THIS YULE is all about console<br>supply and there #39;s<br>precious little units around,<br>it has emerged. Nintendo has<br>announced that it is going to<br>ship another 400,000 units of<br>its DS console to the United<br>States to meet the shortfall<br>there."
-          ],
-          [
-           "Annual global semiconductor<br>sales growth will probably<br>fall by half in 2005 and<br>memory chip sales could<br>collapse as a supply glut saps<br>prices, world-leading memory<br>chip maker Samsung Electronics<br>said on Monday."
-          ],
-          [
-           "NEW YORK - Traditional phone<br>systems may be going the way<br>of the Pony Express. Voice-<br>over-Internet Protocol,<br>technology that allows users<br>to make and receive phone<br>calls using the Internet, is<br>giving the old circuit-<br>switched system a run for its<br>money."
-          ],
-          [
-           "AP - Former New York Yankees<br>hitting coach Rick Down was<br>hired for the same job by the<br>Mets on Friday, reuniting him<br>with new manager Willie<br>Randolph."
-          ],
-          [
-           "Last night in New York, the UN<br>secretary-general was given a<br>standing ovation - a robust<br>response to a series of<br>attacks in past weeks."
-          ],
-          [
-           "FILDERSTADT (Germany) - Amelie<br>Mauresmo and Lindsay Davenport<br>took their battle for the No.<br>1 ranking and Porsche Grand<br>Prix title into the semi-<br>finals with straight-sets<br>victories on Friday."
-          ],
-          [
-           "Reuters - The company behind<br>the Atkins Diet\\on Friday<br>shrugged off a recent decline<br>in interest in low-carb\\diets<br>as a seasonal blip, and its<br>marketing chief said\\consumers<br>would cut out starchy foods<br>again after picking up\\pounds<br>over the holidays."
-          ],
-          [
-           "There #39;s something to be<br>said for being the  quot;first<br>mover quot; in an industry<br>trend. Those years of extra<br>experience in tinkering with a<br>new idea can be invaluable in<br>helping the first"
-          ],
-          [
-           "JOHANNESBURG -- Meeting in<br>Nigeria four years ago,<br>African leaders set a goal<br>that 60 percent of children<br>and pregnant women in malaria-<br>affected areas around the<br>continent would be sleeping<br>under bed nets by the end of<br>2005."
-          ],
-          [
-           "AP - The first U.S. cases of<br>the fungus soybean rust, which<br>hinders plant growth and<br>drastically cuts crop<br>production, were found at two<br>research sites in Louisiana,<br>officials said Wednesday."
-          ],
-          [
-           "Carter returned, but it was<br>running back Curtis Martin and<br>the offensive line that put<br>the Jets ahead. Martin rushed<br>for all but 10 yards of a<br>45-yard drive that stalled at<br>the Cardinals 10."
-          ],
-          [
-           " quot;There #39;s no way<br>anyone would hire them to<br>fight viruses, quot; said<br>Sophos security analyst Gregg<br>Mastoras.  quot;For one, no<br>security firm could maintain<br>its reputation by employing<br>hackers."
-          ],
-          [
-           "Symantec has revoked its<br>decision to blacklist a<br>program that allows Web<br>surfers in China to browse<br>government-blocked Web sites.<br>The move follows reports that<br>the firm labelled the Freegate<br>program, which"
-          ],
-          [
-           " NEW YORK (Reuters) - Shares<br>of Chiron Corp. &lt;A HREF=\"ht<br>tp://www.investor.reuters.com/<br>FullQuote.aspx?ticker=CHIR.O t<br>arget=/stocks/quickinfo/fullqu<br>ote\"&gt;CHIR.O&lt;/A&gt; fell<br>7  percent before the market<br>open on Friday, a day after<br>the  biopharmaceutical company<br>said it is delaying shipment<br>of its  flu vaccine, Fluvirin,<br>because lots containing 4<br>million  vaccines do not meet<br>product sterility standards."
-          ],
-          [
-           "The nation's top<br>telecommunications regulator<br>said yesterday he will push --<br>before the next president is<br>inaugurated -- to protect<br>fledgling Internet telephone<br>services from getting taxed<br>and heavily regulated by the<br>50 state governments."
-          ],
-          [
-           "Microsoft has signed a pact to<br>work with the United Nations<br>Educational, Scientific and<br>Cultural Organization (UNESCO)<br>to increase computer use,<br>Internet access and teacher<br>training in developing<br>countries."
-          ],
-          [
-           "DENVER (Ticker) -- Jake<br>Plummer more than made up for<br>a lack of a running game.<br>Plummer passed for 294 yards<br>and two touchdowns as the<br>Denver Broncos posted a 23-13<br>victory over the San Diego<br>Chargers in a battle of AFC<br>West Division rivals."
-          ],
-          [
-           "DALLAS -- Belo Corp. said<br>yesterday that it would cut<br>250 jobs, more than half of<br>them at its flagship<br>newspaper, The Dallas Morning<br>News, and that an internal<br>investigation into circulation<br>overstatements"
-          ],
-          [
-           "AP - Duke Bainum outspent Mufi<br>Hannemann in Honolulu's most<br>expensive mayoral race, but<br>apparently failed to garner<br>enough votes in Saturday's<br>primary to claim the office<br>outright."
-          ],
-          [
-           "roundup Plus: Microsoft tests<br>Windows Marketplace...Nortel<br>delays financials<br>again...Microsoft updates<br>SharePoint."
-          ],
-          [
-           "The Federal Reserve still has<br>some way to go to restore US<br>interest rates to more normal<br>levels, Philadelphia Federal<br>Reserve President Anthony<br>Santomero said on Monday."
-          ],
-          [
-           "It took all of about five<br>minutes of an introductory<br>press conference Wednesday at<br>Heritage Hall for USC<br>basketball to gain something<br>it never really had before."
-          ],
-          [
-           "Delta Air Lines (DAL.N: Quote,<br>Profile, Research) said on<br>Wednesday its auditors have<br>expressed doubt about the<br>airline #39;s financial<br>viability."
-          ],
-          [
-           "POLITICIANS and aid agencies<br>yesterday stressed the<br>importance of the media in<br>keeping the spotlight on the<br>appalling human rights abuses<br>taking place in the Darfur<br>region of Sudan."
-          ],
-          [
-           "AP - The Boston Red Sox looked<br>at the out-of-town scoreboard<br>and could hardly believe what<br>they saw. The New York Yankees<br>were trailing big at home<br>against the Cleveland Indians<br>in what would be the worst<br>loss in the 101-year history<br>of the storied franchise."
-          ],
-          [
-           "The Red Sox will either<br>complete an amazing comeback<br>as the first team to rebound<br>from a 3-0 deficit in<br>postseason history, or the<br>Yankees will stop them."
-          ],
-          [
-           "\\Children who have a poor diet<br>are more likely to become<br>aggressive and anti-social, US<br>researchers believe."
-          ],
-          [
-           "OPEN SOURCE champion Microsoft<br>is expanding its programme to<br>give government organisations<br>some of its source code. In a<br>communique from the lair of<br>the Vole, in Redmond,<br>spinsters have said that<br>Microsoft"
-          ],
-          [
-           "The Red Sox have reached<br>agreement with free agent<br>pitcher Matt Clement yesterday<br>on a three-year deal that will<br>pay him around \\$25 million,<br>his agent confirmed yesterday."
-          ],
-          [
-           "Takeover target Ronin Property<br>Group said it would respond to<br>an offer by Multiplex Group<br>for all the securities in the<br>company in about three weeks."
-          ],
-          [
-           "Canadian Press - OTTAWA (CP) -<br>Contrary to Immigration<br>Department claims, there is no<br>shortage of native-borne<br>exotic dancers in Canada, says<br>a University of Toronto law<br>professor who has studied the<br>strip club business."
-          ],
-          [
-           "HEN Manny Ramirez and David<br>Ortiz hit consecutive home<br>runs Sunday night in Chicago<br>to put the Red Sox ahead,<br>there was dancing in the<br>streets in Boston."
-          ],
-          [
-           "Google Inc. is trying to<br>establish an online reading<br>room for five major libraries<br>by scanning stacks of hard-to-<br>find books into its widely<br>used Internet search engine."
-          ],
-          [
-           "HOUSTON--(BUSINESS<br>WIRE)--Sept. 1, 2004-- L<br>#39;operazione crea una<br>centrale globale per l<br>#39;analisi strategica el<br>#39;approfondimento del<br>settore energetico IHS Energy,<br>fonte globale leader di<br>software, analisi e<br>informazioni"
-          ],
-          [
-           "The European Union presidency<br>yesterday expressed optimism<br>that a deal could be struck<br>over Turkey #39;s refusal to<br>recognize Cyprus in the lead-<br>up to next weekend #39;s EU<br>summit, which will decide<br>whether to give Ankara a date<br>for the start of accession<br>talks."
-          ],
-          [
-           "WASHINGTON Can you always tell<br>when somebody #39;s lying? If<br>so, you might be a wizard of<br>the fib. A California<br>psychology professor says<br>there #39;s a tiny subculture<br>of people that can pick out a<br>lie nearly every time they<br>hear one."
-          ],
-          [
-           " KHARTOUM (Reuters) - Sudan on<br>Saturday questioned U.N.<br>estimates that up to 70,000<br>people have died from hunger<br>and  disease in its remote<br>Darfur region since a<br>rebellion began 20  months<br>ago."
-          ],
-          [
-           "Type design was once the<br>province of skilled artisans.<br>With the help of new computer<br>programs, neophytes have<br>flooded the Internet with<br>their creations."
-          ],
-          [
-           "RCN Inc., co-owner of<br>Starpower Communications LLC,<br>the Washington area<br>television, telephone and<br>Internet provider, filed a<br>plan of reorganization<br>yesterday that it said puts<br>the company"
-          ],
-          [
-           "MIAMI -- Bryan Randall grabbed<br>a set of Mardi Gras beads and<br>waved them aloft, while his<br>teammates exalted in the<br>prospect of a trip to New<br>Orleans."
-          ],
-          [
-           "&lt;strong&gt;Letters&lt;/stro<br>ng&gt; Reports of demise<br>premature"
-          ],
-          [
-           "TORONTO (CP) - With an injured<br>Vince Carter on the bench, the<br>Toronto Raptors dropped their<br>sixth straight game Friday,<br>101-87 to the Denver Nuggets."
-          ],
-          [
-           "The US airline industry,<br>riddled with excess supply,<br>will see a significant drop in<br>capacity, or far fewer seats,<br>as a result of at least one<br>airline liquidating in the<br>next year, according to<br>AirTran Airways Chief<br>Executive Joe Leonard."
-          ],
-          [
-           "Boeing (nyse: BA - news -<br>people ) Chief Executive Harry<br>Stonecipher is keeping the<br>faith. On Monday, the head of<br>the aerospace and military<br>contractor insists he #39;s<br>confident his firm will<br>ultimately win out"
-          ],
-          [
-           "While not quite a return to<br>glory, Monday represents the<br>Redskins' return to the<br>national consciousness."
-          ],
-          [
-           "Australia #39;s biggest<br>supplier of fresh milk,<br>National Foods, has posted a<br>net profit of \\$68.7 million,<br>an increase of 14 per cent on<br>last financial year."
-          ],
-          [
-           "Lawyers for customers suing<br>Merck  amp; Co. want to<br>question CEO Raymond Gilmartin<br>about what he knew about the<br>dangers of Vioxx before the<br>company withdrew the drug from<br>the market because of health<br>hazards."
-          ],
-          [
-           "Vijay Singh has won the US PGA<br>Tour player of the year award<br>for the first time, ending<br>Tiger Woods #39;s five-year<br>hold on the honour."
-          ],
-          [
-           "New York; September 23, 2004 -<br>The Department of Justice<br>(DoJ), FBI and US Attorney<br>#39;s Office handed down a<br>10-count indictment against<br>former Computer Associates<br>(CA) chairman and CEO Sanjay<br>Kumar and Stephen Richards,<br>former CA head of worldwide<br>sales."
-          ],
-          [
-           "AFP - At least four Georgian<br>soldiers were killed and five<br>wounded in overnight clashes<br>in Georgia's separatist, pro-<br>Russian region of South<br>Ossetia, Georgian officers<br>near the frontline with<br>Ossetian forces said early<br>Thursday."
-          ],
-          [
-           "Intel, the world #39;s largest<br>chip maker, scrapped a plan<br>Thursday to enter the digital<br>television chip business,<br>marking a major retreat from<br>its push into consumer<br>electronics."
-          ],
-          [
-           "PACIFIC Hydro shares yesterday<br>caught an updraught that sent<br>them more than 20 per cent<br>higher after the wind farmer<br>moved to flush out a bidder."
-          ],
-          [
-           "The European Commission is<br>expected later this week to<br>recommend EU membership talks<br>with Turkey. Meanwhile, German<br>Chancellor Gerhard Schroeder<br>and Turkish Prime Minister<br>Tayyip Erdogan are<br>anticipating a  quot;positive<br>report."
-          ],
-          [
-           "The US is the originator of<br>over 42 of the worlds<br>unsolicited commercial e-mail,<br>making it the worst offender<br>in a league table of the top<br>12 spam producing countries<br>published yesterday by anti-<br>virus firm Sophos."
-          ],
-          [
-           " NEW YORK (Reuters) - U.S.<br>consumer confidence retreated<br>in  August while Chicago-area<br>business activity slowed,<br>according  to reports on<br>Tuesday that added to worries<br>the economy's patch  of slow<br>growth may last beyond the<br>summer."
-          ],
-          [
-           "Intel is drawing the curtain<br>on some of its future research<br>projects to continue making<br>transistors smaller, faster,<br>and less power-hungry out as<br>far as 2020."
-          ],
-          [
-           "England got strikes from<br>sparkling debut starter<br>Jermain Defoe and Michael Owen<br>to defeat Poland in a Uefa<br>World Cup qualifier in<br>Chorzow."
-          ],
-          [
-           "The Canadian government<br>signalled its intention<br>yesterday to reintroduce<br>legislation to decriminalise<br>the possession of small<br>amounts of marijuana."
-          ],
-          [
-           "A screensaver targeting spam-<br>related websites appears to<br>have been too successful."
-          ],
-          [
-           "Titleholder Ernie Els moved<br>within sight of a record sixth<br>World Match Play title on<br>Saturday by solving a putting<br>problem to overcome injured<br>Irishman Padraig Harrington 5<br>and 4."
-          ],
-          [
-           "If the Washington Nationals<br>never win a pennant, they have<br>no reason to ever doubt that<br>DC loves them. Yesterday, the<br>District City Council<br>tentatively approved a tab for<br>a publicly financed ballpark<br>that could amount to as much<br>as \\$630 million."
-          ],
-          [
-           "Plus: Experts fear Check 21<br>could lead to massive bank<br>fraud."
-          ],
-          [
-           "By SIOBHAN McDONOUGH<br>WASHINGTON (AP) -- Fewer<br>American youths are using<br>marijuana, LSD and Ecstasy,<br>but more are abusing<br>prescription drugs, says a<br>government report released<br>Thursday.    The 2003 National<br>Survey on Drug Use and Health<br>also found youths and young<br>adults are more aware of the<br>risks of using pot once a<br>month or more frequently..."
-          ],
-          [
-           " ABIDJAN (Reuters) - Ivory<br>Coast warplanes killed nine<br>French soldiers on Saturday in<br>a bombing raid during the<br>fiercest clashes with rebels<br>for 18 months and France hit<br>back  by destroying most of<br>the West African country's<br>small  airforce."
-          ],
-          [
-           "Unilever has reported a three<br>percent rise in third-quarter<br>earnings but warned it is<br>reviewing its targets up to<br>2010, after issuing a shock<br>profits warning last month."
-          ],
-          [
-           "A TNO engineer prepares to<br>start capturing images for the<br>world's biggest digital photo."
-          ],
-          [
-           "Defensive back Brandon<br>Johnson, who had two<br>interceptions for Tennessee at<br>Mississippi, was suspended<br>indefinitely Monday for<br>violation of team rules."
-          ],
-          [
-           "Points leader Kurt Busch spun<br>out and ran out of fuel, and<br>his misfortune was one of the<br>reasons crew chief Jimmy<br>Fennig elected not to pit with<br>20 laps to go."
-          ],
-          [
-           " LONDON (Reuters) - Oil prices<br>extended recent heavy losses<br>on Wednesday ahead of weekly<br>U.S. data expected to show<br>fuel  stocks rising in time<br>for peak winter demand."
-          ],
-          [
-           "(CP) - The NHL all-star game<br>hasn #39;t been cancelled<br>after all. It #39;s just been<br>moved to Russia. The agent for<br>New York Rangers winger<br>Jaromir Jagr confirmed Monday<br>that the Czech star had joined<br>Omsk Avangard"
-          ],
-          [
-           "PalmOne is aiming to sharpen<br>up its image with the launch<br>of the Treo 650 on Monday. As<br>previously reported, the smart<br>phone update has a higher-<br>resolution screen and a faster<br>processor than the previous<br>top-of-the-line model, the<br>Treo 600."
-          ],
-          [
-           "GAZA CITY, Gaza Strip --<br>Islamic militant groups behind<br>many suicide bombings<br>dismissed yesterday a call<br>from Mahmoud Abbas, the<br>interim Palestinian leader, to<br>halt attacks in the run-up to<br>a Jan. 9 election to replace<br>Yasser Arafat."
-          ],
-          [
-           "Secretary of State Colin<br>Powell is wrapping up an East<br>Asia trip focused on prodding<br>North Korea to resume talks<br>aimed at ending its nuclear-<br>weapons program."
-          ],
-          [
-           "HERE in the land of myth, that<br>familiar god of sports --<br>karma -- threw a bolt of<br>lightning into the Olympic<br>stadium yesterday. Marion<br>Jones lunged desperately with<br>her baton in the 4 x 100m<br>relay final, but couldn #39;t<br>reach her target."
-          ],
-          [
-           "kinrowan writes  quot;MIT,<br>inventor of Kerberos, has<br>announced a pair of<br>vulnerabities in the software<br>that will allow an attacker to<br>either execute a DOS attack or<br>execute code on the machine."
-          ],
-          [
-           "The risk of intestinal damage<br>from common painkillers may be<br>higher than thought, research<br>suggests."
-          ],
-          [
-           "AN earthquake measuring 7.3 on<br>the Richter Scale hit western<br>Japan this morning, just hours<br>after another strong quake<br>rocked the area."
-          ],
-          [
-           "Vodafone has increased the<br>competition ahead of Christmas<br>with plans to launch 10<br>handsets before the festive<br>season. The Newbury-based<br>group said it will begin<br>selling the phones in<br>November."
-          ],
-          [
-           "Reuters - Former Pink Floyd<br>mainman Roger\\Waters released<br>two new songs, both inspired<br>by the U.S.-led\\invasion of<br>Iraq, via online download<br>outlets Tuesday."
-          ],
-          [
-           "A former assistant treasurer<br>at Enron Corp. (ENRNQ.PK:<br>Quote, Profile, Research)<br>agreed to plead guilty to<br>conspiracy to commit<br>securities fraud on Tuesday<br>and will cooperate with"
-          ],
-          [
-           "Britain #39;s Prince Harry,<br>struggling to shed a growing<br>quot;wild child quot; image,<br>won #39;t apologize to a<br>photographer he scuffled with<br>outside an exclusive London<br>nightclub, a royal spokesman<br>said on Saturday."
-          ],
-          [
-           "UK house prices fell by 1.1 in<br>October, confirming a<br>softening of the housing<br>market, Halifax has said. The<br>UK #39;s biggest mortgage<br>lender said prices rose 18."
-          ],
-          [
-           "Pakistan #39;s interim Prime<br>Minister Chaudhry Shaujaat<br>Hussain has announced his<br>resignation, paving the way<br>for his successor Shauket<br>Aziz."
-          ],
-          [
-           "A previously unknown group<br>calling itself Jamaat Ansar<br>al-Jihad al-Islamiya says it<br>set fire to a Jewish soup<br>kitchen in Paris, according to<br>an Internet statement."
-          ],
-          [
-           "More than six newspaper<br>companies have received<br>letters from the Securities<br>and Exchange Commission<br>seeking information about<br>their circulation practices."
-          ],
-          [
-           "THE 64,000 dollar -<br>correction, make that 500<br>million dollar -uestion<br>hanging over Shire<br>Pharmaceuticals is whether the<br>5 per cent jump in the<br>companys shares yesterday<br>reflects relief that US<br>regulators have finally<br>approved its drug for"
-          ],
-          [
-           "The deadliest attack on<br>Americans in Iraq since May<br>came as Iraqi officials<br>announced that Saddam<br>Hussein's deputy had not been<br>captured on Sunday."
-          ],
-          [
-           "AP - Kenny Rogers lost at the<br>Coliseum for the first time in<br>more than 10 years, with Bobby<br>Crosby's three-run double in<br>the fifth inning leading the<br>Athletics to a 5-4 win over<br>the Texas Rangers on Thursday."
-          ],
-          [
-           "A fundraising concert will be<br>held in London in memory of<br>the hundreds of victims of the<br>Beslan school siege."
-          ],
-          [
-           "Dambulla, Sri Lanka - Kumar<br>Sangakkara and Avishka<br>Gunawardene slammed impressive<br>half-centuries to help an<br>under-strength Sri Lanka crush<br>South Africa by seven wickets<br>in the fourth one-day<br>international here on<br>Saturday."
-          ],
-          [
-           "Fresh off being the worst team<br>in baseball, the Arizona<br>Diamondbacks set a new record<br>this week: fastest team to<br>both hire and fire a manager."
-          ],
-          [
-           "Nebraska head coach Bill<br>Callahan runs off the field at<br>halftime of the game against<br>Baylor in Lincoln, Neb.,<br>Saturday, Oct. 16, 2004."
-          ],
-          [
-           "NASA has been working on a<br>test flight project for the<br>last few years involving<br>hypersonic flight. Hypersonic<br>flight is fight at speeds<br>greater than Mach 5, or five<br>times the speed of sound."
-          ],
-          [
-           "AFP - The landmark trial of a<br>Rwandan Roman Catholic priest<br>accused of supervising the<br>massacre of 2,000 of his Tutsi<br>parishioners during the<br>central African country's 1994<br>genocide opens at a UN court<br>in Tanzania."
-          ],
-          [
-           "The Irish government has<br>stepped up its efforts to free<br>the British hostage in Iraq,<br>Ken Bigley, whose mother is<br>from Ireland, by talking to<br>diplomats from Iran and<br>Jordan."
-          ],
-          [
-           "AP - Republican Sen. Lincoln<br>Chafee, who flirted with<br>changing political parties in<br>the wake of President Bush's<br>re-election victory, says he<br>will stay in the GOP."
-          ],
-          [
-           "AP - Microsoft Corp. announced<br>Wednesday that it would offer<br>a low-cost, localized version<br>of its Windows XP operating<br>system in India to tap the<br>large market potential in this<br>country of 1 billion people,<br>most of whom do not speak<br>English."
-          ],
-          [
-           "Businesses saw inventories<br>rise in July and sales picked<br>up, the government reported<br>Wednesday. The Commerce<br>Department said that stocks of<br>unsold goods increased 0.9 in<br>July, down from a 1.1 rise in<br>June."
-          ],
-          [
-           " EAST RUTHERFORD, N.J. (Sports<br>Network) - The Toronto<br>Raptors have traded All-Star<br>swingman Vince Carter to the<br>New  Jersey Nets in exchange<br>for center Alonzo Mourning,<br>forward  Eric Williams,<br>center/forward Aaron Williams<br>and two first-  round draft<br>picks."
-          ],
-          [
-           "AP - Utah State University has<br>secured a  #36;40 million<br>contract with NASA to build an<br>orbiting telescope that will<br>examine galaxies and try to<br>find new stars."
-          ],
-          [
-           "South Korean President Roh<br>Moo-hyun pays a surprise visit<br>to troops in Iraq, after his<br>government decided to extend<br>their mandate."
-          ],
-          [
-           "As the European Union<br>approaches a contentious<br>decision - whether to let<br>Turkey join the club - the<br>Continent #39;s rulers seem to<br>have left their citizens<br>behind."
-          ],
-          [
-           "What riot?  quot;An Argentine<br>friend of mine was a little<br>derisive of the Pacers-Pistons<br>eruption, quot; says reader<br>Mike Gaynes.  quot;He snorted,<br>#39;Is that what Americans<br>call a riot?"
-          ],
-          [
-           "All season, Chris Barnicle<br>seemed prepared for just about<br>everything, but the Newton<br>North senior was not ready for<br>the hot weather he encountered<br>yesterday in San Diego at the<br>Footlocker Cross-Country<br>National Championships. Racing<br>in humid conditions with<br>temperatures in the 70s, the<br>Massachusetts Division 1 state<br>champion finished sixth in 15<br>minutes 34 seconds in the<br>5-kilometer race. ..."
-          ],
-          [
-           "Shares of Genta Inc. (GNTA.O:<br>Quote, Profile, Research)<br>soared nearly 50 percent on<br>Monday after the biotechnology<br>company presented promising<br>data on an experimental<br>treatment for blood cancers."
-          ],
-          [
-           "I spend anywhere from three to<br>eight hours every week<br>sweating along with a motley<br>crew of local misfits,<br>shelving, sorting, and hauling<br>ton after ton of written<br>matter in a rowhouse basement<br>in Baltimore. We have no heat<br>nor air conditioning, but<br>still, every week, we come and<br>work. Volunteer night is<br>Wednesday, but many of us also<br>work on the weekends, when<br>we're open to the public.<br>There are times when we're<br>freezing and we have to wear<br>coats and gloves inside,<br>making handling books somewhat<br>tricky; other times, we're all<br>soaked with sweat, since it's<br>90 degrees out and the<br>basement is thick with bodies.<br>One learns to forget about<br>personal space when working at<br>The Book Thing, since you can<br>scarcely breathe without<br>bumping into someone, and we<br>are all so accustomed to<br>having to scrape by each other<br>that most of us no longer<br>bother to say \"excuse me\"<br>unless some particularly<br>dramatic brushing occurs."
-          ],
-          [
-           " BAGHDAD (Reuters) - A<br>deadline set by militants who<br>have  threatened to kill two<br>Americans and a Briton seized<br>in Iraq  was due to expire<br>Monday, and more than two<br>dozen other  hostages were<br>also facing death unless rebel<br>demands were met."
-          ],
-          [
-           "Alarmed by software glitches,<br>security threats and computer<br>crashes with ATM-like voting<br>machines, officials from<br>Washington, D.C., to<br>California are considering an<br>alternative from an unlikely<br>place: Nevada."
-          ],
-          [
-           "Some Venezuelan television<br>channels began altering their<br>programs Thursday, citing<br>fears of penalties under a new<br>law restricting violence and<br>sexual content over the<br>airwaves."
-          ],
-          [
-           "SBC Communications Inc. plans<br>to cut at least 10,000 jobs,<br>or 6 percent of its work<br>force, by the end of next year<br>to compensate for a drop in<br>the number of local-telephone<br>customers."
-          ],
-          [
-           "afrol News, 4 October -<br>Hundred years of conservation<br>efforts have lifted the<br>southern black rhino<br>population from about hundred<br>to 11,000 animals."
-          ],
-          [
-           "THE death of Philippine movie<br>star and defeated presidential<br>candidate Fernando Poe has<br>drawn some political backlash,<br>with some people seeking to<br>use his sudden demise as a<br>platform to attack President<br>Gloria Arroyo."
-          ],
-          [
-           " WASHINGTON (Reuters) - Major<br>cigarette makers go on trial<br>on Tuesday in the U.S.<br>government's \\$280 billion<br>racketeering  case that<br>charges the tobacco industry<br>with deliberately  deceiving<br>the public about the risks of<br>smoking since the  1950s."
-          ],
-          [
-           "More Americans are quitting<br>their jobs and taking the risk<br>of starting a business despite<br>a still-lackluster job market."
-          ],
-          [
-           "AP - Coach Tyrone Willingham<br>was fired by Notre Dame on<br>Tuesday after three seasons in<br>which he failed to return one<br>of the nation's most storied<br>football programs to<br>prominence."
-          ],
-          [
-           "COLLEGE PARK, Md. -- Joel<br>Statham completed 18 of 25<br>passes for 268 yards and two<br>touchdowns in No. 23<br>Maryland's 45-22 victory over<br>Temple last night, the<br>Terrapins' 12th straight win<br>at Byrd Stadium."
-          ],
-          [
-           "Manchester United boss Sir<br>Alex Ferguson wants the FA to<br>punish Arsenal good guy Dennis<br>Bergkamp for taking a swing at<br>Alan Smith last Sunday."
-          ],
-          [
-           "VIENTIANE, Laos China moved<br>yet another step closer in<br>cementing its economic and<br>diplomatic relationships with<br>Southeast Asia today when<br>Prime Minister Wen Jiabao<br>signed a trade accord at a<br>regional summit that calls for<br>zero tariffs on a wide range<br>of"
-          ],
-          [
-           "SPACE.com - With nbsp;food<br>stores nbsp;running low, the<br>two \\astronauts living aboard<br>the International Space<br>Station (ISS) are cutting back<br>\\their meal intake and<br>awaiting a critical cargo<br>nbsp;delivery expected to<br>arrive \\on Dec. 25."
-          ],
-          [
-           "British judges in London<br>Tuesday ordered radical Muslim<br>imam Abu Hamza to stand trial<br>for soliciting murder and<br>inciting racial hatred."
-          ],
-          [
-           "Federal Reserve policy-makers<br>raised the benchmark US<br>interest rate a quarter point<br>to 2.25 per cent and restated<br>a plan to carry out"
-          ],
-          [
-           " DETROIT (Reuters) - A<br>Canadian law firm on Tuesday<br>said it  had filed a lawsuit<br>against Ford Motor Co. &lt;A H<br>REF=\"http://www.investor.reute<br>rs.com/FullQuote.aspx?ticker=F<br>.N target=/stocks/quickinfo/fu<br>llquote\"&gt;F.N&lt;/A&gt; over<br>what it  claims are defective<br>door latches on about 400,000<br>of the  automaker's popular<br>pickup trucks and SUVs."
-          ],
-          [
-           "Published reports say Barry<br>Bonds has testified that he<br>used a clear substance and a<br>cream given to him by a<br>trainer who was indicted in a<br>steroid-distribution ring."
-          ],
-          [
-           "SARASOTA, Fla. - The<br>devastation brought on by<br>Hurricane Charley has been<br>especially painful for an<br>elderly population that is<br>among the largest in the<br>nation..."
-          ],
-          [
-           " ATHENS (Reuters) - Christos<br>Angourakis added his name to<br>Greece's list of Paralympic<br>medal winners when he claimed<br>a  bronze in the T53 shot put<br>competition Thursday."
-          ],
-          [
-           " quot;He is charged for having<br>a part in the Bali incident,<br>quot; state prosecutor Andi<br>Herman told Reuters on<br>Saturday. bombing attack at<br>the US-run JW."
-          ],
-          [
-           "Jay Fiedler threw for one<br>touchdown, Sage Rosenfels<br>threw for another and the<br>Miami Dolphins got a victory<br>in a game they did not want to<br>play, beating the New Orleans<br>Saints 20-19 Friday night."
-          ],
-          [
-           " NEW YORK (Reuters) - Terrell<br>Owens scored three touchdowns<br>and the Philadelphia Eagles<br>amassed 35 first-half points<br>on the  way to a 49-21<br>drubbing of the Dallas Cowboys<br>in Irving, Texas,  Monday."
-          ],
-          [
-           "AstraZeneca Plc suffered its<br>third setback in two months on<br>Friday as lung cancer drug<br>Iressa failed to help patients<br>live longer"
-          ],
-          [
-           "Virgin Electronics hopes its<br>slim Virgin Player, which<br>debuts today and is smaller<br>than a deck of cards, will<br>rise as a lead competitor to<br>Apple's iPod."
-          ],
-          [
-           "Researchers train a monkey to<br>feed itself by guiding a<br>mechanical arm with its mind.<br>It could be a big step forward<br>for prosthetics. By David<br>Cohn."
-          ],
-          [
-           "Bruce Wasserstein, the<br>combative chief executive of<br>investment bank Lazard, is<br>expected to agree this week<br>that he will quit the group<br>unless he can pull off a<br>successful"
-          ],
-          [
-           "A late strike by Salomon Kalou<br>sealed a 2-1 win for Feyenoord<br>over NEC Nijmegen, while<br>second placed AZ Alkmaar<br>defeated ADO Den Haag 2-0 in<br>the Dutch first division on<br>Sunday."
-          ],
-          [
-           "The United Nations called on<br>Monday for an immediate<br>ceasefire in eastern Congo as<br>fighting between rival army<br>factions flared for a third<br>day."
-          ],
-          [
-           "What a disgrace Ron Artest has<br>become. And the worst part is,<br>the Indiana Pacers guard just<br>doesn #39;t get it. Four days<br>after fueling one of the<br>biggest brawls in the history<br>of pro sports, Artest was on<br>national"
-          ],
-          [
-           "Allowing dozens of casinos to<br>be built in the UK would bring<br>investment and thousands of<br>jobs, Tony Blair says."
-          ],
-          [
-           "The shock here was not just<br>from the awful fact itself,<br>that two vibrant young Italian<br>women were kidnapped in Iraq,<br>dragged from their office by<br>attackers who, it seems, knew<br>their names."
-          ],
-          [
-           "Tehran/Vianna, Sept. 19 (NNN):<br>Iran on Sunday rejected the<br>International Atomic Energy<br>Agency (IAEA) call to suspend<br>of all its nuclear activities,<br>saying that it will not agree<br>to halt uranium enrichment."
-          ],
-          [
-           "A 15-year-old Argentine<br>student opened fire at his<br>classmates on Tuesday in a<br>middle school in the south of<br>the Buenos Aires province,<br>leaving at least four dead and<br>five others wounded, police<br>said."
-          ],
-          [
-           "Dr. David J. Graham, the FDA<br>drug safety reviewer who<br>sounded warnings over five<br>drugs he felt could become the<br>next Vioxx has turned to a<br>Whistleblower protection group<br>for legal help."
-          ],
-          [
-           "AP - Scientists in 17<br>countries will scout waterways<br>to locate and study the<br>world's largest freshwater<br>fish species, many of which<br>are declining in numbers,<br>hoping to learn how to better<br>protect them, researchers<br>announced Thursday."
-          ],
-          [
-           "AP - Google Inc.'s plans to<br>move ahead with its initial<br>public stock offering ran into<br>a roadblock when the<br>Securities and Exchange<br>Commission didn't approve the<br>Internet search giant's<br>regulatory paperwork as<br>requested."
-          ],
-          [
-           "Jenson Button has revealed<br>dissatisfaction with the way<br>his management handled a<br>fouled switch to Williams. Not<br>only did the move not come<br>off, his reputation may have<br>been irreparably damaged amid<br>news headline"
-          ],
-          [
-           "The Kmart purchase of Sears,<br>Roebuck may be the ultimate<br>expression of that old saying<br>in real estate: location,<br>location, location."
-          ],
-          [
-           "Citing security risks, a state<br>university is urging students<br>to drop Internet Explorer in<br>favor of alternative Web<br>browsers such as Firefox and<br>Safari."
-          ],
-          [
-           "Redknapp and his No2 Jim Smith<br>resigned from Portsmouth<br>yesterday, leaving<br>controversial new director<br>Velimir Zajec in temporary<br>control."
-          ],
-          [
-           "Despite being ranked eleventh<br>in the world in broadband<br>penetration, the United States<br>is rolling out high-speed<br>services on a  quot;reasonable<br>and timely basis to all<br>Americans, quot; according to<br>a new report narrowly approved<br>today by the Federal<br>Communications"
-          ],
-          [
-           "Sprint Corp. (FON.N: Quote,<br>Profile, Research) on Friday<br>said it plans to cut up to 700<br>jobs as it realigns its<br>business to focus on wireless<br>and Internet services and<br>takes a non-cash network<br>impairment charge."
-          ],
-          [
-           "As the season winds down for<br>the Frederick Keys, Manager<br>Tom Lawless is starting to<br>enjoy the progress his<br>pitching staff has made this<br>season."
-          ],
-          [
-           "Britain #39;s Bradley Wiggins<br>won the gold medal in men<br>#39;s individual pursuit<br>Saturday, finishing the<br>4,000-meter final in 4:16."
-          ],
-          [
-           "And when David Akers #39;<br>50-yard field goal cleared the<br>crossbar in overtime, they did<br>just that. They escaped a<br>raucous Cleveland Browns<br>Stadium relieved but not<br>broken, tested but not<br>cracked."
-          ],
-          [
-           "NEW YORK - A cable pay-per-<br>view company has decided not<br>to show a three-hour election<br>eve special with filmmaker<br>Michael Moore that included a<br>showing of his documentary<br>\"Fahrenheit 9/11,\" which is<br>sharply critical of President<br>Bush.    The company, iN<br>DEMAND, said Friday that its<br>decision is due to \"legitimate<br>business and legal concerns.\"<br>A spokesman would not<br>elaborate..."
-          ],
-          [
-           "Democracy candidates picked up<br>at least one more seat in<br>parliament, according to exit<br>polls."
-          ],
-          [
-           "The IOC wants suspended<br>Olympic member Ivan Slavkov to<br>be thrown out of the<br>organisation."
-          ],
-          [
-           " BANGKOK (Reuters) - The<br>ouster of Myanmar's prime<br>minister,  architect of a<br>tentative \"roadmap to<br>democracy,\" has dashed  faint<br>hopes for an end to military<br>rule and leaves Southeast<br>Asia's policy of constructive<br>engagement in tatters."
-          ],
-          [
-           "San Antonio, TX (Sports<br>Network) - Dean Wilson shot a<br>five-under 65 on Friday to<br>move into the lead at the<br>halfway point of the Texas<br>Open."
-          ],
-          [
-           "Now that Chelsea have added<br>Newcastle United to the list<br>of clubs that they have given<br>what for lately, what price<br>Jose Mourinho covering the<br>Russian-funded aristocrats of<br>west London in glittering<br>glory to the tune of four<br>trophies?"
-          ],
-          [
-           "AP - Former Seattle Seahawks<br>running back Chris Warren has<br>been arrested in Virginia on a<br>federal warrant, accused of<br>failing to pay  #36;137,147 in<br>child support for his two<br>daughters in Washington state."
-          ],
-          [
-           "The anguish of hostage Kenneth<br>Bigley in Iraq hangs over<br>Prime Minister Tony Blair<br>today as he faces the twin<br>test of a local election and a<br>debate by his Labour Party<br>about the divisive war."
-          ],
-          [
-           "Says that amount would have<br>been earned for the first 9<br>months of 2004, before AT<br>amp;T purchase. LOS ANGELES,<br>(Reuters) - Cingular Wireless<br>would have posted a net profit<br>of \\$650 million for the first<br>nine months"
-          ],
-          [
-           "NewsFactor - Taking an<br>innovative approach to the<br>marketing of high-performance<br>\\computing, Sun Microsystems<br>(Nasdaq: SUNW) is offering its<br>N1 Grid program in a pay-for-<br>use pricing model that mimics<br>the way such commodities as<br>electricity and wireless phone<br>plans are sold."
-          ],
-          [
-           " CHICAGO (Reuters) - Goodyear<br>Tire   Rubber Co. &lt;A HREF=\"<br>http://www.investor.reuters.co<br>m/FullQuote.aspx?ticker=GT.N t<br>arget=/stocks/quickinfo/fullqu<br>ote\"&gt;GT.N&lt;/A&gt; said<br>on Friday it will cut 340 jobs<br>in its engineered products and<br>chemical units as part of its<br>cost-reduction efforts,<br>resulting  in a third-quarter<br>charge."
-          ],
-          [
-           " quot;There were 16 people<br>travelling aboard. ... It<br>crashed into a mountain, quot;<br>Col. Antonio Rivero, head of<br>the Civil Protection service,<br>told."
-          ],
-          [
-           "Reuters - Shares of long-<br>distance phone\\companies AT T<br>Corp.  and MCI Inc.  have<br>plunged\\about 20 percent this<br>year, but potential buyers<br>seem to be\\holding out for<br>clearance sales."
-          ],
-          [
-           "Reuters - Madonna and m-Qube<br>have\\made it possible for the<br>star's North American fans to<br>download\\polyphonic ring tones<br>and other licensed mobile<br>content from\\her official Web<br>site, across most major<br>carriers and without\\the need<br>for a credit card."
-          ],
-          [
-           "President Bush is reveling in<br>winning the popular vote and<br>feels he can no longer be<br>considered a one-term accident<br>of history."
-          ],
-          [
-           "Russian oil giant Yukos files<br>for bankruptcy protection in<br>the US in a last ditch effort<br>to stop the Kremlin auctioning<br>its main production unit."
-          ],
-          [
-           "British Airways #39; (BA)<br>chief executive Rod Eddington<br>has admitted that the company<br>quot;got it wrong quot; after<br>staff shortages led to three<br>days of travel chaos for<br>passengers."
-          ],
-          [
-           "It #39;s official: US Open had<br>never gone into the third<br>round with only two American<br>men, including the defending<br>champion, Andy Roddick."
-          ],
-          [
-           "Canadian Press - TORONTO (CP)<br>- Thousands of Royal Bank<br>clerks are being asked to<br>display rainbow stickers at<br>their desks and cubicles to<br>promote a safe work<br>environment for gays,<br>lesbians, and bisexuals."
-          ],
-          [
-           "The chipmaker is back on a<br>buying spree, having scooped<br>up five other companies this<br>year."
-          ],
-          [
-           "The issue of drug advertising<br>directly aimed at consumers is<br>becoming political."
-          ],
-          [
-           "WASHINGTON, Aug. 17<br>(Xinhuanet) -- England coach<br>Sven-Goran Eriksson has urged<br>the international soccer<br>authorities to preserve the<br>health of the world superstar<br>footballers for major<br>tournaments, who expressed his<br>will in Slaley of England on<br>Tuesday ..."
-          ],
-          [
-           " BAGHDAD (Reuters) - A car<br>bomb killed two American<br>soldiers  and wounded eight<br>when it exploded in Baghdad on<br>Saturday, the  U.S. military<br>said in a statement."
-          ],
-          [
-           "Juventus coach Fabio Capello<br>has ordered his players not to<br>kick the ball out of play when<br>an opponent falls to the<br>ground apparently hurt because<br>he believes some players fake<br>injury to stop the match."
-          ],
-          [
-           "AP - China's economic boom is<br>still roaring despite efforts<br>to cool sizzling growth, with<br>the gross domestic product<br>climbing 9.5 percent in the<br>first three quarters of this<br>year, the government reported<br>Friday."
-          ],
-          [
-           "Soaring petroleum prices<br>pushed the cost of goods<br>imported into the U.S. much<br>higher than expected in<br>August, the government said<br>today."
-          ],
-          [
-           "Anheuser-Busch teams up with<br>Vietnam's largest brewer,<br>laying the groundwork for<br>future growth in the region."
-          ],
-          [
-           "You #39;re angry. You want to<br>lash out. The Red Sox are<br>doing it to you again. They<br>#39;re blowing a playoff<br>series, and to the Yankees no<br>less."
-          ],
-          [
-           "TORONTO -- There is no<br>mystique to it anymore,<br>because after all, the<br>Russians have become commoners<br>in today's National Hockey<br>League, and Finns, Czechs,<br>Slovaks, and Swedes also have<br>been entrenched in the<br>Original 30 long enough to<br>turn the ongoing World Cup of<br>Hockey into a protracted<br>trailer for the NHL season."
-          ],
-          [
-           "Sudanese authorities have<br>moved hundreds of pro-<br>government fighters from the<br>crisis-torn Darfur region to<br>other parts of the country to<br>keep them out of sight of<br>foreign military observers<br>demanding the militia #39;s<br>disarmament, a rebel leader<br>charged"
-          ],
-          [
-           "CHARLOTTE, NC - Shares of<br>Krispy Kreme Doughnuts Inc.<br>#39;s fell sharply Monday as a<br>79 percent plunge in third-<br>quarter earnings and an<br>intensifying accounting<br>investigation overshadowed the<br>pastrymaker #39;s statement<br>that the low-carb craze might<br>be easing."
-          ],
-          [
-           "The company hopes to lure<br>software partners by promising<br>to save them from<br>infrastructure headaches."
-          ],
-          [
-           "BAGHDAD, Iraq - A car bomb<br>Tuesday ripped through a busy<br>market near a Baghdad police<br>headquarters where Iraqis were<br>waiting to apply for jobs on<br>the force, and gunmen opened<br>fire on a van carrying police<br>home from work in Baqouba,<br>killing at least 59 people<br>total and wounding at least<br>114.    The attacks were the<br>latest attempts by militants<br>to wreck the building of a<br>strong Iraqi security force, a<br>keystone of the U.S..."
-          ],
-          [
-           "The Israeli prime minister<br>said today that he wanted to<br>begin withdrawing settlers<br>from Gaza next May or June."
-          ],
-          [
-           "Indianapolis, IN (Sports<br>Network) - The Indiana Pacers<br>try to win their second<br>straight game tonight, as they<br>host Kevin Garnett and the<br>Minnesota Timberwolves in the<br>third of a four-game homestand<br>at Conseco Fieldhouse."
-          ],
-          [
-           "OXNARD - A leak of explosive<br>natural gas forced dozens of<br>workers to evacuate an<br>offshore oil platform for<br>hours Thursday but no damage<br>or injuries were reported."
-          ],
-          [
-           "AP - Assets of the nation's<br>retail money market mutual<br>funds rose by  #36;2.85<br>billion in the latest week to<br>#36;845.69 billion, the<br>Investment Company Institute<br>said Thursday."
-          ],
-          [
-           "Peter Mandelson provoked fresh<br>Labour in-fighting yesterday<br>with an implied attack on<br>Gordon Brown #39;s<br>quot;exaggerated gloating<br>quot; about the health of the<br>British economy."
-          ],
-          [
-           "Queen Elizabeth II stopped<br>short of apologizing for the<br>Allies #39; bombing of Dresden<br>during her first state visit<br>to Germany in 12 years and<br>instead acknowledged  quot;the<br>appalling suffering of war on<br>both sides."
-          ],
-          [
-           "JC Penney said yesterday that<br>Allen I. Questrom, the chief<br>executive who has restyled the<br>once-beleaguered chain into a<br>sleeker and more profitable<br>entity, would be succeeded by<br>Myron E. Ullman III, another<br>longtime retail executive."
-          ],
-          [
-           " In the cosmetics department<br>at Hecht's in downtown<br>Washington, construction crews<br>have ripped out the<br>traditional glass display<br>cases, replacing them with a<br>system of open shelves stacked<br>high with fragrances from<br>Chanel, Burberry and Armani,<br>now easily within arm's reach<br>of the impulse buyer."
-          ],
-          [
-           " LONDON (Reuters) - Oil prices<br>slid from record highs above<br>\\$50 a barrel Wednesday as the<br>U.S. government reported a<br>surprise increase in crude<br>stocks and rebels in Nigeria's<br>oil-rich delta region agreed<br>to a preliminary cease-fire."
-          ],
-          [
-           "Rocky Shoes and Boots makes an<br>accretive acquisition -- and<br>gets Dickies and John Deere as<br>part of the deal."
-          ],
-          [
-           "AP - Fugitive Taliban leader<br>Mullah Mohammed Omar has<br>fallen out with some of his<br>lieutenants, who blame him for<br>the rebels' failure to disrupt<br>the landmark Afghan<br>presidential election, the<br>U.S. military said Wednesday."
-          ],
-          [
-           "HAVANA -- Cuban President<br>Fidel Castro's advancing age<br>-- and ultimately his<br>mortality -- were brought home<br>yesterday, a day after he<br>fractured a knee and arm when<br>he tripped and fell at a<br>public event."
-          ],
-          [
-           " BRASILIA, Brazil (Reuters) -<br>The United States and Brazil<br>predicted on Tuesday Latin<br>America's largest country<br>would  resolve a dispute with<br>the U.N. nuclear watchdog over<br>inspections of a uranium<br>enrichment plant."
-          ],
-          [
-           "Call it the Maximus factor.<br>Archaeologists working at the<br>site of an old Roman temple<br>near Guy #39;s hospital in<br>London have uncovered a pot of<br>cosmetic cream dating back to<br>AD2."
-          ],
-          [
-           "It is a team game, this Ryder<br>Cup stuff that will commence<br>Friday at Oakland Hills<br>Country Club. So what are the<br>teams? For the Americans,<br>captain Hal Sutton isn't<br>saying."
-          ],
-          [
-           "Two bombs exploded today near<br>a tea shop and wounded 20<br>people in southern Thailand,<br>police said, as violence<br>continued unabated in the<br>Muslim-majority region where<br>residents are seething over<br>the deaths of 78 detainees<br>while in military custody."
-          ],
-          [
-           "BONN: Deutsche Telekom is<br>bidding 2.9 bn for the 26 it<br>does not own in T-Online<br>International, pulling the<br>internet service back into the<br>fold four years after selling<br>stock to the public."
-          ],
-          [
-           "Motorola Inc. says it #39;s<br>ready to make inroads in the<br>cell-phone market after<br>posting a third straight<br>strong quarter and rolling out<br>a series of new handsets in<br>time for the holiday selling<br>season."
-          ],
-          [
-           "Prime Minister Junichiro<br>Koizumi, back in Tokyo after<br>an 11-day diplomatic mission<br>to the Americas, hunkered down<br>with senior ruling party<br>officials on Friday to focus<br>on a major reshuffle of<br>cabinet and top party posts."
-          ],
-          [
-           "Costs of employer-sponsored<br>health plans are expected to<br>climb an average of 8 percent<br>in 2005, the first time in<br>five years increases have been<br>in single digits."
-          ],
-          [
-           "NEW YORK - A sluggish gross<br>domestic product reading was<br>nonetheless better than<br>expected, prompting investors<br>to send stocks slightly higher<br>Friday on hopes that the<br>economic slowdown would not be<br>as bad as first thought.<br>The 2.8 percent GDP growth in<br>the second quarter, a revision<br>from the 3 percent preliminary<br>figure reported in July, is a<br>far cry from the 4.5 percent<br>growth in the first quarter..."
-          ],
-          [
-           "After again posting record<br>earnings for the third<br>quarter, Taiwan Semiconductor<br>Manufacturing Company (TSMC)<br>expects to see its first<br>sequential drop in fourth-<br>quarter revenues, coupled with<br>a sharp drop in capacity<br>utilization rates."
-          ],
-          [
-           " SEOUL (Reuters) - A huge<br>explosion in North Korea last<br>week  may have been due to a<br>combination of demolition work<br>for a  power plant and<br>atmospheric clouds, South<br>Korea's spy agency  said on<br>Wednesday."
-          ],
-          [
-           "The deal comes as Cisco pushes<br>to develop a market for CRS-1,<br>a new line of routers aimed at<br>telephone, wireless and cable<br>companies."
-          ],
-          [
-           "Many people who have never<br>bounced a check in their life<br>could soon bounce their first<br>check if they write checks to<br>pay bills a couple of days<br>before their paycheck is<br>deposited into their checking<br>account."
-          ],
-          [
-           " LUXEMBOURG (Reuters) -<br>Microsoft Corp told a judge on<br>Thursday that the European<br>Commission must be stopped<br>from  ordering it to give up<br>secret technology to<br>competitors."
-          ],
-          [
-           "SEPTEMBER 14, 2004 (IDG NEWS<br>SERVICE) - Sun Microsystems<br>Inc. and Microsoft Corp. next<br>month plan to provide more<br>details on the work they are<br>doing to make their products<br>interoperable, a Sun executive<br>said yesterday."
-          ],
-          [
-           "MANCHESTER United today<br>dramatically rejected the<br>advances of Malcolm Glazer,<br>the US sports boss who is<br>mulling an 825m bid for the<br>football club."
-          ],
-          [
-           "Dow Jones Industrial Average<br>futures declined amid concern<br>an upcoming report on<br>manufacturing may point to<br>slowing economic growth."
-          ],
-          [
-           "AP - Astronomy buffs and<br>amateur stargazers turned out<br>to watch a total lunar eclipse<br>Wednesday night  #151; the<br>last one Earth will get for<br>nearly two and a half years."
-          ],
-          [
-           "Reuters - U.S. industrial<br>output advanced in\\July, as<br>American factories operated at<br>their highest capacity\\in more<br>than three years, a Federal<br>Reserve report on<br>Tuesday\\showed."
-          ],
-          [
-           "As usual, the Big Ten coaches<br>were out in full force at<br>today #39;s Big Ten<br>Teleconference. Both OSU head<br>coach Jim Tressel and Iowa<br>head coach Kirk Ferentz<br>offered some thoughts on the<br>upcoming game between OSU"
-          ],
-          [
-           "Sir Martin Sorrell, chief<br>executive of WPP, yesterday<br>declared he was  quot;very<br>impressed quot; with Grey<br>Global, stoking speculation<br>WPP will bid for the US<br>advertising company."
-          ],
-          [
-           "The compact disc has at least<br>another five years as the most<br>popular music format before<br>online downloads chip away at<br>its dominance, a new study<br>said on Tuesday."
-          ],
-          [
-           "New York Knicks #39; Stephon<br>Marbury (3) fires over New<br>Orleans Hornets #39; Dan<br>Dickau (2) during the second<br>half in New Orleans Wednesday<br>night, Dec. 8, 2004."
-          ],
-          [
-           "AP - Sudan's U.N. ambassador<br>challenged the United States<br>to send troops to the Darfur<br>region if it really believes a<br>genocide is taking place as<br>the U.S. Congress and<br>President Bush's<br>administration have<br>determined."
-          ],
-          [
-           "At the very moment when the<br>Red Sox desperately need<br>someone slightly larger than<br>life to rally around, they<br>suddenly have the man for the<br>job: Thrilling Schilling."
-          ],
-          [
-           "Does Your Site Need a Custom<br>Search Engine<br>Toolbar?\\\\Today's surfers<br>aren't always too comfortable<br>installing software on their<br>computers. Especially free<br>software that they don't<br>necessarily understand. With<br>all the horror stories of<br>viruses, spyware, and adware<br>that make the front page these<br>days, it's no wonder. So is<br>there ..."
-          ],
-          [
-           "Dale Earnhardt Jr, right,<br>talks with Matt Kenseth, left,<br>during a break in practice at<br>Lowe #39;s Motor Speedway in<br>Concord, NC, Thursday Oct. 14,<br>2004 before qualifying for<br>Saturday #39;s UAW-GM Quality<br>500 NASCAR Nextel Cup race."
-          ],
-          [
-           "Several starting spots may<br>have been usurped or at least<br>threatened after relatively<br>solid understudy showings<br>Sunday, but few players<br>welcome the kind of shot<br>delivered to Oakland"
-          ],
-          [
-           "TEMPE, Ariz. -- Neil Rackers<br>kicked four field goals and<br>the Arizona Cardinals stifled<br>rookie Chris Simms and the<br>rest of the Tampa Bay offense<br>for a 12-7 victory yesterday<br>in a matchup of two sputtering<br>teams out of playoff<br>contention. Coach Jon Gruden's<br>team lost its fourth in a row<br>to finish 5-11, Tampa Bay's<br>worst record since going ..."
-          ],
-          [
-           "AFP - A junior British<br>minister said that people<br>living in camps after fleeing<br>their villages because of<br>conflict in Sudan's Darfur<br>region lived in fear of<br>leaving their temporary homes<br>despite a greater presence now<br>of aid workers."
-          ],
-          [
-           "US Deputy Secretary of State<br>Richard Armitage (L) shakes<br>hands with Pakistani Foreign<br>Minister Khurshid Kasuri prior<br>to their meeting in Islamabad,<br>09 November 2004."
-          ],
-          [
-           "Spammers aren't ducking<br>antispam laws by operating<br>offshore, they're just<br>ignoring it."
-          ],
-          [
-           "AP - Biologists plan to use<br>large nets and traps this week<br>in Chicago's Burnham Harbor to<br>search for the northern<br>snakehead  #151; a type of<br>fish known for its voracious<br>appetite and ability to wreak<br>havoc on freshwater<br>ecosystems."
-          ],
-          [
-           "BAE Systems PLC  and Northrop<br>Grumman Corp. won \\$45 million<br>contracts yesterday to develop<br>prototypes of anti-missile<br>technology that could protect<br>commercial aircraft from<br>shoulder-fired missiles."
-          ],
-          [
-           "AP - Democrat John Edwards<br>kept up a long-distance debate<br>over his \"two Americas\"<br>campaign theme with Vice<br>President Dick Cheney on<br>Tuesday, saying it was no<br>illusion to thousands of laid-<br>off workers in Ohio."
-          ],
-          [
-           "Like introductory credit card<br>rates and superior customer<br>service, some promises just<br>aren #39;t built to last. And<br>so it is that Bank of America<br>- mere months after its pledge<br>to preserve"
-          ],
-          [
-           "A group of 76 Eritreans on a<br>repatriation flight from Libya<br>Friday forced their plane to<br>change course and land in the<br>Sudanese capital, Khartoum,<br>where they"
-          ],
-          [
-           "Reuters - Accounting firm KPMG<br>will pay  #36;10\\million to<br>settle charges of improper<br>professional conduct\\while<br>acting as auditor for Gemstar-<br>TV Guide International Inc.\\,<br>the U.S. Securities and<br>Exchange Commission said<br>on\\Wednesday."
-          ],
-          [
-           "Family matters made public: As<br>eager cousins wait for a slice<br>of the \\$15 billion cake that<br>is the Pritzker Empire,<br>Circuit Court Judge David<br>Donnersberger has ruled that<br>the case will be conducted in<br>open court."
-          ],
-          [
-           "Users of Microsoft #39;s<br>Hotmail, most of whom are<br>accustomed to getting regular<br>sales pitches for premium<br>e-mail accounts, got a<br>pleasant surprise in their<br>inboxes this week: extra<br>storage for free."
-          ],
-          [
-           "AP - They say that opposites<br>attract, and in the case of<br>Sen. John Kerry and Teresa<br>Heinz Kerry, that may be true<br>#151; at least in their public<br>personas."
-          ],
-          [
-           "The weekly survey from<br>mortgage company Freddie Mac<br>had rates on 30-year fixed-<br>rate mortgages inching higher<br>this week, up to an average<br>5.82 percent from last week<br>#39;s 5.81 percent."
-          ],
-          [
-           "The classic power struggle<br>between Walt Disney Co. CEO<br>Michael Eisner and former<br>feared talent agent Michael<br>Ovitz makes for high drama in<br>the courtroom - and apparently<br>on cable."
-          ],
-          [
-           "ATHENS France, Britain and the<br>United States issued a joint<br>challenge Thursday to Germany<br>#39;s gold medal in equestrian<br>team three-day eventing."
-          ],
-          [
-           "LONDON (CBS.MW) -- Elan<br>(UK:ELA) (ELN) and partner<br>Biogen (BIIB) said the FDA has<br>approved new drug Tysabri to<br>treat relapsing forms of<br>multiple sclerosis."
-          ],
-          [
-           "IT services provider<br>Electronic Data Systems<br>yesterday reported a net loss<br>of \\$153 million for the third<br>quarter, with earnings hit in<br>part by an asset impairment<br>charge of \\$375 million<br>connected with EDS's N/MCI<br>project."
-          ],
-          [
-           "ATLANTA - Who could have<br>imagined Tommy Tuberville in<br>this position? Yet there he<br>was Friday, standing alongside<br>the SEC championship trophy,<br>posing for pictures and<br>undoubtedly chuckling a bit on<br>the inside."
-          ],
-          [
-           "AP - Impoverished North Korea<br>might resort to selling<br>weapons-grade plutonium to<br>terrorists for much-needed<br>cash, and that would be<br>\"disastrous for the world,\"<br>the top U.S. military<br>commander in South Korea said<br>Friday."
-          ],
-          [
-           "International Business<br>Machines Corp. said Wednesday<br>it had agreed to settle most<br>of the issues in a suit over<br>changes in its pension plans<br>on terms that allow the<br>company to continue to appeal<br>a key question while capping<br>its liability at \\$1.7<br>billion. &lt;BR&gt;&lt;FONT<br>face=\"verdana,MS Sans<br>Serif,arial,helvetica\"<br>size=\"-2\"\\ color=\"#666666\"&gt;<br>&lt;B&gt;-The Washington<br>Post&lt;/B&gt;&lt;/FONT&gt;"
-          ],
-          [
-           "Dubai: Osama bin Laden on<br>Thursday called on his<br>fighters to strike Gulf oil<br>supplies and warned Saudi<br>leaders they risked a popular<br>uprising in an audio message<br>said to be by the Western<br>world #39;s most wanted terror<br>mastermind."
-          ],
-          [
-           "Bank of New Zealand has frozen<br>all accounts held in the name<br>of Access Brokerage, which was<br>yesterday placed in<br>liquidation after a client<br>fund shortfall of around \\$5<br>million was discovered."
-          ],
-          [
-           "Edward Kozel, Cisco's former<br>chief technology officer,<br>joins the board of Linux<br>seller Red Hat."
-          ],
-          [
-           "Reuters - International<br>Business Machines\\Corp.  late<br>on Wednesday rolled out a new<br>version of its\\database<br>software aimed at users of<br>Linux and Unix<br>operating\\systems that it<br>hopes will help the company<br>take away market\\share from<br>market leader Oracle Corp. ."
-          ],
-          [
-           "NASA #39;s Mars Odyssey<br>mission, originally scheduled<br>to end on Tuesday, has been<br>granted a stay of execution<br>until at least September 2006,<br>reveal NASA scientists."
-          ],
-          [
-           "ZDNet #39;s survey of IT<br>professionals in August kept<br>Wired  amp; Wireless on top<br>for the 18th month in a row.<br>Telecommunications equipment<br>maker Motorola said Tuesday<br>that it would cut 1,000 jobs<br>and take related"
-          ],
-          [
-           "John Thomson threw shutout<br>ball for seven innings<br>Wednesday night in carrying<br>Atlanta to a 2-0 blanking of<br>the New York Mets. New York<br>lost for the 21st time in 25<br>games on the"
-          ],
-          [
-           "BEIJING -- Chinese authorities<br>have arrested or reprimanded<br>more than 750 officials in<br>recent months in connection<br>with billions of dollars in<br>financial irregularities<br>ranging from unpaid taxes to<br>embezzlement, according to a<br>report made public yesterday."
-          ],
-          [
-           "Canadian Press - GAUHATI,<br>India (AP) - Residents of<br>northeastern India were<br>bracing for more violence<br>Friday, a day after bombs<br>ripped through two buses and a<br>grenade was hurled into a<br>crowded market in attacks that<br>killed four people and wounded<br>54."
-          ],
-          [
-           "Vikram Solanki beat the rain<br>clouds to register his second<br>one-day international century<br>as England won the third one-<br>day international to wrap up a<br>series victory."
-          ],
-          [
-           "Some 28 people are charged<br>with trying to overthrow<br>Sudan's President Bashir,<br>reports say."
-          ],
-          [
-           "Hong Kong #39;s Beijing-backed<br>chief executive yesterday<br>ruled out any early moves to<br>pass a controversial national<br>security law which last year<br>sparked a street protest by<br>half a million people."
-          ],
-          [
-           "BRITAIN #39;S largest<br>financial institutions are<br>being urged to take lead roles<br>in lawsuits seeking hundreds<br>of millions of dollars from<br>the scandal-struck US<br>insurance industry."
-          ],
-          [
-           "Bankrupt UAL Corp. (UALAQ.OB:<br>Quote, Profile, Research) on<br>Thursday reported a narrower<br>third-quarter net loss. The<br>parent of United Airlines<br>posted a loss of \\$274<br>million, or"
-          ],
-          [
-           "A three-touchdown point spread<br>and a recent history of late-<br>season collapses had many<br>thinking the UCLA football<br>team would provide little<br>opposition to rival USC #39;s<br>march to the BCS-championship<br>game at the Orange Bowl."
-          ],
-          [
-           " PHOENIX (Sports Network) -<br>Free agent third baseman Troy<br>Glaus is reportedly headed to<br>the Arizona Diamondbacks."
-          ],
-          [
-           "The European Union #39;s head<br>office issued a bleak economic<br>report Tuesday, warning that<br>the sharp rise in oil prices<br>will  quot;take its toll quot;<br>on economic growth next year<br>while the euro #39;s renewed<br>climb could threaten crucial<br>exports."
-          ],
-          [
-           "Third-string tailback Chris<br>Markey ran for 131 yards to<br>lead UCLA to a 34-26 victory<br>over Oregon on Saturday.<br>Markey, playing because of an<br>injury to starter Maurice<br>Drew, also caught five passes<br>for 84 yards"
-          ],
-          [
-           "Though Howard Stern's<br>defection from broadcast to<br>satellite radio is still 16<br>months off, the industry is<br>already trying to figure out<br>what will fill the crater in<br>ad revenue and listenership<br>that he is expected to leave<br>behind."
-          ],
-          [
-           " WASHINGTON (Reuters) - The<br>United States set final  anti-<br>dumping duties of up to 112.81<br>percent on shrimp imported<br>from China and up to 25.76<br>percent on shrimp from Vietnam<br>to  offset unfair pricing, the<br>Commerce Department said on<br>Tuesday."
-          ],
-          [
-           "Jay Payton #39;s three-run<br>homer led the San Diego Padres<br>to a 5-1 win over the San<br>Francisco Giants in National<br>League play Saturday, despite<br>a 701st career blast from<br>Barry Bonds."
-          ],
-          [
-           "The optimists among Rutgers<br>fans were delighted, but the<br>Scarlet Knights still gave the<br>pessimists something to worry<br>about."
-          ],
-          [
-           "Beer consumption has doubled<br>over the past five years,<br>prompting legislators to<br>implement new rules."
-          ],
-          [
-           "BusinessWeek Online - The<br>jubilation that swept East<br>Germany after the fall of the<br>Berlin Wall in 1989 long ago<br>gave way to the sober reality<br>of globalization and market<br>forces. Now a decade of<br>resentment seems to be boiling<br>over. In Eastern cities such<br>as Leipzig or Chemnitz,<br>thousands have taken to the<br>streets since July to protest<br>cuts in unemployment benefits,<br>the main source of livelihood<br>for 1.6 million East Germans.<br>Discontent among<br>reunification's losers fueled<br>big gains by the far left and<br>far right in Brandenburg and<br>Saxony state elections Sept.<br>19. ..."
-          ],
-          [
-           "NEW YORK -- When Office Depot<br>Inc. stores ran an electronics<br>recycling drive last summer<br>that accepted everything from<br>cellphones to televisions,<br>some stores were overwhelmed<br>by the amount of e-trash they<br>received."
-          ],
-          [
-           "In a discovery sure to set off<br>a firestorm of debate over<br>human migration to the western<br>hemisphere, archaeologists in<br>South Carolina say they have<br>uncovered evidence that people<br>lived in eastern North America<br>at least 50,000 years ago -<br>far earlier than"
-          ],
-          [
-           "AP - Former president Bill<br>Clinton on Monday helped<br>launch a new Internet search<br>company backed by the Chinese<br>government which says its<br>technology uses artificial<br>intelligence to produce better<br>results than Google Inc."
-          ],
-          [
-           "The International Monetary<br>Fund expressed concern Tuesday<br>about the impact of the<br>troubles besetting oil major<br>Yukos on Russia #39;s standing<br>as a place to invest."
-          ],
-          [
-           "Perhaps the sight of Maria<br>Sharapova opposite her tonight<br>will jog Serena Williams #39;<br>memory. Wimbledon. The final.<br>You and Maria."
-          ],
-          [
-           "At least 79 people were killed<br>and 74 were missing after some<br>of the worst rainstorms in<br>recent years triggered<br>landslides and flash floods in<br>southwest China, disaster<br>relief officials said<br>yesterday."
-          ],
-          [
-           "LinuxWorld Conference  amp;<br>Expo will come to Boston for<br>the first time in February,<br>underscoring the area's<br>standing as a hub for the<br>open-source software being<br>adopted by thousands of<br>businesses."
-          ],
-          [
-           "BANGKOK Thai military aircraft<br>dropped 100 million paper<br>birds over southern Thailand<br>on Sunday in a gesture<br>intended to promote peace in<br>mainly Muslim provinces, where<br>more than 500 people have died<br>this year in attacks by<br>separatist militants and"
-          ],
-          [
-           "Insurgents threatened on<br>Saturday to cut the throats of<br>two Americans and a Briton<br>seized in Baghdad, and<br>launched a suicide car bomb<br>attack on Iraqi security<br>forces in Kirkuk that killed<br>at least 23 people."
-          ],
-          [
-           "Five days after making the<br>putt that won the Ryder Cup,<br>Colin Montgomerie looked set<br>to miss the cut at a European<br>PGA tour event."
-          ],
-          [
-           "Sun Microsystems plans to<br>release its Sun Studio 10<br>development tool in the fourth<br>quarter of this year,<br>featuring support for 64-bit<br>applications running on AMD<br>Opteron and Nocona processors,<br>Sun officials said on Tuesday."
-          ],
-          [
-           "Karachi - Captain Inzamam ul-<br>Haq and coach Bob Woolmer came<br>under fire on Thursday for<br>choosing to bat first on a<br>tricky pitch after Pakistan<br>#39;s humiliating defeat in<br>the ICC Champions Trophy semi-<br>final."
-          ],
-          [
-           "Scottish champions Celtic saw<br>their three-year unbeaten home<br>record in Europe broken<br>Tuesday as they lost 3-1 to<br>Barcelona in the Champions<br>League Group F opener."
-          ],
-          [
-           "Interest rates on short-term<br>Treasury securities rose in<br>yesterday's auction. The<br>Treasury Department sold \\$19<br>billion in three-month bills<br>at a discount rate of 1.710<br>percent, up from 1.685 percent<br>last week. An additional \\$17<br>billion was sold in six-month<br>bills at a rate of 1.950<br>percent, up from 1.870<br>percent."
-          ],
-          [
-           "Most IT Managers won #39;t<br>question the importance of<br>security, but this priority<br>has been sliding between the<br>third and fourth most<br>important focus for companies."
-          ],
-          [
-           "AP - Andy Roddick searched out<br>Carlos Moya in the throng of<br>jumping, screaming Spanish<br>tennis players, hoping to<br>shake hands."
-          ],
-          [
-           "AP - The Federal Trade<br>Commission on Thursday filed<br>the first case in the country<br>against software companies<br>accused of infecting computers<br>with intrusive \"spyware\" and<br>then trying to sell people the<br>solution."
-          ],
-          [
-           "While shares of Apple have<br>climbed more than 10 percent<br>this week, reaching 52-week<br>highs, two research firms told<br>investors Friday they continue<br>to remain highly bullish about<br>the stock."
-          ],
-          [
-           "Moody #39;s Investors Service<br>on Wednesday said it may cut<br>its bond ratings on HCA Inc.<br>(HCA.N: Quote, Profile,<br>Research) deeper into junk,<br>citing the hospital operator<br>#39;s plan to buy back about<br>\\$2."
-          ],
-          [
-           "States are now barred from<br>imposing telecommunications<br>regulations on Net phone<br>providers."
-          ],
-          [
-           "Telekom Austria AG, the<br>country #39;s biggest phone<br>operator, won the right to buy<br>Bulgaria #39;s largest mobile<br>phone company, MobilTel EAD,<br>for 1.6 billion euros (\\$2.1<br>billion), an acquisition that<br>would add 3 million<br>subscribers."
-          ],
-          [
-           "Shares of ID Biomedical jumped<br>after the company reported<br>Monday that it signed long-<br>term agreements with the three<br>largest flu vaccine<br>wholesalers in the United<br>States in light of the<br>shortage of vaccine for the<br>current flu season."
-          ],
-          [
-           "ENGLAND captain and Real<br>Madrid midfielder David<br>Beckham has played down<br>speculation that his club are<br>moving for England manager<br>Sven-Goran Eriksson."
-          ],
-          [
-           "The federal government closed<br>its window on the oil industry<br>Thursday, saying that it is<br>selling its last 19 per cent<br>stake in Calgary-based Petro-<br>Canada."
-          ],
-          [
-           "Strong sales of new mobile<br>phone models boosts profits at<br>Carphone Warehouse but the<br>retailer's shares fall on<br>concerns at a decline in<br>profits from pre-paid phones."
-          ],
-          [
-           " NEW YORK (Reuters) - IBM and<br>top scientific research<br>organizations are joining<br>forces in a humanitarian<br>effort to  tap the unused<br>power of millions of computers<br>and help solve  complex social<br>problems."
-          ],
-          [
-           " NEW YORK, Nov. 11 -- The 40<br>percent share price slide in<br>Merck  #38; Co. in the five<br>weeks after it pulled the<br>painkiller Vioxx off the<br>market highlighted larger<br>problems in the pharmaceutical<br>industry that may depress<br>performance for years,<br>according to academics and<br>stock analysts who follow the<br>sector."
-          ],
-          [
-           "Low-fare carrier Southwest<br>Airlines Co. said Thursday<br>that its third-quarter profit<br>rose 12.3 percent to beat Wall<br>Street expectations despite<br>higher fuel costs."
-          ],
-          [
-           "Another shock hit the drug<br>sector Friday when<br>pharmaceutical giant Pfizer<br>Inc. announced that it found<br>an increased heart risk to<br>patients for its blockbuster<br>arthritis drug Celebrex."
-          ],
-          [
-           "AFP - National Basketball<br>Association players trying to<br>win a fourth consecutive<br>Olympic gold medal for the<br>United States have gotten the<br>wake-up call that the \"Dream<br>Team\" days are done even if<br>supporters have not."
-          ],
-          [
-           " BEIJING (Reuters) - Secretary<br>of State Colin Powell will<br>urge China Monday to exert its<br>influence over North Korea to<br>resume six-party negotiations<br>on scrapping its suspected<br>nuclear weapons program."
-          ],
-          [
-           "Reuters - An Israeli missile<br>strike killed at least\\two<br>Hamas gunmen in Gaza City<br>Monday, a day after a<br>top\\commander of the Islamic<br>militant group was killed in a<br>similar\\attack, Palestinian<br>witnesses and security sources<br>said."
-          ],
-          [
-           "England will be seeking their<br>third clean sweep of the<br>summer when the NatWest<br>Challenge against India<br>concludes at Lord #39;s. After<br>beating New Zealand and West<br>Indies 3-0 and 4-0 in Tests,<br>they have come alive"
-          ],
-          [
-           "AP - The Pentagon has restored<br>access to a Web site that<br>assists soldiers and other<br>Americans living overseas in<br>voting, after receiving<br>complaints that its security<br>measures were preventing<br>legitimate voters from using<br>it."
-          ],
-          [
-           "The number of US information<br>technology workers rose 2<br>percent to 10.5 million in the<br>first quarter of this year,<br>but demand for them is<br>dropping, according to a new<br>report."
-          ],
-          [
-           "Montreal - The British-built<br>Canadian submarine HMCS<br>Chicoutimi, crippled since a<br>fire at sea that killed one of<br>its crew, is under tow and is<br>expected in Faslane, Scotland,<br>early next week, Canadian<br>naval commander Tyrone Pile<br>said on Friday."
-          ],
-          [
-           "AP - Grizzly and black bears<br>killed a majority of elk<br>calves in northern Yellowstone<br>National Park for the second<br>year in a row, preliminary<br>study results show."
-          ],
-          [
-           "Thirty-five Pakistanis freed<br>from the US Guantanamo Bay<br>prison camp arrived home on<br>Saturday and were taken<br>straight to prison for further<br>interrogation, the interior<br>minister said."
-          ],
-          [
-           "AP - Mark Richt knows he'll<br>have to get a little creative<br>when he divvies up playing<br>time for Georgia's running<br>backs next season. Not so on<br>Saturday. Thomas Brown is the<br>undisputed starter for the<br>biggest game of the season."
-          ],
-          [
-           "Witnesses in the trial of a US<br>soldier charged with abusing<br>prisoners at Abu Ghraib have<br>told the court that the CIA<br>sometimes directed abuse and<br>orders were received from<br>military command to toughen<br>interrogations."
-          ],
-          [
-           "Insurance firm says its board<br>now consists of its new CEO<br>Michael Cherkasky and 10<br>outside members. NEW YORK<br>(Reuters) - Marsh  amp;<br>McLennan Cos."
-          ],
-          [
-           "Michael Phelps, the six-time<br>Olympic champion, issued an<br>apology yesterday after being<br>arrested and charged with<br>drunken driving in the United<br>States."
-          ],
-          [
-           "PC World - The one-time World<br>Class Product of the Year PDA<br>gets a much-needed upgrade."
-          ],
-          [
-           "AP - Italian and Lebanese<br>authorities have arrested 10<br>suspected terrorists who<br>planned to blow up the Italian<br>Embassy in Beirut, an Italian<br>news agency and the Defense<br>Ministry said Tuesday."
-          ],
-          [
-           "CORAL GABLES, Fla. -- John F.<br>Kerry and President Bush<br>clashed sharply over the war<br>in Iraq last night during the<br>first debate of the<br>presidential campaign season,<br>with the senator from<br>Massachusetts accusing"
-          ],
-          [
-           "GONAIVES, Haiti -- While<br>desperately hungry flood<br>victims wander the streets of<br>Gonaives searching for help,<br>tons of food aid is stacking<br>up in a warehouse guarded by<br>United Nations peacekeepers."
-          ],
-          [
-           "As part of its much-touted new<br>MSN Music offering, Microsoft<br>Corp. (MSFT) is testing a Web-<br>based radio service that<br>mimics nearly 1,000 local<br>radio stations, allowing users<br>to hear a version of their<br>favorite radio station with<br>far fewer interruptions."
-          ],
-          [
-           "AFP - The resignation of<br>disgraced Fiji Vice-President<br>Ratu Jope Seniloli failed to<br>quell anger among opposition<br>leaders and the military over<br>his surprise release from<br>prison after serving just<br>three months of a four-year<br>jail term for his role in a<br>failed 2000 coup."
-          ],
-          [
-           "ATHENS Larry Brown, the US<br>coach, leaned back against the<br>scorer #39;s table, searching<br>for support on a sinking ship.<br>His best player, Tim Duncan,<br>had just fouled out, and the<br>options for an American team<br>that"
-          ],
-          [
-           "Sourav Ganguly files an appeal<br>against a two-match ban<br>imposed for time-wasting."
-          ],
-          [
-           "Ziff Davis - A quick<br>resolution to the Mambo open-<br>source copyright dispute seems<br>unlikely now that one of the<br>parties has rejected an offer<br>for mediation."
-          ],
-          [
-           "Greek police surrounded a bus<br>full of passengers seized by<br>armed hijackers along a<br>highway from an Athens suburb<br>Wednesday, police said."
-          ],
-          [
-           "Spain have named an unchanged<br>team for the Davis Cup final<br>against the United States in<br>Seville on 3-5 December.<br>Carlos Moya, Juan Carlos<br>Ferrero, Rafael Nadal and<br>Tommy Robredo will take on the<br>US in front of 22,000 fans at<br>the converted Olympic stadium."
-          ],
-          [
-           "BAGHDAD: A suicide car bomber<br>attacked a police convoy in<br>Baghdad yesterday as guerillas<br>kept pressure on Iraq #39;s<br>security forces despite a<br>bloody rout of insurgents in<br>Fallujah."
-          ],
-          [
-           "Slot machine maker<br>International Game Technology<br>(IGT.N: Quote, Profile,<br>Research) on Tuesday posted<br>better-than-expected quarterly<br>earnings, as casinos bought"
-          ],
-          [
-           "Fixtures and fittings from<br>Damien Hirst's restaurant<br>Pharmacy sell for 11.1, 8m<br>more than expected."
-          ],
-          [
-           "Last Tuesday night, Harvard<br>knocked off rival Boston<br>College, which was ranked No.<br>1 in the country. Last night,<br>the Crimson knocked off<br>another local foe, Boston<br>University, 2-1, at Walter<br>Brown Arena, which marked the<br>first time since 1999 that<br>Harvard had beaten them both<br>in the same season."
-          ],
-          [
-           "Venezuelan election officials<br>say they expect to announce<br>Saturday, results of a partial<br>audit of last Sunday #39;s<br>presidential recall<br>referendum."
-          ],
-          [
-           "About 500 prospective jurors<br>will be in an Eagle, Colorado,<br>courtroom Friday, answering an<br>82-item questionnaire in<br>preparation for the Kobe<br>Bryant sexual assault trial."
-          ],
-          [
-           "Students take note - endless<br>journeys to the library could<br>become a thing of the past<br>thanks to a new multimillion-<br>pound scheme to make classic<br>texts available at the click<br>of a mouse."
-          ],
-          [
-           "Moscow - The next crew of the<br>International Space Station<br>(ISS) is to contribute to the<br>Russian search for a vaccine<br>against Aids, Russian<br>cosmonaut Salijan Sharipovthe<br>said on Thursday."
-          ],
-          [
-           "Locked away in fossils is<br>evidence of a sudden solar<br>cooling. Kate Ravilious meets<br>the experts who say it could<br>explain a 3,000-year-old mass<br>migration - and today #39;s<br>global warming."
-          ],
-          [
-           "By ANICK JESDANUN    NEW YORK<br>(AP) -- Taran Rampersad didn't<br>complain when he failed to<br>find anything on his hometown<br>in the online encyclopedia<br>Wikipedia. Instead, he simply<br>wrote his own entry for San<br>Fernando, Trinidad and<br>Tobago..."
-          ],
-          [
-           "Five years after catastrophic<br>floods and mudslides killed<br>thousands along Venezuela's<br>Caribbean coast, survivors in<br>this town still see the signs<br>of destruction - shattered<br>concrete walls and tall weeds<br>growing atop streets covered<br>in dried mud."
-          ],
-          [
-           "How do you top a battle<br>between Marines and an alien<br>religious cult fighting to the<br>death on a giant corona in<br>outer space? The next logical<br>step is to take that battle to<br>Earth, which is exactly what<br>Microsoft"
-          ],
-          [
-           "Sony Ericsson Mobile<br>Communications Ltd., the<br>mobile-phone venture owned by<br>Sony Corp. and Ericsson AB,<br>said third-quarter profit rose<br>45 percent on camera phone<br>demand and forecast this<br>quarter will be its strongest."
-          ],
-          [
-           "NEW YORK, September 17<br>(newratings.com) - Alcatel<br>(ALA.NYS) has expanded its<br>operations and presence in the<br>core North American<br>telecommunication market with<br>two separate acquisitions for<br>about \\$277 million."
-          ],
-          [
-           "Four U.S. agencies yesterday<br>announced a coordinated attack<br>to stem the global trade in<br>counterfeit merchandise and<br>pirated music and movies, an<br>underground industry that law-<br>enforcement officials estimate<br>to be worth \\$500 billion each<br>year."
-          ],
-          [
-           "BEIJING The NBA has reached<br>booming, basketball-crazy<br>China _ but the league doesn<br>#39;t expect to make any money<br>soon. The NBA flew more than<br>100 people halfway around the<br>world for its first games in<br>China, featuring"
-          ],
-          [
-           "The UN nuclear watchdog<br>confirmed Monday that nearly<br>400 tons of powerful<br>explosives that could be used<br>in conventional or nuclear<br>missiles disappeared from an<br>unguarded military<br>installation in Iraq."
-          ],
-          [
-           " NEW YORK (Reuters) - Curt<br>Schilling pitched 6 2/3<br>innings  and Manny Ramirez hit<br>a three-run homer in a seven-<br>run fourth  frame to lead the<br>Boston Red Sox to a 9-3 win<br>over the host  Anaheim Angels<br>in their American League<br>Divisional Series  opener<br>Tuesday."
-          ],
-          [
-           "AP - The game between the<br>Minnesota Twins and the New<br>York Yankees on Tuesday night<br>was postponed by rain."
-          ],
-          [
-           "Oil giant Shell swept aside<br>nearly 100 years of history<br>today when it unveiled plans<br>to merge its UK and Dutch<br>parent companies. Shell said<br>scrapping its twin-board<br>structure"
-          ],
-          [
-           "Caesars Entertainment Inc. on<br>Thursday posted a rise in<br>third-quarter profit as Las<br>Vegas hotels filled up and<br>Atlantic City properties<br>squeaked out a profit that was<br>unexpected by the company."
-          ],
-          [
-           "Half of all U.S. Secret<br>Service agents are dedicated<br>to protecting President<br>Washington #151;and all the<br>other Presidents on U.S.<br>currency #151;from<br>counterfeiters."
-          ],
-          [
-           "One of India #39;s leading<br>telecommunications providers<br>will use Cisco Systems #39;<br>gear to build its new<br>Ethernet-based broadband<br>network."
-          ],
-          [
-           "Militants in Iraq have killed<br>the second of two US civilians<br>they were holding hostage,<br>according to a statement on an<br>Islamist website."
-          ],
-          [
-           "PARIS The verdict is in: The<br>world #39;s greatest race car<br>driver, the champion of<br>champions - all disciplines<br>combined - is Heikki<br>Kovalainen."
-          ],
-          [
-           "Pakistan won the toss and<br>unsurprisingly chose to bowl<br>first as they and West Indies<br>did battle at the Rose Bowl<br>today for a place in the ICC<br>Champions Trophy final against<br>hosts England."
-          ],
-          [
-           "Shares of Beacon Roofing<br>Suppler Inc. shot up as much<br>as 26 percent in its trading<br>debut Thursday, edging out<br>bank holding company Valley<br>Bancorp as the biggest gainer<br>among a handful of new stocks<br>that went public this week."
-          ],
-          [
-           "More than 4,000 American and<br>Iraqi soldiers mounted a<br>military assault on the<br>insurgent-held city of<br>Samarra."
-          ],
-          [
-           "Maxime Faget conceived and<br>proposed the development of<br>the one-man spacecraft used in<br>Project Mercury, which put the<br>first American astronauts into<br>suborbital flight, then<br>orbital flight"
-          ],
-          [
-           "The first weekend of holiday<br>shopping went from red-hot to<br>dead white, as a storm that<br>delivered freezing, snowy<br>weather across Colorado kept<br>consumers at home."
-          ],
-          [
-           " MEXICO CITY (Reuters) -<br>Mexican President Vicente Fox<br>said  on Monday he hoped<br>President Bush's re-election<br>meant a  bilateral accord on<br>migration would be reached<br>before his own  term runs out<br>at the end of 2006."
-          ],
-          [
-           " LONDON (Reuters) - The dollar<br>fell within half a cent of<br>last week's record low against<br>the euro on Thursday after<br>capital inflows data added to<br>worries the United States may<br>struggle to fund its current<br>account deficit."
-          ],
-          [
-           " BRUSSELS (Reuters) - French<br>President Jacques Chirac said<br>on Friday he had not refused<br>to meet Iraqi interim Prime<br>Minister Iyad Allawi after<br>reports he was snubbing the<br>Iraqi  leader by leaving an EU<br>meeting in Brussels early."
-          ],
-          [
-           "China has pledged to invest<br>\\$20 billion in Argentina in<br>the next 10 years, La Nacion<br>reported Wednesday. The<br>announcement came during the<br>first day of a two-day visit"
-          ],
-          [
-           "NEW YORK - Former President<br>Bill Clinton was in good<br>spirits Saturday, walking<br>around his hospital room in<br>street clothes and buoyed by<br>thousands of get-well messages<br>as he awaited heart bypass<br>surgery early this coming<br>week, people close to the<br>family said.    Clinton was<br>expected to undergo surgery as<br>early as Monday but probably<br>Tuesday, said Democratic Party<br>Chairman Terry McAuliffe, who<br>said the former president was<br>\"upbeat\" when he spoke to him<br>by phone Friday..."
-          ],
-          [
-           "Toyota Motor Corp., the world<br>#39;s biggest carmaker by<br>value, will invest 3.8 billion<br>yuan (\\$461 million) with its<br>partner Guangzhou Automobile<br>Group to boost manufacturing<br>capacity in"
-          ],
-          [
-           "Poland will cut its troops in<br>Iraq early next year and won<br>#39;t stay in the country<br>quot;an hour longer quot; than<br>needed, the country #39;s<br>prime minister said Friday."
-          ],
-          [
-           "AP - Boston Red Sox center<br>fielder Johnny Damon is having<br>a recurrence of migraine<br>headaches that first bothered<br>him after a collision in last<br>year's playoffs."
-          ],
-          [
-           "The patch fixes a flaw in the<br>e-mail server software that<br>could be used to get access to<br>in-boxes and information."
-          ],
-          [
-           "Felix Cardenas of Colombia won<br>the 17th stage of the Spanish<br>Vuelta cycling race Wednesday,<br>while defending champion<br>Roberto Heras held onto the<br>overall leader #39;s jersey<br>for the sixth day in a row."
-          ],
-          [
-           "AP - Being the biggest dog may<br>pay off at feeding time, but<br>species that grow too large<br>may be more vulnerable to<br>extinction, new research<br>suggests."
-          ],
-          [
-           "A car bomb exploded at a US<br>military convoy in the<br>northern Iraqi city of Mosul,<br>causing several casualties,<br>the army and Iraqi officials<br>said."
-          ],
-          [
-           "Newest Efficeon processor also<br>offers higher frequency using<br>less power."
-          ],
-          [
-           "BAE Systems has launched a<br>search for a senior American<br>businessman to become a non-<br>executive director. The high-<br>profile appointment is<br>designed to strengthen the<br>board at a time when the<br>defence giant is"
-          ],
-          [
-           "AP - In what it calls a first<br>in international air travel,<br>Finnair says it will let its<br>frequent fliers check in using<br>text messages on mobile<br>phones."
-          ],
-          [
-           "Computer Associates<br>International is expected to<br>announce that its new chief<br>executive will be John<br>Swainson, an I.B.M. executive<br>with strong technical and<br>sales credentials."
-          ],
-          [
-           "Established star Landon<br>Donovan and rising sensation<br>Eddie Johnson carried the<br>United States into the<br>regional qualifying finals for<br>the 2006 World Cup in emphatic<br>fashion Wednesday night."
-          ],
-          [
-           "STOCKHOLM (Dow<br>Jones)--Expectations for<br>Telefon AB LM Ericsson #39;s<br>(ERICY) third-quarter<br>performance imply that while<br>sales of mobile telephony<br>equipment are expected to have<br>dipped, the company"
-          ],
-          [
-           "ATHENS, Greece - Michael<br>Phelps took care of qualifying<br>for the Olympic 200-meter<br>freestyle semifinals Sunday,<br>and then found out he had been<br>added to the American team for<br>the evening's 400 freestyle<br>relay final.    Phelps' rivals<br>Ian Thorpe and Pieter van den<br>Hoogenband and teammate Klete<br>Keller were faster than the<br>teenager in the 200 free<br>preliminaries..."
-          ],
-          [
-           " JERUSALEM (Reuters) - Israeli<br>Prime Minister Ariel Sharon<br>intends to present a timetable<br>for withdrawal from Gaza to<br>lawmakers from his Likud Party<br>Tuesday despite a mutiny in<br>the  right-wing bloc over the<br>plan."
-          ],
-          [
-           "Search Engine for Programming<br>Code\\\\An article at Newsforge<br>pointed me to Koders (<br>http://www.koders.com ) a<br>search engine for finding<br>programming code. Nifty.\\\\The<br>front page allows you to<br>specify keywords, sixteen<br>languages (from ASP to VB.NET)<br>and sixteen licenses (from AFL<br>to ZPL -- fortunately there's<br>an information page to ..."
-          ],
-          [
-           " #147;Apple once again was the<br>star of the show at the annual<br>MacUser awards, #148; reports<br>MacUser,  #147;taking away six<br>Maxine statues including<br>Product of the Year for the<br>iTunes Music Store. #148;<br>Other Apple award winners:<br>Power Mac G5, AirPort Express,<br>20-inch Apple Cinema Display,<br>GarageBand and DVD Studio Pro<br>3. Nov 22"
-          ],
-          [
-           " KABUL (Reuters) - Three U.N.<br>workers held by militants in<br>Afghanistan were in their<br>third week of captivity on<br>Friday  after calls from both<br>sides for the crisis to be<br>resolved ahead  of this<br>weekend's Muslim festival of<br>Eid al-Fitr."
-          ],
-          [
-           "AP - A sweeping wildlife<br>preserve in southwestern<br>Arizona is among the nation's<br>10 most endangered refuges,<br>due in large part to illegal<br>drug and immigrant traffic and<br>Border Patrol operations, a<br>conservation group said<br>Friday."
-          ],
-          [
-           "ROME, Oct 29 (AFP) - French<br>President Jacques Chirac urged<br>the head of the incoming<br>European Commission Friday to<br>take  quot;the appropriate<br>decisions quot; to resolve a<br>row over his EU executive team<br>which has left the EU in<br>limbo."
-          ],
-          [
-           "The Anglo-Dutch oil giant<br>Shell today sought to draw a<br>line under its reserves<br>scandal by announcing plans to<br>spend \\$15bn (8.4bn) a year to<br>replenish reserves and develop<br>production in its oil and gas<br>business."
-          ],
-          [
-           "SEPTEMBER 20, 2004<br>(COMPUTERWORLD) - At<br>PeopleSoft Inc. #39;s Connect<br>2004 conference in San<br>Francisco this week, the<br>software vendor is expected to<br>face questions from users<br>about its ability to fend off<br>Oracle Corp."
-          ],
-          [
-           "Russia's parliament will<br>launch an inquiry into a<br>school siege that killed over<br>300 hostages, President<br>Vladimir Putin said on Friday,<br>but analysts doubt it will<br>satisfy those who blame the<br>carnage on security services."
-          ],
-          [
-           "Tony Blair talks to business<br>leaders about new proposals<br>for a major shake-up of the<br>English exam system."
-          ],
-          [
-           "KUALA LUMPUR, Malaysia A<br>Malaysian woman has claimed a<br>new world record after living<br>with over six-thousand<br>scorpions for 36 days<br>straight."
-          ],
-          [
-           "PBS's Charlie Rose quizzes Sun<br>co-founder Bill Joy,<br>Monster.com chief Jeff Taylor,<br>and venture capitalist John<br>Doerr."
-          ],
-          [
-           "Circulation declined at most<br>major US newspapers in the<br>last half year, the latest<br>blow for an industry already<br>rocked by a scandal involving<br>circulation misstatements that<br>has undermined the confidence<br>of investors and advertisers."
-          ],
-          [
-           "Skype Technologies is teaming<br>with Siemens to offer cordless<br>phone users the ability to<br>make Internet telephony calls,<br>in addition to traditional<br>calls, from their handsets."
-          ],
-          [
-           "AP - After years of<br>resistance, the U.S. trucking<br>industry says it will not try<br>to impede or delay a new<br>federal rule aimed at cutting<br>diesel pollution."
-          ],
-          [
-           "INDIANAPOLIS - ATA Airlines<br>has accepted a \\$117 million<br>offer from Southwest Airlines<br>that would forge close ties<br>between two of the largest US<br>discount carriers."
-          ],
-          [
-           "could take drastic steps if<br>the talks did not proceed as<br>Tehran wants. Mehr news agency<br>quoted him as saying on<br>Wednesday. that could be used"
-          ],
-          [
-           "Wizards coach Eddie Jordan<br>says the team is making a<br>statement that immaturity will<br>not be tolerated by suspending<br>Kwame Brown one game for not<br>taking part in a team huddle<br>during a loss to Denver."
-          ],
-          [
-           "EVERETT  Fire investigators<br>are still trying to determine<br>what caused a two-alarm that<br>destroyed a portion of a South<br>Everett shopping center this<br>morning."
-          ],
-          [
-           "Umesh Patel, a 36-year old<br>software engineer from<br>California, debated until the<br>last minute."
-          ],
-          [
-           "Sure, the PeopleSoft board<br>told shareholders to just say<br>no. This battle will go down<br>to the wire, and even<br>afterward Ellison could<br>prevail."
-          ],
-          [
-           "Investors cheered by falling<br>oil prices and an improving<br>job picture sent stocks higher<br>Tuesday, hoping that the news<br>signals a renewal of economic<br>strength and a fall rally in<br>stocks."
-          ],
-          [
-           "AP - Andy Roddick has yet to<br>face a challenge in his U.S.<br>Open title defense. He beat<br>No. 18 Tommy Robredo of Spain<br>6-3, 6-2, 6-4 Tuesday night to<br>move into the quarterfinals<br>without having lost a set."
-          ],
-          [
-           "Now that hell froze over in<br>Boston, New England braces for<br>its rarest season -- a winter<br>of content. Red Sox fans are<br>adrift from the familiar<br>torture of the past."
-          ],
-          [
-           " CHICAGO (Reuters) - Wal-Mart<br>Stores Inc. &lt;A HREF=\"http:/<br>/www.investor.reuters.com/Full<br>Quote.aspx?ticker=WMT.N target<br>=/stocks/quickinfo/fullquote\"&<br>gt;WMT.N&lt;/A&gt;, the<br>world's largest retailer, said<br>on Saturday it still<br>anticipates  September U.S.<br>sales to be up 2 percent to 4<br>percent at stores  open at<br>least a year."
-          ],
-          [
-           " TOKYO (Reuters) - Tokyo's<br>Nikkei stock average opened<br>down  0.15 percent on<br>Wednesday as investors took a<br>breather from the  market's<br>recent rises and sold shares<br>of gainers such as Sharp<br>Corp."
-          ],
-          [
-           "AP - From now until the start<br>of winter, male tarantulas are<br>roaming around, searching for<br>female mates, an ideal time to<br>find out where the spiders<br>flourish in Arkansas."
-          ],
-          [
-           "Israeli authorities have<br>launched an investigation into<br>death threats against Israeli<br>Prime Minister Ariel Sharon<br>and other officials supporting<br>his disengagement plan from<br>Gaza and parts of the West<br>Bank, Jerusalem police said<br>Tuesday."
-          ],
-          [
-           "NewsFactor - While a U.S.<br>District Court continues to<br>weigh the legality of<br>\\Oracle's (Nasdaq: ORCL)<br>attempted takeover of<br>\\PeopleSoft (Nasdaq: PSFT),<br>Oracle has taken the necessary<br>steps to ensure the offer does<br>not die on the vine with<br>PeopleSoft's shareholders."
-          ],
-          [
-           "NEW YORK : World oil prices<br>fell, capping a drop of more<br>than 14 percent in a two-and-<br>a-half-week slide triggered by<br>a perception of growing US<br>crude oil inventories."
-          ],
-          [
-           "SUFFOLK -- Virginia Tech<br>scientists are preparing to<br>protect the state #39;s<br>largest crop from a disease<br>with strong potential to do<br>damage."
-          ],
-          [
-           "It was a carefully scripted<br>moment when Russian President<br>Vladimir Putin began quoting<br>Taras Shevchenko, this country<br>#39;s 19th-century bard,<br>during a live television"
-          ],
-          [
-           "China says it welcomes Russia<br>#39;s ratification of the<br>Kyoto Protocol that aims to<br>stem global warming by<br>reducing greenhouse-gas<br>emissions."
-          ],
-          [
-           "Analysts said the smartphone<br>enhancements hold the<br>potential to bring PalmSource<br>into an expanding market that<br>still has room despite early<br>inroads by Symbian and<br>Microsoft."
-          ],
-          [
-           "The Metropolitan<br>Transportation Authority is<br>proposing a tax increase to<br>raise \\$900 million a year to<br>help pay for a five-year<br>rebuilding program."
-          ],
-          [
-           "AFP - The Canadian armed<br>forces chief of staff on was<br>elected to take over as head<br>of NATO's Military Committee,<br>the alliance's highest<br>military authority, military<br>and diplomatic sources said."
-          ],
-          [
-           "AFP - Two proposed resolutions<br>condemning widespread rights<br>abuses in Sudan and Zimbabwe<br>failed to pass a UN committee,<br>mired in debate between<br>African and western nations."
-          ],
-          [
-           " NEW YORK (Reuters) -<br>Citigroup Inc. &lt;A HREF=\"htt<br>p://www.investor.reuters.com/F<br>ullQuote.aspx?ticker=C.N targe<br>t=/stocks/quickinfo/fullquote\"<br>&gt;C.N&lt;/A&gt; the world's<br>largest financial services<br>company, said on Tuesday it<br>will  acquire First American<br>Bank in the quickly-growing<br>Texas  market."
-          ],
-          [
-           " SINGAPORE (Reuters) - U.S.<br>oil prices hovered just below<br>\\$50 a barrel on Tuesday,<br>holding recent gains on a rash<br>of  crude supply outages and<br>fears over thin heating oil<br>tanks."
-          ],
-          [
-           "THE South Africans have called<br>the Wallabies scrum cheats as<br>a fresh round of verbal<br>warfare opened in the Republic<br>last night."
-          ],
-          [
-           "The return of noted reformer<br>Nabil Amr to Palestinian<br>politics comes at a crucial<br>juncture."
-          ],
-          [
-           "An overwhelming majority of<br>NHL players who expressed<br>their opinion in a poll said<br>they would not support a<br>salary cap even if it meant<br>saving a season that was<br>supposed to have started Oct.<br>13."
-          ],
-          [
-           "Tony Eury Sr. oversees Dale<br>Earnhardt Jr. on the<br>racetrack, but Sunday he<br>extended his domain to Victory<br>Lane. Earnhardt was unbuckling<br>to crawl out of the No."
-          ],
-          [
-           "AP - After two debates, voters<br>have seen President Bush look<br>peevish and heard him pass the<br>buck. They've watched Sen.<br>John Kerry deny he's a flip-<br>flopper and then argue that<br>Saddam Hussein was a threat<br>#151; and wasn't. It's no<br>wonder so few minds have<br>changed."
-          ],
-          [
-           "(Sports Network) - The New<br>York Yankees try to move one<br>step closer to a division<br>title when they conclude their<br>critical series with the<br>Boston Red Sox at Fenway Park."
-          ],
-          [
-           "US retail sales fell 0.3 in<br>August as rising energy costs<br>and bad weather persuaded<br>shoppers to reduce their<br>spending."
-          ],
-          [
-           "The United States says the<br>Lebanese parliament #39;s<br>decision Friday to extend the<br>term of pro-Syrian President<br>Emile Lahoud made a<br>quot;crude mockery of<br>democratic principles."
-          ],
-          [
-           "Kurt Busch claimed a stake in<br>the points lead in the NASCAR<br>Chase for the Nextel Cup<br>yesterday, winning the<br>Sylvania 300 at New Hampshire<br>International Speedway."
-          ],
-          [
-           "TOKYO (AFP) - Japan #39;s<br>Fujitsu and Cisco Systems of<br>the US said they have agreed<br>to form a strategic alliance<br>focusing on routers and<br>switches that will enable<br>businesses to build advanced<br>Internet Protocol (IP)<br>networks."
-          ],
-          [
-           "GEORGETOWN, Del., Oct. 28 --<br>Plaintiffs in a shareholder<br>lawsuit over former Walt<br>Disney Co. president Michael<br>Ovitz's \\$140 million<br>severance package attempted<br>Thursday to portray Ovitz as a<br>dishonest bumbler who botched<br>the hiring of a major<br>television executive and<br>pushed the release of a movie<br>that angered the Chinese<br>government, damaging Disney's<br>business prospects in the<br>country."
-          ],
-          [
-           "US stocks gained ground in<br>early trading Thursday after<br>tame inflation reports and<br>better than expected jobless<br>news. Oil prices held steady<br>as Hurricane Ivan battered the<br>Gulf coast, where oil<br>operations have halted."
-          ],
-          [
-           "It #39;s a new internet<br>browser. The first full<br>version, Firefox 1.0, was<br>launched earlier this month.<br>In the sense it #39;s a<br>browser, yes, but the<br>differences are larger than<br>the similarities."
-          ],
-          [
-           "LOUDON, NH - As this<br>newfangled stretch drive for<br>the Nextel Cup championship<br>ensues, Jeff Gordon has to be<br>considered the favorite for a<br>fifth title."
-          ],
-          [
-           "PepsiCo. Inc., the world #39;s<br>No. 2 soft- drink maker, plans<br>to buy General Mills Inc.<br>#39;s stake in their European<br>joint venture for \\$750<br>million in cash, giving it<br>complete ownership of Europe<br>#39;s largest snack-food<br>company."
-          ],
-          [
-           "Microsoft will accelerate SP2<br>distribution  to meet goal of<br>100 million downloads in two<br>months."
-          ],
-          [
-           " NEW YORK (Reuters) - U.S.<br>stocks opened little changed<br>on  Friday, after third-<br>quarter gross domestic product<br>data showed  the U.S. economy<br>grew at a slower-than-expected<br>pace."
-          ],
-          [
-           "International Business<br>Machines Corp., taken to court<br>by workers over changes it<br>made to its traditional<br>pension plan, has decided to<br>stop offering any such plan to<br>new employees."
-          ],
-          [
-           "NEW YORK - With four of its<br>executives pleading guilty to<br>price-fixing charges today,<br>Infineon will have a hard time<br>arguing that it didn #39;t fix<br>prices in its ongoing<br>litigation with Rambus."
-          ],
-          [
-           "By nick giongco. YOU KNOW you<br>have reached the status of a<br>boxing star when ring<br>announcer extraordinaire<br>Michael Buffer calls out your<br>name in his trademark booming<br>voice during a high-profile<br>event like yesterday"
-          ],
-          [
-           "Canadian Press - OTTAWA (CP) -<br>The prime minister says he's<br>been assured by President<br>George W. Bush that the U.S.<br>missile defence plan does not<br>necessarily involve the<br>weaponization of space."
-          ],
-          [
-           "AP - Even with a big lead,<br>Eric Gagne wanted to pitch in<br>front of his hometown fans one<br>last time."
-          ],
-          [
-           " NEW YORK (Reuters) - Limited<br>Brands Inc. &lt;A HREF=\"http:/<br>/www.investor.reuters.com/Full<br>Quote.aspx?ticker=LTD.N target<br>=/stocks/quickinfo/fullquote\"&<br>gt;LTD.N&lt;/A&gt; on<br>Thursday reported higher<br>quarterly operating profit as<br>cost  controls and strong<br>lingerie sales offset poor<br>results at the  retailer's<br>Express apparel stores."
-          ],
-          [
-           "General Motors and<br>DaimlerChrysler are<br>collaborating on development<br>of fuel- saving hybrid engines<br>in hopes of cashing in on an<br>expanding market dominated by<br>hybrid leaders Toyota and<br>Honda."
-          ],
-          [
-           "ATHENS, Greece -- Larry Brown<br>was despondent, the head of<br>the US selection committee was<br>defensive and an irritated<br>Allen Iverson was hanging up<br>on callers who asked what went<br>wrong."
-          ],
-          [
-           "Fifty-six miners are dead and<br>another 92 are still stranded<br>underground after a gas blast<br>at the Daping coal mine in<br>Central China #39;s Henan<br>Province, safety officials<br>said Thursday."
-          ],
-          [
-           "BEIRUT, Lebanon - Three<br>Lebanese men and their Iraqi<br>driver have been kidnapped in<br>Iraq, the Lebanese Foreign<br>Ministry said Sunday, as<br>Iraq's prime minister said his<br>government was working for the<br>release of two Americans and a<br>Briton also being held<br>hostage.    Gunmen snatched<br>the three Lebanese, who worked<br>for a travel agency with a<br>branch in Baghdad, as they<br>drove on the highway between<br>the capital and Fallujah on<br>Friday night, a ministry<br>official said..."
-          ],
-          [
-           "PORTLAND, Ore. - It's been<br>almost a year since singer-<br>songwriter Elliott Smith<br>committed suicide, and fans<br>and friends will be looking<br>for answers as the posthumous<br>\"From a Basement on the Hill\"<br>is released..."
-          ],
-          [
-           "AP - Courtney Brown refuses to<br>surrender to injuries. He's<br>already planning another<br>comeback."
-          ],
-          [
-           " GAZA (Reuters) - Israel<br>expanded its military<br>offensive in  northern Gaza,<br>launching two air strikes<br>early on Monday that  killed<br>at least three Palestinians<br>and wounded two, including a<br>senior Hamas leader, witnesses<br>and medics said."
-          ],
-          [
-           " TOKYO (Reuters) - Nintendo<br>Co. Ltd. raised its 2004<br>shipment target for its DS<br>handheld video game device by<br>40  percent to 2.8 million<br>units on Thursday after many<br>stores in  Japan and the<br>United States sold out in the<br>first week of  sales."
-          ],
-          [
-           "It took an off-the-cuff<br>reference to a serial<br>murderer/cannibal to punctuate<br>the Robby Gordon storyline.<br>Gordon has been vilified by<br>his peers and put on probation"
-          ],
-          [
-           "By BOBBY ROSS JR. Associated<br>Press Writer. play the Atlanta<br>Hawks. They will be treated to<br>free food and drink and have.<br>their pictures taken with<br>Mavericks players, dancers and<br>team officials."
-          ],
-          [
-           "ARSENAL #39;S Brazilian World<br>Cup winning midfielder<br>Gilberto Silva is set to be<br>out for at least a month with<br>a back injury, the Premiership<br>leaders said."
-          ],
-          [
-           "INDIANAPOLIS -- With a package<br>of academic reforms in place,<br>the NCAA #39;s next crusade<br>will address what its<br>president calls a dangerous<br>drift toward professionalism<br>and sports entertainment."
-          ],
-          [
-           "Autodesk  this week unwrapped<br>an updated version of its<br>hosted project collaboration<br>service targeted at the<br>construction and manufacturing<br>industries. Autodesk Buzzsaw<br>lets multiple, dispersed<br>project participants --<br>including building owners,<br>developers, architects,<br>construction teams, and<br>facility managers -- share and<br>manage data throughout the<br>life of a project, according<br>to Autodesk officials."
-          ],
-          [
-           "AP - It was difficult for<br>Southern California's Pete<br>Carroll and Oklahoma's Bob<br>Stoops to keep from repeating<br>each other when the two<br>coaches met Thursday."
-          ],
-          [
-           "Reuters - Sudan's government<br>resumed\\talks with rebels in<br>the oil-producing south on<br>Thursday while\\the United<br>Nations set up a panel to<br>investigate charges<br>of\\genocide in the west of<br>Africa's largest country."
-          ],
-          [
-           "Andy Roddick, along with<br>Olympic silver medalist Mardy<br>Fish and the doubles pair of<br>twins Bob and Mike Bryan will<br>make up the US team to compete<br>with Belarus in the Davis Cup,<br>reported CRIENGLISH."
-          ],
-          [
-           "NEW YORK - Optimism that the<br>embattled technology sector<br>was due for a recovery sent<br>stocks modestly higher Monday<br>despite a new revenue warning<br>from semiconductor company<br>Broadcom Inc.    While<br>Broadcom, which makes chips<br>for television set-top boxes<br>and other electronics, said<br>high inventories resulted in<br>delayed shipments, investors<br>were encouraged as it said<br>future quarters looked<br>brighter..."
-          ],
-          [
-           "A report indicates that many<br>giants of the industry have<br>been able to capture lasting<br>feelings of customer loyalty."
-          ],
-          [
-           "It is the news that Internet<br>users do not want to hear: the<br>worldwide web is in danger of<br>collapsing around us. Patrick<br>Gelsinger, the chief<br>technology officer for<br>computer chip maker Intel,<br>told a conference"
-          ],
-          [
-           " WASHINGTON (Reuters) - U.S.<br>employers hired just 96,000<br>workers in September, the<br>government said on Friday in a<br>weak  jobs snapshot, the final<br>one ahead of presidential<br>elections  that also fueled<br>speculation about a pause in<br>interest-rate  rises."
-          ],
-          [
-           "Cisco Systems CEO John<br>Chambers said today that his<br>company plans to offer twice<br>as many new products this year<br>as ever before."
-          ],
-          [
-           "While the world #39;s best<br>athletes fight the noble<br>Olympic battle in stadiums and<br>pools, their fans storm the<br>streets of Athens, turning the<br>Greek capital into a huge<br>international party every<br>night."
-          ],
-          [
-           "Carlos Barrios Orta squeezed<br>himself into his rubber diving<br>suit, pulled on an 18-pound<br>helmet that made him look like<br>an astronaut, then lowered<br>himself into the sewer. He<br>disappeared into the filthy<br>water, which looked like some<br>cauldron of rancid beef stew,<br>until the only sign of him was<br>air bubbles breaking the<br>surface."
-          ],
-          [
-           "The mutilated body of a woman<br>of about sixty years,<br>amputated of arms and legs and<br>with the sliced throat, has<br>been discovered this morning<br>in a street of the south of<br>Faluya by the Marines,<br>according to a statement by<br>AFP photographer."
-          ],
-          [
-           "Every day, somewhere in the<br>universe, there #39;s an<br>explosion that puts the power<br>of the Sun in the shade. Steve<br>Connor investigates the riddle<br>of gamma-ray bursts."
-          ],
-          [
-           "Ten months after NASA #39;s<br>twin rovers landed on Mars,<br>scientists reported this week<br>that both robotic vehicles are<br>still navigating their rock-<br>studded landscapes with all<br>instruments operating"
-          ],
-          [
-           "EVERTON showed they would not<br>be bullied into selling Wayne<br>Rooney last night by rejecting<br>a 23.5million bid from<br>Newcastle - as Manchester<br>United gamble on Goodison<br>#39;s resolve to keep the<br>striker."
-          ],
-          [
-           "SAN FRANCISCO (CBS.MW) -- The<br>magazine known for evaluating<br>cars and electronics is<br>setting its sights on finding<br>the best value and quality of<br>prescription drugs on the<br>market."
-          ],
-          [
-           "After months of legal<br>wrangling, the case of<br>&lt;em&gt;People v. Kobe Bean<br>Bryant&lt;/em&gt; commences on<br>Friday in Eagle, Colo., with<br>testimony set to begin next<br>month."
-          ],
-          [
-           "(SH) - In Afghanistan, Hamid<br>Karzai defeated a raft of<br>candidates to win his historic<br>election. In Iraq, more than<br>200 political parties have<br>registered for next month<br>#39;s elections."
-          ],
-          [
-           "Lyon coach Paul le Guen has<br>admitted his side would be<br>happy with a draw at Old<br>Trafford on Tuesday night. The<br>three-times French champions<br>have assured themselves of<br>qualification for the<br>Champions League"
-          ],
-          [
-           "British scientists say they<br>have found a new, greener way<br>to power cars and homes using<br>sunflower oil, a commodity<br>more commonly used for cooking<br>fries."
-          ],
-          [
-           "A mouse, a house, and your<br>tax-planning spouse all factor<br>huge in the week of earnings<br>that lies ahead."
-          ],
-          [
-           "The United States #39; top<br>computer-security official has<br>resigned after a little more<br>than a year on the job, the US<br>Department of Homeland<br>Security said on Friday."
-          ],
-          [
-           "Reuters - Barry Bonds failed<br>to collect a hit in\\his bid to<br>join the 700-homer club, but<br>he did score a run to\\help the<br>San Francisco Giants edge the<br>host Milwaukee Brewers\\3-2 in<br>National League action on<br>Tuesday."
-          ],
-          [
-           " SAN FRANCISCO (Reuters) -<br>Intel Corp. &lt;A HREF=\"http:/<br>/www.reuters.co.uk/financeQuot<br>eLookup.jhtml?ticker=INTC.O<br>qtype=sym infotype=info<br>qcat=news\"&gt;INTC.O&lt;/A&gt;<br>on Thursday  outlined its<br>vision of the Internet of the<br>future, one in which  millions<br>of computer servers would<br>analyze and direct network<br>traffic to make the Web safer<br>and more efficient."
-          ],
-          [
-           "Margaret Hassan, who works for<br>charity Care International,<br>was taken hostage while on her<br>way to work in Baghdad. Here<br>are the main events since her<br>kidnapping."
-          ],
-          [
-           "Check out new gadgets as<br>holiday season approaches."
-          ],
-          [
-           "DALLAS (CBS.MW) -- Royal<br>Dutch/Shell Group will pay a<br>\\$120 million penalty to<br>settle a Securities and<br>Exchange Commission<br>investigation of its<br>overstatement of nearly 4.5<br>billion barrels of proven<br>reserves, the federal agency<br>said Tuesday."
-          ],
-          [
-           "After waiting an entire summer<br>for the snow to fall and<br>Beaver Creek to finally open,<br>skiers from around the planet<br>are coming to check out the<br>Birds of Prey World Cup action<br>Dec. 1 - 5. Although everyones"
-          ],
-          [
-           "TOKYO, Sep 08, 2004 (AFX-UK<br>via COMTEX) -- Sony Corp will<br>launch its popular projection<br>televisions with large liquid<br>crystal display (LCD) screens<br>in China early next year, a<br>company spokeswoman said."
-          ],
-          [
-           "I confess that I am a complete<br>ignoramus when it comes to<br>women #39;s beach volleyball.<br>In fact, I know only one thing<br>about the sport - that it is<br>the supreme aesthetic<br>experience available on planet<br>Earth."
-          ],
-          [
-           "Manchester United Plc may<br>offer US billionaire Malcolm<br>Glazer a seat on its board if<br>he agrees to drop a takeover<br>bid for a year, the Observer<br>said, citing an unidentified<br>person in the soccer industry."
-          ],
-          [
-           "PHOENIX America West Airlines<br>has backed away from a<br>potential bidding war for<br>bankrupt ATA Airlines, paving<br>the way for AirTran to take<br>over ATA operations."
-          ],
-          [
-           "US stock-index futures<br>declined. Dow Jones Industrial<br>Average shares including<br>General Electric Co. slipped<br>in Europe. Citigroup Inc."
-          ],
-          [
-           "For a guy who spent most of<br>his first four professional<br>seasons on the disabled list,<br>Houston Astros reliever Brad<br>Lidge has developed into quite<br>the ironman these past two<br>days."
-          ],
-          [
-           "AFP - Outgoing EU competition<br>commissioner Mario Monti wants<br>to reach a decision on<br>Oracle's proposed takeover of<br>business software rival<br>PeopleSoft by the end of next<br>month, an official said."
-          ],
-          [
-           "Former Bengal Corey Dillon<br>found his stride Sunday in his<br>second game for the New<br>England Patriots. Dillon<br>gained 158 yards on 32 carries<br>as the Patriots beat the<br>Arizona Cardinals, 23-12, for<br>their 17th victory in a row."
-          ],
-          [
-           "If legend is to be believed,<br>the end of a victorious war<br>was behind Pheidippides #39;<br>trek from Marathon to Athens<br>2,500 years ago."
-          ],
-          [
-           " WASHINGTON (Reuters) -<br>Satellite companies would be<br>able to  retransmit<br>broadcasters' television<br>signals for another five<br>years but would have to offer<br>those signals on a single<br>dish,  under legislation<br>approved by Congress on<br>Saturday."
-          ],
-          [
-           " BEIJING (Reuters) - Wimbledon<br>champion Maria Sharapova<br>demolished fellow Russian<br>Tatiana Panova 6-1, 6-1 to<br>advance to  the quarter-finals<br>of the China Open on<br>Wednesday."
-          ],
-          [
-           "Sven Jaschan, who may face<br>five years in prison for<br>spreading the Netsky and<br>Sasser worms, is now working<br>in IT security. Photo: AFP."
-          ],
-          [
-           "Padres general manager Kevin<br>Towers called Expos general<br>manager Omar Minaya on<br>Thursday afternoon and told<br>him he needed a shortstop<br>because Khalil Greene had<br>broken his"
-          ],
-          [
-           "Motorsport.com. Nine of the<br>ten Formula One teams have<br>united to propose cost-cutting<br>measures for the future, with<br>the notable exception of<br>Ferrari."
-          ],
-          [
-           "Reuters - The United States<br>modified its\\call for U.N.<br>sanctions against Sudan on<br>Tuesday but still kept\\up the<br>threat of punitive measures if<br>Khartoum did not<br>stop\\atrocities in its Darfur<br>region."
-          ],
-          [
-           "Human rights and environmental<br>activists have hailed the<br>award of the 2004 Nobel Peace<br>Prize to Wangari Maathai of<br>Kenya as fitting recognition<br>of the growing role of civil<br>society"
-          ],
-          [
-           "Federal Reserve Chairman Alan<br>Greenspan has done it again.<br>For at least the fourth time<br>this year, he has touched the<br>electrified third rail of<br>American politics - Social<br>Security."
-          ],
-          [
-           "An Al Qaeda-linked militant<br>group beheaded an American<br>hostage in Iraq and threatened<br>last night to kill another two<br>Westerners in 24 hours unless<br>women prisoners were freed<br>from Iraqi jails."
-          ],
-          [
-           "TechWeb - An Indian Institute<br>of Technology professor--and<br>open-source evangelist--<br>discusses the role of Linux<br>and open source in India."
-          ],
-          [
-           "Here are some of the latest<br>health and medical news<br>developments, compiled by<br>editors of HealthDay:    -----<br>Contaminated Fish in Many U.S.<br>Lakes and Rivers      Fish<br>that may be contaminated with<br>dioxin, mercury, PCBs and<br>pesticides are swimming in<br>more than one-third of the<br>United States' lakes and<br>nearly one-quarter of its<br>rivers, according to a list of<br>advisories released by the<br>Environmental Protection<br>Agency..."
-          ],
-          [
-           "Argentina, Denmark, Greece,<br>Japan and Tanzania on Friday<br>won coveted two-year terms on<br>the UN Security Council at a<br>time when pressure is mounting<br>to expand the powerful<br>15-nation body."
-          ],
-          [
-           "Description: Scientists say<br>the arthritis drug Bextra may<br>pose increased risk of<br>cardiovascular troubles.<br>Bextra is related to Vioxx,<br>which was pulled off the<br>market in September for the<br>same reason."
-          ],
-          [
-           "Steve Francis and Shaquille O<br>#39;Neal enjoyed big debuts<br>with their new teams. Kobe<br>Bryant found out he can #39;t<br>carry the Lakers all by<br>himself."
-          ],
-          [
-           "The trial of a lawsuit by Walt<br>Disney Co. shareholders who<br>accuse the board of directors<br>of rubberstamping a deal to<br>hire Michael Ovitz"
-          ],
-          [
-           "Australia, by winning the<br>third Test at Nagpur on<br>Friday, also won the four-<br>match series 2-0 with one<br>match to go. Australia had<br>last won a Test series in<br>India way back in December<br>1969 when Bill Lawry #39;s<br>team beat Nawab Pataudi #39;s<br>Indian team 3-1."
-          ],
-          [
-           "LOS ANGELES Grocery giant<br>Albertsons says it has<br>purchased Bristol Farms, which<br>operates eleven upscale stores<br>in Southern California."
-          ],
-          [
-           "ISLAMABAD: Pakistan and India<br>agreed on Friday to re-open<br>the Khokhropar-Munabao railway<br>link, which was severed nearly<br>40 years ago."
-          ],
-          [
-           "Final Score: Connecticut 61,<br>New York 51 New York, NY<br>(Sports Network) - Nykesha<br>Sales scored 15 points to lead<br>Connecticut to a 61-51 win<br>over New York in Game 1 of<br>their best-of-three Eastern<br>Conference Finals series at<br>Madison Square Garden."
-          ],
-          [
-           "NEW YORK - Stocks moved higher<br>Friday as a stronger than<br>expected retail sales report<br>showed that higher oil prices<br>aren't scaring consumers away<br>from spending. Federal Reserve<br>Chairman Alan Greenspan's<br>positive comments on oil<br>prices also encouraged<br>investors..."
-          ],
-          [
-           "The figures from a survey<br>released today are likely to<br>throw more people into the<br>ranks of the uninsured,<br>analysts said."
-          ],
-          [
-           "Bill Gates is giving his big<br>speech right now at Microsofts<br>big Digital Entertainment<br>Anywhere event in Los Angeles.<br>Well have a proper report for<br>you soon, but in the meantime<br>we figured wed"
-          ],
-          [
-           "Spinal and non-spinal<br>fractures are reduced by<br>almost a third in women age 80<br>or older who take a drug<br>called strontium ranelate,<br>European investigators<br>announced"
-          ],
-          [
-           "JB Oxford Holdings Inc., a<br>Beverly Hills-based discount<br>brokerage firm, was sued by<br>the Securities and Exchange<br>Commission for allegedly<br>allowing thousands of improper<br>trades in more than 600 mutual<br>funds."
-          ],
-          [
-           "BERLIN: Apple Computer Inc is<br>planning the next wave of<br>expansion for its popular<br>iTunes online music store with<br>a multi-country European<br>launch in October, the<br>services chief architect said<br>on Wednesday."
-          ],
-          [
-           "Charlotte, NC -- LeBron James<br>poured in a game-high 19<br>points and Jeff McInnis scored<br>18 as the Cleveland Cavaliers<br>routed the Charlotte Bobcats,<br>106-89, at the Charlotte<br>Coliseum."
-          ],
-          [
-           "Goldman Sachs reported strong<br>fourth quarter and full year<br>earnings of \\$1.19bn, up 36<br>per cent on the previous<br>quarter. Full year profit rose<br>52 per cent from the previous<br>year to \\$4.55bn."
-          ],
-          [
-           "Saddam Hussein lives in an<br>air-conditioned 10-by-13 foot<br>cell on the grounds of one of<br>his former palaces, tending<br>plants and proclaiming himself<br>Iraq's lawful ruler."
-          ],
-          [
-           "Lehmann, who was at fault in<br>two matches in the tournament<br>last season, was blundering<br>again with the German set to<br>take the rap for both Greek<br>goals."
-          ],
-          [
-           "Calls to 13 other countries<br>will be blocked to thwart<br>auto-dialer software."
-          ],
-          [
-           "AP - Brazilian U.N.<br>peacekeepers will remain in<br>Haiti until presidential<br>elections are held in that<br>Caribbean nation sometime next<br>year, President Luiz Inacio<br>Lula da Silva said Monday."
-          ],
-          [
-           "com September 27, 2004, 5:00<br>AM PT. This fourth priority<br>#39;s main focus has been<br>improving or obtaining CRM and<br>ERP software for the past year<br>and a half."
-          ],
-          [
-           "Jeju Island, South Korea<br>(Sports Network) - Grace Park<br>and Carin Koch posted matching<br>rounds of six-under-par 66 on<br>Friday to share the lead after<br>the first round of the CJ Nine<br>Bridges Classic."
-          ],
-          [
-           "SPACE.com - The Zero Gravity<br>Corporation \\  has been given<br>the thumbs up by the Federal<br>Aviation Administration (FAA)<br>to \\  conduct  quot;weightless<br>flights quot; for the general<br>public, providing the \\<br>sensation of floating in<br>space."
-          ],
-          [
-           "A 32-year-old woman in Belgium<br>has become the first woman<br>ever to give birth after<br>having ovarian tissue removed,<br>frozen and then implanted back<br>in her body."
-          ],
-          [
-           "Argosy Gaming (AGY:NYSE - news<br>- research) jumped in early<br>trading Thursday, after the<br>company agreed to be acquired<br>by Penn National Gaming<br>(PENN:Nasdaq - news -<br>research) in a \\$1."
-          ],
-          [
-           "No sweat, says the new CEO,<br>who's imported from IBM. He<br>also knows this will be the<br>challenge of a lifetime."
-          ],
-          [
-           "Iraq is  quot;working 24 hours<br>a day to ... stop the<br>terrorists, quot; interim<br>Iraqi Prime Minister Ayad<br>Allawi said Monday. Iraqis are<br>pushing ahead with reforms and<br>improvements, Allawi told"
-          ],
-          [
-           "AP - Their discoveries may be<br>hard for many to comprehend,<br>but this year's Nobel Prize<br>winners still have to explain<br>what they did and how they did<br>it."
-          ],
-          [
-           "The DuPont Co. has agreed to<br>pay up to \\$340 million to<br>settle a lawsuit that it<br>contaminated water supplies in<br>West Virginia and Ohio with a<br>chemical used to make Teflon,<br>one of its best-known brands."
-          ],
-          [
-           "Benfica and Real Madrid set<br>the standard for soccer<br>success in Europe in the late<br>1950s and early  #39;60s. The<br>clubs have evolved much<br>differently, but both have<br>struggled"
-          ],
-          [
-           "AP - Musicians, composers and<br>authors were among the more<br>than two dozen people<br>Wednesday honored with<br>National Medal of Arts and<br>National Humanities awards at<br>the White House."
-          ],
-          [
-           "More than 15 million homes in<br>the UK will be able to get on-<br>demand movies by 2008, say<br>analysts."
-          ],
-          [
-           "Wynton Marsalis, the trumpet-<br>playing star and artistic<br>director of Jazz at Lincoln<br>Center, has become an entity<br>above and around the daily<br>jazz world."
-          ],
-          [
-           "A well-researched study by the<br>National Academy of Sciences<br>makes a persuasive case for<br>refurbishing the Hubble Space<br>Telescope. NASA, which is<br>reluctant to take this<br>mission, should rethink its<br>position."
-          ],
-          [
-           "BUENOS AIRES: Pakistan has<br>ratified the Kyoto Protocol on<br>Climatic Change, Environment<br>Minister Malik Khan said on<br>Thursday. He said that<br>Islamabad has notified UN<br>authorities of ratification,<br>which formally comes into<br>effect in February 2005."
-          ],
-          [
-           "Reuters - Jeffrey Greenberg,<br>chairman and chief\\executive<br>of embattled insurance broker<br>Marsh   McLennan Cos.\\, is<br>expected to step down within<br>hours, a newspaper\\reported on<br>Friday, citing people close to<br>the discussions."
-          ],
-          [
-           "Staff Sgt. Johnny Horne, Jr.,<br>and Staff Sgt. Cardenas Alban<br>have been charged with murder<br>in the death of an Iraqi, the<br>1st Cavalry Division announced<br>Monday."
-          ],
-          [
-           "LONDON -- In a deal that<br>appears to buck the growing<br>trend among governments to<br>adopt open-source<br>alternatives, the U.K.'s<br>Office of Government Commerce<br>(OGC) is negotiating a renewal<br>of a three-year agreement with<br>Microsoft Corp."
-          ],
-          [
-           "WASHINGTON - A Pennsylvania<br>law requiring Internet service<br>providers (ISPs) to block Web<br>sites the state's prosecuting<br>attorneys deem to be child<br>pornography has been reversed<br>by a U.S. federal court, with<br>the judge ruling the law<br>violated free speech rights."
-          ],
-          [
-           "The Microsoft Corp. chairman<br>receives four million e-mails<br>a day, but practically an<br>entire department at the<br>company he founded is<br>dedicated to ensuring that<br>nothing unwanted gets into his<br>inbox, the company #39;s chief<br>executive said Thursday."
-          ],
-          [
-           "The 7100t has a mobile phone,<br>e-mail, instant messaging, Web<br>browsing and functions as an<br>organiser. The device looks<br>like a mobile phone and has<br>the features of the other<br>BlackBerry models, with a<br>large screen"
-          ],
-          [
-           "President Vladimir Putin makes<br>a speech as he hosts Russia<br>#39;s Olympic athletes at a<br>Kremlin banquet in Moscow,<br>Thursday, Nov. 4, 2004."
-          ],
-          [
-           "Apple Computer has unveiled<br>two new versions of its hugely<br>successful iPod: the iPod<br>Photo and the U2 iPod. Apple<br>also has expanded"
-          ],
-          [
-           "Pakistan are closing in fast<br>on Sri Lanka #39;s first<br>innings total after impressing<br>with both ball and bat on the<br>second day of the opening Test<br>in Faisalabad."
-          ],
-          [
-           "A state regulatory board<br>yesterday handed a five-year<br>suspension to a Lawrence<br>funeral director accused of<br>unprofessional conduct and<br>deceptive practices, including<br>one case where he refused to<br>complete funeral arrangements<br>for a client because she had<br>purchased a lower-priced<br>casket elsewhere."
-          ],
-          [
-           "AP - This year's hurricanes<br>spread citrus canker to at<br>least 11,000 trees in<br>Charlotte County, one of the<br>largest outbreaks of the<br>fruit-damaging infection to<br>ever affect Florida's citrus<br>industry, state officials<br>said."
-          ],
-          [
-           "AFP - Hundreds of Buddhists in<br>southern Russia marched<br>through snow to see and hear<br>the Dalai Lama as he continued<br>a long-awaited visit to the<br>country in spite of Chinese<br>protests."
-          ],
-          [
-           "British officials were on<br>diplomatic tenterhooks as they<br>awaited the arrival on<br>Thursday of French President<br>Jacques Chirac for a two-day<br>state visit to Britain."
-          ],
-          [
-           " SYDNEY (Reuters) - A group of<br>women on Pitcairn Island in<br>the South Pacific are standing<br>by their men, who face<br>underage  sex charges, saying<br>having sex at age 12 is a<br>tradition dating  back to 18th<br>century mutineers who settled<br>on the island."
-          ],
-          [
-           "Two aircraft are flying out<br>from the UK on Sunday to<br>deliver vital aid and supplies<br>to Haiti, which has been<br>devastated by tropical storm<br>Jeanne."
-          ],
-          [
-           "A scare triggered by a<br>vibrating sex toy shut down a<br>major Australian regional<br>airport for almost an hour<br>Monday, police said. The<br>vibrating object was<br>discovered Monday morning"
-          ],
-          [
-           "IBM moved back into the iSCSI<br>(Internet SCSI) market Friday<br>with a new array priced at<br>US\\$3,000 and aimed at the<br>small and midsize business<br>market."
-          ],
-          [
-           "Ron Artest has been hit with a<br>season long suspension,<br>unprecedented for the NBA<br>outside doping cases; Stephen<br>Jackson banned for 30 games;<br>Jermaine O #39;Neal for 25<br>games and Anthony Johnson for<br>five."
-          ],
-          [
-           "The California Public<br>Utilities Commission on<br>Thursday upheld a \\$12.1<br>million fine against Cingular<br>Wireless, related to a two-<br>year investigation into the<br>cellular telephone company<br>#39;s business practices."
-          ],
-          [
-           "Barclays, the British bank<br>that left South Africa in 1986<br>after apartheid protests, may<br>soon resume retail operations<br>in the nation."
-          ],
-          [
-           "AP - An Indiana congressional<br>candidate abruptly walked off<br>the set of a debate because<br>she got stage fright."
-          ],
-          [
-           "Italian-based Parmalat is<br>suing its former auditors --<br>Grant Thornton International<br>and Deloitte Touche Tohmatsu<br>-- for billions of dollars in<br>damages. Parmalat blames its<br>demise on the two companies<br>#39; mismanagement of its<br>finances."
-          ],
-          [
-           "Reuters - Having reached out<br>to Kashmiris during a two-day<br>visit to the region, the prime<br>minister heads this weekend to<br>the country's volatile<br>northeast, where public anger<br>is high over alleged abuses by<br>Indian soldiers."
-          ],
-          [
-           "SAN JUAN IXTAYOPAN, Mexico --<br>A pair of wooden crosses<br>outside the elementary school<br>are all that mark the macabre<br>site where, just weeks ago, an<br>angry mob captured two federal<br>police officers, beat them<br>unconscious, and set them on<br>fire."
-          ],
-          [
-           "Three shots behind Grace Park<br>with five holes to go, six-<br>time LPGA player of the year<br>Sorenstam rallied with an<br>eagle, birdie and three pars<br>to win her fourth Samsung<br>World Championship by three<br>shots over Park on Sunday."
-          ],
-          [
-           "update An alliance of<br>technology workers on Tuesday<br>accused conglomerate Honeywell<br>International of planning to<br>move thousands of jobs to low-<br>cost regions over the next<br>five years--a charge that<br>Honeywell denies."
-          ],
-          [
-           "NSW Rugby CEO Fraser Neill<br>believes Waratah star Mat<br>Rogers has learned his lesson<br>after he was fined and ordered<br>to do community service<br>following his controversial<br>comments about the club rugby<br>competition."
-          ],
-          [
-           "American Technology Research<br>analyst Shaw Wu has initiated<br>coverage of Apple Computer<br>(AAPL) with a  #39;buy #39;<br>recommendation, and a 12-month<br>target of US\\$78 per share."
-          ],
-          [
-           "washingtonpost.com - Cell<br>phone shoppers looking for new<br>deals and features didn't find<br>them yesterday, a day after<br>Sprint Corp. and Nextel<br>Communications Inc. announced<br>a merger that the phone<br>companies promised would shake<br>up the wireless business."
-          ],
-          [
-           "ATHENS: China, the dominant<br>force in world diving for the<br>best part of 20 years, won six<br>out of eight Olympic titles in<br>Athens and prompted<br>speculation about a clean<br>sweep when they stage the<br>Games in Beijing in 2008."
-          ],
-          [
-           " NEW YORK (Reuters) - Northrop<br>Grumman Corp. &lt;A HREF=\"http<br>://www.investor.reuters.com/Fu<br>llQuote.aspx?ticker=NOC.N targ<br>et=/stocks/quickinfo/fullquote<br>\"&gt;NOC.N&lt;/A&gt;  reported<br>higher third-quarter earnings<br>on Wednesday and an 11<br>percent increase in sales on<br>strength in its mission<br>systems,  integrated systems,<br>ships and space technology<br>businesses."
-          ],
-          [
-           "JAPANESE GIANT Sharp has<br>pulled the plug on its Linux-<br>based PDAs in the United<br>States as no-one seems to want<br>them. The company said that it<br>will continue to sell them in<br>Japan where they sell like hot<br>cakes"
-          ],
-          [
-           "DUBLIN : An Olympic Airlines<br>plane diverted to Ireland<br>following a bomb alert, the<br>second faced by the Greek<br>carrier in four days, resumed<br>its journey to New York after<br>no device was found on board,<br>airport officials said."
-          ],
-          [
-           "New NavOne offers handy PDA<br>and Pocket PC connectivity,<br>but fails to impress on<br>everything else."
-          ],
-          [
-           "TORONTO (CP) - Shares of<br>Iamgold fell more than 10 per<br>cent after its proposed merger<br>with Gold Fields Ltd. was<br>thrown into doubt Monday as<br>South Africa #39;s Harmony<br>Gold Mining Company Ltd."
-          ],
-          [
-           "The Marvel deal calls for<br>Mforma to work with the comic<br>book giant to develop a<br>variety of mobile applications<br>based on Marvel content."
-          ],
-          [
-           " LONDON (Reuters) - Oil prices<br>tumbled again on Monday to an<br>8-week low under \\$46 a<br>barrel, as growing fuel stocks<br>in the  United States eased<br>fears of a winter supply<br>crunch."
-          ],
-          [
-           " WASHINGTON (Reuters) - The<br>United States said on Friday<br>it  is preparing a new U.N.<br>resolution on Darfur and that<br>Secretary  of State Colin<br>Powell might address next week<br>whether the  violence in<br>western Sudan constitutes<br>genocide."
-          ],
-          [
-           "The Houston Astros won their<br>19th straight game at home and<br>are one game from winning<br>their first playoff series in<br>42 years."
-          ],
-          [
-           "washingtonpost.com - The<br>Portable Media Center -- a<br>new, Microsoft-conceived<br>handheld device that presents<br>video and photos as well as<br>music -- would be a decent<br>idea if there weren't such a<br>thing as lampposts. Or street<br>signs. Or trees. Or other<br>cars."
-          ],
-          [
-           "Alcoa Inc., one of the world<br>#39;s top producers of<br>aluminum, said Monday that it<br>received an unsolicited<br>quot;mini-tender quot; offer<br>from Toronto-based TRC Capital<br>Corp."
-          ],
-          [
-           "The European Commission is to<br>warn Greece about publishing<br>false information about its<br>public finances."
-          ],
-          [
-           "The Air Force Reserve #39;s<br>Hurricane Hunters, those<br>fearless crews who dive into<br>the eyewalls of hurricanes to<br>relay critical data on<br>tropical systems, were chased<br>from their base on the<br>Mississippi Gulf Coast by<br>Hurricane Ivan."
-          ],
-          [
-           " LONDON (Reuters) - U.S.<br>shares were expected to open<br>lower  on Wednesday after<br>crude oil pushed to a fresh<br>high overnight,  while Web<br>search engine Google Inc.<br>dented sentiment as it<br>slashed the price range on its<br>initial public offering."
-          ],
-          [
-           "The eighth-seeded American<br>fell to sixth-seeded Elena<br>Dementieva of Russia, 0-6 6-2<br>7-6 (7-5), on Friday - despite<br>being up a break on four<br>occasions in the third set."
-          ],
-          [
-           "TUCSON, Arizona (Ticker) --<br>No. 20 Arizona State tries to<br>post its first three-game<br>winning streak over Pac-10<br>Conference rival Arizona in 26<br>years when they meet Friday."
-          ],
-          [
-           "NAJAF, Iraq : Iraq #39;s top<br>Shiite Muslim clerics, back in<br>control of Najaf #39;s Imam<br>Ali shrine after a four-month<br>militia occupation, met amid<br>the ruins of the city as life<br>spluttered back to normality."
-          ],
-          [
-           "Embargo or not, Fidel Castro's<br>socialist paradise has quietly<br>become a pharmaceutical<br>powerhouse. (They're still<br>working on the capitalism<br>thing.) By Douglas Starr from<br>Wired magazine."
-          ],
-          [
-           "AP - Phillip Fulmer kept his<br>cool when starting center<br>Jason Respert drove off in the<br>coach's golf cart at practice."
-          ],
-          [
-           "GOALS from Wayne Rooney and<br>Ruud van Nistelrooy gave<br>Manchester United the win at<br>Newcastle. Alan Shearer<br>briefly levelled matters for<br>the Magpies but United managed<br>to scrape through."
-          ],
-          [
-           "The telemarketer at the other<br>end of Orlando Castelblanco<br>#39;s line promised to reduce<br>the consumer #39;s credit card<br>debt by at least \\$2,500 and<br>get his 20 percent -- and<br>growing -- interest rates down<br>to single digits."
-          ],
-          [
-           " NEW YORK (Reuters) - Blue-<br>chip stocks fell slightly on<br>Monday after No. 1 retailer<br>Wal-Mart Stores Inc. &lt;A HRE<br>F=\"http://www.investor.reuters<br>.com/FullQuote.aspx?ticker=WMT<br>.N target=/stocks/quickinfo/fu<br>llquote\"&gt;WMT.N&lt;/A&gt;<br>reported lower-than-expected<br>Thanksgiving sales, while<br>technology shares were lifted<br>by a rally in Apple Computer<br>Inc.  &lt;A HREF=\"http://www.i<br>nvestor.reuters.com/FullQuote.<br>aspx?ticker=AAPL.O target=/sto<br>cks/quickinfo/fullquote\"&gt;AA<br>PL.O&lt;/A&gt;."
-          ],
-          [
-           "Reuters - House of<br>Representatives<br>Majority\\Leader Tom DeLay,<br>admonished twice in six days<br>by his chamber's\\ethics<br>committee, withstood calls on<br>Thursday by rival\\Democrats<br>and citizen groups that he<br>step aside."
-          ],
-          [
-           "WPP Group Inc., the world<br>#39;s second- largest<br>marketing and advertising<br>company, said it won the<br>bidding for Grey Global Group<br>Inc."
-          ],
-          [
-           "AFP - Australia has accounted<br>for all its nationals known to<br>be working in Iraq following a<br>claim by a radical Islamic<br>group to have kidnapped two<br>Australians, Foreign Affairs<br>Minister Alexander Downer<br>said."
-          ],
-          [
-           "A new worm can spy on users by<br>hijacking their Web cameras, a<br>security firm warned Monday.<br>The Rbot.gr worm -- the latest<br>in a long line of similar<br>worms; one security firm<br>estimates that more than 4,000<br>variations"
-          ],
-          [
-           " NEW YORK (Reuters) - Stocks<br>were slightly lower on<br>Tuesday,  as concerns about<br>higher oil prices cutting into<br>corporate  profits and<br>consumer demand weighed on<br>sentiment, while retail  sales<br>posted a larger-than-expected<br>decline in August."
-          ],
-          [
-           "The separation of PalmOne and<br>PalmSource will be complete<br>with Eric Benhamou's<br>resignation as the latter's<br>chairman."
-          ],
-          [
-           "AP - Two-time U.S. Open<br>doubles champion Max Mirnyi<br>will lead the Belarus team<br>that faces the United States<br>in the Davis Cup semifinals in<br>Charleston later this month."
-          ],
-          [
-           "The hurricane appeared to be<br>strengthening and forecasters<br>warned of an increased threat<br>of serious flooding and wind<br>damage."
-          ],
-          [
-           "AP - New York Jets safety Erik<br>Coleman got his souvenir<br>football from the equipment<br>manager and held it tightly."
-          ],
-          [
-           " SINGAPORE (Reuters) - Oil<br>prices climbed above \\$42 a<br>barrel  on Wednesday, rising<br>for the third day in a row as<br>the heavy  consuming U.S.<br>Northeast feels the first<br>chills of winter."
-          ],
-          [
-           "\\\\\"(CNN) -- A longtime<br>associate of al Qaeda leader<br>Osama bin Laden surrendered<br>to\\Saudi Arabian officials<br>Tuesday, a Saudi Interior<br>Ministry official said.\"\\\\\"But<br>it is unclear what role, if<br>any, Khaled al-Harbi may have<br>had in any terror\\attacks<br>because no public charges have<br>been filed against him.\"\\\\\"The<br>Saudi government -- in a<br>statement released by its<br>embassy in Washington<br>--\\called al-Harbi's surrender<br>\"the latest direct result\" of<br>its limited, one-month\\offer<br>of leniency to terror<br>suspects.\"\\\\This is great!  I<br>hope this really starts to pay<br>off.  Creative solutions<br>to\\terrorism that don't<br>involve violence.  \\\\How<br>refreshing! \\\\Are you paying<br>attention Bush<br>administration?\\\\"
-          ],
-          [
-           " NEW YORK (Reuters) - Merck<br>Co Inc. &lt;A HREF=\"http://www<br>.investor.reuters.com/FullQuot<br>e.aspx?ticker=MRK.N target=/st<br>ocks/quickinfo/fullquote\"&gt;M<br>RK.N&lt;/A&gt; on Thursday<br>pulled its arthritis drug<br>Vioxx off the market after a<br>study  showed it doubled the<br>risk of heart attack and<br>stroke, a move  that sent its<br>shares plunging and erased<br>\\$25 billion from its  market<br>value."
-          ],
-          [
-           "AT T Corp. is cutting 7,400<br>more jobs and slashing the<br>book value of its assets by<br>\\$11.4 billion, drastic moves<br>prompted by the company's plan<br>to retreat from the<br>traditional consumer telephone<br>business following a lost<br>court battle."
-          ],
-          [
-           "The government on Wednesday<br>defended its decision to<br>radically revise the country<br>#39;s deficit figures, ahead<br>of a European Commission<br>meeting to consider possible<br>disciplinary action against<br>Greece for submitting faulty<br>figures."
-          ],
-          [
-           "Ivan Hlinka coached the Czech<br>Republic to the hockey gold<br>medal at the 1998 Nagano<br>Olympics and became the coach<br>of the Pittsburgh Penguins two<br>years later."
-          ],
-          [
-           "Four homeless men were<br>bludgeoned to death and six<br>were in critical condition on<br>Friday following early morning<br>attacks by unknown assailants<br>in downtown streets of Sao<br>Paulo, a police spokesman<br>said."
-          ],
-          [
-           "OPEC ministers yesterday<br>agreed to increase their<br>ceiling for oil production to<br>help bring down stubbornly<br>high prices in a decision that<br>traders and analysts dismissed<br>as symbolic because the cartel<br>already is pumping more than<br>its new target."
-          ],
-          [
-           "Williams-Sonoma Inc. said<br>second- quarter profit rose 55<br>percent, boosted by the<br>addition of Pottery Barn<br>stores and sale of outdoor<br>furniture."
-          ],
-          [
-           "Celerons form the basis of<br>Intel #39;s entry-level<br>platform which includes<br>integrated/value motherboards<br>as well. The Celeron 335D is<br>the fastest - until the<br>Celeron 340D - 2.93GHz -<br>becomes mainstream - of the"
-          ],
-          [
-           "The entertainment industry<br>asks the Supreme Court to<br>reverse the Grokster decision,<br>which held that peer-to-peer<br>networks are not liable for<br>copyright abuses of their<br>users. By Michael Grebb."
-          ],
-          [
-           " HONG KONG/SAN FRANCISCO<br>(Reuters) - China's largest<br>personal computer maker,<br>Lenovo Group Ltd., said on<br>Tuesday it  was in acquisition<br>talks with a major technology<br>company, which  a source<br>familiar with the situation<br>said was IBM."
-          ],
-          [
-           "Phone companies are not doing<br>enough to warn customers about<br>internet \"rogue-dialling\"<br>scams, watchdog Icstis warns."
-          ],
-          [
-           "Reuters - Oil prices stayed<br>close to  #36;49 a\\barrel on<br>Thursday, supported by a<br>forecast for an early<br>cold\\snap in the United States<br>that could put a strain on a<br>thin\\supply cushion of winter<br>heating fuel."
-          ],
-          [
-           "AUBURN - Ah, easy street. No<br>game this week. Light<br>practices. And now Auburn is<br>being touted as the No. 3 team<br>in the Bowl Championship<br>Series standings."
-          ],
-          [
-           "Portsmouth #39;s Harry<br>Redknapp has been named as the<br>Barclays manager of the month<br>for October. Redknapp #39;s<br>side were unbeaten during the<br>month and maintained an<br>impressive climb to ninth in<br>the Premiership."
-          ],
-          [
-           "India's main opposition party<br>takes action against senior<br>party member Uma Bharti after<br>a public row."
-          ],
-          [
-           "Hewlett-Packard will shell out<br>\\$16.1 billion for chips in<br>2005, but Dell's wallet is<br>wide open, too."
-          ],
-          [
-           "WASHINGTON (CBS.MW) --<br>President Bush announced<br>Monday that Kellogg chief<br>executive Carlos Gutierrez<br>would replace Don Evans as<br>Commerce secretary, naming the<br>first of many expected changes<br>to his economic team."
-          ],
-          [
-           "Iron Mountain moved further<br>into the backup and recovery<br>space Tuesday with the<br>acquisition of Connected Corp.<br>for \\$117 million. Connected<br>backs up desktop data for more<br>than 600 corporations, with<br>more than"
-          ],
-          [
-           "Three directors of Manchester<br>United have been ousted from<br>the board after US tycoon<br>Malcolm Glazer, who is<br>attempting to buy the club,<br>voted against their re-<br>election."
-          ],
-          [
-           "The Russian military yesterday<br>extended its offer of a \\$10<br>million reward for information<br>leading to the capture of two<br>separatist leaders who, the<br>Kremlin claims, were behind<br>the Beslan massacre."
-          ],
-          [
-           "AP - Manny Ramirez singled and<br>scored before leaving with a<br>bruised knee, and the<br>streaking Boston Red Sox beat<br>the Detroit Tigers 5-3 Friday<br>night for their 10th victory<br>in 11 games."
-          ],
-          [
-           "A remote attacker could take<br>complete control over<br>computers running many<br>versions of Microsoft software<br>by inserting malicious code in<br>a JPEG image that executes<br>through an unchecked buffer"
-          ],
-          [
-           "Montgomery County (website -<br>news) is a big step closer to<br>shopping for prescription<br>drugs north of the border. On<br>a 7-2 vote, the County Council<br>is approving a plan that would<br>give county"
-          ],
-          [
-           "Israels Shin Bet security<br>service has tightened<br>protection of the prime<br>minister, MPs and parliament<br>ahead of next weeks crucial<br>vote on a Gaza withdrawal."
-          ],
-          [
-           "The news comes fast and<br>furious. Pedro Martinez goes<br>to Tampa to visit George<br>Steinbrenner. Theo Epstein and<br>John Henry go to Florida for<br>their turn with Pedro. Carl<br>Pavano comes to Boston to<br>visit Curt Schilling. Jason<br>Varitek says he's not a goner.<br>Derek Lowe is a goner, but he<br>says he wishes it could be<br>different. Orlando Cabrera ..."
-          ],
-          [
-           "The disclosure this week that<br>a Singapore-listed company<br>controlled by a Chinese state-<br>owned enterprise lost \\$550<br>million in derivatives<br>transactions"
-          ],
-          [
-           "Reuters - Iraq's interim<br>defense minister<br>accused\\neighbors Iran and<br>Syria on Wednesday of aiding<br>al Qaeda\\Islamist Abu Musab<br>al-Zarqawi and former agents<br>of Saddam\\Hussein to promote a<br>\"terrorist\" insurgency in<br>Iraq."
-          ],
-          [
-           "AP - The Senate race in<br>Kentucky stayed at fever pitch<br>on Thursday as Democratic<br>challenger Daniel Mongiardo<br>stressed his opposition to gay<br>marriage while accusing<br>Republican incumbent Jim<br>Bunning of fueling personal<br>attacks that seemed to suggest<br>Mongiardo is gay."
-          ],
-          [
-           "The lawsuit claims the<br>companies use a patented<br>Honeywell technology for<br>brightening images and<br>reducing interference on<br>displays."
-          ],
-          [
-           "The co-president of Oracle<br>testified that her company was<br>serious about its takeover<br>offer for PeopleSoft and was<br>not trying to scare off its<br>customers."
-          ],
-          [
-           "VANCOUVER - A Vancouver-based<br>firm won #39;t sell 1.2<br>million doses of influenza<br>vaccine to the United States<br>after all, announcing Tuesday<br>that it will sell the doses<br>within Canada instead."
-          ],
-          [
-           "An extremely rare Hawaiian<br>bird dies in captivity,<br>possibly marking the<br>extinction of its entire<br>species only 31 years after it<br>was first discovered."
-          ],
-          [
-           "Does Geico's trademark lawsuit<br>against Google have merit? How<br>will the case be argued?<br>What's the likely outcome of<br>the trial?  A mock court of<br>trademark experts weighs in<br>with their verdict."
-          ],
-          [
-           "Treo 650 boasts a high-res<br>display, an improved keyboard<br>and camera, a removable<br>battery, and more. PalmOne<br>this week is announcing the<br>Treo 650, a hybrid PDA/cell-<br>phone device that addresses<br>many of the shortcomings"
-          ],
-          [
-           "FRED Hale Sr, documented as<br>the worlds oldest man, has<br>died at the age of 113. Hale<br>died in his sleep on Friday at<br>a hospital in Syracuse, New<br>York, while trying to recover<br>from a bout of pneumonia, his<br>grandson, Fred Hale III said."
-          ],
-          [
-           "The Oakland Raiders have<br>traded Jerry Rice to the<br>Seattle Seahawks in a move<br>expected to grant the most<br>prolific receiver in National<br>Football League history his<br>wish to get more playing time."
-          ],
-          [
-           "consortium led by the Sony<br>Corporation of America reached<br>a tentative agreement today to<br>buy Metro-Goldwyn-Mayer, the<br>Hollywood studio famous for<br>James Bond and the Pink<br>Panther, for"
-          ],
-          [
-           "International Business<br>Machines Corp.'s possible exit<br>from the personal computer<br>business would be the latest<br>move in what amounts to a long<br>goodbye from a field it<br>pioneered and revolutionized."
-          ],
-          [
-           "Leipzig Game Convention in<br>Germany, the stage for price-<br>slash revelations. Sony has<br>announced that it #39;s<br>slashing the cost of PS2 in<br>the UK and Europe to 104.99<br>GBP."
-          ],
-          [
-           "AP - Florida coach Ron Zook<br>was fired Monday but will be<br>allowed to finish the season,<br>athletic director Jeremy Foley<br>told The Gainesville Sun."
-          ],
-          [
-           "The country-cooking restaurant<br>chain has agreed to pay \\$8.7<br>million over allegations that<br>it segregated black customers,<br>subjected them to racial slurs<br>and gave black workers<br>inferior jobs."
-          ],
-          [
-           "Troy Brown has had to make a<br>lot of adjustments while<br>playing both sides of the<br>football.  quot;You always<br>want to score when you get the<br>ball -- offense or defense"
-          ],
-          [
-           " PORT LOUIS, Aug. 17<br>(Xinhuanet) -- Southern<br>African countries Tuesday<br>pledged better trade and<br>investment relations with<br>China as well as India in the<br>final communique released at<br>the end of their two-day<br>summit."
-          ],
-          [
-           "In yet another devastating<br>body blow to the company,<br>Intel (Nasdaq: INTC) announced<br>it would be canceling its<br>4-GHz Pentium chip. The<br>semiconductor bellwether said<br>it was switching"
-          ],
-          [
-           "Jenson Button will tomorrow<br>discover whether he is allowed<br>to quit BAR and move to<br>Williams for 2005. The<br>Englishman has signed<br>contracts with both teams but<br>prefers a switch to Williams,<br>where he began his Formula One<br>career in 2000."
-          ],
-          [
-           "Seagate #39;s native SATA<br>interface technology with<br>Native Command Queuing (NCQ)<br>allows the Barracuda 7200.8 to<br>match the performance of<br>10,000-rpm SATA drives without<br>sacrificing capacity"
-          ],
-          [
-           "ARSENAL boss Arsene Wenger<br>last night suffered a<br>Champions League setback as<br>Brazilian midfielder Gilberto<br>Silva (above) was left facing<br>a long-term injury absence."
-          ],
-          [
-           "BAGHDAD - A militant group has<br>released a video saying it<br>kidnapped a missing journalist<br>in Iraq and would kill him<br>unless US forces left Najaf<br>within 48 hours."
-          ],
-          [
-           "18 August 2004 -- There has<br>been renewed fighting in the<br>Iraqi city of Al-Najaf between<br>US and Iraqi troops and Shi<br>#39;a militiamen loyal to<br>radical cleric Muqtada al-<br>Sadr."
-          ],
-          [
-           "You #39;re probably already<br>familiar with one of the most<br>common questions we hear at<br>iPodlounge:  quot;how can I<br>load my iPod up with free<br>music?"
-          ],
-          [
-           " SINGAPORE (Reuters) -<br>Investors bought shares in<br>Asian  exporters and<br>electronics firms such as<br>Fujitsu Ltd. on  Tuesday,<br>buoyed by a favorable outlook<br>from U.S. technology<br>bellwethers and a slide in oil<br>prices."
-          ],
-          [
-           "Ace Ltd. will stop paying<br>brokers for steering business<br>its way, becoming the third<br>company to make concessions in<br>the five days since New York<br>Attorney General Eliot Spitzer<br>unveiled a probe of the<br>insurance industry."
-          ],
-          [
-           "Vice chairman of the office of<br>the chief executive officer in<br>Novell Inc, Chris Stone is<br>leaving the company to pursue<br>other opportunities in life."
-          ],
-          [
-           "Wm. Wrigley Jr. Co., the world<br>#39;s largest maker of chewing<br>gum, agreed to buy candy<br>businesses including Altoids<br>mints and Life Savers from<br>Kraft Foods Inc."
-          ],
-          [
-           "American improves to 3-1 on<br>the season with a hard-fought<br>overtime win, 74-63, against<br>Loyala at Bender Arena on<br>Friday night."
-          ],
-          [
-           "Australia tighten their grip<br>on the third Test and the<br>series after dominating India<br>on day two in Nagpur."
-          ],
-          [
-           " #39;Reaching a preliminary<br>pilot agreement is the single<br>most important hurdle they<br>have to clear, but certainly<br>not the only one."
-          ],
-          [
-           "Bee Staff Writers. SAN<br>FRANCISCO - As Eric Johnson<br>drove to the stadium Sunday<br>morning, his bruised ribs were<br>so sore, he wasn #39;t sure he<br>#39;d be able to suit up for<br>the game."
-          ],
-          [
-           "The New England Patriots are<br>so single-minded in pursuing<br>their third Super Bowl triumph<br>in four years that they almost<br>have no room for any other<br>history."
-          ],
-          [
-           "TORONTO (CP) - Canada #39;s<br>big banks are increasing<br>mortgage rates following a<br>decision by the Bank of Canada<br>to raise its overnight rate by<br>one-quarter of a percentage<br>point to 2.25 per cent."
-          ],
-          [
-           " SEOUL (Reuters) - North<br>Korea's two-year-old nuclear<br>crisis  has taxed the world's<br>patience, the chief United<br>Nations  nuclear regulator<br>said on Wednesday, urging<br>communist Pyongyang  to return<br>to its disarmament treaty<br>obligations."
-          ],
-          [
-           "washingtonpost.com - Microsoft<br>is going to Tinseltown today<br>to announce plans for its<br>revamped Windows XP Media<br>Center, part of an aggressive<br>push to get ahead in the<br>digital entertainment race."
-          ],
-          [
-           "GROZNY, Russia - The Russian<br>government's choice for<br>president of war-ravaged<br>Chechnya appeared to be the<br>victor Sunday in an election<br>tainted by charges of fraud<br>and shadowed by last week's<br>terrorist destruction of two<br>airliners.    Little more than<br>two hours after polls closed,<br>acting Chechen president<br>Sergei Abramov said<br>preliminary results showed<br>Maj..."
-          ],
-          [
-           "Because, while the Eagles are<br>certain to stumble at some<br>point during the regular<br>season, it seems inconceivable<br>that they will falter against<br>a team with as many offensive<br>problems as Baltimore has<br>right now."
-          ],
-          [
-           "AP - J.J. Arrington ran for 84<br>of his 121 yards in the second<br>half and Aaron Rodgers shook<br>off a slow start to throw two<br>touchdown passes to help No. 5<br>California beat Washington<br>42-12 on Saturday."
-          ],
-          [
-           "BAGHDAD, Sept 5 (AFP) - Izzat<br>Ibrahim al-Duri, Saddam<br>Hussein #39;s deputy whose<br>capture was announced Sunday,<br>is 62 and riddled with cancer,<br>but was public enemy number<br>two in Iraq for the world<br>#39;s most powerful military."
-          ],
-          [
-           "AP - An explosion targeted the<br>Baghdad governor's convoy as<br>he was traveling through the<br>capital Tuesday, killing two<br>people but leaving him<br>uninjured, the Interior<br>Ministry said."
-          ],
-          [
-           "GENEVA: Rescuers have found<br>the bodies of five Swiss<br>firemen who died after the<br>ceiling of an underground car<br>park collapsed during a fire,<br>a police spokesman said last<br>night."
-          ],
-          [
-           "John Kerry has held 10 \"front<br>porch visit\" events  an actual<br>front porch is optional  where<br>perhaps 100 people ask<br>questions in a low-key<br>campaigning style."
-          ],
-          [
-           "AP - Most of the turkeys<br>gracing the nation's dinner<br>tables Thursday have been<br>selectively bred for their<br>white meat for so many<br>generations that simply<br>walking can be a problem for<br>many of the big-breasted birds<br>and sex is no longer possible."
-          ],
-          [
-           "OTTAWA (CP) - The economy<br>created another 43,000 jobs<br>last month, pushing the<br>unemployment rate down to 7.1<br>per cent from 7.2 per cent in<br>August, Statistics Canada said<br>Friday."
-          ],
-          [
-           "The right-win opposition<br>Conservative Party and Liberal<br>Center Union won 43 seats in<br>the 141-member Lithuanian<br>parliament, after more than 99<br>percent of the votes were<br>counted"
-          ],
-          [
-           " TOKYO (Reuters) - Japan's<br>Nikkei average rose 0.39<br>percent  by midsession on<br>Friday, bolstered by solid<br>gains in stocks  dependent on<br>domestic business such as Kao<br>Corp. &lt;A HREF=\"http://www.i<br>nvestor.reuters.com/FullQuote.<br>aspx?ticker=4452.T target=/sto<br>cks/quickinfo/fullquote\"&gt;44<br>52.T&lt;/A&gt;."
-          ],
-          [
-           " FRANKFURT (Reuters) -<br>DaimlerChrysler and General<br>Motors  will jointly develop<br>new hybrid motors to compete<br>against  Japanese rivals on<br>the fuel-saving technology<br>that reduces  harmful<br>emissions, the companies said<br>on Monday."
-          ],
-          [
-           " SEATTLE (Reuters) - Microsoft<br>Corp. &lt;A HREF=\"http://www.r<br>euters.co.uk/financeQuoteLooku<br>p.jhtml?ticker=MSFT.O<br>qtype=sym infotype=info<br>qcat=news\"&gt;MSFT.O&lt;/A&gt;<br>is making a  renewed push this<br>week to get its software into<br>living rooms  with the launch<br>of a new version of its<br>Windows XP Media  Center, a<br>personal computer designed for<br>viewing movies,  listening to<br>music and scrolling through<br>digital pictures."
-          ],
-          [
-           "KHARTOUM, Aug 18 (Reuters) -<br>The United Nations said on<br>Wednesday it was very<br>concerned by Sudan #39;s lack<br>of practical progress in<br>bringing security to Darfur,<br>where more than a million<br>people have fled their homes<br>for fear of militia ..."
-          ],
-          [
-           "SHANGHAI, China The Houston<br>Rockets have arrived in<br>Shanghai with hometown<br>favorite Yao Ming declaring<br>himself  quot;here on<br>business."
-          ],
-          [
-           "Charleston, SC (Sports<br>Network) - Andy Roddick and<br>Mardy Fish will play singles<br>for the United States in this<br>weekend #39;s Davis Cup<br>semifinal matchup against<br>Belarus."
-          ],
-          [
-           "AFP - With less than two<br>months until the November 2<br>election, President George W.<br>Bush is working to shore up<br>support among his staunchest<br>supporters even as he courts<br>undecided voters."
-          ],
-          [
-           "The bass should be in your<br>face. That's what Matt Kelly,<br>of Boston's popular punk rock<br>band Dropkick Murphys, thinks<br>is the mark of a great stereo<br>system. And he should know.<br>Kelly, 29, is the drummer for<br>the band that likes to think<br>of itself as a bit of an Irish<br>lucky charm for the Red Sox."
-          ],
-          [
-           "Chile's government says it<br>will build a  prison for<br>officers convicted of human<br>rights abuses in the Pinochet<br>era."
-          ],
-          [
-           "Slumping corporate spending<br>and exports caused the economy<br>to slow to a crawl in the<br>July-September period, with<br>real gross domestic product<br>expanding just 0.1 percent<br>from the previous quarter,<br>Cabinet Office data showed<br>Friday."
-          ],
-          [
-           "US President George W. Bush<br>signed into law a bill<br>replacing an export tax<br>subsidy that violated<br>international trade rules with<br>a \\$145 billion package of new<br>corporate tax cuts and a<br>buyout for tobacco farmers."
-          ],
-          [
-           "The Nikkei average was up 0.37<br>percent in mid-morning trade<br>on Thursday as a recovery in<br>the dollar helped auto makers<br>among other exporters, but<br>trade was slow as investors<br>waited for important Japanese<br>economic data."
-          ],
-          [
-           "Jennifer Canada knew she was<br>entering a boy's club when she<br>enrolled in Southern Methodist<br>University's Guildhall school<br>of video-game making."
-          ],
-          [
-           "RICKY PONTING believes the<br>game #39;s watchers have<br>fallen for the  quot;myth<br>quot; that New Zealand know<br>how to rattle Australia."
-          ],
-          [
-           "MILWAUKEE (SportsTicker) -<br>Barry Bonds tries to go where<br>just two players have gone<br>before when the San Francisco<br>Giants visit the Milwaukee<br>Brewers on Tuesday."
-          ],
-          [
-           "Palestinian leader Mahmoud<br>Abbas reiterated calls for his<br>people to drop their weapons<br>in the struggle for a state. a<br>clear change of strategy for<br>peace with Israel after Yasser<br>Arafat #39;s death."
-          ],
-          [
-           "The new software is designed<br>to simplify the process of<br>knitting together back-office<br>business applications."
-          ],
-          [
-           "SYDNEY (Dow Jones)--Colorado<br>Group Ltd. (CDO.AU), an<br>Australian footwear and<br>clothing retailer, said Monday<br>it expects net profit for the<br>fiscal year ending Jan. 29 to<br>be over 30 higher than that of<br>a year earlier."
-          ],
-          [
-           "NEW YORK - What are the odds<br>that a tiny nation like<br>Antigua and Barbuda could take<br>on the United States in an<br>international dispute and win?"
-          ],
-          [
-           "AP - With Tom Brady as their<br>quarterback and a stingy,<br>opportunistic defense, it's<br>difficult to imagine when the<br>New England Patriots might<br>lose again. Brady and<br>defensive end Richard Seymour<br>combined to secure the<br>Patriots' record-tying 18th<br>straight victory, 31-17 over<br>the Buffalo Bills on Sunday."
-          ],
-          [
-           "FRANKFURT, GERMANY -- The<br>German subsidiaries of<br>Hewlett-Packard Co. (HP) and<br>Novell Inc. are teaming to<br>offer Linux-based products to<br>the country's huge public<br>sector."
-          ],
-          [
-           "SBC Communications expects to<br>cut 10,000 or more jobs by the<br>end of next year through<br>layoffs and attrition. That<br>#39;s about six percent of the<br>San Antonio-based company<br>#39;s work force."
-          ],
-          [
-           " BAGHDAD (Reuters) - Iraq's<br>U.S.-backed government said on<br>Tuesday that \"major neglect\"<br>by its American-led military<br>allies led to a massacre of 49<br>army recruits at the weekend."
-          ],
-          [
-           "SiliconValley.com - \"I'm<br>back,\" declared Apple<br>Computer's Steve Jobs on<br>Thursday morning in his first<br>public appearance before<br>reporters since cancer surgery<br>in late July."
-          ],
-          [
-           "BEIJING -- Police have<br>detained a man accused of<br>slashing as many as nine boys<br>to death as they slept in<br>their high school dormitory in<br>central China, state media<br>reported today."
-          ],
-          [
-           "Health India: London, Nov 4 :<br>Cosmetic face cream used by<br>fashionable Roman women was<br>discovered at an ongoing<br>archaeological dig in London,<br>in a metal container, complete<br>with the lid and contents."
-          ],
-          [
-           "Israeli Prime Minister Ariel<br>Sharon #39;s Likud party<br>agreed on Thursday to a<br>possible alliance with<br>opposition Labour in a vote<br>that averted a snap election<br>and strengthened his Gaza<br>withdrawal plan."
-          ],
-          [
-           "Another United Airlines union<br>is seeking to oust senior<br>management at the troubled<br>airline, saying its strategies<br>are reckless and incompetent."
-          ],
-          [
-           "Approaching Hurricane Ivan has<br>led to postponement of the<br>game Thursday night between<br>10th-ranked California and<br>Southern Mississippi in<br>Hattiesburg, Cal #39;s<br>athletic director said Monday."
-          ],
-          [
-           "Global oil prices boomed on<br>Wednesday, spreading fear that<br>energy prices will restrain<br>economic activity, as traders<br>worried about a heating oil<br>supply crunch in the American<br>winter."
-          ],
-          [
-           "Custom-designed imported<br>furniture was once an<br>exclusive realm. Now, it's the<br>economical alternative for<br>commercial developers and<br>designers needing everything<br>from seats to beds to desks<br>for their projects."
-          ],
-          [
-           "SAN DIEGO (Ticker) - The San<br>Diego Padres lacked speed and<br>an experienced bench last<br>season, things veteran<br>infielder Eric Young is<br>capable of providing."
-          ],
-          [
-           "This is an eye chart,<br>reprinted as a public service<br>to the New York Mets so they<br>may see from what they suffer:<br>myopia. Has ever a baseball<br>franchise been so shortsighted<br>for so long?"
-          ],
-          [
-           "Short-term interest rate<br>futures struggled on Thursday<br>after a government report<br>showing US core inflation for<br>August below market<br>expectations failed to alter<br>views on Federal Reserve rate<br>policy."
-          ],
-          [
-           "MacCentral - Microsoft's<br>Macintosh Business Unit on<br>Tuesday issued a patch for<br>Virtual PC 7 that fixes a<br>problem that occurred when<br>running the software on Power<br>Mac G5 computers with more<br>than 2GB of RAM installed.<br>Previously, Virtual PC 7 would<br>not run on those computers,<br>causing a fatal error that<br>crashed the application.<br>Microsoft also noted that<br>Virtual PC 7.0.1 also offers<br>stability improvements,<br>although it wasn't more<br>specific than that -- some<br>users have reported problems<br>with using USB devices and<br>other issues."
-          ],
-          [
-           "Samsung is now the world #39;s<br>second-largest mobile phone<br>maker, behind Nokia. According<br>to market watcher Gartner, the<br>South Korean company has<br>finally knocked Motorola into<br>third place."
-          ],
-          [
-           "Don't bother buying Star Wars:<br>Battlefront if you're looking<br>for a first-class shooter --<br>there are far better games out<br>there. But if you're a Star<br>Wars freak and need a fix,<br>this title will suffice. Lore<br>Sjberg reviews Battlefront."
-          ],
-          [
-           "While the American forces are<br>preparing to launch a large-<br>scale attack against Falluja<br>and al-Ramadi, one of the<br>chieftains of Falluja said<br>that contacts are still<br>continuous yesterday between<br>members representing the city<br>#39;s delegation and the<br>interim"
-          ],
-          [
-           "UN Security Council<br>ambassadors were still<br>quibbling over how best to<br>pressure Sudan and rebels to<br>end two different wars in the<br>country even as they left for<br>Kenya on Tuesday for a meeting<br>on the crisis."
-          ],
-          [
-           "HENDALA, Sri Lanka -- Day<br>after day, locked in a cement<br>room somewhere in Iraq, the<br>hooded men beat him. They told<br>him he would be beheaded.<br>''Ameriqi! quot; they shouted,<br>even though he comes from this<br>poor Sri Lankan fishing<br>village."
-          ],
-          [
-           "THE kidnappers of British aid<br>worker Margaret Hassan last<br>night threatened to turn her<br>over to the group which<br>beheaded Ken Bigley if the<br>British Government refuses to<br>pull its troops out of Iraq."
-          ],
-          [
-           " TOKYO (Reuters) - Tokyo<br>stocks climbed to a two week<br>high  on Friday after Tokyo<br>Electron Ltd. and other chip-<br>related  stocks were boosted<br>by a bullish revenue outlook<br>from industry  leader Intel<br>Corp."
-          ],
-          [
-           "More than by brain size or<br>tool-making ability, the human<br>species was set apart from its<br>ancestors by the ability to<br>jog mile after lung-stabbing<br>mile with greater endurance<br>than any other primate,<br>according to research<br>published today in the journal"
-          ],
-          [
-           " LONDON (Reuters) - A medical<br>product used to treat both<br>male hair loss and prostate<br>problems has been added to the<br>list  of banned drugs for<br>athletes."
-          ],
-          [
-           "AP - Curtis Martin and Jerome<br>Bettis have the opportunity to<br>go over 13,000 career yards<br>rushing in the same game when<br>Bettis and the Pittsburgh<br>Steelers play Martin and the<br>New York Jets in a big AFC<br>matchup Sunday."
-          ],
-          [
-           "&lt;p&gt;&lt;/p&gt;&lt;p&gt;<br>BOGOTA, Colombia (Reuters) -<br>Ten Colombian police<br>officerswere killed on Tuesday<br>in an ambush by the National<br>LiberationArmy, or ELN, in the<br>worst attack by the Marxist<br>group inyears, authorities<br>told Reuters.&lt;/p&gt;"
-          ],
-          [
-           "Woodland Hills-based Brilliant<br>Digital Entertainment and its<br>subsidiary Altnet announced<br>yesterday that they have filed<br>a patent infringement suit<br>against the Recording Industry<br>Association of America (RIAA)."
-          ],
-          [
-           "AFP - US President George W.<br>Bush called his Philippines<br>counterpart Gloria Arroyo and<br>said their countries should<br>keep strong ties, a spokesman<br>said after a spat over<br>Arroyo's handling of an Iraq<br>kidnapping."
-          ],
-          [
-           "A scathing judgment from the<br>UK #39;s highest court<br>condemning the UK government<br>#39;s indefinite detention of<br>foreign terror suspects as a<br>threat to the life of the<br>nation, left anti-terrorist<br>laws in the UK in tatters on<br>Thursday."
-          ],
-          [
-           "Sony Ericsson and Cingular<br>provide Z500a phones and<br>service for military families<br>to stay connected on today<br>#39;s  quot;Dr. Phil Show<br>quot;."
-          ],
-          [
-           "Reuters - Australia's<br>conservative Prime<br>Minister\\John Howard, handed<br>the most powerful mandate in a<br>generation,\\got down to work<br>on Monday with reform of<br>telecommunications,\\labor and<br>media laws high on his agenda."
-          ],
-          [
-           " TOKYO (Reuters) - Typhoon<br>Megi killed one person as it<br>slammed ashore in northern<br>Japan on Friday, bringing the<br>death  toll to at least 13 and<br>cutting power to thousands of<br>homes  before heading out into<br>the Pacific."
-          ],
-          [
-           "Cairo: Egyptian President<br>Hosni Mubarak held telephone<br>talks with Palestinian leader<br>Yasser Arafat about Israel<br>#39;s plan to pull troops and<br>the 8,000 Jewish settlers out<br>of the Gaza Strip next year,<br>the Egyptian news agency Mena<br>said."
-          ],
-          [
-           " NEW YORK (Reuters) - Adobe<br>Systems Inc. &lt;A HREF=\"http:<br>//www.investor.reuters.com/Ful<br>lQuote.aspx?ticker=ADBE.O targ<br>et=/stocks/quickinfo/fullquote<br>\"&gt;ADBE.O&lt;/A&gt; on<br>Monday  reported a sharp rise<br>in quarterly profit, driven by<br>robust  demand for its<br>Photoshop and document-sharing<br>software."
-          ],
-          [
-           "Dow Jones  amp; Co., publisher<br>of The Wall Street Journal,<br>has agreed to buy online<br>financial news provider<br>MarketWatch Inc. for about<br>\\$463 million in a bid to<br>boost its revenue from the<br>fast-growing Internet<br>advertising market."
-          ],
-          [
-           "The first American military<br>intelligence soldier to be<br>court-martialed over the Abu<br>Ghraib abuse scandal was<br>sentenced Saturday to eight<br>months in jail, a reduction in<br>rank and a bad-conduct<br>discharge."
-          ],
-          [
-           " TOKYO (Reuters) - Japan will<br>seek an explanation at weekend<br>talks with North Korea on<br>activity indicating Pyongyang<br>may be  preparing a missile<br>test, although Tokyo does not<br>think a  launch is imminent,<br>Japan's top government<br>spokesman said."
-          ],
-          [
-           "Michigan Stadium was mostly<br>filled with empty seats. The<br>only cheers were coming from<br>near one end zone -he Iowa<br>section. By Carlos Osorio, AP."
-          ],
-          [
-           "The International Rugby Board<br>today confirmed that three<br>countries have expressed an<br>interest in hosting the 2011<br>World Cup. New Zealand, South<br>Africa and Japan are leading<br>the race to host rugby union<br>#39;s global spectacular in<br>seven years #39; time."
-          ],
-          [
-           "Officials at EarthLink #39;s<br>(Quote, Chart) R amp;D<br>facility have quietly released<br>a proof-of-concept file-<br>sharing application based on<br>the Session Initiated Protocol<br>(define)."
-          ],
-          [
-           "Low-fare airline ATA has<br>announced plans to lay off<br>hundreds of employees and to<br>drop most of its flights out<br>of Midway Airport in Chicago."
-          ],
-          [
-           " BEIJING (Reuters) - Iran will<br>never be prepared to<br>dismantle its nuclear program<br>entirely but remains committed<br>to  the non-proliferation<br>treaty (NPT), its chief<br>delegate to the  International<br>Atomic Energy Agency said on<br>Wednesday."
-          ],
-          [
-           " WASHINGTON (Reuters) -<br>Germany's Bayer AG &lt;A HREF=<br>\"http://www.investor.reuters.c<br>om/FullQuote.aspx?ticker=BAYG.<br>DE target=/stocks/quickinfo/fu<br>llquote\"&gt;BAYG.DE&lt;/A&gt;<br>has  agreed to plead guilty<br>and pay a \\$4.7 million fine<br>for taking  part in a<br>conspiracy to fix the prices<br>of synthetic rubber, the  U.S.<br>Justice Department said on<br>Wednesday."
-          ],
-          [
-           "MIAMI (Ticker) -- In its first<br>season in the Atlantic Coast<br>Conference, No. 11 Virginia<br>Tech is headed to the BCS.<br>Bryan Randall threw two<br>touchdown passes and the<br>Virginia Tech defense came up<br>big all day as the Hokies<br>knocked off No."
-          ],
-          [
-           "(CP) - Somehow, in the span of<br>half an hour, the Detroit<br>Tigers #39; pitching went from<br>brutal to brilliant. Shortly<br>after being on the wrong end<br>of several records in a 26-5<br>thrashing from to the Kansas<br>City"
-          ],
-          [
-           "&lt;p&gt;&lt;/p&gt;&lt;p&gt;<br>SANTIAGO, Chile (Reuters) -<br>President Bush on<br>Saturdayreached into a throng<br>of squabbling bodyguards and<br>pulled aSecret Service agent<br>away from Chilean security<br>officers afterthey stopped the<br>U.S. agent from accompanying<br>the president ata<br>dinner.&lt;/p&gt;"
-          ],
-          [
-           " quot;It #39;s your mail,<br>quot; the Google Web site<br>said.  quot;You should be able<br>to choose how and where you<br>read it. You can even switch<br>to other e-mail services<br>without having to worry about<br>losing access to your<br>messages."
-          ],
-          [
-           "The US oil giant got a good<br>price, Russia #39;s No. 1 oil<br>company acquired a savvy<br>partner, and Putin polished<br>Russia #39;s image."
-          ],
-          [
-           "With the Huskies reeling at<br>0-4 - the only member of a<br>Bowl Championship Series<br>conference left without a win<br>-an Jose State suddenly looms<br>as the only team left on the<br>schedule that UW will be<br>favored to beat."
-          ],
-          [
-           "Darryl Sutter, who coached the<br>Calgary Flames to the Stanley<br>Cup finals last season, had an<br>emergency appendectomy and was<br>recovering Friday."
-          ],
-          [
-           "The maker of Hostess Twinkies,<br>a cake bar and a piece of<br>Americana children have<br>snacked on for almost 75<br>years, yesterday raised<br>concerns about the company<br>#39;s ability to stay in<br>business."
-          ],
-          [
-           "Iranian deputy foreign<br>minister Gholamali Khoshrou<br>denied Tuesday that his<br>country #39;s top leaders were<br>at odds over whether nuclear<br>weapons were un-Islamic,<br>insisting that it will<br>quot;never quot; make the<br>bomb."
-          ],
-          [
-           " quot;Israel mercenaries<br>assisting the Ivory Coast army<br>operated unmanned aircraft<br>that aided aerial bombings of<br>a French base in the country,<br>quot; claimed"
-          ],
-          [
-           "Athens, Greece (Sports<br>Network) - For the second<br>straight day a Briton captured<br>gold at the Olympic Velodrome.<br>Bradley Wiggins won the men<br>#39;s individual 4,000-meter<br>pursuit Saturday, one day<br>after teammate"
-          ],
-          [
-           "AFP - SAP, the world's leading<br>maker of business software,<br>may need an extra year to<br>achieve its medium-term profit<br>target of an operating margin<br>of 30 percent, its chief<br>financial officer said."
-          ],
-          [
-           "Tenet Healthcare Corp., the<br>second- largest US hospital<br>chain, said fourth-quarter<br>charges may exceed \\$1 billion<br>and its loss from continuing<br>operations will widen from the<br>third quarter #39;s because of<br>increased bad debt."
-          ],
-          [
-           "AFP - The airline Swiss said<br>it had managed to cut its<br>first-half net loss by about<br>90 percent but warned that<br>spiralling fuel costs were<br>hampering a turnaround despite<br>increasing passenger travel."
-          ],
-          [
-           "Vulnerable youngsters expelled<br>from schools in England are<br>being let down by the system,<br>say inspectors."
-          ],
-          [
-           "Yasser Arafat was undergoing<br>tests for possible leukaemia<br>at a military hospital outside<br>Paris last night after being<br>airlifted from his Ramallah<br>headquarters to an anxious<br>farewell from Palestinian<br>well-wishers."
-          ],
-          [
-           "The world #39;s only captive<br>great white shark made history<br>this week when she ate several<br>salmon fillets, marking the<br>first time that a white shark<br>in captivity"
-          ],
-          [
-           "Nepal #39;s main opposition<br>party urged the government on<br>Monday to call a unilateral<br>ceasefire with Maoist rebels<br>and seek peace talks to end a<br>road blockade that has cut the<br>capital off from the rest of<br>the country."
-          ],
-          [
-           "Communications aggregator<br>iPass said Monday that it is<br>adding in-flight Internet<br>access to its access<br>portfolio. Specifically, iPass<br>said it will add access<br>offered by Connexion by Boeing<br>to its list of access<br>providers."
-          ],
-          [
-           "The London-based brokerage<br>Collins Stewart Tullett placed<br>55m of new shares yesterday to<br>help fund the 69.5m purchase<br>of the money and futures<br>broker Prebon."
-          ],
-          [
-           "BOSTON - The New York Yankees<br>and Boston were tied 4-4 after<br>13 innings Monday night with<br>the Red Sox trying to stay<br>alive in the AL championship<br>series.    Boston tied the<br>game with two runs in the<br>eighth inning on David Ortiz's<br>solo homer, a walk to Kevin<br>Millar, a single by Trot Nixon<br>and a sacrifice fly by Jason<br>Varitek..."
-          ],
-          [
-           "A Steffen Iversen penalty was<br>sufficient to secure the<br>points for Norway at Hampden<br>on Saturday. James McFadden<br>was ordered off after 53<br>minutes for deliberate<br>handball as he punched Claus<br>Lundekvam #39;s header off the<br>line."
-          ],
-          [
-           "Reuters - The country may be<br>more\\or less evenly divided<br>along partisan lines when it<br>comes to\\the presidential<br>race, but the Republican Party<br>prevailed in\\the Nielsen<br>polling of this summer's<br>nominating conventions."
-          ],
-          [
-           " PARIS (Reuters) - European<br>equities flirted with 5-month<br>peaks as hopes that economic<br>growth was sustainable and a<br>small  dip in oil prices<br>helped lure investors back to<br>recent  underperformers such<br>as technology and insurance<br>stocks."
-          ],
-          [
-           " NEW YORK (Reuters) - U.S.<br>stocks looked to open higher<br>on  Friday, as the fourth<br>quarter begins on Wall Street<br>with oil  prices holding below<br>\\$50 a barrel."
-          ],
-          [
-           "LONDON : World oil prices<br>stormed above 54 US dollars<br>for the first time Tuesday as<br>strikes in Nigeria and Norway<br>raised worries about possible<br>supply shortages during the<br>northern hemisphere winter."
-          ],
-          [
-           "AP - Ailing St. Louis reliever<br>Steve Kline was unavailable<br>for Game 3 of the NL<br>championship series on<br>Saturday, but Cardinals<br>manager Tony LaRussa hopes the<br>left-hander will pitch later<br>this postseason."
-          ],
-          [
-           "Company launches free test<br>version of service that<br>fosters popular Internet<br>activity."
-          ],
-          [
-           "Outdated computer systems are<br>hampering the work of<br>inspectors, says the UN<br>nuclear agency."
-          ],
-          [
-           " In Vice President Cheney's<br>final push before next<br>Tuesday's election, talk of<br>nuclear annihilation and<br>escalating war rhetoric have<br>blended with balloon drops,<br>confetti cannons and the other<br>trappings of modern<br>campaigning with such ferocity<br>that it is sometimes tough to<br>tell just who the enemy is."
-          ],
-          [
-           "MADRID: A stunning first-half<br>free kick from David Beckham<br>gave Real Madrid a 1-0 win<br>over newly promoted Numancia<br>at the Bernabeu last night."
-          ],
-          [
-           "MacCentral - You Software Inc.<br>announced on Tuesday the<br>availability of You Control:<br>iTunes, a free\\download that<br>places iTunes controls in the<br>Mac OS X menu bar.<br>Without\\leaving the current<br>application, you can pause,<br>play, rewind or skip songs,\\as<br>well as control iTunes' volume<br>and even browse your entire<br>music library\\by album, artist<br>or genre. Each time a new song<br>plays, You Control:<br>iTunes\\also pops up a window<br>that displays the artist and<br>song name and the<br>album\\artwork, if it's in the<br>library. System requirements<br>call for Mac OS X\\v10.2.6 and<br>10MB free hard drive space.<br>..."
-          ],
-          [
-           "Favourites Argentina beat<br>Italy 3-0 this morning to<br>claim their place in the final<br>of the men #39;s Olympic<br>football tournament. Goals by<br>leading goalscorer Carlos<br>Tevez, with a smart volley<br>after 16 minutes, and"
-          ],
-          [
-           "Shortly after Steve Spurrier<br>arrived at Florida in 1990,<br>the Gators were placed on NCAA<br>probation for a year stemming<br>from a child-support payment<br>former coach Galen Hall made<br>for a player."
-          ],
-          [
-           "The US Secret Service Thursday<br>announced arrests in eight<br>states and six foreign<br>countries of 28 suspected<br>cybercrime gangsters on<br>charges of identity theft,<br>computer fraud, credit-card<br>fraud, and conspiracy."
-          ],
-          [
-           "US stocks were little changed<br>on Thursday as an upbeat<br>earnings report from chip<br>maker National Semiconductor<br>Corp. (NSM) sparked some<br>buying, but higher oil prices<br>limited gains."
-          ]
-         ],
-         "hovertemplate": "label=Other<br>Component 0=%{x}<br>Component 1=%{y}<br>string=%{customdata[0]}<extra></extra>",
-         "legendgroup": "Other",
-         "marker": {
-          "color": "#636efa",
-          "size": 5,
-          "symbol": "circle"
-         },
-         "mode": "markers",
-         "name": "Other",
-         "showlegend": true,
-         "type": "scattergl",
-         "x": [
-          -50.70537,
-          16.660423,
-          -47.977715,
-          -51.65402,
-          17.206654,
-          -23.452963,
-          28.167477,
-          14.671119,
-          -37.6373,
-          21.907679,
-          49.959976,
-          -36.581165,
-          -19.791555,
-          11.003371,
-          12.786125,
-          54.445854,
-          -20.928211,
-          28.192938,
-          27.511831,
-          30.389194,
-          31.907536,
-          27.685726,
-          -0.48236108,
-          -53.210773,
-          24.631432,
-          -39.491558,
-          19.87161,
-          -22.567608,
-          13.9476,
-          42.217842,
-          23.463217,
-          -19.96729,
-          -49.124306,
-          15.450646,
-          -7.3474283,
-          -28.231606,
-          22.48473,
-          47.958393,
-          -22.541676,
-          -52.717,
-          47.226242,
-          51.068775,
-          50.124294,
-          -19.31264,
-          -28.148346,
-          44.945942,
-          -42.825386,
-          -47.410145,
-          -29.877638,
-          7.788443,
-          46.406788,
-          48.53827,
-          -5.8827424,
-          -35.965088,
-          31.687206,
-          26.455547,
-          -10.623615,
-          -40.76841,
-          -4.8219795,
-          -18.956379,
-          40.537342,
-          3.2403526,
-          -5.107883,
-          63.37852,
-          56.515934,
-          45.10189,
-          -42.131943,
-          -8.153443,
-          48.401085,
-          0.8158772,
-          -29.768171,
-          7.324227,
-          36.802402,
-          -32.52056,
-          24.88585,
-          -39.654697,
-          12.912951,
-          -18.497515,
-          54.15107,
-          -31.347673,
-          -48.55776,
-          38.79396,
-          -53.367012,
-          -27.265852,
-          -6.4607854,
-          13.661437,
-          30.355759,
-          58.71805,
-          -25.208595,
-          3.1252713,
-          -41.868053,
-          38.756367,
-          59.531124,
-          47.890396,
-          -17.98721,
-          36.084118,
-          -13.634508,
-          39.42093,
-          18.820461,
-          -30.356327,
-          -49.554066,
-          -29.197483,
-          55.4732,
-          -43.75864,
-          60.896523,
-          56.4989,
-          -33.627903,
-          48.16754,
-          -28.459074,
-          13.827141,
-          -11.594272,
-          47.840588,
-          -33.894855,
-          -5.484721,
-          1.4320391,
-          60.467564,
-          -13.830222,
-          -26.233013,
-          31.210938,
-          -36.616104,
-          12.191131,
-          49.345882,
-          -53.822376,
-          -44.628685,
-          -2.3659778,
-          -19.861258,
-          58.657722,
-          -44.997097,
-          -37.276833,
-          25.89013,
-          -10.061741,
-          -32.693943,
-          -1.0874362,
-          -19.60824,
-          -38.45829,
-          -15.162608,
-          16.015558,
-          -38.214413,
-          -18.354656,
-          20.328302,
-          37.406326,
-          45.95487,
-          27.38124,
-          46.569256,
-          15.950565,
-          11.055151,
-          14.368044,
-          40.19783,
-          -38.585472,
-          -46.83205,
-          15.940281,
-          48.277,
-          -38.63723,
-          48.961315,
-          -7.0522246,
-          28.371725,
-          -23.330465,
-          -50.323666,
-          46.0185,
-          -44.325756,
-          -35.855865,
-          -18.20647,
-          -7.6315646,
-          59.281708,
-          -53.65577,
-          -33.435104,
-          17.925577,
-          -48.104885,
-          15.851762,
-          58.10119,
-          41.329796,
-          60.929493,
-          -56.60167,
-          49.080627,
-          1.6593695,
-          -1.9387143,
-          -40.07204,
-          -32.65333,
-          -11.705121,
-          18.05479,
-          52.442997,
-          25.193996,
-          28.471008,
-          -23.656853,
-          13.627039,
-          10.705277,
-          -8.970166,
-          18.345266,
-          49.169395,
-          -44.30361,
-          -36.139923,
-          31.360231,
-          50.538635,
-          50.209198,
-          -48.951195,
-          29.55601,
-          -21.136202,
-          -21.265085,
-          -41.619125,
-          -34.370987,
-          -33.846046,
-          -16.407732,
-          4.6381655,
-          16.084637,
-          38.928047,
-          -41.55955,
-          -33.503048,
-          57.835648,
-          25.167212,
-          -31.4103,
-          51.287056,
-          -41.654114,
-          -43.58004,
-          -40.584736,
-          54.942364,
-          12.821454,
-          24.011929,
-          31.13371,
-          -20.22472,
-          17.79019,
-          -24.227406,
-          15.120078,
-          -41.80841,
-          -43.47724,
-          -39.450546,
-          19.99747,
-          15.529904,
-          45.565693,
-          -28.54648,
-          56.076347,
-          19.791918,
-          -55.67927,
-          -41.094902,
-          -27.870377,
-          -41.256504,
-          -11.352515,
-          -46.313496,
-          -46.637367,
-          -18.041924,
-          -18.929783,
-          -38.786,
-          -18.44551,
-          -45.789707,
-          -9.525661,
-          12.873272,
-          47.481384,
-          16.33122,
-          22.366423,
-          -35.619858,
-          54.362545,
-          2.4414933,
-          25.421625,
-          53.08307,
-          -29.50228,
-          -34.186226,
-          -37.5602,
-          -36.813686,
-          20.893494,
-          19.51864,
-          -5.632542,
-          11.30494,
-          2.9794881,
-          -45.209023,
-          -31.500145,
-          12.285144,
-          55.395947,
-          32.21779,
-          3.3651476,
-          -51.390118,
-          36.722115,
-          58.705086,
-          30.618706,
-          -16.802534,
-          2.6427522,
-          -42.6501,
-          18.079544,
-          -6.2927465,
-          -46.257027,
-          -23.344019,
-          -44.347576,
-          23.218187,
-          48.1655,
-          -8.361857,
-          2.7036908,
-          6.7110343,
-          -1.3755705,
-          -17.157036,
-          39.944633,
-          51.72719,
-          -18.672327,
-          57.632236,
-          18.106745,
-          10.5324745,
-          40.575005,
-          -23.71305,
-          -55.86017,
-          18.966919,
-          31.810251,
-          -34.78124,
-          49.25058,
-          52.102192,
-          17.243034,
-          45.8365,
-          4.507162,
-          41.15665,
-          21.953882,
-          45.06367,
-          50.470036,
-          12.895756,
-          13.899155,
-          -18.132378,
-          -35.732872,
-          -8.266737,
-          55.406406,
-          -34.572502,
-          -5.21674,
-          34.643066,
-          9.645002,
-          -39.5287,
-          -21.22969,
-          8.84193,
-          -6.6976542,
-          -26.256298,
-          -42.24456,
-          44.60481,
-          -34.82042,
-          -45.549995,
-          -48.911743,
-          7.766448,
-          40.65631,
-          -7.7231383,
-          -46.522186,
-          49.13915,
-          10.753302,
-          -36.61156,
-          60.835865,
-          29.961258,
-          -37.112934,
-          -10.257471,
-          31.980536,
-          27.892096,
-          45.230713,
-          -16.951935,
-          29.803865,
-          -5.4085217,
-          25.779589,
-          -19.065458,
-          -22.693665,
-          56.531708,
-          -44.68482,
-          23.273722,
-          2.6259706,
-          37.571487,
-          -29.42919,
-          -30.674974,
-          65.59185,
-          -16.563955,
-          38.63354,
-          3.1031818,
-          -43.12336,
-          -57.728573,
-          13.034079,
-          46.481388,
-          -48.13403,
-          -27.2014,
-          -10.165841,
-          46.68557,
-          49.08016,
-          -15.232134,
-          -53.29632,
-          -7.2577205,
-          14.032702,
-          -31.430248,
-          23.928396,
-          12.880273,
-          -27.285727,
-          -42.180077,
-          -15.3164215,
-          -6.620774,
-          -47.9015,
-          11.016033,
-          -37.857563,
-          45.88543,
-          35.342182,
-          -30.674488,
-          -23.828165,
-          -37.931133,
-          -31.504562,
-          -47.091602,
-          17.860275,
-          -6.3850884,
-          -16.122215,
-          -3.119768,
-          47.523766,
-          -28.833778,
-          12.732019,
-          -7.503495,
-          47.32294,
-          -26.526276,
-          16.701687,
-          34.786186,
-          -42.6552,
-          14.009928,
-          18.774673,
-          -37.64758,
-          43.796356,
-          -14.742917,
-          49.697426,
-          -19.793585,
-          -53.133896,
-          37.340225,
-          -22.841238,
-          2.979671,
-          -51.962658,
-          54.74676,
-          41.444393,
-          -15.730567,
-          30.604837,
-          -44.145668,
-          8.863162,
-          60.995483,
-          -44.98284,
-          9.040379,
-          24.042429,
-          25.076736,
-          30.519775,
-          -47.514927,
-          -40.143944,
-          -29.305222,
-          12.896586,
-          -30.795404,
-          25.85091,
-          19.948092,
-          20.974108,
-          -19.33182,
-          -50.141148,
-          66.21081,
-          -49.376717,
-          35.24333,
-          18.678154,
-          -43.173016,
-          57.111607,
-          48.019886,
-          -4.780475,
-          49.229675,
-          52.86177,
-          -32.70729,
-          -13.887877,
-          19.741331,
-          52.435543,
-          -34.81799,
-          -22.524883,
-          -12.82885,
-          -46.24378,
-          -29.501112,
-          -5.0456986,
-          31.022472,
-          -36.60279,
-          -47.141144,
-          -11.186273,
-          -36.80437,
-          18.250782,
-          -8.335074,
-          -34.644447,
-          -11.501718,
-          -9.537627,
-          24.104692,
-          51.07264,
-          61.549442,
-          1.9518297,
-          -42.394825,
-          42.282997,
-          -11.57566,
-          15.377659,
-          -29.24355,
-          -47.198746,
-          33.828228,
-          14.915583,
-          56.65421,
-          -53.3065,
-          19.173527,
-          43.26525,
-          62.865932,
-          -37.63518,
-          -42.896793,
-          -15.898649,
-          1.5646982,
-          -46.367523,
-          -51.349506,
-          -47.68558,
-          -10.65396,
-          -49.790844,
-          39.05222,
-          -27.663815,
-          -7.4475813,
-          41.410755,
-          38.42368,
-          -45.67376,
-          -20.76551,
-          -29.445877,
-          -23.031208,
-          -37.19868,
-          4.37751,
-          -31.336668,
-          8.212411,
-          -45.453674,
-          5.134725,
-          14.638772,
-          -6.1798644,
-          1.3949758,
-          15.7138605,
-          -50.869877,
-          56.985188,
-          -44.030884,
-          -44.016224,
-          57.739395,
-          -24.544922,
-          17.170551,
-          50.66318,
-          48.850945,
-          -50.093754,
-          -24.092436,
-          17.347712,
-          -19.335144,
-          36.300686,
-          39.32889,
-          -6.3253975,
-          -25.326218,
-          31.211935,
-          -6.78382,
-          -50.14104,
-          -49.846096,
-          39.84183,
-          24.028929,
-          40.939545,
-          48.37629,
-          25.452175,
-          -37.92231,
-          -20.485857,
-          51.559708,
-          -52.251915,
-          -33.647213,
-          -9.488163,
-          5.1724906,
-          46.41191,
-          -14.337521,
-          52.77315,
-          27.314432,
-          -29.272839,
-          -42.127716,
-          -45.652252,
-          -43.886417,
-          12.80685,
-          -32.545635,
-          4.3835373,
-          -26.112938,
-          -39.891853,
-          55.190277,
-          -24.499039,
-          -43.219402,
-          -9.765382,
-          12.646676,
-          17.87465,
-          38.03023,
-          -42.07617,
-          9.909096,
-          59.759964,
-          -46.420776,
-          22.181377,
-          48.908253,
-          29.485273,
-          -1.1384851,
-          -36.030876,
-          49.40172,
-          24.128727,
-          49.71215,
-          -16.348925,
-          -31.277052,
-          40.702366,
-          -16.921326,
-          57.916637,
-          16.221085,
-          -9.602789,
-          -13.009839,
-          51.67792,
-          30.202019,
-          -35.251965,
-          57.654526,
-          34.585587,
-          -9.096614,
-          25.097984,
-          2.5471764,
-          61.278408,
-          -16.914656,
-          8.574884,
-          23.422081,
-          39.786133,
-          -44.31037,
-          -28.402678,
-          21.295237,
-          -18.734745,
-          -28.94602,
-          25.800558,
-          -42.23089,
-          33.389534,
-          -23.825924,
-          -37.813118,
-          -45.167847,
-          5.8968763,
-          -22.952112,
-          24.184378,
-          -45.96224,
-          54.46313,
-          -36.155823,
-          -37.039566,
-          -54.980534,
-          -33.989525,
-          -15.194927,
-          46.068615,
-          -28.049438,
-          -30.086702,
-          48.63991,
-          35.595135,
-          20.787077,
-          29.313784,
-          -1.0110728,
-          8.255305,
-          50.553566,
-          -17.443365,
-          -12.567652,
-          -42.189774,
-          -40.062756,
-          -52.438923,
-          -24.236567,
-          -35.002357,
-          54.101334,
-          -54.033554,
-          -24.72687,
-          31.629358,
-          15.709119,
-          -25.166414,
-          -7.6725793,
-          51.79524,
-          -51.84964,
-          -27.801344,
-          -26.129557,
-          -52.71393,
-          10.710161,
-          -13.981046,
-          42.513103,
-          -6.9841313,
-          39.504147,
-          20.738512,
-          47.29459,
-          -10.861444,
-          -48.87469,
-          -50.175316,
-          -35.826897,
-          -31.892145,
-          51.208797,
-          61.06654,
-          23.318872,
-          -35.0245,
-          -3.1801224,
-          59.059566,
-          41.391323,
-          56.262905,
-          -31.190088,
-          -35.842033,
-          -44.238426,
-          -46.75248,
-          46.51155,
-          -24.869604,
-          -48.693672,
-          27.989025,
-          57.75085,
-          35.379726,
-          34.078384,
-          40.129883,
-          51.36741,
-          44.124233,
-          38.459312,
-          -19.088882,
-          42.09723,
-          -32.190376,
-          20.918581,
-          -25.71062,
-          -44.228165,
-          -22.265373,
-          54.85633,
-          -31.057253,
-          11.446291,
-          48.645084,
-          33.95719,
-          10.624376,
-          34.440483,
-          13.654009,
-          -52.42964,
-          23.009165,
-          0.9160498,
-          -33.267147,
-          1.6248351,
-          -36.05716,
-          -7.2311153,
-          45.367435,
-          -12.550289,
-          15.268804,
-          57.216434,
-          20.570063,
-          16.519796,
-          -20.162544,
-          -39.967007,
-          -7.045784,
-          -13.788036,
-          -6.436385,
-          -21.87981,
-          49.150986,
-          -31.409056,
-          40.020714,
-          1.7450867,
-          -37.63322,
-          36.398586,
-          -31.830273,
-          -16.392036,
-          19.578056,
-          -30.145031,
-          9.273592,
-          -22.6749,
-          49.763367,
-          44.87128,
-          -31.353453,
-          -45.900715,
-          -54.722725,
-          -9.91315,
-          -33.41616,
-          -29.682985,
-          27.913883,
-          5.769484,
-          -21.902475,
-          -28.206575,
-          34.063007,
-          -38.86974,
-          -19.676825,
-          -27.176733,
-          -49.362682,
-          -44.44146,
-          5.3805246,
-          2.333401,
-          14.209792,
-          29.130596,
-          40.65309,
-          7.33986,
-          33.885105,
-          -38.69257,
-          42.74865,
-          -51.24567,
-          46.39128,
-          63.1983,
-          -1.2716205,
-          2.7853732,
-          26.978062,
-          18.276062,
-          20.191584,
-          25.01299,
-          4.6009235,
-          9.839586,
-          11.750173,
-          7.9382405,
-          -10.997008,
-          21.737896,
-          49.79338,
-          -29.136082,
-          -29.750324,
-          54.410885,
-          -35.14978,
-          63.605362,
-          -51.056225,
-          39.934895,
-          17.519335,
-          17.778656,
-          15.492881,
-          7.7321296,
-          8.952756,
-          -19.130821,
-          40.63617,
-          -37.452244,
-          20.371246,
-          30.811249,
-          -9.127035,
-          -5.5860677,
-          1.1558152,
-          47.465935,
-          -24.740665,
-          -47.064148,
-          -54.69983,
-          47.272655,
-          -27.990711,
-          63.177612,
-          -7.06102,
-          -43.44754,
-          24.795843,
-          -4.7836714,
-          41.66488,
-          1.8769449,
-          -24.956768,
-          51.543095,
-          12.356418,
-          -53.22971,
-          38.820065,
-          4.2263513,
-          -7.9959974,
-          -23.705156,
-          -6.0662427,
-          -37.926384,
-          -41.1264,
-          -27.350927,
-          31.053217,
-          -9.149289,
-          -37.36757,
-          -16.533398,
-          40.088383,
-          7.0387945,
-          -22.092422,
-          -30.736622,
-          -44.570576,
-          60.45724,
-          52.433907,
-          9.723743,
-          -15.802876,
-          -49.361073,
-          -25.432766,
-          38.667847,
-          -28.812906,
-          -22.672857,
-          -35.77931,
-          -16.137821,
-          27.65755,
-          57.766346,
-          42.41823,
-          26.112234,
-          -39.176956,
-          16.072603,
-          -48.2029,
-          19.677572,
-          17.410772,
-          -6.2585354,
-          7.9719267,
-          -53.251343,
-          12.662249,
-          -9.297528,
-          -36.831997,
-          -44.267094,
-          -42.660313,
-          18.940567,
-          20.549877,
-          -19.017382,
-          33.992294,
-          -34.603184,
-          56.381645,
-          -15.977553,
-          53.579098,
-          7.4309235,
-          -35.853523,
-          -15.548051,
-          -44.87483,
-          -51.507732,
-          19.506048,
-          -52.502518,
-          59.620773,
-          8.936648,
-          48.37667,
-          -32.07786,
-          14.902041,
-          35.445507,
-          46.157833,
-          49.838924,
-          -48.87661,
-          -45.17925,
-          29.182852,
-          -22.362936,
-          38.542347,
-          -10.216267,
-          22.10423,
-          -31.37848,
-          -2.6893454,
-          51.905163,
-          21.657618,
-          -5.704888,
-          -20.502497,
-          30.625587,
-          -24.823088,
-          13.691204,
-          28.035511,
-          23.045893,
-          -50.661304,
-          43.841885,
-          -50.370255,
-          -47.05539,
-          56.74711,
-          30.591192,
-          51.738125,
-          -11.594388,
-          17.440117,
-          51.774147,
-          -23.063238,
-          -9.929121,
-          43.796253,
-          -38.724506,
-          47.406204,
-          7.212067,
-          -41.108536,
-          -38.19549,
-          -21.799944,
-          14.5572,
-          -36.380856,
-          -22.186844,
-          -33.03146,
-          -47.564026,
-          -6.8207917,
-          -0.203547,
-          26.660809,
-          -45.418346,
-          -32.97913,
-          -29.1495,
-          41.08887,
-          2.4019308,
-          -34.859055,
-          14.605348,
-          5.080946,
-          62.321815,
-          30.915781,
-          49.839912,
-          -13.132145,
-          -12.614871,
-          48.11404,
-          -33.125538,
-          37.93922,
-          -30.265446,
-          4.331932,
-          -24.302145,
-          -38.971054,
-          -6.6933794,
-          32.7655,
-          58.07306,
-          50.09836,
-          23.97021,
-          -44.289158,
-          -16.34018,
-          -42.824986,
-          -37.11219,
-          54.922394,
-          -38.334126,
-          22.242004,
-          -12.324585,
-          -28.60194,
-          -35.730442,
-          52.352432,
-          14.265632,
-          -36.50344,
-          -27.018137,
-          -30.541101,
-          53.529724,
-          -7.2380333,
-          -40.239014,
-          7.0784307,
-          20.74278,
-          2.5284033,
-          25.636118,
-          4.454403,
-          -49.050774,
-          -23.530384,
-          -23.313187,
-          38.338932,
-          9.910433,
-          -22.21815,
-          -25.737848,
-          51.55675,
-          37.103165,
-          -17.621637,
-          -31.606474,
-          -46.921032,
-          -12.631271,
-          -34.711258,
-          14.978659,
-          -43.354763,
-          -22.281115,
-          45.54423,
-          -33.235416,
-          -43.594814,
-          53.86991,
-          -15.313636,
-          47.012283,
-          -21.579958,
-          -46.839928,
-          -45.437263,
-          60.093002,
-          11.213355,
-          32.56739,
-          -27.061964,
-          -20.385843,
-          15.526145,
-          -8.932405,
-          60.606064,
-          9.335806,
-          -38.67932,
-          -8.953644,
-          39.772743,
-          18.62211,
-          -6.674851,
-          -41.675705,
-          -6.503544,
-          23.033293,
-          -5.5465455,
-          -36.837105,
-          -4.2590623,
-          48.95457,
-          -42.01228,
-          10.529721,
-          13.965547,
-          -3.9804885,
-          44.68764,
-          48.906673,
-          47.63983,
-          21.258057,
-          62.788,
-          -6.2482433,
-          -48.024345,
-          -12.530503,
-          -39.613857,
-          10.181149,
-          -34.855972,
-          17.598188,
-          -46.561874,
-          -17.363302,
-          1.3672223,
-          32.536667,
-          10.24864,
-          5.8206697,
-          -45.638084,
-          -0.31910038,
-          -10.62197,
-          -21.206648,
-          38.030407,
-          -34.547794,
-          21.86292,
-          56.60054,
-          20.400032,
-          27.48848,
-          2.2426317,
-          5.0682087,
-          -18.876629,
-          27.914957,
-          -17.48441,
-          -20.422543,
-          16.509165,
-          -27.667318,
-          -48.115654,
-          40.073948,
-          60.232296,
-          9.352251,
-          56.806816,
-          2.808305,
-          -16.641712,
-          -19.632275,
-          -41.143227,
-          6.707939,
-          45.64992,
-          19.51436,
-          -41.17226,
-          39.266872,
-          -6.392582,
-          62.91453,
-          18.935217,
-          46.280994,
-          50.306213,
-          53.805332,
-          -13.137335,
-          50.443317,
-          53.03957,
-          44.309578,
-          -30.403149,
-          -33.03263,
-          -30.970875,
-          -50.138874,
-          -14.373312,
-          8.379798,
-          54.42772,
-          2.4920332,
-          1.7612854,
-          34.023724,
-          -28.959257,
-          61.473892,
-          50.651646,
-          -42.69843,
-          -18.173891,
-          27.97626,
-          -11.489995,
-          59.39454,
-          -50.46992,
-          47.18665,
-          -22.095016,
-          -0.99369574,
-          -48.586517,
-          -28.31348,
-          2.79127,
-          -32.614243,
-          16.340908,
-          20.619595,
-          32.39917,
-          59.94177,
-          23.400663,
-          42.23158,
-          -40.497093,
-          14.445518,
-          -43.79571,
-          56.222717,
-          26.900372,
-          -34.05016,
-          59.36177,
-          -48.04673,
-          57.550297,
-          -10.504851,
-          -45.725693,
-          12.496445,
-          60.801098,
-          -49.58257,
-          -20.070473,
-          57.966537,
-          28.753572,
-          -35.82806,
-          55.964886,
-          -44.020023,
-          -23.90992,
-          45.870426,
-          21.319304,
-          -27.236769,
-          -37.01328,
-          -19.117485,
-          38.638237,
-          49.729176,
-          -39.115543,
-          17.625916,
-          11.094263,
-          7.11425,
-          -29.740028,
-          18.546873,
-          58.080826,
-          -34.482994,
-          37.20064,
-          9.897873,
-          -27.855904,
-          24.480858,
-          -52.830154,
-          58.289707,
-          -48.07056,
-          -19.067713,
-          -21.63138,
-          -40.71425,
-          -4.696033,
-          -4.852559,
-          -17.729515,
-          8.527567,
-          -29.865084,
-          25.88273,
-          -46.45139,
-          -9.0318775,
-          63.36231,
-          50.890648,
-          -8.188348,
-          16.88663,
-          13.06387,
-          -25.576069,
-          -26.325634,
-          -23.095638,
-          29.025854,
-          -40.87854,
-          45.88053,
-          -38.34742,
-          -13.60535,
-          3.984353,
-          -1.1919637,
-          -50.887096,
-          50.78542,
-          -34.409237,
-          -46.677288,
-          5.320594,
-          14.373686,
-          -45.882183,
-          -32.426746,
-          43.456127,
-          2.8495433,
-          28.731657,
-          -2.2277532,
-          50.339493,
-          61.357586,
-          11.930037,
-          -42.132465,
-          56.755314,
-          -18.868166,
-          -14.928126,
-          13.779188,
-          23.310764,
-          -42.33495,
-          19.120626,
-          18.960714,
-          25.783823,
-          17.941885,
-          55.462612,
-          10.820086,
-          58.314003,
-          -45.8806,
-          -21.790516,
-          53.49091,
-          -51.873066,
-          -8.934254,
-          -35.644184,
-          -43.46856,
-          -26.787775,
-          -12.61641,
-          11.278602,
-          -12.760466,
-          -35.958366,
-          -9.973649,
-          -5.3010283,
-          8.342169,
-          58.012913,
-          7.6059,
-          -7.4377956,
-          -46.84005,
-          49.449314,
-          37.930157,
-          12.515653,
-          -54.239532,
-          -39.886326,
-          -43.70516,
-          57.86416,
-          8.195707,
-          52.26376,
-          -40.78544,
-          -46.046387,
-          1.8771796,
-          -8.241421,
-          47.072803,
-          -12.890557,
-          -23.360226,
-          -23.913462,
-          -10.10402,
-          -33.456993,
-          48.17513,
-          -34.200912,
-          22.029692,
-          -34.14632,
-          -40.844006,
-          44.906193,
-          -29.91782,
-          4.4929285,
-          56.61765,
-          56.60834,
-          -17.537066,
-          -30.420895,
-          56.066643,
-          -19.92304,
-          -2.2965894,
-          56.162464,
-          -41.66086,
-          -57.68235,
-          3.6962993,
-          -19.05618,
-          5.52023,
-          -48.503033,
-          -18.99317,
-          53.77512,
-          -14.034199,
-          47.758217,
-          -29.327738,
-          -27.266224,
-          50.96032,
-          -49.10616,
-          -4.6537275,
-          58.05466,
-          -8.695738,
-          15.926025,
-          -35.493626,
-          -52.898724,
-          4.0713243,
-          -16.14875,
-          -40.76337,
-          -36.11573,
-          41.446438,
-          -3.7340183,
-          -15.154654,
-          58.41072,
-          11.970405,
-          -16.320389,
-          -19.673914,
-          11.040503,
-          -36.72977,
-          -9.829185,
-          35.8429,
-          47.047108,
-          -37.2606,
-          54.494556,
-          -52.1362,
-          13.273838,
-          7.288217,
-          47.79968,
-          -20.01322,
-          -18.065994,
-          8.75742,
-          -54.428818,
-          18.142248,
-          -9.159126,
-          29.14241,
-          -46.200623,
-          17.28087,
-          13.877883,
-          -13.831901,
-          -21.605253,
-          21.1013,
-          59.32574,
-          13.981468,
-          40.920834,
-          55.53207,
-          44.559975,
-          -10.860374,
-          10.2113,
-          28.748735,
-          10.333969,
-          -37.78618,
-          -45.533035,
-          53.77833,
-          -8.867661,
-          12.468114,
-          3.0369818,
-          32.079,
-          47.351242,
-          -55.4472,
-          5.742987,
-          24.300056,
-          -21.27348,
-          -8.906268,
-          -34.02309,
-          -0.9226989,
-          32.861256,
-          -5.918376,
-          -30.542126,
-          38.30059,
-          48.4094,
-          33.499294,
-          1.5139743,
-          -5.9578004,
-          22.857521,
-          -42.396126,
-          -16.095537,
-          29.347134,
-          4.3284388,
-          45.721344,
-          26.680521,
-          45.999187,
-          49.048878,
-          -21.678917,
-          -48.91647,
-          -11.771681,
-          -10.15981,
-          39.29256,
-          8.132189,
-          32.81585,
-          11.17274,
-          22.79567,
-          2.0400486,
-          19.547178,
-          -4.0862207,
-          -9.854177,
-          -23.889015,
-          26.376568,
-          -54.596252,
-          -22.090435,
-          32.12724,
-          -50.986782,
-          -34.252632,
-          59.9222,
-          45.969334,
-          47.935875,
-          -4.5817585,
-          17.717125,
-          32.523216,
-          19.772266,
-          57.007023,
-          34.043217,
-          30.42877,
-          10.665481,
-          -16.827753,
-          -38.59416,
-          -32.974155,
-          15.195456,
-          -36.174,
-          -45.269844,
-          11.543438,
-          -19.309122,
-          -28.692097,
-          53.714108,
-          -18.300999,
-          -49.752243,
-          -10.5037985,
-          34.008293,
-          18.401154,
-          33.648438,
-          -44.20961,
-          -39.52826,
-          -27.136961,
-          59.613667,
-          31.749115,
-          7.0795293,
-          -34.181965,
-          -37.106304,
-          19.923655,
-          14.908174,
-          52.849945,
-          10.556734,
-          -48.20029,
-          9.239984,
-          15.951407,
-          -7.4418893,
-          -28.779457,
-          -35.19683,
-          -54.1994,
-          20.179276,
-          31.14273,
-          0.258186,
-          -2.1609035,
-          61.664543,
-          14.35011,
-          -26.758255,
-          -54.634964,
-          14.368874,
-          -43.92253,
-          -42.005432,
-          -39.611347,
-          9.892005,
-          -39.611637,
-          -24.87918,
-          -22.471472,
-          -38.19811,
-          30.838337,
-          -36.996124,
-          -4.4758306,
-          -46.204945,
-          43.08786,
-          -24.678703,
-          -50.613956,
-          49.605602,
-          6.150114,
-          63.165108,
-          -20.649567,
-          47.894882,
-          51.314476,
-          44.60029,
-          6.031961,
-          8.659726,
-          -15.612729,
-          -9.729161,
-          -28.362564,
-          10.755605,
-          -36.588448,
-          8.7123785,
-          -12.811854,
-          -0.94040644,
-          -45.534595,
-          12.619259,
-          -44.44866,
-          -4.227074,
-          44.015842,
-          -22.860474,
-          -30.753082,
-          39.41502,
-          0.080250725,
-          -15.496077,
-          20.854275,
-          -10.390649,
-          -35.993237,
-          -36.425526,
-          -5.6656046,
-          -36.567635,
-          59.81665,
-          -11.675889,
-          14.897927,
-          41.209156,
-          8.117931,
-          6.539579,
-          -12.951042,
-          -30.48289,
-          47.579025,
-          56.48261,
-          -38.7589,
-          46.025146,
-          -36.49073,
-          -6.355229,
-          58.74744,
-          46.206974,
-          -52.00866,
-          -31.978811,
-          -43.13706,
-          -7.6462755,
-          -31.936037,
-          -19.532629,
-          53.145702,
-          7.7298007,
-          -36.42381,
-          12.733178,
-          23.083542,
-          60.687424,
-          -38.00677,
-          38.102413,
-          39.646805,
-          -46.434704,
-          -42.961407,
-          52.38563,
-          -16.082205,
-          -50.200237,
-          -29.59413,
-          -10.404932,
-          -27.002981,
-          -20.752146,
-          34.14185,
-          -18.822731,
-          -38.39936,
-          -34.192577,
-          -23.879477,
-          -49.73623,
-          -20.585733,
-          31.320894,
-          6.8278956,
-          14.610548,
-          40.573475,
-          -19.3257,
-          -32.563313,
-          7.079915,
-          -7.734347,
-          21.593582,
-          41.94092,
-          22.709345,
-          -8.220228,
-          30.75048,
-          -50.261745,
-          23.351994,
-          10.662044,
-          6.3287606,
-          -44.1901,
-          20.248484,
-          39.690254,
-          34.33151,
-          -21.206255,
-          17.894573,
-          53.560726,
-          18.915913,
-          -50.147823,
-          -56.14451,
-          50.696335,
-          19.135786,
-          0.011293956,
-          -41.132812,
-          -7.490298,
-          -6.7789235,
-          21.208382,
-          5.4172053,
-          -44.169758,
-          -47.881756,
-          -28.388693,
-          -12.397968,
-          29.16581,
-          -0.9005222,
-          58.507614,
-          40.03086,
-          -17.01861,
-          -49.997864,
-          -11.5951185,
-          -38.691113,
-          24.29299,
-          48.50645,
-          38.79774,
-          -53.174366,
-          15.59622,
-          -8.326396,
-          0.79674417,
-          10.643132,
-          -44.02579,
-          5.560217,
-          0.5841107,
-          24.635311,
-          -28.108793,
-          13.113659,
-          62.77733,
-          -20.166492,
-          47.435825,
-          -15.611658,
-          18.401346,
-          -38.040787,
-          -8.663238,
-          -30.962019,
-          -8.084352,
-          43.003845,
-          -39.750137,
-          46.27362,
-          14.899461,
-          -45.082096,
-          -47.16861,
-          24.252523,
-          -4.7970433,
-          5.36986,
-          -16.89367,
-          -26.904469,
-          31.625498,
-          10.970106,
-          51.867313,
-          -17.731619,
-          -34.483925,
-          -43.073074,
-          -6.7949033,
-          -27.989662,
-          2.5174408,
-          34.368248,
-          12.8087,
-          35.39813,
-          -25.524998,
-          -46.526306,
-          53.752186,
-          55.804855,
-          -54.849133,
-          -40.10975,
-          -11.253943,
-          15.975605,
-          -24.282412,
-          -36.69884,
-          -9.612953,
-          27.581682,
-          1.6741688,
-          -53.5042,
-          -27.687584,
-          16.295555,
-          3.6958573,
-          -28.30938,
-          -35.854397,
-          26.508045,
-          17.794357,
-          30.6338,
-          47.806313,
-          10.886147,
-          56.805237,
-          -40.808376,
-          18.907486,
-          49.249695,
-          -38.4294,
-          -5.0891867,
-          -45.114822,
-          -46.690304,
-          49.522606,
-          -25.18432,
-          -36.175987,
-          -41.517033,
-          -33.290382,
-          -15.035485,
-          61.757652,
-          3.8529873,
-          61.630924,
-          -54.139446,
-          -25.219833,
-          39.668633,
-          10.995691,
-          23.637348,
-          33.6961,
-          51.79226,
-          14.72486,
-          -53.989174,
-          28.194004,
-          53.427227,
-          45.15016,
-          36.015182,
-          -34.2908,
-          43.020264,
-          7.9172506,
-          54.577732,
-          -48.755344,
-          -49.55056,
-          -39.571285,
-          -40.278057,
-          -51.21703,
-          18.002365,
-          -3.3571925,
-          19.580015,
-          -8.731081,
-          -6.0078135,
-          31.860546,
-          -28.372087,
-          -0.10420398,
-          19.054085,
-          37.094307,
-          -11.813869,
-          -28.535112,
-          -1.1245881,
-          58.735332,
-          -40.870914,
-          26.428055,
-          -52.076916,
-          -16.299625,
-          12.898047,
-          -51.801567,
-          35.940807,
-          30.280912,
-          -27.921608,
-          -36.991142,
-          63.004868,
-          -23.981367,
-          47.676117,
-          43.803253,
-          -35.73722,
-          52.02361,
-          0.08228831,
-          57.569775,
-          -31.23627,
-          4.8372564,
-          2.4959075,
-          6.9097495,
-          24.6171,
-          -36.47172,
-          -11.448383,
-          -3.8125634,
-          -20.261177,
-          51.3331,
-          -4.775729,
-          40.77166,
-          -24.145273,
-          -0.46443436,
-          48.259228,
-          -45.570045,
-          -29.613533,
-          -40.73366,
-          -19.412077,
-          -11.283554,
-          -47.05097,
-          49.969627,
-          -48.772636,
-          25.599476,
-          36.618427,
-          -10.298156,
-          14.019283,
-          -43.35723,
-          55.361397,
-          -10.978807,
-          51.953743,
-          -53.829735,
-          -8.411927,
-          15.602155,
-          -13.247851,
-          -15.053305,
-          40.71827,
-          -13.399857,
-          -47.515026,
-          62.178337,
-          -4.658773,
-          1.1374025,
-          -8.963649,
-          25.336575,
-          -29.961985,
-          -12.003402,
-          -17.52331,
-          -50.23115,
-          27.973917,
-          -48.06655,
-          39.666965,
-          -9.277499,
-          -7.6838555,
-          23.369677,
-          6.171623,
-          26.484608,
-          7.0410976,
-          19.369898,
-          -33.914284,
-          33.43409,
-          -15.22937,
-          -21.86168,
-          20.71207,
-          -7.6405187,
-          12.614038,
-          17.452501,
-          55.207115,
-          -31.572515,
-          32.183567,
-          -50.991158,
-          -38.40225,
-          16.695406,
-          -52.86785,
-          -35.325897,
-          18.572897,
-          -51.80827,
-          -35.83179,
-          -41.270184,
-          -36.710674,
-          6.0333753,
-          55.5641,
-          -49.167038,
-          -21.823997,
-          -1.3200667,
-          5.044943,
-          -40.638805,
-          51.27627,
-          47.339336,
-          16.012442,
-          -27.684992,
-          63.347527,
-          39.062187,
-          -12.411886,
-          -41.362526,
-          9.572269,
-          -24.7866,
-          26.459038,
-          -17.990955,
-          -40.258007,
-          -2.3985894,
-          54.67712,
-          2.9941561,
-          65.51466,
-          -37.48171,
-          17.726252,
-          -23.877874,
-          -34.57765,
-          -0.9994553,
-          45.10427,
-          17.785444,
-          -34.842422,
-          -51.40557,
-          -39.0015,
-          -14.16722,
-          -31.760511,
-          -16.35767,
-          -36.74732,
-          47.36583,
-          35.328148,
-          20.736986,
-          -50.34398,
-          -5.775708,
-          -32.659416,
-          30.716692,
-          24.382677,
-          58.147617,
-          -19.314493,
-          -3.8920984,
-          16.1644,
-          64.86492,
-          -10.574449,
-          19.621206,
-          8.682678,
-          -17.94723,
-          -24.707636,
-          -20.651194,
-          -5.6782784,
-          -13.584895,
-          -52.063236,
-          32.677113,
-          55.061314,
-          -26.427645,
-          -33.76177,
-          -50.93683,
-          38.546684,
-          -14.214475,
-          43.151165,
-          1.4400622,
-          -35.708652,
-          26.161028,
-          -41.237144,
-          44.980778,
-          25.263475,
-          16.929596,
-          -50.64484,
-          -48.196377,
-          -10.817454,
-          -2.0928724,
-          -25.303522,
-          47.840103,
-          39.76294,
-          -23.521646,
-          49.251343,
-          52.69105,
-          -43.41168,
-          0.50536364,
-          -41.631573,
-          19.154146,
-          49.939175,
-          46.95092,
-          26.26559,
-          19.381176,
-          12.624142,
-          13.547113,
-          -15.368924,
-          -44.33141,
-          17.735638,
-          -49.86946,
-          -25.189764,
-          -41.6564,
-          5.6944747,
-          28.887644,
-          54.523384,
-          11.9049635,
-          64.17483,
-          19.661798,
-          -40.866665,
-          7.287593,
-          -48.861267,
-          22.103119,
-          27.097654,
-          58.47151,
-          12.937629,
-          -37.111736,
-          -49.37285,
-          -0.5269812,
-          50.23622,
-          -37.09859,
-          -33.893284,
-          18.126286,
-          -41.025192,
-          19.819803,
-          -2.1707618,
-          14.775703,
-          -27.523653,
-          39.812546,
-          -37.509644,
-          -48.43532,
-          59.636997,
-          57.34273,
-          -37.623196,
-          -40.202778,
-          -55.58907,
-          -41.903214,
-          16.772926,
-          3.6852949,
-          25.670559,
-          26.078526,
-          -49.322422,
-          -9.049681,
-          -18.721113,
-          48.26851,
-          17.1552,
-          -16.408047,
-          9.536311,
-          21.02507,
-          -42.958614,
-          12.836097,
-          6.9077144,
-          13.885367,
-          -52.688995,
-          -29.522964,
-          25.294838,
-          0.9785223,
-          42.70037,
-          15.134995,
-          -42.372177,
-          -30.956533,
-          1.8828108,
-          -15.489649,
-          49.12623,
-          59.67211,
-          10.278181,
-          -45.431026,
-          -21.36634,
-          47.292377,
-          47.805153,
-          -32.821945,
-          3.350846,
-          10.675423,
-          46.018627,
-          -27.676836,
-          -30.13521,
-          -31.987688,
-          2.7699895,
-          29.804829,
-          -4.7174063,
-          8.834031,
-          -30.901245,
-          -20.815348,
-          57.51465,
-          37.074707,
-          14.13684,
-          -47.19078,
-          -45.82224,
-          -36.344696,
-          64.22567,
-          -46.568104,
-          -2.3207862,
-          10.008406,
-          40.90623,
-          -45.59506,
-          42.02211,
-          36.001675,
-          -13.1443,
-          -43.422806
-         ],
-         "xaxis": "x",
-         "y": [
-          -10.254759,
-          -20.803589,
-          -22.326504,
-          -8.559602,
-          22.728033,
-          7.8286805,
-          23.284092,
-          21.800117,
-          -20.467894,
-          22.159718,
-          -3.7095485,
-          -16.367886,
-          34.67725,
-          29.896206,
-          6.133116,
-          -10.627376,
-          0.20705454,
-          8.674217,
-          25.905638,
-          -3.9541492,
-          9.192532,
-          25.749458,
-          39.722248,
-          13.600263,
-          7.8999453,
-          18.938295,
-          -7.791385,
-          -2.1101115,
-          -17.816854,
-          -27.949192,
-          10.707973,
-          -5.9476533,
-          -0.62792206,
-          21.421028,
-          17.02401,
-          3.4177885,
-          23.633503,
-          9.072081,
-          2.5558534,
-          -10.392384,
-          -21.783358,
-          -12.137919,
-          8.247171,
-          -23.29184,
-          -18.170088,
-          -27.218586,
-          -29.326565,
-          12.92886,
-          7.4292397,
-          11.001149,
-          -35.47235,
-          0.2254613,
-          26.266212,
-          -12.614066,
-          -32.542274,
-          6.058426,
-          14.819815,
-          25.03953,
-          4.199548,
-          -0.6994232,
-          -29.048313,
-          8.901868,
-          -3.3929446,
-          -18.953293,
-          -16.318848,
-          1.29799,
-          24.970749,
-          14.150794,
-          0.27214336,
-          7.6804514,
-          -22.118223,
-          4.9480743,
-          -22.427275,
-          0.9335098,
-          26.755693,
-          26.929127,
-          -26.440922,
-          9.1828,
-          1.5617585,
-          -19.087698,
-          -14.938796,
-          -2.3146381,
-          13.022359,
-          -21.471975,
-          25.554472,
-          2.532362,
-          23.373753,
-          -13.859794,
-          -25.318462,
-          22.522005,
-          -32.54127,
-          -10.261337,
-          2.3437028,
-          -11.51763,
-          24.106895,
-          -28.920532,
-          -2.2139447,
-          -14.537146,
-          9.316687,
-          9.6741905,
-          12.820546,
-          4.9088416,
-          -28.30168,
-          -17.468342,
-          -17.185091,
-          10.214211,
-          -20.446613,
-          -11.397742,
-          8.161042,
-          27.62886,
-          26.281322,
-          -29.872732,
-          5.007877,
-          6.2455893,
-          5.951754,
-          -19.64737,
-          -1.2898456,
-          -8.973769,
-          0.16790108,
-          12.575957,
-          15.638516,
-          9.72588,
-          13.993413,
-          22.678474,
-          -17.482075,
-          14.391562,
-          -19.213398,
-          17.073126,
-          30.481924,
-          20.813839,
-          32.03464,
-          -26.55557,
-          12.0553255,
-          -16.22469,
-          -18.176107,
-          -3.6315196,
-          -19.35426,
-          20.519714,
-          4.681029,
-          -24.165535,
-          -17.097263,
-          -23.540205,
-          -22.659904,
-          -30.161833,
-          28.830767,
-          14.3665,
-          0.061168052,
-          -32.789925,
-          4.0007343,
-          -27.456821,
-          23.813591,
-          -30.553509,
-          -24.490698,
-          -19.611755,
-          29.56973,
-          21.227903,
-          7.7406225,
-          -10.1600275,
-          8.52158,
-          -10.852377,
-          5.442065,
-          9.661537,
-          22.864084,
-          4.1424494,
-          7.6243353,
-          4.249151,
-          31.043804,
-          -10.734537,
-          3.844936,
-          1.4751459,
-          -12.852704,
-          -20.392239,
-          -6.189112,
-          -4.5837173,
-          1.4175098,
-          -21.713743,
-          -13.330445,
-          12.867583,
-          -10.440891,
-          3.6453905,
-          8.166061,
-          -11.337284,
-          16.828537,
-          -8.8150835,
-          -16.43065,
-          9.330847,
-          20.16529,
-          9.5765,
-          -22.28117,
-          -9.1425705,
-          -23.877768,
-          -10.817816,
-          5.1117396,
-          7.9826016,
-          11.228575,
-          17.663988,
-          2.542931,
-          -1.3406546,
-          -23.981632,
-          12.972686,
-          4.730411,
-          30.063469,
-          3.6004014,
-          18.804445,
-          -13.418971,
-          30.71818,
-          -14.152756,
-          -24.45379,
-          -11.355663,
-          6.520791,
-          -9.840589,
-          21.164257,
-          -8.373115,
-          -8.409088,
-          9.545558,
-          4.881303,
-          30.134317,
-          -32.61165,
-          -17.390278,
-          32.50385,
-          19.963877,
-          8.090675,
-          31.114712,
-          30.646704,
-          21.478413,
-          14.554468,
-          20.755419,
-          11.230936,
-          6.923768,
-          -13.468946,
-          23.0764,
-          20.141148,
-          -15.70016,
-          8.499566,
-          -19.558147,
-          -10.837732,
-          7.830664,
-          24.00407,
-          6.959669,
-          -17.884281,
-          24.8098,
-          -24.985989,
-          -12.053112,
-          8.462659,
-          18.15951,
-          -5.462048,
-          2.4064643,
-          8.999294,
-          -12.727203,
-          -13.069021,
-          -6.154228,
-          14.864804,
-          1.5735915,
-          -25.217607,
-          -11.249722,
-          27.957365,
-          -0.7906725,
-          19.460798,
-          -2.3412774,
-          6.4599543,
-          2.4203362,
-          32.717518,
-          28.99686,
-          -18.920874,
-          -7.624435,
-          -23.937035,
-          -15.694869,
-          2.3350112,
-          9.491719,
-          -25.943512,
-          0.82049704,
-          -3.9954906,
-          -16.211517,
-          -10.548126,
-          33.583965,
-          22.352716,
-          -0.7140172,
-          28.585188,
-          20.132593,
-          10.375427,
-          -18.380714,
-          -21.956186,
-          18.302557,
-          8.7813,
-          27.98141,
-          5.231712,
-          -1.274212,
-          -17.928478,
-          -17.166925,
-          5.588625,
-          1.8213869,
-          -20.784616,
-          -9.940092,
-          -11.329836,
-          1.3020672,
-          -5.6699047,
-          2.9951952,
-          7.513018,
-          18.828894,
-          -8.567718,
-          -11.798271,
-          -2.4976819,
-          -25.911339,
-          22.716187,
-          -10.770047,
-          15.819128,
-          -15.446808,
-          -32.171726,
-          5.0620914,
-          12.743932,
-          7.1431947,
-          20.908062,
-          27.65378,
-          -29.32608,
-          -12.216588,
-          3.5037541,
-          -35.429436,
-          -8.023369,
-          19.798025,
-          -4.302394,
-          16.329193,
-          -23.965172,
-          8.796663,
-          16.477135,
-          -11.357406,
-          32.09736,
-          26.441679,
-          21.586815,
-          30.292624,
-          -14.503349,
-          19.197943,
-          -14.683218,
-          -3.407611,
-          23.7153,
-          -14.726069,
-          -17.214022,
-          15.711783,
-          -8.98979,
-          -22.324871,
-          0.59863055,
-          16.493795,
-          -27.750652,
-          -28.93897,
-          -5.3719177,
-          -23.418943,
-          -9.659326,
-          -23.277813,
-          16.425425,
-          -19.531103,
-          18.54026,
-          0.31460643,
-          31.197924,
-          -14.720505,
-          -0.26035935,
-          -21.057713,
-          -27.277906,
-          -7.310227,
-          -15.416589,
-          -1.605775,
-          -8.874298,
-          -13.5169735,
-          -26.390093,
-          0.7872089,
-          -7.2581453,
-          22.63779,
-          28.57203,
-          -23.089176,
-          -19.599855,
-          -21.929888,
-          -10.379873,
-          -11.895842,
-          -17.141865,
-          -16.003376,
-          -14.515779,
-          10.840164,
-          -26.575148,
-          3.1463404,
-          -3.7059593,
-          -8.936446,
-          -23.257317,
-          30.278105,
-          15.54324,
-          -31.523523,
-          -15.298813,
-          -29.652391,
-          -9.050367,
-          18.134205,
-          -14.212201,
-          10.717227,
-          19.883846,
-          21.597916,
-          -19.211506,
-          28.315454,
-          -11.721406,
-          16.122732,
-          -6.269737,
-          -14.575271,
-          -20.626392,
-          -9.711501,
-          20.470428,
-          -8.267473,
-          33.287487,
-          25.027699,
-          15.167711,
-          12.847039,
-          -22.223913,
-          -13.995945,
-          -28.966488,
-          14.344031,
-          7.419209,
-          -21.779205,
-          24.548212,
-          23.27041,
-          -17.763275,
-          -27.218397,
-          -36.186253,
-          5.0752234,
-          0.31401816,
-          -0.48519766,
-          9.704817,
-          -22.044197,
-          28.721743,
-          14.702273,
-          18.21779,
-          16.7961,
-          9.027207,
-          21.439281,
-          25.772839,
-          5.9104095,
-          18.049044,
-          11.854107,
-          25.408955,
-          -1.7761685,
-          7.837817,
-          -11.143075,
-          -11.487356,
-          -25.348227,
-          20.674139,
-          -15.303513,
-          34.420277,
-          -6.806543,
-          2.799256,
-          -27.043676,
-          32.15406,
-          6.988793,
-          -29.502745,
-          5.2307787,
-          24.185543,
-          17.168627,
-          -6.9711366,
-          28.700588,
-          -16.839674,
-          -6.9957857,
-          19.155857,
-          22.57425,
-          4.2664466,
-          10.645888,
-          -2.8677607,
-          17.716654,
-          33.268223,
-          13.592724,
-          35.533974,
-          35.79897,
-          -9.217092,
-          -7.505608,
-          16.755838,
-          19.649885,
-          -13.013833,
-          2.553211,
-          5.488912,
-          25.960653,
-          -14.678428,
-          -6.362675,
-          15.933173,
-          -25.562366,
-          -7.9709535,
-          -19.333553,
-          5.761818,
-          5.2738123,
-          14.799318,
-          0.9805258,
-          -30.191147,
-          -8.254407,
-          -9.329842,
-          24.331854,
-          -1.1096494,
-          -27.81828,
-          -23.302309,
-          10.189425,
-          -0.9053779,
-          14.969123,
-          -12.578425,
-          -16.734713,
-          -25.194714,
-          34.912987,
-          -36.29533,
-          -0.7015533,
-          -21.124685,
-          33.794212,
-          -20.977274,
-          -19.704374,
-          23.483368,
-          -15.128482,
-          8.0363655,
-          2.2579987,
-          -16.33133,
-          31.233051,
-          22.297411,
-          -11.6483135,
-          3.5171926,
-          23.886812,
-          12.337329,
-          -19.59588,
-          -30.116133,
-          27.538383,
-          -19.748474,
-          -4.7339125,
-          19.465944,
-          -18.429428,
-          -24.985508,
-          -24.043522,
-          26.484413,
-          16.774218,
-          5.9628015,
-          -14.398376,
-          -23.032887,
-          -16.154268,
-          -11.766295,
-          -27.591204,
-          20.015493,
-          -20.486948,
-          7.6020126,
-          -13.656402,
-          14.815331,
-          -33.948692,
-          -33.920197,
-          -9.174384,
-          20.629124,
-          16.143784,
-          8.925708,
-          7.7047353,
-          -21.596968,
-          16.84247,
-          11.881365,
-          -22.970503,
-          24.66648,
-          1.9238061,
-          25.418554,
-          -17.758942,
-          3.5172246,
-          23.261137,
-          -8.986503,
-          28.923544,
-          -7.5245304,
-          -15.130549,
-          5.0646152,
-          21.07103,
-          -5.8668604,
-          -14.940109,
-          -6.4981833,
-          -20.06512,
-          23.290081,
-          -11.591567,
-          -27.786598,
-          20.645449,
-          -5.3597302,
-          -11.159512,
-          -13.735753,
-          18.798145,
-          -32.18803,
-          8.9016,
-          -22.157974,
-          26.788364,
-          -16.650103,
-          18.377977,
-          -18.147429,
-          -24.88111,
-          21.901451,
-          -14.823587,
-          -0.6368593,
-          3.2132275,
-          31.100603,
-          16.802742,
-          20.371767,
-          -28.899687,
-          0.73946625,
-          0.94949424,
-          -14.675726,
-          -24.362509,
-          31.862827,
-          23.13797,
-          35.12017,
-          -18.907366,
-          24.827017,
-          31.66899,
-          -18.148087,
-          -24.660992,
-          9.816621,
-          16.572128,
-          25.328583,
-          -15.456796,
-          1.9859632,
-          5.658062,
-          -5.2393093,
-          9.180699,
-          7.721218,
-          3.9763682,
-          -14.759153,
-          8.72019,
-          -12.5096655,
-          4.320076,
-          2.0307107,
-          -12.368451,
-          -11.865506,
-          16.297318,
-          0.7318651,
-          -13.755454,
-          -21.899122,
-          -11.081378,
-          -19.075409,
-          -13.679028,
-          10.51185,
-          -10.045945,
-          -2.6716044,
-          13.364902,
-          20.333702,
-          5.9486156,
-          -30.512154,
-          -1.8922254,
-          -14.551722,
-          -13.595177,
-          24.951237,
-          15.502925,
-          -26.033178,
-          -15.84722,
-          -0.48769227,
-          5.509095,
-          25.674028,
-          23.005444,
-          12.414623,
-          -7.935221,
-          24.642124,
-          -22.191689,
-          -19.237648,
-          16.660208,
-          5.5806613,
-          9.362999,
-          16.740986,
-          -14.059228,
-          -9.914337,
-          -20.576859,
-          -10.982109,
-          31.096636,
-          -11.43558,
-          -17.933233,
-          -22.175861,
-          -14.856947,
-          26.15921,
-          -23.924995,
-          6.894826,
-          4.1693807,
-          5.6076837,
-          -17.656506,
-          15.090964,
-          1.2161766,
-          -9.937122,
-          -27.618727,
-          -3.5818095,
-          -14.13704,
-          25.846468,
-          19.352674,
-          -22.007416,
-          23.278618,
-          11.748135,
-          -22.37126,
-          -22.028944,
-          -10.037108,
-          -25.306404,
-          -7.7222157,
-          3.5807598,
-          -6.6086307,
-          -19.699232,
-          -15.10728,
-          -17.251148,
-          10.148522,
-          -0.68818355,
-          7.5768538,
-          -17.733555,
-          -23.194473,
-          9.637636,
-          -2.6014824,
-          9.428179,
-          -10.8705435,
-          8.272561,
-          18.622755,
-          8.240764,
-          7.8728004,
-          13.976609,
-          21.211613,
-          10.388335,
-          -13.317306,
-          -0.20468314,
-          -0.7534798,
-          16.867065,
-          -22.69967,
-          22.19843,
-          29.903488,
-          -29.479254,
-          14.083497,
-          0.6598771,
-          -8.660773,
-          -7.2729115,
-          -11.945698,
-          23.76637,
-          -16.428364,
-          -28.303225,
-          -11.955685,
-          -30.203144,
-          -4.9588523,
-          26.250034,
-          19.381159,
-          -16.469437,
-          -14.535694,
-          -24.852484,
-          12.103588,
-          7.8694215,
-          -8.026257,
-          -6.199936,
-          9.750696,
-          -14.905879,
-          -22.042368,
-          2.0052595,
-          15.873175,
-          -11.668809,
-          7.235856,
-          -21.42294,
-          14.838855,
-          16.791052,
-          -21.904455,
-          -23.169117,
-          -20.787516,
-          9.315685,
-          34.738625,
-          10.819606,
-          20.726511,
-          -10.898081,
-          31.885904,
-          11.005908,
-          15.028398,
-          -3.1344242,
-          -3.9499974,
-          14.654819,
-          8.201109,
-          17.144817,
-          -19.819767,
-          -19.525257,
-          -4.076858,
-          -24.730019,
-          11.900147,
-          -1.3390135,
-          26.11797,
-          -2.478072,
-          -23.535704,
-          27.143415,
-          17.844543,
-          19.694197,
-          30.822157,
-          11.223421,
-          17.761076,
-          13.325627,
-          -13.261404,
-          2.2092547,
-          -13.576142,
-          -11.716383,
-          27.541485,
-          -18.290712,
-          -25.388409,
-          -15.495678,
-          -32.85601,
-          34.832695,
-          15.818021,
-          12.122141,
-          33.150494,
-          -0.5336322,
-          -13.886067,
-          28.821224,
-          20.72354,
-          -33.77542,
-          3.162032,
-          17.181808,
-          34.996464,
-          -22.37821,
-          -4.1373553,
-          -20.077517,
-          -16.791988,
-          -33.790863,
-          4.8909636,
-          -23.158052,
-          13.435741,
-          -22.73552,
-          -0.6918705,
-          27.578976,
-          -23.911886,
-          -0.9915625,
-          0.41720697,
-          -28.11098,
-          -15.606873,
-          -21.062717,
-          -15.843517,
-          7.1253057,
-          -12.007193,
-          -23.275118,
-          15.710144,
-          -13.556541,
-          -15.989742,
-          1.5220636,
-          15.600531,
-          3.0372694,
-          -13.601137,
-          -7.148113,
-          -24.879805,
-          -0.8274632,
-          -11.567605,
-          19.323282,
-          -7.7168093,
-          -27.03218,
-          5.8135962,
-          -7.6383777,
-          1.1989386,
-          3.9182017,
-          -0.47444645,
-          -25.135891,
-          22.896002,
-          0.94497335,
-          9.556583,
-          -4.4569497,
-          21.02248,
-          -25.89945,
-          -18.168903,
-          17.865675,
-          22.459995,
-          12.360714,
-          -24.076357,
-          -15.80312,
-          21.917862,
-          21.659195,
-          33.719093,
-          19.704102,
-          -2.2529974,
-          31.99901,
-          -29.042156,
-          -26.121319,
-          33.52397,
-          23.902458,
-          7.067429,
-          26.534893,
-          9.6071,
-          29.210163,
-          -23.639217,
-          3.7444665,
-          1.8415234,
-          -4.9220414,
-          22.216219,
-          21.501694,
-          -17.915682,
-          -17.60881,
-          19.686275,
-          16.870352,
-          -16.338673,
-          -2.4079158,
-          10.431047,
-          -11.452592,
-          20.084156,
-          -34.98855,
-          -30.50168,
-          -1.8533841,
-          13.475318,
-          22.79436,
-          -23.127438,
-          -2.6888435,
-          -26.898434,
-          32.299854,
-          9.865102,
-          -15.889842,
-          -7.1564,
-          14.4235935,
-          10.5956135,
-          16.942707,
-          -17.442066,
-          -6.0696855,
-          0.2748501,
-          33.509598,
-          2.4050539,
-          7.209693,
-          12.352939,
-          -0.83113074,
-          -16.57776,
-          26.730667,
-          -13.937987,
-          5.5682783,
-          8.4994335,
-          -12.461162,
-          24.32622,
-          -25.814455,
-          -19.692043,
-          8.181132,
-          -25.507462,
-          -16.080286,
-          -1.2937344,
-          18.989775,
-          16.529331,
-          -10.464009,
-          11.700205,
-          -25.712864,
-          24.65294,
-          -5.132745,
-          24.787573,
-          19.01329,
-          -9.251707,
-          -2.7055879,
-          14.609039,
-          27.475252,
-          14.475491,
-          0.96339697,
-          -11.8820095,
-          7.1217036,
-          31.858027,
-          16.848389,
-          32.03336,
-          -13.837845,
-          -33.480656,
-          -20.987251,
-          30.462563,
-          -16.143095,
-          6.7093077,
-          -15.854709,
-          -24.921698,
-          16.484713,
-          -1.7420386,
-          -23.097334,
-          18.896671,
-          34.8398,
-          10.520301,
-          3.5488389,
-          -18.068623,
-          30.076416,
-          -29.86582,
-          -8.282391,
-          -8.46684,
-          13.576438,
-          3.0699391,
-          -16.238358,
-          2.9773757,
-          -14.182415,
-          17.441216,
-          -25.85015,
-          9.083556,
-          22.073168,
-          19.385956,
-          8.168441,
-          13.999631,
-          -13.918425,
-          19.32553,
-          -19.83609,
-          29.535501,
-          31.019588,
-          -6.5198464,
-          -16.273378,
-          31.29178,
-          -20.836182,
-          8.972529,
-          14.504229,
-          -22.65874,
-          24.289896,
-          0.45974386,
-          -8.057026,
-          7.783574,
-          -12.477235,
-          3.8825731,
-          -3.5055225,
-          15.380986,
-          22.033895,
-          3.7059414,
-          -1.0848922,
-          0.16963075,
-          -5.582006,
-          11.250292,
-          21.913166,
-          -23.06022,
-          -13.376665,
-          -5.6566067,
-          -5.0115275,
-          33.256733,
-          -27.384535,
-          22.36791,
-          -23.036457,
-          3.1787782,
-          -11.463062,
-          16.85544,
-          17.925854,
-          26.127491,
-          34.042473,
-          3.7194152,
-          11.578919,
-          -3.056115,
-          8.806574,
-          -12.564382,
-          26.605755,
-          21.529955,
-          25.043688,
-          17.78518,
-          25.579552,
-          27.044067,
-          -29.090658,
-          21.886444,
-          -29.44567,
-          -3.69288,
-          7.423554,
-          19.89922,
-          -13.892162,
-          -9.352621,
-          -23.756565,
-          -17.759132,
-          21.111221,
-          -15.3389635,
-          20.052608,
-          8.306711,
-          -6.695091,
-          -0.2840251,
-          29.565565,
-          6.3890157,
-          20.825033,
-          -15.78091,
-          -3.9792998,
-          8.250312,
-          -4.315795,
-          33.91667,
-          31.587502,
-          -4.7497973,
-          0.70931256,
-          22.03959,
-          -1.3183376,
-          -13.819872,
-          -8.057265,
-          2.5191355,
-          -6.09211,
-          -1.2537154,
-          1.041188,
-          6.271001,
-          15.563097,
-          3.0869732,
-          19.476908,
-          -7.959283,
-          -20.58928,
-          17.528534,
-          -34.817635,
-          26.520325,
-          -7.863438,
-          -13.616495,
-          34.081158,
-          -23.899826,
-          19.227066,
-          -0.1847365,
-          21.436638,
-          -21.634756,
-          27.98984,
-          -9.426962,
-          17.888885,
-          18.802984,
-          -12.24037,
-          25.563747,
-          -18.85435,
-          20.995552,
-          -25.321373,
-          11.024011,
-          -19.68378,
-          30.48236,
-          -26.103676,
-          10.497953,
-          3.9857144,
-          -11.662108,
-          14.603634,
-          7.0568976,
-          -9.688497,
-          -4.4100275,
-          2.030001,
-          -22.706993,
-          19.098873,
-          31.796051,
-          -2.4754145,
-          -26.096392,
-          -21.39815,
-          3.600532,
-          28.98958,
-          -24.192507,
-          -22.364601,
-          24.713762,
-          -16.769764,
-          21.682661,
-          -1.3566388,
-          16.40951,
-          8.210962,
-          -15.716439,
-          -34.972008,
-          26.949068,
-          21.239998,
-          12.173473,
-          20.502365,
-          -12.030829,
-          -28.317688,
-          4.4826207,
-          -4.760545,
-          -10.980467,
-          30.730364,
-          20.87726,
-          -17.78651,
-          22.801989,
-          -5.3119135,
-          -20.541088,
-          12.556309,
-          1.3681566,
-          -15.915366,
-          23.323511,
-          -7.8275642,
-          1.0861593,
-          8.230685,
-          -17.60057,
-          4.390221,
-          9.649646,
-          -16.683647,
-          -22.447065,
-          -10.756376,
-          27.087646,
-          2.2553952,
-          5.474195,
-          6.01643,
-          14.907442,
-          -19.740395,
-          -14.250181,
-          -28.855429,
-          -21.907415,
-          -6.474749,
-          26.200584,
-          23.3236,
-          5.0985155,
-          23.742764,
-          -23.47392,
-          10.961509,
-          -9.009804,
-          10.729193,
-          -16.08439,
-          24.293411,
-          -14.420636,
-          -0.6379835,
-          -7.351985,
-          4.601816,
-          -21.606695,
-          10.600249,
-          -19.460848,
-          -1.0193497,
-          -5.6577854,
-          1.2037258,
-          -19.941338,
-          -17.019722,
-          32.26841,
-          -20.533716,
-          -23.794706,
-          2.3137836,
-          35.702885,
-          -2.6479704,
-          21.060795,
-          -4.315942,
-          -22.034695,
-          0.85024196,
-          13.542582,
-          -8.745571,
-          6.832896,
-          -10.188763,
-          -13.390235,
-          -0.5990197,
-          -23.021431,
-          -5.876716,
-          -11.976225,
-          4.2575808,
-          27.501059,
-          11.98244,
-          26.565365,
-          -1.931646,
-          24.216267,
-          -16.869408,
-          -8.099275,
-          -14.887161,
-          2.2845645,
-          11.149261,
-          -15.141055,
-          27.739674,
-          -3.0804467,
-          5.0789285,
-          -17.30228,
-          -3.2769468,
-          -17.239506,
-          4.583181,
-          -19.281757,
-          -3.5722063,
-          28.793531,
-          -16.723783,
-          25.030203,
-          9.832679,
-          20.863323,
-          -19.392942,
-          -15.235338,
-          11.71164,
-          -24.406261,
-          -15.53886,
-          -16.890417,
-          -19.303434,
-          -12.302218,
-          -21.589676,
-          -14.588415,
-          15.091036,
-          -17.137983,
-          -23.051016,
-          -11.65064,
-          -1.327813,
-          4.7823358,
-          -19.877468,
-          29.76316,
-          -3.8284235,
-          21.326263,
-          -17.971964,
-          -2.6890767,
-          -8.098414,
-          -20.775913,
-          11.0288925,
-          -15.161179,
-          -13.708067,
-          6.9839473,
-          9.420364,
-          15.523962,
-          -1.839738,
-          18.062141,
-          35.796543,
-          -26.4286,
-          4.53065,
-          -3.197111,
-          15.938968,
-          -5.59304,
-          -9.126152,
-          -23.904675,
-          8.384921,
-          -3.4012072,
-          -5.3693423,
-          32.041183,
-          -33.521553,
-          9.530565,
-          15.937399,
-          -27.414234,
-          -24.713099,
-          24.769993,
-          -8.645808,
-          -13.032957,
-          -23.740261,
-          8.2281,
-          -20.86936,
-          -5.3864436,
-          -13.534582,
-          -1.0408515,
-          26.929934,
-          16.484713,
-          -3.2705798,
-          -22.339233,
-          -17.725012,
-          6.1994753,
-          -13.713904,
-          8.064646,
-          -8.887762,
-          -27.97785,
-          8.281391,
-          -14.383507,
-          1.1649175,
-          -17.226963,
-          23.824167,
-          -0.03827765,
-          21.001068,
-          -1.6157911,
-          1.0350281,
-          23.757103,
-          -2.2386749,
-          -12.003306,
-          -5.807004,
-          5.4682074,
-          3.4183521,
-          -18.329607,
-          10.1421995,
-          21.500256,
-          20.873947,
-          14.622503,
-          20.323536,
-          -22.500238,
-          -5.1817036,
-          26.616285,
-          -10.172258,
-          -14.895687,
-          7.471235,
-          4.855366,
-          8.929348,
-          3.4454656,
-          24.15315,
-          33.191727,
-          -17.779476,
-          13.368094,
-          -16.79903,
-          -1.2212269,
-          29.02862,
-          1.353517,
-          33.686493,
-          -9.61028,
-          -10.290435,
-          17.499424,
-          -18.92016,
-          10.638852,
-          -4.0155163,
-          -29.874123,
-          -23.89452,
-          17.025469,
-          12.36343,
-          25.982975,
-          -5.359385,
-          -20.511335,
-          26.314108,
-          -14.478729,
-          20.105099,
-          10.390779,
-          -2.7448454,
-          -21.707514,
-          2.8463974,
-          20.082417,
-          39.494793,
-          23.544054,
-          33.45021,
-          1.2731425,
-          7.00291,
-          20.49504,
-          11.026453,
-          -14.920918,
-          21.672586,
-          -24.179169,
-          -22.502762,
-          -18.470171,
-          -5.233647,
-          15.536683,
-          7.5924697,
-          31.43023,
-          -10.685339,
-          -5.5552483,
-          30.057226,
-          2.6354103,
-          17.865553,
-          -25.625107,
-          -23.603718,
-          16.79463,
-          -21.343506,
-          24.513098,
-          -22.31949,
-          -13.1784725,
-          14.572172,
-          -21.927172,
-          -0.43766883,
-          26.446459,
-          7.797492,
-          27.607801,
-          -14.08771,
-          28.953205,
-          -1.2875158,
-          -17.776453,
-          1.3350589,
-          -0.14630945,
-          -12.744574,
-          -5.8219385,
-          6.380316,
-          -24.39855,
-          1.6557639,
-          -25.33089,
-          -10.88375,
-          -5.4497714,
-          -3.2008982,
-          3.516546,
-          3.7044208,
-          -14.088412,
-          1.8123101,
-          -2.0853994,
-          -12.914869,
-          -14.570528,
-          6.286185,
-          29.915886,
-          18.577192,
-          -19.750566,
-          -4.8032465,
-          -14.996935,
-          9.808406,
-          3.1115727,
-          10.539988,
-          -0.25747964,
-          7.8065777,
-          -9.5224,
-          22.650063,
-          -8.527657,
-          25.720367,
-          27.335323,
-          -27.719013,
-          -27.493273,
-          -28.8183,
-          16.676228,
-          15.222469,
-          -6.1142654,
-          23.31772,
-          6.885112,
-          -21.120987,
-          31.183216,
-          16.581377,
-          -1.3270321,
-          -3.024608,
-          -24.535004,
-          -35.037914,
-          27.32407,
-          2.2356973,
-          16.557335,
-          8.043718,
-          4.2089057,
-          24.168753,
-          -0.42459357,
-          26.167639,
-          -19.28855,
-          -16.932995,
-          0.031842478,
-          11.079847,
-          23.264338,
-          11.247658,
-          28.108557,
-          -17.26478,
-          23.26528,
-          -5.613793,
-          -12.292187,
-          -13.964472,
-          21.349566,
-          21.782167,
-          26.02513,
-          -30.554207,
-          -20.807219,
-          -22.266432,
-          -16.260057,
-          13.463569,
-          -20.409258,
-          5.911049,
-          -3.838907,
-          -30.899261,
-          -25.502863,
-          17.450424,
-          4.5370917,
-          7.3130083,
-          29.060263,
-          -1.2906566,
-          -9.992426,
-          9.496942,
-          19.615667,
-          -15.057436,
-          -14.524883,
-          -5.6858554,
-          -8.944074,
-          30.993462,
-          -18.399357,
-          4.312004,
-          -12.452006,
-          11.88096,
-          -26.893,
-          10.486003,
-          -14.269513,
-          13.904057,
-          -14.193346,
-          -17.597988,
-          -13.744734,
-          19.081799,
-          7.1376367,
-          -20.63535,
-          0.17712176,
-          26.276295,
-          -4.0243726,
-          18.80954,
-          8.85504,
-          -11.71116,
-          10.333615,
-          -33.28943,
-          -13.433018,
-          25.406893,
-          -21.37861,
-          -30.53585,
-          -0.6449607,
-          -17.676962,
-          -33.109673,
-          6.502574,
-          25.979095,
-          13.889341,
-          24.452019,
-          -11.330729,
-          -14.508683,
-          7.7211857,
-          30.14757,
-          -15.281551,
-          25.445856,
-          23.137957,
-          2.9930232,
-          -11.392148,
-          -3.4584122,
-          -17.335155,
-          32.249325,
-          1.1835473,
-          0.4309157,
-          -1.922125,
-          18.76773,
-          12.763572,
-          -5.1183553,
-          -19.383118,
-          -11.329933,
-          -9.979049,
-          -19.62514,
-          14.371391,
-          -9.079416,
-          17.039936,
-          12.198028,
-          17.744976,
-          -27.767008,
-          4.7606173,
-          20.943676,
-          -2.7953665,
-          34.946663,
-          21.359537,
-          23.354967,
-          32.181087,
-          10.895949,
-          -23.63617,
-          16.164768,
-          -21.386267,
-          -0.20407373,
-          -10.61583,
-          18.747564,
-          -8.708449,
-          26.564816,
-          -20.358099,
-          3.6623113,
-          2.833431,
-          -2.406363,
-          -7.6430187,
-          30.990358,
-          -1.6160171,
-          22.291674,
-          14.2712755,
-          8.649531,
-          -22.09123,
-          -3.9283407,
-          -15.144995,
-          -5.257486,
-          16.290205,
-          24.053005,
-          -5.443865,
-          29.637974,
-          -30.894657,
-          10.8514185,
-          -19.329512,
-          -1.7249132,
-          -27.617838,
-          12.135396,
-          -20.576097,
-          -32.521618,
-          -17.759117,
-          14.102587,
-          -1.4501517,
-          -17.441105,
-          22.34238,
-          -1.5771652,
-          -3.4706712,
-          19.873198,
-          17.654528,
-          14.297588,
-          35.126564,
-          3.530811,
-          22.92706,
-          1.305536,
-          -5.8584995,
-          -3.4917607,
-          -25.70212,
-          15.667845,
-          -13.110925,
-          1.5236746,
-          1.27955,
-          26.836803,
-          22.695467,
-          -7.542444,
-          -24.459936,
-          -4.085233,
-          -24.834877,
-          -13.123537,
-          13.346765,
-          3.3096304,
-          5.8128743,
-          -9.243302,
-          -22.380308,
-          24.534492,
-          32.18937,
-          0.7944149,
-          -17.298498,
-          -7.3226933,
-          23.025293,
-          -0.33986145,
-          14.641378,
-          -32.17766,
-          9.108203,
-          -15.654366,
-          -3.2708795,
-          1.7839518,
-          4.667992,
-          -21.404385,
-          33.032204,
-          0.07473384,
-          -8.874142,
-          19.918457,
-          2.485261,
-          -26.038076,
-          13.791234,
-          19.88417,
-          26.989523,
-          6.4794717,
-          -8.599584,
-          26.08512,
-          35.79187,
-          -3.0957053,
-          1.5328475,
-          -15.78256,
-          14.641849,
-          0.75382006,
-          13.353416,
-          -20.758772,
-          27.588259,
-          -8.591754,
-          7.6756034,
-          -32.257572,
-          -3.6816385,
-          -8.807442,
-          -23.705658,
-          26.69215,
-          5.574528,
-          -3.3590631,
-          -16.991213,
-          -18.813177,
-          20.353582,
-          -8.202672,
-          -2.241037,
-          -22.663652,
-          -10.86935,
-          22.6146,
-          0.538039,
-          -11.617886,
-          -7.3185177,
-          5.459471,
-          -20.510658,
-          14.793362,
-          -15.245933,
-          2.8498745,
-          30.176495,
-          25.41137,
-          12.340705,
-          -14.110134,
-          20.984993,
-          -20.736963,
-          -21.078281,
-          -16.38932,
-          -10.101326,
-          -29.059853,
-          -14.522557,
-          -31.21759,
-          11.320027,
-          -1.3346295,
-          19.095402,
-          3.5003624,
-          -0.27149853,
-          23.530079,
-          -1.4504046,
-          -20.799906,
-          26.357058,
-          25.323908,
-          21.914633,
-          19.832611,
-          -14.345478,
-          -12.780764,
-          -15.090428,
-          0.40740138,
-          -16.226871,
-          22.365917,
-          24.898293,
-          -22.19336,
-          -17.027992,
-          -19.892523,
-          23.981928,
-          -11.016326,
-          -16.473738,
-          -20.647305,
-          -18.943878,
-          -34.179035,
-          -14.075991,
-          1.9298484,
-          20.942158,
-          -15.682211,
-          -9.76076,
-          -23.77744,
-          2.101532,
-          -25.935007,
-          8.422051,
-          -21.395668,
-          -12.298222,
-          2.824297,
-          12.158624,
-          15.439734,
-          -5.986609,
-          22.680363,
-          -19.286484,
-          30.605867,
-          -0.7899231,
-          18.014528,
-          -18.204716,
-          -18.893454,
-          -2.6403008,
-          -26.197563,
-          0.6461262,
-          -17.935425,
-          21.006203,
-          19.50926,
-          -25.124516,
-          19.076454,
-          -13.34786,
-          -20.217596,
-          -18.721956,
-          13.471852,
-          10.719515,
-          -6.343975,
-          -4.427436,
-          2.1415112,
-          0.124456935,
-          9.154357,
-          15.850318,
-          14.106509,
-          18.979578,
-          -25.880474,
-          15.075585,
-          20.326845,
-          -15.592323,
-          -16.127396,
-          19.439365,
-          -18.178284,
-          -7.721521,
-          18.546848,
-          1.3289208,
-          -21.118057,
-          15.136754,
-          -8.462077,
-          -6.078381,
-          0.24295494,
-          -14.893564,
-          -3.098876,
-          -22.965818,
-          -2.973772,
-          -10.412807,
-          36.82579,
-          0.043326903,
-          -0.730605,
-          20.569399,
-          20.47704,
-          34.56152,
-          -12.61784,
-          -22.44099,
-          -13.279965,
-          -28.35139,
-          -9.076381,
-          -14.49968,
-          11.381456,
-          27.552359,
-          10.113919,
-          4.322983,
-          -16.923988,
-          18.366398,
-          4.072649,
-          -18.502573,
-          14.2359915,
-          1.2205616,
-          34.52153,
-          -13.276994,
-          16.888266,
-          -17.09381,
-          26.655972,
-          12.712044,
-          -22.337847,
-          -18.344118,
-          -21.796993,
-          -2.695157,
-          33.12794,
-          20.795307,
-          5.892835,
-          -30.008844,
-          13.092032,
-          -12.617298,
-          -26.583797,
-          -12.331805,
-          -25.788994,
-          18.527788,
-          -5.358728,
-          -20.973848,
-          21.975595,
-          3.6332028,
-          21.49163,
-          -24.02265,
-          -1.2270886,
-          31.648344,
-          -26.34871,
-          28.852188,
-          11.337199,
-          16.580437,
-          6.917111,
-          -2.6463892,
-          -13.808859,
-          27.402872,
-          31.668863,
-          10.09489,
-          -9.203751,
-          -4.5927486,
-          -19.010218,
-          7.268004,
-          27.96568,
-          -32.725826,
-          -12.638194,
-          -9.072612,
-          0.687024,
-          -24.00849,
-          -16.797096,
-          -13.887938,
-          21.008837,
-          -20.714098,
-          4.003382,
-          -5.864986,
-          6.308118,
-          -18.954786,
-          -14.093458,
-          14.5252905,
-          -10.20566,
-          -5.714998,
-          -7.6352305,
-          -11.445573,
-          28.259352,
-          -7.4210625,
-          -14.774667,
-          8.2712965,
-          -14.246153,
-          -23.317041,
-          0.21726441,
-          -20.630865,
-          -24.174063,
-          -15.430166,
-          -22.63233,
-          -5.336508,
-          -0.4162142,
-          -17.627256,
-          -12.0516205,
-          -10.120339,
-          22.627249,
-          17.18417,
-          -24.923342,
-          20.119074,
-          -11.128392,
-          -23.75025,
-          -22.75563,
-          -18.194794,
-          -2.677447,
-          5.6336102,
-          -8.593113,
-          -27.35188,
-          30.831476,
-          6.842084,
-          -23.006275,
-          -2.1064568,
-          -31.873516,
-          -21.917208,
-          11.057577,
-          21.760345,
-          31.105818,
-          -7.2484465,
-          27.442217,
-          27.198599,
-          -5.4786696,
-          20.937487,
-          -15.238694,
-          -22.516329,
-          16.441422,
-          -27.548603,
-          -0.95101047,
-          -5.9703918,
-          -20.764137,
-          9.63625,
-          25.318214,
-          -4.7924676,
-          22.43602,
-          -29.857277,
-          -8.804195,
-          -16.590578,
-          6.1655693,
-          -6.229835,
-          9.825396,
-          3.6917143,
-          -25.044327,
-          -15.101339,
-          7.166533,
-          18.591246,
-          -25.983875,
-          27.819729,
-          24.170658,
-          5.3510475,
-          6.549803,
-          -32.0242,
-          27.198914,
-          -3.37324,
-          -14.339118,
-          -28.126497,
-          22.221628,
-          -13.358003,
-          -16.78678,
-          -32.53302,
-          15.152627,
-          13.393224,
-          19.411095,
-          23.425772,
-          20.027725,
-          24.710947,
-          17.26326,
-          -27.410538,
-          26.30866,
-          -4.510418,
-          5.3038287,
-          7.526191,
-          -15.999681,
-          -2.2162335,
-          31.378555,
-          6.302167,
-          15.184932,
-          -21.060045,
-          14.10122,
-          5.90295,
-          -27.716919,
-          -16.625145,
-          -10.241354,
-          6.1585164,
-          7.223655,
-          -11.634907,
-          -21.870625,
-          -21.870728,
-          6.634295,
-          -6.066459,
-          -17.1438,
-          -32.103767,
-          -10.273103,
-          15.137199,
-          7.232844,
-          21.119562,
-          1.9282136,
-          12.128642,
-          12.653392,
-          9.936496,
-          21.916615,
-          9.071596,
-          27.73088,
-          14.497267,
-          -4.162361,
-          -25.22734,
-          -22.694798,
-          -10.849964,
-          -8.824205,
-          20.774977,
-          20.526009,
-          28.81767,
-          -15.895552,
-          -11.81379,
-          11.597373,
-          -10.619046,
-          -12.564632,
-          -21.738821,
-          -13.048038,
-          -23.010983,
-          -1.3630763,
-          19.897066
-         ],
-         "yaxis": "y"
-        },
-        {
-         "customdata": [
-          [
-           "AP - President Bush declared<br>Friday that charges of voter<br>fraud have cast doubt on the<br>Ukrainian election, and warned<br>that any European-negotiated<br>pact on Iran's nuclear program<br>must ensure the world can<br>verify Tehran's compliance."
-          ],
-          [
-           "Israel is prepared to back a<br>Middle East conference<br>convened by Tony Blair early<br>next year despite having<br>expressed fears that the<br>British plans were over-<br>ambitious and designed"
-          ],
-          [
-           "THE re-election of British<br>Prime Minister Tony Blair<br>would be seen as an<br>endorsement of the military<br>action in Iraq, Prime Minister<br>John Howard said today."
-          ],
-          [
-           "AFP - A battle group of<br>British troops rolled out of<br>southern Iraq on a US-<br>requested mission to deadlier<br>areas near Baghdad, in a major<br>political gamble for British<br>Prime Minister Tony Blair."
-          ],
-          [
-           " WASHINGTON (Reuters) -<br>President Bush on Friday set a<br>four-year goal of seeing a<br>Palestinian state established<br>and he  and British Prime<br>Minister Tony Blair vowed to<br>mobilize  international<br>support to help make it happen<br>now that Yasser  Arafat is<br>dead."
-          ]
-         ],
-         "hovertemplate": "label=Nearest neighbor (top 5)<br>Component 0=%{x}<br>Component 1=%{y}<br>string=%{customdata[0]}<extra></extra>",
-         "legendgroup": "Nearest neighbor (top 5)",
-         "marker": {
-          "color": "#EF553B",
-          "size": 5,
-          "symbol": "diamond"
-         },
-         "mode": "markers",
-         "name": "Nearest neighbor (top 5)",
-         "showlegend": true,
-         "type": "scattergl",
-         "x": [
-          4.836007,
-          10.248553,
-          11.338411,
-          14.155432,
-          11.67213
-         ],
-         "xaxis": "x",
-         "y": [
-          5.3443413,
-          0.81385136,
-          -1.632514,
-          14.279812,
-          3.6773765
-         ],
-         "yaxis": "y"
-        },
-        {
-         "customdata": [
-          [
-           "BRITAIN: BLAIR WARNS OF<br>CLIMATE THREAT Prime Minister<br>Tony Blair urged the<br>international community to<br>consider global warming a dire<br>threat and agree on a plan of<br>action to curb the<br>quot;alarming quot; growth of<br>greenhouse gases."
-          ]
-         ],
-         "hovertemplate": "label=Source<br>Component 0=%{x}<br>Component 1=%{y}<br>string=%{customdata[0]}<extra></extra>",
-         "legendgroup": "Source",
-         "marker": {
-          "color": "#00cc96",
-          "size": 5,
-          "symbol": "square"
-         },
-         "mode": "markers",
-         "name": "Source",
-         "showlegend": true,
-         "type": "scattergl",
-         "x": [
-          9.787297
-         ],
-         "xaxis": "x",
-         "y": [
-          -0.25818
-         ],
-         "yaxis": "y"
-        }
-       ],
-       "layout": {
-        "height": 500,
-        "legend": {
-         "title": {
-          "text": "label"
-         },
-         "tracegroupgap": 0
-        },
-        "template": {
-         "data": {
-          "bar": [
-           {
-            "error_x": {
-             "color": "#2a3f5f"
-            },
-            "error_y": {
-             "color": "#2a3f5f"
-            },
-            "marker": {
-             "line": {
-              "color": "#E5ECF6",
-              "width": 0.5
-             },
-             "pattern": {
-              "fillmode": "overlay",
-              "size": 10,
-              "solidity": 0.2
-             }
-            },
-            "type": "bar"
-           }
-          ],
-          "barpolar": [
-           {
-            "marker": {
-             "line": {
-              "color": "#E5ECF6",
-              "width": 0.5
-             },
-             "pattern": {
-              "fillmode": "overlay",
-              "size": 10,
-              "solidity": 0.2
-             }
-            },
-            "type": "barpolar"
-           }
-          ],
-          "carpet": [
-           {
-            "aaxis": {
-             "endlinecolor": "#2a3f5f",
-             "gridcolor": "white",
-             "linecolor": "white",
-             "minorgridcolor": "white",
-             "startlinecolor": "#2a3f5f"
-            },
-            "baxis": {
-             "endlinecolor": "#2a3f5f",
-             "gridcolor": "white",
-             "linecolor": "white",
-             "minorgridcolor": "white",
-             "startlinecolor": "#2a3f5f"
-            },
-            "type": "carpet"
-           }
-          ],
-          "choropleth": [
-           {
-            "colorbar": {
-             "outlinewidth": 0,
-             "ticks": ""
-            },
-            "type": "choropleth"
-           }
-          ],
-          "contour": [
-           {
-            "colorbar": {
-             "outlinewidth": 0,
-             "ticks": ""
-            },
-            "colorscale": [
-             [
-              0,
-              "#0d0887"
-             ],
-             [
-              0.1111111111111111,
-              "#46039f"
-             ],
-             [
-              0.2222222222222222,
-              "#7201a8"
-             ],
-             [
-              0.3333333333333333,
-              "#9c179e"
-             ],
-             [
-              0.4444444444444444,
-              "#bd3786"
-             ],
-             [
-              0.5555555555555556,
-              "#d8576b"
-             ],
-             [
-              0.6666666666666666,
-              "#ed7953"
-             ],
-             [
-              0.7777777777777778,
-              "#fb9f3a"
-             ],
-             [
-              0.8888888888888888,
-              "#fdca26"
-             ],
-             [
-              1,
-              "#f0f921"
-             ]
-            ],
-            "type": "contour"
-           }
-          ],
-          "contourcarpet": [
-           {
-            "colorbar": {
-             "outlinewidth": 0,
-             "ticks": ""
-            },
-            "type": "contourcarpet"
-           }
-          ],
-          "heatmap": [
-           {
-            "colorbar": {
-             "outlinewidth": 0,
-             "ticks": ""
-            },
-            "colorscale": [
-             [
-              0,
-              "#0d0887"
-             ],
-             [
-              0.1111111111111111,
-              "#46039f"
-             ],
-             [
-              0.2222222222222222,
-              "#7201a8"
-             ],
-             [
-              0.3333333333333333,
-              "#9c179e"
-             ],
-             [
-              0.4444444444444444,
-              "#bd3786"
-             ],
-             [
-              0.5555555555555556,
-              "#d8576b"
-             ],
-             [
-              0.6666666666666666,
-              "#ed7953"
-             ],
-             [
-              0.7777777777777778,
-              "#fb9f3a"
-             ],
-             [
-              0.8888888888888888,
-              "#fdca26"
-             ],
-             [
-              1,
-              "#f0f921"
-             ]
-            ],
-            "type": "heatmap"
-           }
-          ],
-          "heatmapgl": [
-           {
-            "colorbar": {
-             "outlinewidth": 0,
-             "ticks": ""
-            },
-            "colorscale": [
-             [
-              0,
-              "#0d0887"
-             ],
-             [
-              0.1111111111111111,
-              "#46039f"
-             ],
-             [
-              0.2222222222222222,
-              "#7201a8"
-             ],
-             [
-              0.3333333333333333,
-              "#9c179e"
-             ],
-             [
-              0.4444444444444444,
-              "#bd3786"
-             ],
-             [
-              0.5555555555555556,
-              "#d8576b"
-             ],
-             [
-              0.6666666666666666,
-              "#ed7953"
-             ],
-             [
-              0.7777777777777778,
-              "#fb9f3a"
-             ],
-             [
-              0.8888888888888888,
-              "#fdca26"
-             ],
-             [
-              1,
-              "#f0f921"
-             ]
-            ],
-            "type": "heatmapgl"
-           }
-          ],
-          "histogram": [
-           {
-            "marker": {
-             "pattern": {
-              "fillmode": "overlay",
-              "size": 10,
-              "solidity": 0.2
-             }
-            },
-            "type": "histogram"
-           }
-          ],
-          "histogram2d": [
-           {
-            "colorbar": {
-             "outlinewidth": 0,
-             "ticks": ""
-            },
-            "colorscale": [
-             [
-              0,
-              "#0d0887"
-             ],
-             [
-              0.1111111111111111,
-              "#46039f"
-             ],
-             [
-              0.2222222222222222,
-              "#7201a8"
-             ],
-             [
-              0.3333333333333333,
-              "#9c179e"
-             ],
-             [
-              0.4444444444444444,
-              "#bd3786"
-             ],
-             [
-              0.5555555555555556,
-              "#d8576b"
-             ],
-             [
-              0.6666666666666666,
-              "#ed7953"
-             ],
-             [
-              0.7777777777777778,
-              "#fb9f3a"
-             ],
-             [
-              0.8888888888888888,
-              "#fdca26"
-             ],
-             [
-              1,
-              "#f0f921"
-             ]
-            ],
-            "type": "histogram2d"
-           }
-          ],
-          "histogram2dcontour": [
-           {
-            "colorbar": {
-             "outlinewidth": 0,
-             "ticks": ""
-            },
-            "colorscale": [
-             [
-              0,
-              "#0d0887"
-             ],
-             [
-              0.1111111111111111,
-              "#46039f"
-             ],
-             [
-              0.2222222222222222,
-              "#7201a8"
-             ],
-             [
-              0.3333333333333333,
-              "#9c179e"
-             ],
-             [
-              0.4444444444444444,
-              "#bd3786"
-             ],
-             [
-              0.5555555555555556,
-              "#d8576b"
-             ],
-             [
-              0.6666666666666666,
-              "#ed7953"
-             ],
-             [
-              0.7777777777777778,
-              "#fb9f3a"
-             ],
-             [
-              0.8888888888888888,
-              "#fdca26"
-             ],
-             [
-              1,
-              "#f0f921"
-             ]
-            ],
-            "type": "histogram2dcontour"
-           }
-          ],
-          "mesh3d": [
-           {
-            "colorbar": {
-             "outlinewidth": 0,
-             "ticks": ""
-            },
-            "type": "mesh3d"
-           }
-          ],
-          "parcoords": [
-           {
-            "line": {
-             "colorbar": {
-              "outlinewidth": 0,
-              "ticks": ""
-             }
-            },
-            "type": "parcoords"
-           }
-          ],
-          "pie": [
-           {
-            "automargin": true,
-            "type": "pie"
-           }
-          ],
-          "scatter": [
-           {
-            "marker": {
-             "colorbar": {
-              "outlinewidth": 0,
-              "ticks": ""
-             }
-            },
-            "type": "scatter"
-           }
-          ],
-          "scatter3d": [
-           {
-            "line": {
-             "colorbar": {
-              "outlinewidth": 0,
-              "ticks": ""
-             }
-            },
-            "marker": {
-             "colorbar": {
-              "outlinewidth": 0,
-              "ticks": ""
-             }
-            },
-            "type": "scatter3d"
-           }
-          ],
-          "scattercarpet": [
-           {
-            "marker": {
-             "colorbar": {
-              "outlinewidth": 0,
-              "ticks": ""
-             }
-            },
-            "type": "scattercarpet"
-           }
-          ],
-          "scattergeo": [
-           {
-            "marker": {
-             "colorbar": {
-              "outlinewidth": 0,
-              "ticks": ""
-             }
-            },
-            "type": "scattergeo"
-           }
-          ],
-          "scattergl": [
-           {
-            "marker": {
-             "colorbar": {
-              "outlinewidth": 0,
-              "ticks": ""
-             }
-            },
-            "type": "scattergl"
-           }
-          ],
-          "scattermapbox": [
-           {
-            "marker": {
-             "colorbar": {
-              "outlinewidth": 0,
-              "ticks": ""
-             }
-            },
-            "type": "scattermapbox"
-           }
-          ],
-          "scatterpolar": [
-           {
-            "marker": {
-             "colorbar": {
-              "outlinewidth": 0,
-              "ticks": ""
-             }
-            },
-            "type": "scatterpolar"
-           }
-          ],
-          "scatterpolargl": [
-           {
-            "marker": {
-             "colorbar": {
-              "outlinewidth": 0,
-              "ticks": ""
-             }
-            },
-            "type": "scatterpolargl"
-           }
-          ],
-          "scatterternary": [
-           {
-            "marker": {
-             "colorbar": {
-              "outlinewidth": 0,
-              "ticks": ""
-             }
-            },
-            "type": "scatterternary"
-           }
-          ],
-          "surface": [
-           {
-            "colorbar": {
-             "outlinewidth": 0,
-             "ticks": ""
-            },
-            "colorscale": [
-             [
-              0,
-              "#0d0887"
-             ],
-             [
-              0.1111111111111111,
-              "#46039f"
-             ],
-             [
-              0.2222222222222222,
-              "#7201a8"
-             ],
-             [
-              0.3333333333333333,
-              "#9c179e"
-             ],
-             [
-              0.4444444444444444,
-              "#bd3786"
-             ],
-             [
-              0.5555555555555556,
-              "#d8576b"
-             ],
-             [
-              0.6666666666666666,
-              "#ed7953"
-             ],
-             [
-              0.7777777777777778,
-              "#fb9f3a"
-             ],
-             [
-              0.8888888888888888,
-              "#fdca26"
-             ],
-             [
-              1,
-              "#f0f921"
-             ]
-            ],
-            "type": "surface"
-           }
-          ],
-          "table": [
-           {
-            "cells": {
-             "fill": {
-              "color": "#EBF0F8"
-             },
-             "line": {
-              "color": "white"
-             }
-            },
-            "header": {
-             "fill": {
-              "color": "#C8D4E3"
-             },
-             "line": {
-              "color": "white"
-             }
-            },
-            "type": "table"
-           }
-          ]
-         },
-         "layout": {
-          "annotationdefaults": {
-           "arrowcolor": "#2a3f5f",
-           "arrowhead": 0,
-           "arrowwidth": 1
-          },
-          "autotypenumbers": "strict",
-          "coloraxis": {
-           "colorbar": {
-            "outlinewidth": 0,
-            "ticks": ""
-           }
-          },
-          "colorscale": {
-           "diverging": [
-            [
-             0,
-             "#8e0152"
-            ],
-            [
-             0.1,
-             "#c51b7d"
-            ],
-            [
-             0.2,
-             "#de77ae"
-            ],
-            [
-             0.3,
-             "#f1b6da"
-            ],
-            [
-             0.4,
-             "#fde0ef"
-            ],
-            [
-             0.5,
-             "#f7f7f7"
-            ],
-            [
-             0.6,
-             "#e6f5d0"
-            ],
-            [
-             0.7,
-             "#b8e186"
-            ],
-            [
-             0.8,
-             "#7fbc41"
-            ],
-            [
-             0.9,
-             "#4d9221"
-            ],
-            [
-             1,
-             "#276419"
-            ]
-           ],
-           "sequential": [
-            [
-             0,
-             "#0d0887"
-            ],
-            [
-             0.1111111111111111,
-             "#46039f"
-            ],
-            [
-             0.2222222222222222,
-             "#7201a8"
-            ],
-            [
-             0.3333333333333333,
-             "#9c179e"
-            ],
-            [
-             0.4444444444444444,
-             "#bd3786"
-            ],
-            [
-             0.5555555555555556,
-             "#d8576b"
-            ],
-            [
-             0.6666666666666666,
-             "#ed7953"
-            ],
-            [
-             0.7777777777777778,
-             "#fb9f3a"
-            ],
-            [
-             0.8888888888888888,
-             "#fdca26"
-            ],
-            [
-             1,
-             "#f0f921"
-            ]
-           ],
-           "sequentialminus": [
-            [
-             0,
-             "#0d0887"
-            ],
-            [
-             0.1111111111111111,
-             "#46039f"
-            ],
-            [
-             0.2222222222222222,
-             "#7201a8"
-            ],
-            [
-             0.3333333333333333,
-             "#9c179e"
-            ],
-            [
-             0.4444444444444444,
-             "#bd3786"
-            ],
-            [
-             0.5555555555555556,
-             "#d8576b"
-            ],
-            [
-             0.6666666666666666,
-             "#ed7953"
-            ],
-            [
-             0.7777777777777778,
-             "#fb9f3a"
-            ],
-            [
-             0.8888888888888888,
-             "#fdca26"
-            ],
-            [
-             1,
-             "#f0f921"
-            ]
-           ]
-          },
-          "colorway": [
-           "#636efa",
-           "#EF553B",
-           "#00cc96",
-           "#ab63fa",
-           "#FFA15A",
-           "#19d3f3",
-           "#FF6692",
-           "#B6E880",
-           "#FF97FF",
-           "#FECB52"
-          ],
-          "font": {
-           "color": "#2a3f5f"
-          },
-          "geo": {
-           "bgcolor": "white",
-           "lakecolor": "white",
-           "landcolor": "#E5ECF6",
-           "showlakes": true,
-           "showland": true,
-           "subunitcolor": "white"
-          },
-          "hoverlabel": {
-           "align": "left"
-          },
-          "hovermode": "closest",
-          "mapbox": {
-           "style": "light"
-          },
-          "paper_bgcolor": "white",
-          "plot_bgcolor": "#E5ECF6",
-          "polar": {
-           "angularaxis": {
-            "gridcolor": "white",
-            "linecolor": "white",
-            "ticks": ""
-           },
-           "bgcolor": "#E5ECF6",
-           "radialaxis": {
-            "gridcolor": "white",
-            "linecolor": "white",
-            "ticks": ""
-           }
-          },
-          "scene": {
-           "xaxis": {
-            "backgroundcolor": "#E5ECF6",
-            "gridcolor": "white",
-            "gridwidth": 2,
-            "linecolor": "white",
-            "showbackground": true,
-            "ticks": "",
-            "zerolinecolor": "white"
-           },
-           "yaxis": {
-            "backgroundcolor": "#E5ECF6",
-            "gridcolor": "white",
-            "gridwidth": 2,
-            "linecolor": "white",
-            "showbackground": true,
-            "ticks": "",
-            "zerolinecolor": "white"
-           },
-           "zaxis": {
-            "backgroundcolor": "#E5ECF6",
-            "gridcolor": "white",
-            "gridwidth": 2,
-            "linecolor": "white",
-            "showbackground": true,
-            "ticks": "",
-            "zerolinecolor": "white"
-           }
-          },
-          "shapedefaults": {
-           "line": {
-            "color": "#2a3f5f"
-           }
-          },
-          "ternary": {
-           "aaxis": {
-            "gridcolor": "white",
-            "linecolor": "white",
-            "ticks": ""
-           },
-           "baxis": {
-            "gridcolor": "white",
-            "linecolor": "white",
-            "ticks": ""
-           },
-           "bgcolor": "#E5ECF6",
-           "caxis": {
-            "gridcolor": "white",
-            "linecolor": "white",
-            "ticks": ""
-           }
-          },
-          "title": {
-           "x": 0.05
-          },
-          "xaxis": {
-           "automargin": true,
-           "gridcolor": "white",
-           "linecolor": "white",
-           "ticks": "",
-           "title": {
-            "standoff": 15
-           },
-           "zerolinecolor": "white",
-           "zerolinewidth": 2
-          },
-          "yaxis": {
-           "automargin": true,
-           "gridcolor": "white",
-           "linecolor": "white",
-           "ticks": "",
-           "title": {
-            "standoff": 15
-           },
-           "zerolinecolor": "white",
-           "zerolinewidth": 2
-          }
-         }
-        },
-        "title": {
-         "text": "Nearest neighbors of the Tony Blair article"
-        },
-        "width": 600,
-        "xaxis": {
-         "anchor": "y",
-         "domain": [
-          0,
-          1
-         ],
-         "title": {
-          "text": "Component 0"
-         }
-        },
-        "yaxis": {
-         "anchor": "x",
-         "domain": [
-          0,
-          1
-         ],
-         "title": {
-          "text": "Component 1"
-         }
-        }
-       }
-      }
-     },
-     "metadata": {},
-     "output_type": "display_data"
-    }
-   ],
-   "source": [
-    "# a 2D chart of nearest neighbors of the Tony Blair article\n",
-    "chart_from_components(\n",
-    "    components=tsne_components,\n",
-    "    labels=tony_blair_labels,\n",
-    "    strings=article_descriptions,\n",
-    "    width=600,\n",
-    "    height=500,\n",
-    "    title=\"Nearest neighbors of the Tony Blair article\",\n",
-    "    category_orders={\"label\": [\"Other\", \"Nearest neighbor (top 5)\", \"Source\"]},\n",
-    ")"
-   ]
-  },
-  {
-   "cell_type": "markdown",
-   "metadata": {},
-   "source": [
-    "Looking at the 2D chart above, we can see that the articles about Tony Blair are somewhat close together inside of the World news cluster. Interestingly, although the 5 nearest neighbors (red) were closest in high dimensional space, they are not the closest points in this compressed 2D space. Compressing the embeddings from 2048 dimensions to 2 dimensions discards much of their information, and the nearest neighbors in the 2D space don't seem to be as relevant as those in the full embedding space."
-   ]
-  },
-  {
-   "cell_type": "code",
-   "execution_count": 12,
-   "metadata": {},
-   "outputs": [
-    {
-     "data": {
-      "application/vnd.plotly.v1+json": {
-       "config": {
-        "plotlyServerURL": "https://plot.ly"
-       },
-       "data": [
-        {
-         "customdata": [
-          [
-           "BRITAIN: BLAIR WARNS OF<br>CLIMATE THREAT Prime Minister<br>Tony Blair urged the<br>international community to<br>consider global warming a dire<br>threat and agree on a plan of<br>action to curb the<br>quot;alarming quot; growth of<br>greenhouse gases."
-          ],
-          [
-           "Newspapers in Greece reflect a<br>mixture of exhilaration that<br>the Athens Olympics proved<br>successful, and relief that<br>they passed off without any<br>major setback."
-          ],
-          [
-           "SAN JOSE, Calif. -- Apple<br>Computer (Quote, Chart)<br>unveiled a batch of new iPods,<br>iTunes software and promos<br>designed to keep it atop the<br>heap of digital music players."
-          ],
-          [
-           "Any product, any shape, any<br>size -- manufactured on your<br>desktop! The future is the<br>fabricator. By Bruce Sterling<br>from Wired magazine."
-          ],
-          [
-           "KABUL, Sept 22 (AFP): Three US<br>soldiers were killed and 14<br>wounded in a series of fierce<br>clashes with suspected Taliban<br>fighters in south and eastern<br>Afghanistan this week, the US<br>military said Wednesday."
-          ],
-          [
-           "The EU and US moved closer to<br>an aviation trade war after<br>failing to reach agreement<br>during talks Thursday on<br>subsidies to Airbus Industrie."
-          ],
-          [
-           "AUSTRALIAN journalist John<br>Martinkus is lucky to be alive<br>after spending 24 hours in the<br>hands of Iraqi militants at<br>the weekend. Martinkus was in<br>Baghdad working for the SBS<br>Dateline TV current affairs<br>program"
-          ],
-          [
-           " GAZA (Reuters) - An Israeli<br>helicopter fired a missile<br>into  a town in the southern<br>Gaza Strip late on Wednesday,<br>witnesses  said, hours after a<br>Palestinian suicide bomber<br>blew herself up  in Jerusalem,<br>killing two Israeli border<br>policemen."
-          ],
-          [
-           "The Microsoft CEO says one way<br>to stem growing piracy of<br>Windows and Office in emerging<br>markets is to offer low-cost<br>computers."
-          ],
-          [
-           "RIYADH, Saudi Arabia -- Saudi<br>police are seeking two young<br>men in the killing of a Briton<br>in a Riyadh parking lot, the<br>Interior Ministry said today,<br>and the British ambassador<br>called it a terrorist attack."
-          ],
-          [
-           "Loudon, NH -- As the rain<br>began falling late Friday<br>afternoon at New Hampshire<br>International Speedway, the<br>rich in the Nextel Cup garage<br>got richer."
-          ],
-          [
-           "PalmSource surprised the<br>mobile vendor community today<br>with the announcement that it<br>will acquire China MobileSoft<br>(CMS), ostensibly to leverage<br>that company's expertise in<br>building a mobile version of<br>the Linux operating system."
-          ],
-          [
-           "JEFFERSON CITY - An election<br>security expert has raised<br>questions about Missouri<br>Secretary of State Matt Blunt<br>#39;s plan to let soldiers at<br>remote duty stations or in<br>combat areas cast their<br>ballots with the help of<br>e-mail."
-          ],
-          [
-           "A gas explosion at a coal mine<br>in northern China killed 33<br>workers in the 10th deadly<br>mine blast reported in three<br>months. The explosion occurred<br>yesterday at 4:20 pm at Nanlou<br>township"
-          ],
-          [
-           "Reuters - Palestinian leader<br>Mahmoud Abbas called\\Israel<br>\"the Zionist enemy\" Tuesday,<br>unprecedented language for\\the<br>relative moderate who is<br>expected to succeed Yasser<br>Arafat."
-          ],
-          [
-           "AP - Ottawa Senators right<br>wing Marian Hossa is switching<br>European teams during the NHL<br>lockout."
-          ],
-          [
-           "A new, optional log-on service<br>from America Online that makes<br>it harder for scammers to<br>access a persons online<br>account will not be available<br>for Macintosh"
-          ],
-          [
-           "Nasser al-Qidwa, Palestinian<br>representative at the United<br>Nations and nephew of late<br>leader Yasser Arafat, handed<br>Arafat #39;s death report to<br>the Palestinian National<br>Authority (PNA) on Saturday."
-          ],
-          [
-           "CAIRO, Egypt - France's<br>foreign minister appealed<br>Monday for the release of two<br>French journalists abducted in<br>Baghdad, saying the French<br>respect all religions. He did<br>not rule out traveling to<br>Baghdad..."
-          ],
-          [
-           "Chelsea terminated Romania<br>striker Adrian Mutu #39;s<br>contract, citing gross<br>misconduct after the player<br>failed a doping test for<br>cocaine and admitted taking<br>the drug, the English soccer<br>club said in a statement."
-          ],
-          [
-           "United Arab Emirates President<br>and ruler of Abu Dhabi Sheik<br>Zayed bin Sultan al-Nayhan<br>died Tuesday, official<br>television reports. He was 86."
-          ],
-          [
-           "PALESTINIAN leader Yasser<br>Arafat today issued an urgent<br>call for the immediate release<br>of two French journalists<br>taken hostage in Iraq."
-          ],
-          [
-           "The al-Qaida terrorist network<br>spent less than \\$50,000 on<br>each of its major attacks<br>except for the Sept. 11, 2001,<br>suicide hijackings, and one of<br>its hallmarks is using"
-          ],
-          [
-           " SAN FRANCISCO (Reuters) -<br>Nike Inc. &lt;A HREF=\"http://w<br>ww.investor.reuters.com/FullQu<br>ote.aspx?ticker=NKE.N target=/<br>stocks/quickinfo/fullquote\"&gt<br>;NKE.N&lt;/A&gt;, the world's<br>largest athletic shoe company,<br>on Monday reported a 25<br>percent  rise in quarterly<br>profit, beating analysts'<br>estimates, on  strong demand<br>for high-end running and<br>basketball shoes in the<br>United States."
-          ],
-          [
-           "A FATHER who scaled the walls<br>of a Cardiff court dressed as<br>superhero Robin said the<br>Buckingham Palace protester<br>posed no threat. Fathers 4<br>Justice activist Jim Gibson,<br>who earlier this year staged<br>an eye-catching"
-          ],
-          [
-           "NEW YORK (CBS.MW) - US stocks<br>traded mixed Thurday as Merck<br>shares lost a quarter of their<br>value, dragging blue chips<br>lower, but the Nasdaq moved<br>higher, buoyed by gains in the<br>semiconductor sector."
-          ],
-          [
-           "Julia Gillard has reportedly<br>bowed out of the race to<br>become shadow treasurer,<br>taking enormous pressure off<br>Opposition Leader Mark Latham."
-          ],
-          [
-           "It #39;s official. Microsoft<br>recently stated<br>definitivelyand contrary to<br>rumorsthat there will be no<br>new versions of Internet<br>Explorer for users of older<br>versions of Windows."
-          ],
-          [
-           "The success of Paris #39; bid<br>for Olympic Games 2012 would<br>bring an exceptional<br>development for France for at<br>least 6 years, said Jean-<br>Francois Lamour, French<br>minister for Youth and Sports<br>on Tuesday."
-          ],
-          [
-           "AFP - Maybe it's something to<br>do with the fact that the<br>playing area is so vast that<br>you need a good pair of<br>binoculars to see the action<br>if it's not taking place right<br>in front of the stands."
-          ],
-          [
-           "Egypt #39;s release of accused<br>Israeli spy Azzam Azzam in an<br>apparent swap for six Egyptian<br>students held on suspicion of<br>terrorism is expected to melt<br>the ice and perhaps result"
-          ],
-          [
-           "But fresh antitrust suit is in<br>the envelope, says Novell"
-          ],
-          [
-           "Chips that help a computer's<br>main microprocessors perform<br>specific types of math<br>problems are becoming a big<br>business once again.\\"
-          ],
-          [
-           "GAZA CITY, Gaza Strip: Hamas<br>militants killed an Israeli<br>soldier and wounded four with<br>an explosion in a booby-<br>trapped chicken coop on<br>Tuesday, in what the Islamic<br>group said was an elaborate<br>scheme to lure troops to the<br>area with the help of a double"
-          ],
-          [
-           "A rocket carrying two Russian<br>cosmonauts and an American<br>astronaut to the international<br>space station streaked into<br>orbit on Thursday, the latest<br>flight of a Russian space<br>vehicle to fill in for<br>grounded US shuttles."
-          ],
-          [
-           "Bankrupt ATA Airlines #39;<br>withdrawal from Chicago #39;s<br>Midway International Airport<br>presents a juicy opportunity<br>for another airline to beef up<br>service in the Midwest"
-          ],
-          [
-           "AP - The 300 men filling out<br>forms in the offices of an<br>Iranian aid group were offered<br>three choices: Train for<br>suicide attacks against U.S.<br>troops in Iraq, for suicide<br>attacks against Israelis or to<br>assassinate British author<br>Salman Rushdie."
-          ],
-          [
-           "ATHENS, Greece - Gail Devers,<br>the most talented yet star-<br>crossed hurdler of her<br>generation, was unable to<br>complete even one hurdle in<br>100-meter event Sunday -<br>failing once again to win an<br>Olympic hurdling medal.<br>Devers, 37, who has three<br>world championships in the<br>hurdles but has always flopped<br>at the Olympics, pulled up<br>short and screamed as she slid<br>under the first hurdle..."
-          ],
-          [
-           "OCTOBER 12, 2004<br>(COMPUTERWORLD) - Microsoft<br>Corp. #39;s monthly patch<br>release cycle may be making it<br>more predictable for users to<br>deploy software updates, but<br>there appears to be little<br>letup in the number of holes<br>being discovered in the<br>company #39;s software"
-          ],
-          [
-           "Wearable tech goes mainstream<br>as the Gap introduces jacket<br>with built-in radio.\\"
-          ],
-          [
-           "Madison, WI (Sports Network) -<br>Anthony Davis ran for 122<br>yards and two touchdowns to<br>lead No. 6 Wisconsin over<br>Northwestern, 24-12, to<br>celebrate Homecoming weekend<br>at Camp Randall Stadium."
-          ],
-          [
-           "LaVar Arrington participated<br>in his first practice since<br>Oct. 25, when he aggravated a<br>knee injury that sidelined him<br>for 10 games."
-          ],
-          [
-           " NEW YORK (Reuters) - Billie<br>Jean King cut her final tie<br>with the U.S. Fed Cup team<br>Tuesday when she retired as<br>coach."
-          ],
-          [
-           "The Instinet Group, owner of<br>one of the largest electronic<br>stock trading systems, is for<br>sale, executives briefed on<br>the plan say."
-          ],
-          [
-           "Funding round of \\$105 million<br>brings broadband Internet<br>telephony company's total haul<br>to \\$208 million."
-          ],
-          [
-           "The Miami Dolphins arrived for<br>their final exhibition game<br>last night in New Orleans<br>short nine players."
-          ],
-          [
-           "washingtonpost.com - Anthony<br>Casalena was 17 when he got<br>his first job as a programmer<br>for a start-up called<br>HyperOffice, a software<br>company that makes e-mail and<br>contact management<br>applications for the Web.<br>Hired as an intern, he became<br>a regular programmer after two<br>weeks and rewrote the main<br>product line."
-          ],
-          [
-           "The Auburn Hills-based<br>Chrysler Group made a profit<br>of \\$269 million in the third<br>quarter, even though worldwide<br>sales and revenues declined,<br>contributing to a \\$1."
-          ],
-          [
-           "SAN FRANCISCO (CBS.MW) -- UAL<br>Corp., parent of United<br>Airlines, said Wednesday it<br>will overhaul its route<br>structure to reduce costs and<br>offset rising fuel costs."
-          ],
-          [
-           " NAIROBI (Reuters) - The<br>Sudanese government and its<br>southern rebel opponents have<br>agreed to sign a pledge in the<br>Kenyan capital on Friday to<br>formally end a brutal 21-year-<br>old  civil war, with U.N.<br>Security Council ambassadors<br>as witnesses."
-          ],
-          [
-           "AP - From LSU at No. 1 to Ohio<br>State at No. 10, The AP<br>women's basketball poll had no<br>changes Monday."
-          ],
-          [
-           "nother stage victory for race<br>leader Petter Solberg, his<br>fifth since the start of the<br>rally. The Subaru driver is<br>not pulling away at a fast<br>pace from Gronholm and Loeb<br>but the gap is nonetheless<br>increasing steadily."
-          ],
-          [
-           "The fossilized neck bones of a<br>230-million-year-old sea<br>creature have features<br>suggesting that the animal<br>#39;s snakelike throat could<br>flare open and create suction<br>that would pull in prey."
-          ],
-          [
-           "IBM late on Tuesday announced<br>the biggest update of its<br>popular WebSphere business<br>software in two years, adding<br>features such as automatically<br>detecting and fixing problems."
-          ],
-          [
-           "April 1980 -- Players strike<br>the last eight days of spring<br>training. Ninety-two<br>exhibition games are canceled.<br>June 1981 -- Players stage<br>first midseason strike in<br>history."
-          ],
-          [
-           "AP - Former Guatemalan<br>President Alfonso Portillo<br>#151; suspected of corruption<br>at home  #151; is living and<br>working part-time in the same<br>Mexican city he fled two<br>decades ago to avoid arrest on<br>murder charges, his close<br>associates told The Associated<br>Press on Sunday."
-          ],
-          [
-           "AP - British entrepreneur<br>Richard Branson said Monday<br>that his company plans to<br>launch commercial space<br>flights over the next few<br>years."
-          ],
-          [
-           "Annual economic growth in<br>China has slowed for the third<br>quarter in a row, falling to<br>9.1 per cent, third-quarter<br>data shows. The slowdown shows<br>the economy is responding to<br>Beijing #39;s efforts to rein<br>in break-neck investment and<br>lending."
-          ],
-          [
-           "washingtonpost.com - BRUSSELS,<br>Aug. 26 -- The United States<br>will have to wait until next<br>year to see its fight with the<br>European Union over biotech<br>foods resolved, as the World<br>Trade Organization agreed to<br>an E.U. request to bring<br>scientists into the debate,<br>officials said Thursday."
-          ],
-          [
-           "A group of Internet security<br>and instant messaging<br>providers have teamed up to<br>detect and thwart the growing<br>threat of IM and peer-to-peer<br>viruses and worms, they said<br>this week."
-          ],
-          [
-           "On Sunday, the day after Ohio<br>State dropped to 0-3 in the<br>Big Ten with a 33-7 loss at<br>Iowa, the Columbus Dispatch<br>ran a single word above its<br>game story on the Buckeyes:<br>quot;Embarrassing."
-          ],
-          [
-           "Insisting that Hurriyat<br>Conference is the real<br>representative of Kashmiris,<br>Pakistan has claimed that<br>India is not ready to accept<br>ground realities in Kashmir."
-          ],
-          [
-           "THE All-India Motor Transport<br>Congress (AIMTC) on Saturday<br>called off its seven-day<br>strike after finalising an<br>agreement with the Government<br>on the contentious issue of<br>service tax and the various<br>demands including tax deducted<br>at source (TDS), scrapping"
-          ],
-          [
-           "BOSTON - Curt Schilling got<br>his 20th win on the eve of<br>Boston #39;s big series with<br>the New York Yankees. Now he<br>wants much more.  quot;In a<br>couple of weeks, hopefully, it<br>will get a lot better, quot;<br>he said after becoming"
-          ],
-          [
-           "Shooed the ghosts of the<br>Bambino and the Iron Horse and<br>the Yankee Clipper and the<br>Mighty Mick, on his 73rd<br>birthday, no less, and turned<br>Yankee Stadium into a morgue."
-          ],
-          [
-           "Gold medal-winning Marlon<br>Devonish says the men #39;s<br>4x100m Olympic relay triumph<br>puts British sprinting back on<br>the map. Devonish, Darren<br>Campbell, Jason Gardener and<br>Mark Lewis-Francis edged out<br>the American"
-          ],
-          [
-           "AP - The euro-zone economy<br>grew by 0.5 percent in the<br>second quarter of 2004, a<br>touch slower than in the first<br>three months of the year,<br>according to initial estimates<br>released Tuesday by the<br>European Union."
-          ],
-          [
-           "His first space flight was in<br>1965 when he piloted the first<br>manned Gemini mission. Later<br>he made two trips to the moon<br>-- orbiting during a 1969<br>flight and then walking on the<br>lunar surface during a mission<br>in 1972."
-          ],
-          [
-           "he difficult road conditions<br>created a few incidents in the<br>first run of the Epynt stage.<br>Francois Duval takes his<br>second stage victory since the<br>start of the rally, nine<br>tenths better than Sebastien<br>Loeb #39;s performance in<br>second position."
-          ],
-          [
-           "VIENNA -- After two years of<br>investigating Iran's atomic<br>program, the UN nuclear<br>watchdog still cannot rule out<br>that Tehran has a secret atom<br>bomb project as Washington<br>insists, the agency's chief<br>said yesterday."
-          ],
-          [
-           "By RACHEL KONRAD    SAN<br>FRANCISCO (AP) -- EBay Inc.,<br>which has been aggressively<br>expanding in Asia, plans to<br>increase its stake in South<br>Korea's largest online auction<br>company.    The Internet<br>auction giant said Tuesday<br>night that it would purchase<br>nearly 3 million publicly held<br>shares of Internet Auction<br>Co..."
-          ],
-          [
-           "AFP - US Secretary of State<br>Colin Powell wrapped up a<br>three-nation tour of Asia<br>after winning pledges from<br>Japan, China and South Korea<br>to press North Korea to resume<br>stalled talks on its nuclear<br>weapons programs."
-          ],
-          [
-           "Tallahassee, FL (Sports<br>Network) - Florida State head<br>coach Bobby Bowden has<br>suspended senior wide receiver<br>Craphonso Thorpe for the<br>Seminoles #39; game against<br>fellow Atlantic Coast<br>Conference member Duke on<br>Saturday."
-          ],
-          [
-           "A few years ago, casinos<br>across the United States were<br>closing their poker rooms to<br>make space for more popular<br>and lucrative slot machines."
-          ],
-          [
-           "CAIRO, Egypt An Egyptian<br>company says one of its four<br>workers who had been kidnapped<br>in Iraq has been freed. It<br>says it can #39;t give the<br>status of the others being<br>held hostage but says it is<br>quot;doing its best to secure<br>quot; their release."
-          ],
-          [
-           "WASHINGTON -- Consumers were<br>tightfisted amid soaring<br>gasoline costs in August and<br>hurricane-related disruptions<br>last week sent applications<br>for jobless benefits to their<br>highest level in seven months."
-          ],
-          [
-           "Talking kitchens and vanities.<br>Musical jump ropes and potty<br>seats. Blusterous miniature<br>leaf blowers and vacuum<br>cleaners -- almost as loud as<br>the real things."
-          ],
-          [
-           "Online merchants in the United<br>States have become better at<br>weeding out fraudulent credit<br>card orders, a new survey<br>indicates. But shipping<br>overseas remains a risky<br>venture. By Joanna Glasner."
-          ],
-          [
-           "Former champion Lleyton Hewitt<br>bristled, battled and<br>eventually blossomed as he<br>took another step towards a<br>second US Open title with a<br>second-round victory over<br>Moroccan Hicham Arazi on<br>Friday."
-          ],
-          [
-           "AP - China's biggest computer<br>maker, Lenovo Group, said<br>Wednesday it has acquired a<br>majority stake in<br>International Business<br>Machines Corp.'s personal<br>computer business for<br>#36;1.75 billion, one of the<br>biggest Chinese overseas<br>acquisitions ever."
-          ],
-          [
-           "Popping a gadget into a cradle<br>to recharge it used to mean<br>downtime, but these days<br>chargers are doing double<br>duty, keeping your portable<br>devices playing even when<br>they're charging."
-          ],
-          [
-           "AFP - Hosts India braced<br>themselves for a harrowing<br>chase on a wearing wicket in<br>the first Test after Australia<br>declined to enforce the<br>follow-on here."
-          ],
-          [
-           " SAN FRANCISCO (Reuters) -<br>Texas Instruments Inc. &lt;A H<br>REF=\"http://www.investor.reute<br>rs.com/FullQuote.aspx?ticker=T<br>XN.N target=/stocks/quickinfo/<br>fullquote\"&gt;TXN.N&lt;/A&gt;,<br>the largest maker of chips for<br>cellular phones, on Monday<br>said  record demand for its<br>handset and television chips<br>boosted  quarterly profit by<br>26 percent, even as it<br>struggles with a  nagging<br>inventory problem."
-          ],
-          [
-           "LONDON ARM Holdings, a British<br>semiconductor designer, said<br>on Monday that it would buy<br>Artisan Components for \\$913<br>million to broaden its product<br>range."
-          ],
-          [
-           "Big evolutionary insights<br>sometimes come in little<br>packages. Witness the<br>startling discovery, in a cave<br>on the eastern Indonesian<br>island of Flores, of the<br>partial skeleton of a half-<br>size Homo species that"
-          ],
-          [
-           "Prime Minister Paul Martin of<br>Canada urged Haitian leaders<br>on Sunday to allow the<br>political party of the deposed<br>president, Jean-Bertrand<br>Aristide, to take part in new<br>elections."
-          ],
-          [
-           "Hostage takers holding up to<br>240 people at a school in<br>southern Russia have refused<br>to talk with a top Islamic<br>leader and demanded to meet<br>with regional leaders instead,<br>ITAR-TASS reported on<br>Wednesday."
-          ],
-          [
-           "As the Mets round out their<br>search for a new manager, the<br>club is giving a last-minute<br>nod to its past. Wally<br>Backman, an infielder for the<br>Mets from 1980-88 who played<br>second base on the 1986"
-          ],
-          [
-           "MELBOURNE: Global shopping<br>mall owner Westfield Group<br>will team up with Australian<br>developer Multiplex Group to<br>bid 585mil (US\\$1."
-          ],
-          [
-           "Three children from a care<br>home are missing on the<br>Lancashire moors after they<br>are separated from a group."
-          ],
-          [
-           "Luke Skywalker and Darth Vader<br>may get all the glory, but a<br>new Star Wars video game<br>finally gives credit to the<br>everyday grunts who couldn<br>#39;t summon the Force for<br>help."
-          ],
-          [
-           "AMSTERDAM, Aug 18 (Reuters) -<br>Midfielder Edgar Davids #39;s<br>leadership qualities and<br>never-say-die attitude have<br>earned him the captaincy of<br>the Netherlands under new<br>coach Marco van Basten."
-          ],
-          [
-           "COUNTY KILKENNY, Ireland (PA)<br>-- Hurricane Jeanne has led to<br>world No. 1 Vijay Singh<br>pulling out of this week #39;s<br>WGC-American Express<br>Championship at Mount Juliet."
-          ],
-          [
-           "Green Bay, WI (Sports Network)<br>- The Green Bay Packers will<br>be without the services of Pro<br>Bowl center Mike Flanagan for<br>the remainder of the season,<br>as he will undergo left knee<br>surgery."
-          ],
-          [
-           "Diabetics should test their<br>blood sugar levels more<br>regularly to reduce the risk<br>of cardiovascular disease, a<br>study says."
-          ],
-          [
-           "COLUMBUS, Ohio -- NCAA<br>investigators will return to<br>Ohio State University Monday<br>to take another look at the<br>football program after the<br>latest round of allegations<br>made by former players,<br>according to the Akron Beacon<br>Journal."
-          ],
-          [
-           " LOS ANGELES (Reuters) -<br>Federal authorities raided<br>three  Washington, D.C.-area<br>video game stores and arrested<br>two people  for modifying<br>video game consoles to play<br>pirated video games,  a video<br>game industry group said on<br>Wednesday."
-          ],
-          [
-           "Manchester United gave Alex<br>Ferguson a 1,000th game<br>anniversary present by<br>reaching the last 16 of the<br>Champions League yesterday,<br>while four-time winners Bayern<br>Munich romped into the second<br>round with a 5-1 beating of<br>Maccabi Tel Aviv."
-          ],
-          [
-           "Iraq's interim Prime Minister<br>Ayad Allawi announced that<br>proceedings would begin<br>against former Baath Party<br>leaders."
-          ],
-          [
-           "Reuters - Delta Air Lines Inc.<br>, which is\\racing to cut costs<br>to avoid bankruptcy, on<br>Wednesday reported\\a wider<br>quarterly loss amid soaring<br>fuel prices and weak\\domestic<br>airfares."
-          ],
-          [
-           "Energy utility TXU Corp. on<br>Monday more than quadrupled<br>its quarterly dividend payment<br>and raised its projected<br>earnings for 2004 and 2005<br>after a companywide<br>performance review."
-          ],
-          [
-           "Northwest Airlines Corp., the<br>fourth- largest US airline,<br>and its pilots union reached<br>tentative agreement on a<br>contract that would cut pay<br>and benefits, saving the<br>company \\$265 million a year."
-          ],
-          [
-           "The last time the Angels<br>played the Texas Rangers, they<br>dropped two consecutive<br>shutouts at home in their most<br>agonizing lost weekend of the<br>season."
-          ],
-          [
-           "Microsoft Corp. MSFT.O and<br>cable television provider<br>Comcast Corp. CMCSA.O said on<br>Monday that they would begin<br>deploying set-top boxes<br>powered by Microsoft software<br>starting next week."
-          ],
-          [
-           "SEATTLE - Chasing a nearly<br>forgotten ghost of the game,<br>Ichiro Suzuki broke one of<br>baseball #39;s oldest records<br>Friday night, smoking a single<br>up the middle for his 258th<br>hit of the year and breaking<br>George Sisler #39;s record for<br>the most hits in a season"
-          ],
-          [
-           "Grace Park, her caddie - and<br>fans - were poking around in<br>the desert brush alongside the<br>18th fairway desperately<br>looking for her ball."
-          ],
-          [
-           "Philippines mobile phone<br>operator Smart Communications<br>Inc. is in talks with<br>Singapore #39;s Mobile One for<br>a possible tie-up,<br>BusinessWorld reported Monday."
-          ],
-          [
-           "Washington Redskins kicker<br>John Hall strained his right<br>groin during practice<br>Thursday, his third leg injury<br>of the season. Hall will be<br>held out of practice Friday<br>and is questionable for Sunday<br>#39;s game against the Chicago<br>Bears."
-          ],
-          [
-           "Airline warns it may file for<br>bankruptcy if too many senior<br>pilots take early retirement<br>option. Delta Air LInes #39;<br>CEO says it faces bankruptcy<br>if it can #39;t slow the pace<br>of pilots taking early<br>retirement."
-          ],
-          [
-           "A toxic batch of home-brewed<br>alcohol has killed 31 people<br>in several towns in central<br>Pakistan, police and hospital<br>officials say."
-          ],
-          [
-           "Thornbugs communicate by<br>vibrating the branches they<br>live on. Now scientists are<br>discovering just what the bugs<br>are \"saying.\""
-          ],
-          [
-           "The Florida Gators and<br>Arkansas Razorbacks meet for<br>just the sixth time Saturday.<br>The Gators hold a 4-1<br>advantage in the previous five<br>meetings, including last year<br>#39;s 33-28 win."
-          ],
-          [
-           "Kodak Versamark #39;s parent<br>company, Eastman Kodak Co.,<br>reported Tuesday it plans to<br>eliminate almost 900 jobs this<br>year in a restructuring of its<br>overseas operations."
-          ],
-          [
-           "A top official of the US Food<br>and Drug Administration said<br>Friday that he and his<br>colleagues  quot;categorically<br>reject quot; earlier<br>Congressional testimony that<br>the agency has failed to<br>protect the public against<br>dangerous drugs."
-          ],
-          [
-           " BEIJING (Reuters) - North<br>Korea is committed to holding<br>six-party talks aimed at<br>resolving the crisis over its<br>nuclear  weapons program, but<br>has not indicated when, a top<br>British  official said on<br>Tuesday."
-          ],
-          [
-           "AP - 1941  #151; Brooklyn<br>catcher Mickey Owen dropped a<br>third strike on Tommy Henrich<br>of what would have been the<br>last out of a Dodgers victory<br>against the New York Yankees.<br>Given the second chance, the<br>Yankees scored four runs for a<br>7-4 victory and a 3-1 lead in<br>the World Series, which they<br>ended up winning."
-          ],
-          [
-           "Federal prosecutors cracked a<br>global cartel that had<br>illegally fixed prices of<br>memory chips in personal<br>computers and servers for<br>three years."
-          ],
-          [
-           "AP - Oracle Corp. CEO Larry<br>Ellison reiterated his<br>determination to prevail in a<br>long-running takeover battle<br>with rival business software<br>maker PeopleSoft Inc.,<br>predicting the proposed deal<br>will create a more competitive<br>company with improved customer<br>service."
-          ],
-          [
-           "Braves shortstop Rafael Furcal<br>was arrested on drunken<br>driving charges Friday, his<br>second D.U.I. arrest in four<br>years."
-          ],
-          [
-           "AFP - British retailer Marks<br>and Spencer announced a major<br>management shake-up as part of<br>efforts to revive its<br>fortunes, saying trading has<br>become tougher ahead of the<br>crucial Christmas period."
-          ],
-          [
-           " BAGHDAD (Reuters) - Iraq's<br>interim government extended<br>the  closure of Baghdad<br>international airport<br>indefinitely on  Saturday<br>under emergency rule imposed<br>ahead of this week's  U.S.-led<br>offensive on Falluja."
-          ],
-          [
-           " ATHENS (Reuters) - Natalie<br>Coughlin's run of bad luck<br>finally took a turn for the<br>better when she won the gold<br>medal  in the women's 100<br>meters backstroke at the<br>Athens Olympics  Monday."
-          ],
-          [
-           " ATLANTA (Reuters) - Home<br>Depot Inc. &lt;A HREF=\"http://<br>www.investor.reuters.com/FullQ<br>uote.aspx?ticker=HD.N target=/<br>stocks/quickinfo/fullquote\"&gt<br>;HD.N&lt;/A&gt;, the top home<br>improvement retailer, on<br>Tuesday reported a 15 percent<br>rise in  third-quarter profit,<br>topping estimates, aided by<br>installed  services and sales<br>to contractors."
-          ],
-          [
-           " LONDON (Reuters) - The dollar<br>fought back from one-month<br>lows against the euro and<br>Swiss franc on Wednesday as<br>investors  viewed its sell-off<br>in the wake of the Federal<br>Reserve's  verdict on interest<br>rates as overdone."
-          ],
-          [
-           "Rivaling Bush vs. Kerry for<br>bitterness, doctors and trial<br>lawyers are squaring off this<br>fall in an unprecedented four-<br>state struggle over limiting<br>malpractice awards..."
-          ],
-          [
-           "Boston Scientific Corp said on<br>Friday it has recalled an ear<br>implant the company acquired<br>as part of its purchase of<br>Advanced Bionics in June."
-          ],
-          [
-           "AP - Pedro Feliz hit a<br>tiebreaking grand slam with<br>two outs in the eighth inning<br>for his fourth hit of the day,<br>and the Giants helped their<br>playoff chances with a 9-5<br>victory over the Los Angeles<br>Dodgers on Saturday."
-          ],
-          [
-           "MarketWatch.com. Richemont<br>sees significant H1 lift,<br>unclear on FY (2:53 AM ET)<br>LONDON (CBS.MW) -- Swiss<br>luxury goods maker<br>Richemont(zz:ZZ:001273145:<br>news, chart, profile), which<br>also is a significant"
-          ],
-          [
-           "Crude oil climbed more than<br>\\$1 in New York on the re-<br>election of President George<br>W. Bush, who has been filling<br>the US Strategic Petroleum<br>Reserve."
-          ],
-          [
-           "AP - Hundreds of tribesmen<br>gathered Tuesday near the area<br>where suspected al-Qaida-<br>linked militants are holding<br>two Chinese engineers and<br>demanding safe passage to<br>their reputed leader, a former<br>U.S. prisoner from Guantanamo<br>Bay, Cuba, officials and<br>residents said."
-          ],
-          [
-           "AP - Scientists warned Tuesday<br>that a long-term increase in<br>global temperature of 3.5<br>degrees could threaten Latin<br>American water supplies,<br>reduce food yields in Asia and<br>result in a rise in extreme<br>weather conditions in the<br>Caribbean."
-          ],
-          [
-           "AP - Further proof New York's<br>real estate market is<br>inflated: The city plans to<br>sell space on top of lampposts<br>to wireless phone companies<br>for  #36;21.6 million a year."
-          ],
-          [
-           "In an alarming development,<br>high-precision equipment and<br>materials which could be used<br>for making nuclear bombs have<br>disappeared from some Iraqi<br>facilities, the United Nations<br>watchdog agency has said."
-          ],
-          [
-           "Yukos #39; largest oil-<br>producing unit regained power<br>supplies from Tyumenenergo, a<br>Siberia-based electricity<br>generator, Friday after the<br>subsidiary pledged to pay 440<br>million rubles (\\$15 million)<br>in debt by Oct. 3."
-          ],
-          [
-           "The rollout of new servers and<br>networking switches in stores<br>is part of a five-year<br>agreement supporting 7-Eleven<br>#39;s Retail Information<br>System."
-          ],
-          [
-           "Top Hollywood studios have<br>launched a wave of court cases<br>against internet users who<br>illegally download film files.<br>The Motion Picture Association<br>of America, which acts as the<br>representative of major film"
-          ],
-          [
-           "AUSTRALIANS went into a<br>television-buying frenzy the<br>run-up to the Athens Olympics,<br>suggesting that as a nation we<br>could easily have scored a<br>gold medal for TV purchasing."
-          ],
-          [
-           "US STOCKS vacillated yesterday<br>as rising oil prices muted<br>Wall Streets excitement over<br>strong results from Lehman<br>Brothers and Sprints \\$35<br>billion acquisition of Nextel<br>Communications."
-          ],
-          [
-           "The next time you are in your<br>bedroom with your PC plus<br>Webcam switched on, don #39;t<br>think that your privacy is all<br>intact. If you have a Webcam<br>plugged into an infected<br>computer, there is a<br>possibility that"
-          ],
-          [
-           "At the head of the class,<br>Rosabeth Moss Kanter is an<br>intellectual whirlwind: loud,<br>expansive, in constant motion."
-          ],
-          [
-           "LEVERKUSEN/ROME, Dec 7 (SW) -<br>Dynamo Kiev, Bayer Leverkusen,<br>and Real Madrid all have a<br>good chance of qualifying for<br>the Champions League Round of<br>16 if they can get the right<br>results in Group F on<br>Wednesday night."
-          ],
-          [
-           "Ed Hinkel made a diving,<br>fingertip catch for a key<br>touchdown and No. 16 Iowa<br>stiffened on defense when it<br>needed to most to beat Iowa<br>State 17-10 Saturday."
-          ],
-          [
-           "During last Sunday #39;s<br>Nextel Cup race, amid the<br>ongoing furor over Dale<br>Earnhardt Jr. #39;s salty<br>language, NBC ran a commercial<br>for a show coming on later<br>that night called  quot;Law<br>amp; Order: Criminal Intent."
-          ],
-          [
-           "AP - After playing in hail,<br>fog and chill, top-ranked<br>Southern California finishes<br>its season in familiar<br>comfort. The Trojans (9-0, 6-0<br>Pacific-10) have two games at<br>home  #151; against Arizona on<br>Saturday and Notre Dame on<br>Nov. 27  #151; before their<br>rivalry game at UCLA."
-          ],
-          [
-           "A US airman dies and two are<br>hurt as a helicopter crashes<br>due to technical problems in<br>western Afghanistan."
-          ],
-          [
-           "Jacques Chirac has ruled out<br>any withdrawal of French<br>troops from Ivory Coast,<br>despite unrest and anti-French<br>attacks, which have forced the<br>evacuation of thousands of<br>Westerners."
-          ],
-          [
-           "Japanese Prime Minister<br>Junichiro Koizumi reshuffled<br>his cabinet yesterday,<br>replacing several top<br>ministers in an effort to<br>boost his popularity,<br>consolidate political support<br>and quicken the pace of<br>reforms in the world #39;s<br>second-largest economy."
-          ],
-          [
-           "The remnants of Hurricane<br>Jeanne rained out Monday's<br>game between the Mets and the<br>Atlanta Braves. It will be<br>made up Tuesday as part of a<br>doubleheader."
-          ],
-          [
-           "AP - NASCAR is not expecting<br>any immediate changes to its<br>top-tier racing series<br>following the merger between<br>telecommunications giant<br>Sprint Corp. and Nextel<br>Communications Inc."
-          ],
-          [
-           "AP - Shawn Fanning's Napster<br>software enabled countless<br>music fans to swap songs on<br>the Internet for free, turning<br>him into the recording<br>industry's enemy No. 1 in the<br>process."
-          ],
-          [
-           "TBILISI (Reuters) - At least<br>two Georgian soldiers were<br>killed and five wounded in<br>artillery fire with<br>separatists in the breakaway<br>region of South Ossetia,<br>Georgian officials said on<br>Wednesday."
-          ],
-          [
-           "Like wide-open races? You<br>#39;ll love the Big 12 North.<br>Here #39;s a quick morning<br>line of the Big 12 North as it<br>opens conference play this<br>weekend."
-          ],
-          [
-           "Reuters - Walt Disney Co.<br>is\\increasing investment in<br>video games for hand-held<br>devices and\\plans to look for<br>acquisitions of small game<br>publishers and\\developers,<br>Disney consumer products<br>Chairman Andy Mooney said\\on<br>Monday."
-          ],
-          [
-           "Taquan Dean scored 22 points,<br>Francisco Garcia added 19 and<br>No. 13 Louisville withstood a<br>late rally to beat Florida<br>74-70 Saturday."
-          ],
-          [
-           "BANGKOK - A UN conference last<br>week banned commercial trade<br>in the rare Irrawaddy dolphin,<br>a move environmentalists said<br>was needed to save the<br>threatened species."
-          ],
-          [
-           "Laksamana.Net - Two Indonesian<br>female migrant workers freed<br>by militants in Iraq are<br>expected to arrive home within<br>a day or two, the Foreign<br>Affairs Ministry said<br>Wednesday (6/10/04)."
-          ],
-          [
-           "A bitter row between America<br>and the European Union over<br>alleged subsidies to rival<br>aircraft makers Boeing and<br>Airbus intensified yesterday."
-          ],
-          [
-           "NEW YORK -- This was all about<br>Athens, about redemption for<br>one and validation for the<br>other. Britain's Paula<br>Radcliffe, the fastest female<br>marathoner in history, failed<br>to finish either of her<br>Olympic races last summer.<br>South Africa's Hendrik Ramaala<br>was a five-ringed dropout,<br>too, reinforcing his<br>reputation as a man who could<br>go only half the distance."
-          ],
-          [
-           "Reuters - Online media company<br>Yahoo Inc.\\ late on Monday<br>rolled out tests of redesigned<br>start\\pages for its popular<br>Yahoo.com and My.Yahoo.com<br>sites."
-          ],
-          [
-           "Amsterdam (pts) - Dutch<br>electronics company Philips<br>http://www.philips.com has<br>announced today, Friday, that<br>it has cut its stake in Atos<br>Origin by more than a half."
-          ],
-          [
-           "TORONTO (CP) - Two-thirds of<br>banks around the world have<br>reported an increase in the<br>volume of suspicious<br>activities that they report to<br>police, a new report by KPMG<br>suggests."
-          ],
-          [
-           "The Sun may have captured<br>thousands or even millions of<br>asteroids from another<br>planetary system during an<br>encounter more than four<br>billion years ago, astronomers<br>are reporting."
-          ],
-          [
-           "LONDON -- Ernie Els has set<br>his sights on an improved<br>putting display this week at<br>the World Golf Championships<br>#39; NEC Invitational in<br>Akron, Ohio, after the<br>disappointment of tying for<br>fourth place at the PGA<br>Championship last Sunday."
-          ],
-          [
-           "The Atkins diet frenzy slowed<br>growth briefly, but the<br>sandwich business is booming,<br>with \\$105 billion in sales<br>last year."
-          ],
-          [
-           "Luxury carmaker Jaguar said<br>Friday it was stopping<br>production at a factory in<br>central England, resulting in<br>a loss of 1,100 jobs,<br>following poor sales in the<br>key US market."
-          ],
-          [
-           "A bus was hijacked today and<br>shots were fired at police who<br>surrounded it on the outskirts<br>of Athens. Police did not know<br>how many passengers were<br>aboard the bus."
-          ],
-          [
-           "Thumb through the book - then<br>buy a clean copy from Amazon"
-          ],
-          [
-           "AP - President Bashar Assad<br>shuffled his Cabinet on<br>Monday, just weeks after the<br>United States and the United<br>Nations challenged Syria over<br>its military presence in<br>Lebanon and the security<br>situation along its border<br>with Iraq."
-          ],
-          [
-           "Fiji #39;s Vijay Singh<br>replaced Tiger Woods as the<br>world #39;s No.1 ranked golfer<br>today by winning the PGA<br>Deutsche Bank Championship."
-          ],
-          [
-           "LEIPZIG, Germany : Jurgen<br>Klinsmann enjoyed his first<br>home win as German manager<br>with his team defeating ten-<br>man Cameroon 3-0 in a friendly<br>match."
-          ],
-          [
-           "AP - Kevin Brown had a chance<br>to claim a place in Yankees<br>postseason history with his<br>start in Game 7 of the AL<br>championship series."
-          ],
-          [
-           "Reuters - High-definition<br>television can\\show the sweat<br>beading on an athlete's brow,<br>but the cost of\\all the<br>necessary electronic equipment<br>can get a shopper's own\\pulse<br>racing."
-          ],
-          [
-           "HOMESTEAD, Fla. -- Kurt Busch<br>got his first big break in<br>NASCAR by winning a 1999<br>talent audition nicknamed<br>quot;The Gong Show. quot; He<br>was selected from dozens of<br>unknown, young race drivers to<br>work for one of the sport<br>#39;s most famous team owners,<br>Jack Roush."
-          ],
-          [
-           "AP - President Vladimir Putin<br>has signed a bill confirming<br>Russia's ratification of the<br>Kyoto Protocol, the Kremlin<br>said Friday, clearing the way<br>for the global climate pact to<br>come into force early next<br>year."
-          ],
-          [
-           "John Gibson said Friday that<br>he decided to resign as chief<br>executive officer of<br>Halliburton Energy Services<br>when it became apparent he<br>couldn #39;t become the CEO of<br>the entire corporation, after<br>getting a taste of the No."
-          ],
-          [
-           "MacCentral - Apple Computer<br>Inc. on Monday released an<br>update for Apple Remote<br>Desktop (ARD), the company's<br>software solution to assist<br>Mac system administrators and<br>computer managers with asset<br>management, software<br>distribution and help desk<br>support. ARD 2.1 includes<br>several enhancements and bug<br>fixes."
-          ],
-          [
-           "NEW YORK (Reuters) - Outback<br>Steakhouse Inc. said Tuesday<br>it lost about 130 operating<br>days and up to \\$2 million in<br>revenue because it had to<br>close some restaurants in the<br>South due to Hurricane<br>Charley."
-          ],
-          [
-           "State insurance commissioners<br>from across the country have<br>proposed new rules governing<br>insurance brokerage fees,<br>winning praise from an<br>industry group and criticism<br>from"
-          ],
-          [
-           "AP - The authenticity of newly<br>unearthed memos stating that<br>George W. Bush failed to meet<br>standards of the Texas Air<br>National Guard during the<br>Vietnam War was questioned<br>Thursday by the son of the<br>late officer who reportedly<br>wrote the memos."
-          ],
-          [
-           "Zurich, Switzerland (Sports<br>Network) - Former world No. 1<br>Venus Williams advanced on<br>Thursday and will now meet<br>Wimbledon champion Maria<br>Sharapova in the quarterfinals<br>at the \\$1."
-          ],
-          [
-           "INDIA #39;S cricket chiefs<br>began a frenetic search today<br>for a broadcaster to show next<br>month #39;s home series<br>against world champion<br>Australia after cancelling a<br>controversial \\$US308 million<br>(\\$440 million) television<br>deal."
-          ],
-          [
-           "Canadian Press - OAKVILLE,<br>Ont. (CP) - The body of a<br>missing autistic man was<br>pulled from a creek Monday,<br>just metres from where a key<br>piece of evidence was<br>uncovered but originally<br>overlooked because searchers<br>had the wrong information."
-          ],
-          [
-           "SOFTWARE giant Oracle #39;s<br>stalled \\$7.7bn (4.2bn) bid to<br>take over competitor<br>PeopleSoft has received a huge<br>boost after a US judge threw<br>out an anti-trust lawsuit<br>filed by the Department of<br>Justice to block the<br>acquisition."
-          ],
-          [
-           "The International Olympic<br>Committee (IOC) has urged<br>Beijing to ensure the city is<br>ready to host the 2008 Games<br>well in advance, an official<br>said on Wednesday."
-          ],
-          [
-           "AFP - German Chancellor<br>Gerhard Schroeder arrived in<br>Libya for an official visit<br>during which he is to hold<br>talks with Libyan leader<br>Moamer Kadhafi."
-          ],
-          [
-           "The fastest-swiveling space<br>science observatory ever built<br>rocketed into orbit on<br>Saturday to scan the universe<br>for celestial explosions."
-          ],
-          [
-           "The government will examine<br>claims 100,000 Iraqi civilians<br>have been killed since the US-<br>led invasion, Jack Straw says."
-          ],
-          [
-           "Virginia Tech scores 24 points<br>off four first-half turnovers<br>in a 55-6 wipeout of Maryland<br>on Thursday to remain alone<br>atop the ACC."
-          ],
-          [
-           "Copernic Unleashes Desktop<br>Search Tool\\\\Copernic<br>Technologies Inc. today<br>announced Copernic Desktop<br>Search(TM) (CDS(TM)), \"The<br>Search Engine For Your PC<br>(TM).\" Copernic has used the<br>experience gained from over 30<br>million downloads of its<br>Windows-based Web search<br>software to develop CDS, a<br>desktop search product that<br>users are saying is far ..."
-          ],
-          [
-           "The DVD Forum moved a step<br>further toward the advent of<br>HD DVD media and drives with<br>the approval of key physical<br>specifications at a meeting of<br>the organisations steering<br>committee last week."
-          ],
-          [
-           "Eton College and Clarence<br>House joined forces yesterday<br>to deny allegations due to be<br>made at an employment tribunal<br>today by a former art teacher<br>that she improperly helped<br>Prince Harry secure an A-level<br>pass in art two years ago."
-          ],
-          [
-           "AFP - Great Britain's chances<br>of qualifying for the World<br>Group of the Davis Cup were<br>evaporating rapidly after<br>Austria moved into a 2-1 lead<br>following the doubles."
-          ],
-          [
-           "AP - Martina Navratilova's<br>long, illustrious career will<br>end without an Olympic medal.<br>The 47-year-old Navratilova<br>and Lisa Raymond lost 6-4,<br>4-6, 6-4 on Thursday night to<br>fifth-seeded Shinobu Asagoe<br>and Ai Sugiyama of Japan in<br>the quarterfinals, one step<br>shy of the medal round."
-          ],
-          [
-           "Often pigeonholed as just a<br>seller of televisions and DVD<br>players, Royal Philips<br>Electronics said third-quarter<br>profit surged despite a slide<br>into the red by its consumer<br>electronics division."
-          ],
-          [
-           "AP - Google, the Internet<br>search engine, has done<br>something that law enforcement<br>officials and their computer<br>tools could not: Identify a<br>man who died in an apparent<br>hit-and-run accident 11 years<br>ago in this small town outside<br>Yakima."
-          ],
-          [
-           "We are all used to IE getting<br>a monthly new security bug<br>found, but Winamp? In fact,<br>this is not the first security<br>flaw found in the application."
-          ],
-          [
-           "The Apache Software Foundation<br>and the Debian Project said<br>they won't support the Sender<br>ID e-mail authentication<br>standard in their products."
-          ],
-          [
-           "USATODAY.com - The newly<br>restored THX 1138 arrives on<br>DVD today with Star Wars<br>creator George Lucas' vision<br>of a Brave New World-like<br>future."
-          ],
-          [
-           "Office Depot Inc. (ODP.N:<br>Quote, Profile, Research) on<br>Tuesday warned of weaker-than-<br>expected profits for the rest<br>of the year because of<br>disruptions from the string of<br>hurricanes"
-          ],
-          [
-           "THE photo-equipment maker<br>Kodak yesterday announced<br>plans to axe 600 jobs in the<br>UK and close a factory in<br>Nottinghamshire, in a move in<br>line with the giants global<br>restructuring strategy<br>unveiled last January."
-          ],
-          [
-           "The chances of scientists<br>making any one of five<br>discoveries by 2010 have been<br>hugely underestimated,<br>according to bookmakers."
-          ],
-          [
-           "Asia-Pacific leaders meet in<br>Australia to discuss how to<br>keep nuclear weapons out of<br>the hands of extremists."
-          ],
-          [
-           " TALL AFAR, Iraq -- A three-<br>foot-high coil of razor wire,<br>21-ton armored vehicles and<br>American soldiers with black<br>M-4 assault rifles stood<br>between tens of thousands of<br>people and their homes last<br>week."
-          ],
-          [
-           "PSV Eindhoven re-established<br>their five-point lead at the<br>top of the Dutch Eredivisie<br>today with a 2-0 win at<br>Vitesse Arnhem. Former<br>Sheffield Wednesday striker<br>Gerald Sibon put PSV ahead in<br>the 56th minute"
-          ],
-          [
-           "China's central bank on<br>Thursday raised interest rates<br>for the first time in nearly a<br>decade, signaling deepening<br>unease with the breakneck pace<br>of development and an intent<br>to reign in a construction<br>boom now sowing fears of<br>runaway inflation."
-          ],
-          [
-           "Deepening its commitment to<br>help corporate users create<br>SOAs (service-oriented<br>architectures) through the use<br>of Web services, IBM's Global<br>Services unit on Thursday<br>announced the formation of an<br>SOA Management Practice."
-          ],
-          [
-           "TODAY AUTO RACING 3 p.m. --<br>NASCAR Nextel Cup Sylvania 300<br>qualifying at N.H.<br>International Speedway,<br>Loudon, N.H., TNT PRO BASEBALL<br>7 p.m. -- Red Sox at New York<br>Yankees, Ch. 38, WEEI (850)<br>(on cable systems where Ch. 38<br>is not available, the game<br>will air on NESN); Chicago<br>Cubs at Cincinnati, ESPN 6<br>p.m. -- Eastern League finals:<br>..."
-          ],
-          [
-           "MUMBAI, SEPTEMBER 21: The<br>Board of Control for Cricket<br>in India (BCCI) today informed<br>the Bombay High Court that it<br>was cancelling the entire<br>tender process regarding<br>cricket telecast rights as<br>also the conditional deal with<br>Zee TV."
-          ],
-          [
-           "CHICAGO - Delta Air Lines<br>(DAL) said Wednesday it plans<br>to eliminate between 6,000 and<br>6,900 jobs during the next 18<br>months, implement a 10 across-<br>the-board pay reduction and<br>reduce employee benefits."
-          ],
-          [
-           "LAKE GEORGE, N.Y. - Even<br>though he's facing double hip<br>replacement surgery, Bill<br>Smith is more than happy to<br>struggle out the door each<br>morning, limp past his brand<br>new P.T..."
-          ],
-          [
-           " NEW YORK (Reuters) - U.S.<br>stocks were likely to open<br>flat  on Wednesday, with high<br>oil prices and profit warnings<br>weighing  on the market before<br>earnings reports start and key<br>jobs data  is released this<br>week."
-          ],
-          [
-           "Best known for its popular<br>search engine, Google is<br>rapidly rolling out new<br>products and muscling into<br>Microsoft's stronghold: the<br>computer desktop. The<br>competition means consumers<br>get more choices and better<br>products."
-          ],
-          [
-           "Toshiba Corp. #39;s new<br>desktop-replacement multimedia<br>notebooks, introduced on<br>Tuesday, are further evidence<br>that US consumers still have<br>yet to embrace the mobility<br>offered by Intel Corp."
-          ],
-          [
-           "JEJU, South Korea : Grace Park<br>of South Korea won an LPGA<br>Tour tournament, firing a<br>seven-under-par 65 in the<br>final round of the<br>1.35-million dollar CJ Nine<br>Bridges Classic."
-          ],
-          [
-           " JERUSALEM (Reuters) - Israeli<br>Prime Minister Ariel Sharon<br>poured cold water on Tuesday<br>on recent international<br>efforts to  restart stalled<br>peace talks with Syria, saying<br>there was \"no  possibility\" of<br>returning to previous<br>discussions."
-          ],
-          [
-           "Dutch smugness was slapped<br>hard during the past<br>fortnight. The rude awakening<br>began with the barbaric<br>slaying of controversial<br>filmmaker Theo van Gogh on<br>November 2. Then followed a<br>reciprocal cycle of some"
-          ],
-          [
-           "AP - The NHL will lock out its<br>players Thursday, starting a<br>work stoppage that threatens<br>to keep the sport off the ice<br>for the entire 2004-05 season."
-          ],
-          [
-           " MOSCOW (Reuters) - Russia's<br>Gazprom said on Tuesday it<br>will  bid for embattled oil<br>firm YUKOS' main unit next<br>month, as the  Kremlin seeks<br>to turn the world's biggest<br>gas producer into a  major oil<br>player."
-          ],
-          [
-           "pee writes  quot;A passenger<br>on a commuter plane in<br>northern Norway attacked both<br>pilots and at least one<br>passenger with an axe as the<br>aircraft was coming in to<br>land."
-          ],
-          [
-           "Aregular Amazon customer,<br>Yvette Thompson has found<br>shopping online to be mostly<br>convenient and trouble-free.<br>But last month, after ordering<br>two CDs on Amazon.com, the<br>Silver Spring reader<br>discovered on her bank<br>statement that she was double-<br>charged for the \\$26.98 order.<br>And there was a \\$25 charge<br>that was a mystery."
-          ],
-          [
-           "Prime Minister Ariel Sharon<br>pledged Sunday to escalate a<br>broad Israeli offensive in<br>northern Gaza, saying troops<br>will remain until Palestinian<br>rocket attacks are halted.<br>Israeli officials said the<br>offensive -- in which 58<br>Palestinians and three<br>Israelis have been killed --<br>will help clear the way for an<br>Israeli withdrawal."
-          ],
-          [
-           "Federal Reserve officials<br>raised a key short-term<br>interest rate Tuesday for the<br>fifth time this year, and<br>indicated they will gradually<br>move rates higher next year to<br>keep inflation under control<br>as the economy expands."
-          ],
-          [
-           "Canadians are paying more to<br>borrow money for homes, cars<br>and other purchases today<br>after a quarter-point<br>interest-rate increase by the<br>Bank of Canada yesterday was<br>quickly matched by the<br>chartered banks."
-          ],
-          [
-           "NEW YORK - Wall Street<br>professionals know to keep<br>their expectations in check in<br>September, historically the<br>worst month of the year for<br>stocks. As summertime draws to<br>a close, money managers are<br>getting back to business,<br>cleaning house, and often<br>sending the market lower in<br>the process..."
-          ],
-          [
-           "A group linked to al Qaeda<br>ally Abu Musab al-Zarqawi said<br>it had tried to kill Iraq<br>#39;s environment minister on<br>Tuesday and warned it would<br>not miss next time, according<br>to an Internet statement."
-          ],
-          [
-           "The Israeli military killed<br>four Palestinian militants on<br>Wednesday as troops in tanks<br>and armored vehicles pushed<br>into another town in the<br>northern Gaza Strip, extending"
-          ],
-          [
-           "When Paula Radcliffe dropped<br>out of the Olympic marathon<br>miles from the finish, she<br>sobbed uncontrollably.<br>Margaret Okayo knew the<br>feeling."
-          ],
-          [
-           "Delta Air Lines is to issue<br>millions of new shares without<br>shareholder consent as part of<br>moves to ensure its survival."
-          ],
-          [
-           "First baseman Richie Sexson<br>agrees to a four-year contract<br>with the Seattle Mariners on<br>Wednesday."
-          ],
-          [
-           "KIRKUK, Iraq - A suicide<br>attacker detonated a car bomb<br>Saturday outside a police<br>academy in the northern Iraqi<br>city of Kirkuk as hundreds of<br>trainees and civilians were<br>leaving for the day, killing<br>at least 20 people and<br>wounding 36, authorities said.<br>Separately, U.S and Iraqi<br>forces clashed with insurgents<br>in another part of northern<br>Iraq after launching an<br>operation to destroy an<br>alleged militant cell in the<br>town of Tal Afar, the U.S..."
-          ],
-          [
-           "Genta (GNTA:Nasdaq - news -<br>research) is never boring!<br>Monday night, the company<br>announced that its phase III<br>Genasense study in chronic<br>lymphocytic leukemia (CLL) met<br>its primary endpoint, which<br>was tumor shrinkage."
-          ],
-          [
-           "Finnish mobile giant Nokia has<br>described its new Preminet<br>solution, which it launched<br>Monday (Oct. 25), as a<br>quot;major worldwide<br>initiative."
-          ],
-          [
-           "While the entire airline<br>industry #39;s finances are<br>under water, ATA Airlines will<br>have to hold its breath longer<br>than its competitors to keep<br>from going belly up."
-          ],
-          [
-           " SAN FRANCISCO (Reuters) - At<br>virtually every turn, Intel<br>Corp. executives are heaping<br>praise on an emerging long-<br>range  wireless technology<br>known as WiMAX, which can<br>blanket entire  cities with<br>high-speed Internet access."
-          ],
-          [
-           "One day after ousting its<br>chief executive, the nation's<br>largest insurance broker said<br>it will tell clients exactly<br>how much they are paying for<br>services and renounce back-<br>door payments from carriers."
-          ],
-          [
-           "LONDON (CBS.MW) -- Outlining<br>an expectation for higher oil<br>prices and increasing demand,<br>Royal Dutch/Shell on Wednesday<br>said it #39;s lifting project<br>spending to \\$45 billion over<br>the next three years."
-          ],
-          [
-           "Tuesday #39;s meeting could<br>hold clues to whether it<br>#39;ll be a November or<br>December pause in rate hikes.<br>By Chris Isidore, CNN/Money<br>senior writer."
-          ],
-          [
-           "Phishing is one of the<br>fastest-growing forms of<br>personal fraud in the world.<br>While consumers are the most<br>obvious victims, the damage<br>spreads far wider--hurting<br>companies #39; finances and<br>reputations and potentially"
-          ],
-          [
-           "Reuters - The U.S. Interior<br>Department on\\Friday gave<br>final approval to a plan by<br>ConocoPhillips and\\partner<br>Anadarko Petroleum Corp. to<br>develop five tracts around\\the<br>oil-rich Alpine field on<br>Alaska's North Slope."
-          ],
-          [
-           "The dollar may fall against<br>the euro for a third week in<br>four on concern near-record<br>crude oil prices will temper<br>the pace of expansion in the<br>US economy, a survey by<br>Bloomberg News indicates."
-          ],
-          [
-           "The battle for the British-<br>based Chelsfield plc hotted up<br>at the weekend, with reports<br>from London that the property<br>giant #39;s management was<br>working on its own bid to<br>thwart the 585 million (\\$A1."
-          ],
-          [
-           "Atari has opened the initial<br>sign-up phase of the closed<br>beta for its Dungeons  amp;<br>Dragons real-time-strategy<br>title, Dragonshard."
-          ],
-          [
-           "AP - Many states are facing<br>legal challenges over possible<br>voting problems Nov. 2. A look<br>at some of the developments<br>Thursday:"
-          ],
-          [
-           "Israeli troops withdrew from<br>the southern Gaza Strip town<br>of Khan Yunis on Tuesday<br>morning, following a 30-hour<br>operation that left 17<br>Palestinians dead."
-          ],
-          [
-           "Notes and quotes from various<br>drivers following California<br>Speedway #39;s Pop Secret 500.<br>Jeff Gordon slipped to second<br>in points following an engine<br>failure while Jimmie Johnson<br>moved back into first."
-          ],
-          [
-           "PM-designate Omar Karameh<br>forms a new 30-member cabinet<br>which includes women for the<br>first time."
-          ],
-          [
-           "Bahrain #39;s king pardoned a<br>human rights activist who<br>convicted of inciting hatred<br>of the government and<br>sentenced to one year in<br>prison Sunday in a case linked<br>to criticism of the prime<br>minister."
-          ],
-          [
-           "Big Blue adds features, beefs<br>up training efforts in China;<br>rival Unisys debuts new line<br>and pricing plan."
-          ],
-          [
-           " MEMPHIS, Tenn. (Sports<br>Network) - The Memphis<br>Grizzlies  signed All-Star<br>forward Pau Gasol to a multi-<br>year contract on  Friday.<br>Terms of the deal were not<br>announced."
-          ],
-          [
-           "Leaders from 38 Asian and<br>European nations are gathering<br>in Vietnam for a summit of the<br>Asia-Europe Meeting, know as<br>ASEM. One thousand delegates<br>are to discuss global trade<br>and regional politics during<br>the two-day forum."
-          ],
-          [
-           "A US soldier has pleaded<br>guilty to murdering a wounded<br>16-year-old Iraqi boy. Staff<br>Sergeant Johnny Horne was<br>convicted Friday of the<br>unpremeditated murder"
-          ],
-          [
-           "Andre Agassi brushed past<br>Jonas Bjorkman 6-3 6-4 at the<br>Stockholm Open on Thursday to<br>set up a quarter-final meeting<br>with Spanish sixth seed<br>Fernando Verdasco."
-          ],
-          [
-           "South Korea's Hynix<br>Semiconductor Inc. and Swiss-<br>based STMicroelectronics NV<br>signed a joint-venture<br>agreement on Tuesday to<br>construct a memory chip<br>manufacturing plant in Wuxi,<br>about 100 kilometers west of<br>Shanghai, in China."
-          ],
-          [
-           "SAN DIEGO --(Business Wire)--<br>Oct. 11, 2004 -- Breakthrough<br>PeopleSoft EnterpriseOne 8.11<br>Applications Enable<br>Manufacturers to Become<br>Demand-Driven."
-          ],
-          [
-           "Reuters - Oil prices rose on<br>Friday as tight\\supplies of<br>distillate fuel, including<br>heating oil, ahead of\\the<br>northern hemisphere winter<br>spurred buying."
-          ],
-          [
-           "Well, Intel did say -<br>dismissively of course - that<br>wasn #39;t going to try to<br>match AMD #39;s little dual-<br>core Opteron demo coup of last<br>week and show off a dual-core<br>Xeon at the Intel Developer<br>Forum this week and - as good<br>as its word - it didn #39;t."
-          ],
-          [
-           "Guinea-Bissau #39;s army chief<br>of staff and former interim<br>president, General Verissimo<br>Correia Seabra, was killed<br>Wednesday during unrest by<br>mutinous soldiers in the<br>former Portuguese"
-          ],
-          [
-           "31 October 2004 -- Exit polls<br>show that Prime Minister<br>Viktor Yanukovich and<br>challenger Viktor Yushchenko<br>finished on top in Ukraine<br>#39;s presidential election<br>today and will face each other<br>in a run-off next month."
-          ],
-          [
-           "Nov. 18, 2004 - An FDA<br>scientist says the FDA, which<br>is charged with protecting<br>America #39;s prescription<br>drug supply, is incapable of<br>doing so."
-          ],
-          [
-           "Rock singer Bono pledges to<br>spend the rest of his life<br>trying to eradicate extreme<br>poverty around the world."
-          ],
-          [
-           "AP - Just when tourists<br>thought it was safe to go back<br>to the Princess Diana memorial<br>fountain, the mud has struck."
-          ],
-          [
-           "The UK's inflation rate fell<br>in September, thanks in part<br>to a fall in the price of<br>airfares, increasing the<br>chance that interest rates<br>will be kept on hold."
-          ],
-          [
-           " HONG KONG/SAN FRANCISCO<br>(Reuters) - IBM is selling its<br>PC-making business to China's<br>largest personal computer<br>company, Lenovo Group Ltd.,<br>for \\$1.25 billion, marking<br>the U.S.  firm's retreat from<br>an industry it helped pioneer<br>in 1981."
-          ],
-          [
-           "AP - Three times a week, The<br>Associated Press picks an<br>issue and asks President Bush<br>and Democratic presidential<br>candidate John Kerry a<br>question about it. Today's<br>question and their responses:"
-          ],
-          [
-           " BOSTON (Reuters) - Boston was<br>tingling with anticipation on<br>Saturday as the Red Sox<br>prepared to host Game One of<br>the World  Series against the<br>St. Louis Cardinals and take a<br>step toward  ridding<br>themselves of a hex that has<br>hung over the team for  eight<br>decades."
-          ],
-          [
-           "FOR the first time since his<br>appointment as Newcastle<br>United manager, Graeme Souness<br>has been required to display<br>the strong-arm disciplinary<br>qualities that, to Newcastle<br>directors, made"
-          ],
-          [
-           "In an apparent damage control<br>exercise, Russian President<br>Vladimir Putin on Saturday<br>said he favored veto rights<br>for India as new permanent<br>member of the UN Security<br>Council."
-          ],
-          [
-           "Nordstrom reported a strong<br>second-quarter profit as it<br>continued to select more<br>relevant inventory and sell<br>more items at full price."
-          ],
-          [
-           "WHY IT HAPPENED Tom Coughlin<br>won his first game as Giants<br>coach and immediately<br>announced a fine amnesty for<br>all Giants. Just kidding."
-          ],
-          [
-           "A second-place finish in his<br>first tournament since getting<br>married was good enough to<br>take Tiger Woods from third to<br>second in the world rankings."
-          ],
-          [
-           " COLORADO SPRINGS, Colorado<br>(Reuters) - World 400 meters<br>champion Jerome Young has been<br>given a lifetime ban from<br>athletics for a second doping<br>offense, the U.S. Anti-Doping<br>Agency (USADA) said Wednesday."
-          ],
-          [
-           "AP - Nigeria's Senate has<br>ordered a subsidiary of<br>petroleum giant Royal/Dutch<br>Shell to pay a Nigerian ethnic<br>group  #36;1.5 billion for oil<br>spills in their homelands, but<br>the legislative body can't<br>enforce the resolution, an<br>official said Wednesday."
-          ],
-          [
-           "IT #39;S BEEN a heck of an<br>interesting two days here in<br>Iceland. I #39;ve seen some<br>interesting technology, heard<br>some inventive speeches and<br>met some people with different<br>ideas."
-          ],
-          [
-           "The Bank of England is set to<br>keep interest rates on hold<br>following the latest meeting<br>of the its Monetary Policy<br>Committee."
-          ],
-          [
-           "Australian troops in Baghdad<br>came under attack today for<br>the first time since the end<br>of the Iraq war when a car<br>bomb exploded injuring three<br>soldiers and damaging an<br>Australian armoured convoy."
-          ],
-          [
-           "The Bush administration upheld<br>yesterday the imposition of<br>penalty tariffs on shrimp<br>imports from China and<br>Vietnam, handing a victory to<br>beleaguered US shrimp<br>producers."
-          ],
-          [
-           "House prices rose 0.2 percent<br>in September compared with the<br>month before to stand up 17.8<br>percent on a year ago, the<br>Nationwide Building Society<br>says."
-          ],
-          [
-           "Reuters - Two clients of<br>Germany's Postbank\\(DPBGn.DE)<br>fell for an e-mail fraud that<br>led them to reveal\\money<br>transfer codes to a bogus Web<br>site -- the first case of\\this<br>scam in German, prosecutors<br>said on Thursday."
-          ],
-          [
-           "US spending on information<br>technology goods, services,<br>and staff will grow seven<br>percent in 2005 and continue<br>at a similar pace through<br>2008, according to a study<br>released Monday by Forrester<br>Research."
-          ],
-          [
-           "LONDON - In two years, Arsenal<br>will play their home matches<br>in the Emirates stadium. That<br>is what their new stadium at<br>Ashburton Grove will be called<br>after the Premiership<br>champions yesterday agreed to<br>the"
-          ],
-          [
-           "KNOXVILLE, Tenn. -- Jason<br>Campbell threw for 252 yards<br>and two touchdowns, and No. 8<br>Auburn proved itself as a<br>national title contender by<br>overwhelming No. 10 Tennessee,<br>34-10, last night."
-          ],
-          [
-           "Look, Ma, no hands! The U.S.<br>space agency's latest<br>spacecraft can run an entire<br>mission by itself. By Amit<br>Asaravala."
-          ],
-          [
-           "Pakistans decision to refuse<br>the International Atomic<br>Energy Agency to have direct<br>access to Dr AQ Khan is<br>correct on both legal and<br>political counts."
-          ],
-          [
-           "MANILA, 4 December 2004 - With<br>floods receding, rescuers<br>raced to deliver food to<br>famished survivors in<br>northeastern Philippine<br>villages isolated by back-to-<br>back storms that left more<br>than 650 people dead and<br>almost 400 missing."
-          ],
-          [
-           "Talks on where to build the<br>world #39;s first nuclear<br>fusion reactor ended without a<br>deal on Tuesday but the<br>European Union said Japan and<br>the United States no longer<br>firmly opposed its bid to put<br>the plant in France."
-          ],
-          [
-           "Joining America Online,<br>EarthLink and Yahoo against<br>spamming, Microsoft Corp.<br>today announced the filing of<br>three new anti-Spam lawsuits<br>under the CAN-SPAM federal law<br>as part of its initiative in<br>solving the Spam problem for<br>Internet users worldwide."
-          ],
-          [
-           "WASHINGTON -- Another<br>Revolution season concluded<br>with an overtime elimination.<br>Last night, the Revolution<br>thrice rallied from deficits<br>for a 3-3 tie with D.C. United<br>in the Eastern Conference<br>final, then lost in the first-<br>ever Major League Soccer match<br>decided by penalty kicks."
-          ],
-          [
-           "Dwyane Wade calls himself a<br>quot;sidekick, quot; gladly<br>accepting the role Kobe Bryant<br>never wanted in Los Angeles.<br>And not only does second-year<br>Heat point"
-          ],
-          [
-           "A nationwide inspection shows<br>Internet users are not as safe<br>online as they believe. The<br>inspections found most<br>consumers have no firewall<br>protection, outdated antivirus<br>software and dozens of spyware<br>programs secretly running on<br>their computers."
-          ],
-          [
-           "World number one golfer Vijay<br>Singh of Fiji has captured his<br>eighth PGA Tour event of the<br>year with a win at the 84<br>Lumber Classic in Farmington,<br>Pennsylvania."
-          ],
-          [
-           "The noise was deafening and<br>potentially unsettling in the<br>minutes before the start of<br>the men #39;s Olympic<br>200-meter final. The Olympic<br>Stadium crowd chanted<br>quot;Hellas!"
-          ],
-          [
-           "CLEVELAND - The White House<br>said Vice President Dick<br>Cheney faces a \"master<br>litigator\" when he debates<br>Sen. John Edwards Tuesday<br>night, a backhanded compliment<br>issued as the Republican<br>administration defended itself<br>against criticism that it has<br>not acknowledged errors in<br>waging war in Iraq..."
-          ],
-          [
-           "Brazilian forward Ronaldinho<br>scored a sensational goal for<br>Barcelona against Milan,<br>making for a last-gasp 2-1.<br>The 24-year-old #39;s<br>brilliant left-foot hit at the<br>Nou Camp Wednesday night sent<br>Barcelona atop of Group F."
-          ],
-          [
-           "Nortel Networks says it will<br>again delay the release of its<br>restated financial results.<br>The Canadian telecom vendor<br>originally promised to release<br>the restated results in<br>September."
-          ],
-          [
-           " CHICAGO (Reuters) - At first<br>glance, paying \\$13 or \\$14<br>for  a hard-wired Internet<br>laptop connection in a hotel<br>room might  seem expensive."
-          ],
-          [
-           "SEOUL (Reuters) - The chairman<br>of South Korea #39;s ruling<br>Uri Party resigned on Thursday<br>after saying his father had<br>served as a military police<br>officer during Japan #39;s<br>1910-1945 colonial rule on the<br>peninsula."
-          ],
-          [
-           "ALERE, Uganda -- Kasmiro<br>Bongonyinge remembers sitting<br>up suddenly in his bed. It was<br>just after sunrise on a summer<br>morning two years ago, and the<br>old man, 87 years old and<br>blind, knew something was<br>wrong."
-          ],
-          [
-           "Reuters - An investigation<br>into U.S. insurers\\and brokers<br>rattled insurance industry<br>stocks for a second day\\on<br>Friday as investors, shaken<br>further by subpoenas<br>delivered\\to the top U.S. life<br>insurer, struggled to gauge<br>how deep the\\probe might<br>reach."
-          ],
-          [
-           "Bee Staff Writer. SANTA CLARA<br>- Andre Carter #39;s back<br>injury has kept him out of the<br>49ers #39; lineup since Week<br>1. It #39;s also interfering<br>with him rooting on his alma<br>mater in person."
-          ],
-          [
-           "AP - Kellen Winslow Jr. ended<br>his second NFL holdout Friday."
-          ],
-          [
-           "JAKARTA - Official results<br>have confirmed former army<br>general Susilo Bambang<br>Yudhoyono as the winner of<br>Indonesia #39;s first direct<br>presidential election, while<br>incumbent Megawati<br>Sukarnoputri urged her nation<br>Thursday to wait for the<br>official announcement"
-          ],
-          [
-           "HOUSTON - With only a few<br>seconds left in a certain<br>victory for Miami, Peyton<br>Manning threw a meaningless<br>6-yard touchdown pass to<br>Marvin Harrison to cut the<br>score to 24-15."
-          ],
-          [
-           "Reuters - A ragged band of<br>children\\emerges ghost-like<br>from mists in Ethiopia's<br>highlands,\\thrusting bunches<br>of carrots at a car full of<br>foreigners."
-          ],
-          [
-           "DEADLY SCORER: Manchester<br>United #39;s Wayne Rooney<br>celebrating his three goals<br>against Fenerbahce this week<br>at Old Trafford. (AP)."
-          ],
-          [
-           "AP - A U.N. human rights<br>expert criticized the U.S.-led<br>coalition forces in<br>Afghanistan for violating<br>international law by allegedly<br>beating Afghans to death and<br>forcing some to remove their<br>clothes or wear hoods."
-          ],
-          [
-           "You can feel the confidence<br>level, not just with Team<br>Canada but with all of Canada.<br>There #39;s every expectation,<br>from one end of the bench to<br>the other, that Martin Brodeur<br>is going to hold the fort."
-          ],
-          [
-           "Heading into the first game of<br>a new season, every team has<br>question marks. But in 2004,<br>the Denver Broncos seemed to<br>have more than normal."
-          ],
-          [
-           " JERUSALEM (Reuters) - Israeli<br>Prime Minister Ariel Sharon<br>said on Thursday Yasser<br>Arafat's death could be a<br>turning point  for peacemaking<br>but he would pursue a<br>unilateral plan that  would<br>strip Palestinians of some<br>land they want for a state."
-          ],
-          [
-           " AL-ASAD AIRBASE, Iraq<br>(Reuters) - Defense Secretary<br>Donald  Rumsfeld swept into an<br>airbase in Iraq's western<br>desert Sunday  to make a<br>first-hand evaluation of<br>operations to quell a raging<br>Iraqi insurgency in his first<br>such visit in five months."
-          ],
-          [
-           "More than three out of four<br>(76 percent) consumers are<br>experiencing an increase in<br>spoofing and phishing<br>incidents, and 35 percent<br>receive fake e-mails at least<br>once a week, according to a<br>recent national study."
-          ],
-          [
-           "The Dow Jones Industrial<br>Average failed three times<br>this year to exceed its<br>previous high and fell to<br>about 10,000 each time, most<br>recently a week ago."
-          ],
-          [
-           "AP - Deep in the Atlantic<br>Ocean, undersea explorers are<br>living a safer life thanks to<br>germ-fighting clothing made in<br>Kinston."
-          ],
-          [
-           "Anaheim, Calif. - There is a<br>decidedly right lean to the<br>three-time champions of the<br>American League Central. In a<br>span of 26 days, the Minnesota<br>Twins lost the left side of<br>their infield to free agency."
-          ],
-          [
-           "Computer Associates Monday<br>announced the general<br>availability of three<br>Unicenter performance<br>management products for<br>mainframe data management."
-          ],
-          [
-           "Reuters - The European Union<br>approved on\\Wednesday the<br>first biotech seeds for<br>planting and sale across\\EU<br>territory, flying in the face<br>of widespread<br>consumer\\resistance to<br>genetically modified (GMO)<br>crops and foods."
-          ],
-          [
-           "With the NFL trading deadline<br>set for 4 p.m. Tuesday,<br>Patriots coach Bill Belichick<br>said there didn't seem to be<br>much happening on the trade<br>front around the league."
-          ],
-          [
-           "WASHINGTON - Democrat John<br>Kerry accused President Bush<br>on Monday of sending U.S.<br>troops to the \"wrong war in<br>the wrong place at the wrong<br>time\" and said he'd try to<br>bring them all home in four<br>years..."
-          ],
-          [
-           " SINGAPORE (Reuters) - Asian<br>share markets staged a  broad-<br>based retreat on Wednesday,<br>led by steelmakers amid<br>warnings of price declines,<br>but also enveloping technology<br>and  financial stocks on<br>worries that earnings may<br>disappoint."
-          ],
-          [
-           "p2pnet.net News:- A Microsoft<br>UK  quot;WEIGHING THE COST OF<br>LINUX VS. WINDOWS? LET #39;S<br>REVIEW THE FACTS quot;<br>magazine ad has been nailed as<br>misleading by Britain #39;s<br>Advertising Standards<br>Authority (ASA)."
-          ],
-          [
-           "More lorry drivers are<br>bringing supplies to Nepal's<br>capital in defiance of an<br>indefinite blockade by Maoist<br>rebels."
-          ],
-          [
-           "NEW YORK - CNN has a new boss<br>for the second time in 14<br>months: former CBS News<br>executive Jonathan Klein, who<br>will oversee programming and<br>editorial direction at the<br>second-ranked cable news<br>network."
-          ],
-          [
-           "Cut-price carrier Virgin Blue<br>said Tuesday the cost of using<br>Australian airports is<br>spiraling upward and asked the<br>government to review the<br>deregulated system of charges."
-          ],
-          [
-           "The retail sector overall may<br>be reporting a sluggish start<br>to the season, but holiday<br>shoppers are scooping up tech<br>goods at a brisk pace -- and<br>they're scouring the Web for<br>bargains more than ever.<br>&lt;FONT face=\"verdana,MS Sans<br>Serif,arial,helvetica\"<br>size=\"-2\" color=\"#666666\"&gt;&<br>lt;B&gt;-washingtonpost.com&lt<br>;/B&gt;&lt;/FONT&gt;"
-          ],
-          [
-           "AP - David Beckham broke his<br>rib moments after scoring<br>England's second goal in<br>Saturday's 2-0 win over Wales<br>in a World Cup qualifying<br>game."
-          ],
-          [
-           "Saudi Arabia, Kuwait and the<br>United Arab Emirates, which<br>account for almost half of<br>OPEC #39;s oil output, said<br>they #39;re committed to<br>boosting capacity to meet<br>soaring demand that has driven<br>prices to a record."
-          ],
-          [
-           "The US Commerce Department<br>said Thursday personal income<br>posted its biggest increase in<br>three months in August. The<br>government agency also said<br>personal spending was<br>unchanged after rising<br>strongly in July."
-          ],
-          [
-           " TOKYO (Reuters) - Tokyo's<br>Nikkei average opened up 0.54<br>percent on Monday with banks<br>and exporters leading the way<br>as a  stronger finish on Wall<br>Street and declining oil<br>prices soothed  worries over<br>the global economic outlook."
-          ],
-          [
-           " BEIJING (Reuters) - Floods<br>and landslides have killed 76<br>people in southwest China in<br>the past four days and washed<br>away  homes and roads, knocked<br>down power lines and cut off<br>at least  one city, state<br>media said on Monday."
-          ],
-          [
-           "Nothing changed at the top of<br>Serie A as all top teams won<br>their games to keep the<br>distance between one another<br>unaltered. Juventus came back<br>from behind against Lazio to<br>win thanks to another goal by<br>Ibrahimovic"
-          ],
-          [
-           "The team behind the Beagle 2<br>mission has unveiled its<br>design for a successor to the<br>British Mars lander."
-          ],
-          [
-           "Survey points to popularity in<br>Europe, the Middle East and<br>Asia of receivers that skip<br>the pay TV and focus on free<br>programming."
-          ],
-          [
-           "RICHMOND, Va. Jeremy Mayfield<br>won his first race in over<br>four years, taking the<br>Chevrolet 400 at Richmond<br>International Raceway after<br>leader Kurt Busch ran out of<br>gas eight laps from the<br>finish."
-          ],
-          [
-           "AP - Victims of the Sept. 11<br>attacks were mourned worldwide<br>Saturday, but in the Middle<br>East, amid sympathy for the<br>dead, Arabs said Washington's<br>support for Israel and the war<br>on terror launched in the<br>aftermath of the World Trade<br>Center's collapse have only<br>fueled anger and violence."
-          ],
-          [
-           "Linux publisher Red Hat Inc.<br>said Tuesday that information-<br>technology consulting firm<br>Unisys Corp. will begin<br>offering a business version of<br>the company #39;s open-source<br>operating system on its<br>servers."
-          ],
-          [
-           "SEATTLE - Ichiro Suzuki set<br>the major league record for<br>hits in a season with 258,<br>breaking George Sisler's<br>84-year-old mark with a pair<br>of singles Friday night. The<br>Seattle star chopped a leadoff<br>single in the first inning,<br>then made history with a<br>grounder up the middle in the<br>third..."
-          ],
-          [
-           "The intruder who entered<br>British Queen Elizabeth II<br>#39;s official Scottish<br>residence and caused a<br>security scare was a reporter<br>from the London-based Sunday<br>Times newspaper, local media<br>reported Friday."
-          ],
-          [
-           "IBM's p5-575, a specialized<br>server geared for high-<br>performance computing, has<br>eight 1.9GHz Power5<br>processors."
-          ],
-          [
-           "Bruce Wasserstein, head of<br>Lazard LLC, is asking partners<br>to take a one-third pay cut as<br>he readies the world #39;s<br>largest closely held<br>investment bank for a share<br>sale, people familiar with the<br>situation said."
-          ],
-          [
-           "Canadian Press - FREDERICTON<br>(CP) - A New Brunswick truck<br>driver arrested in Ontario<br>this week has been accused by<br>police of stealing 50,000 cans<br>of Moosehead beer."
-          ],
-          [
-           "Reuters - British police said<br>on Monday they had\\charged a<br>man with sending hoax emails<br>to relatives of people\\missing<br>since the Asian tsunami,<br>saying their loved ones<br>had\\been confirmed dead."
-          ],
-          [
-           "The Lemon Bay Manta Rays were<br>not going to let a hurricane<br>get in the way of football. On<br>Friday, they headed to the<br>practice field for the first<br>time in eight"
-          ],
-          [
-           "Microsoft Corp. Chairman Bill<br>Gates has donated \\$400,000 to<br>a campaign in California<br>trying to win approval of a<br>measure calling for the state<br>to sell \\$3 billion in bonds<br>to fund stem-cell research."
-          ],
-          [
-           "AP - Track star Marion Jones<br>filed a defamation lawsuit<br>Wednesday against the man<br>whose company is at the center<br>of a federal investigation<br>into illegal steroid use among<br>some of the nation's top<br>athletes."
-          ],
-          [
-           "LOS ANGELES - On Sept. 1,<br>former secretary of<br>Agriculture Dan Glickman<br>replaced the legendary Jack<br>Valenti as president and CEO<br>of Hollywood #39;s trade<br>group, the Motion Picture<br>Association of America."
-          ],
-          [
-           "England #39;s players hit out<br>at cricket #39;s authorities<br>tonight and claimed they had<br>been used as  quot;political<br>pawns quot; after the Zimbabwe<br>government produced a<br>spectacular U-turn to ensure<br>the controversial one-day<br>series will go ahead."
-          ],
-          [
-           "Newspaper publisher Pulitzer<br>Inc. said Sunday that company<br>officials are considering a<br>possible sale of the firm to<br>boost shareholder value."
-          ],
-          [
-           "Shares of Merck  amp; Co.<br>plunged almost 10 percent<br>yesterday after a media report<br>said that documents show the<br>pharmaceutical giant hid or<br>denied"
-          ],
-          [
-           "AP - The Japanese won the<br>pregame home run derby. Then<br>the game started and the major<br>league All-Stars put their<br>bats to work. Back-to-back<br>home runs by Moises Alou and<br>Vernon Wells in the fourth<br>inning and by Johnny Estrada<br>and Brad Wilkerson in the<br>ninth powered the major<br>leaguers past the Japanese<br>stars 7-3 Sunday for a 3-0<br>lead in the eight-game series."
-          ],
-          [
-           "Reuters - Wall Street was<br>expected to dip at\\Thursday's<br>opening, but shares of Texas<br>Instruments Inc.\\, may climb<br>after it gave upbeat earnings<br>guidance."
-          ],
-          [
-           "Chinese authorities detained a<br>prominent, U.S.-based Buddhist<br>leader in connection with his<br>plans to reopen an ancient<br>temple complex in the Chinese<br>province of Inner Mongolia<br>last week and have forced<br>dozens of his American<br>followers to leave the region,<br>local officials said<br>Wednesday."
-          ],
-          [
-           "The director of the National<br>Hurricane Center stays calm in<br>the midst of a storm, but<br>wants everyone in hurricane-<br>prone areas to get the message<br>from his media advisories:<br>Respect the storm's power and<br>make proper response plans."
-          ],
-          [
-           "With Chelsea losing their<br>unbeaten record and Manchester<br>United failing yet again to<br>win, William Hill now make<br>Arsenal red-hot 2/5 favourites<br>to retain the title."
-          ],
-          [
-           "Late in August, Boeing #39;s<br>top sales execs flew to<br>Singapore for a crucial sales<br>pitch. They were close to<br>persuading Singapore Airlines,<br>one of the world #39;s leading<br>airlines, to buy the American<br>company #39;s new jet, the<br>mid-sized 7E7."
-          ],
-          [
-           "SBC Communications and<br>BellSouth will acquire<br>YellowPages.com with the goal<br>of building the site into a<br>nationwide online business<br>index, the companies said<br>Thursday."
-          ],
-          [
-           "Theresa special bookcase in Al<br>Grohs office completely full<br>of game plans from his days in<br>the NFL. Green ones are from<br>the Jets."
-          ],
-          [
-           "SAN FRANCISCO Several<br>California cities and<br>counties, including Los<br>Angeles and San Francisco, are<br>suing Microsoft for what could<br>amount to billions of dollars."
-          ],
-          [
-           "Newcastle ensured their place<br>as top seeds in Friday #39;s<br>third round UEFA Cup draw<br>after holding Sporting Lisbon<br>to a 1-1 draw at St James #39;<br>Park."
-          ],
-          [
-           "Adorned with Turkish and EU<br>flags, Turkey #39;s newspapers<br>hailed Thursday an official EU<br>report recommending the<br>country start talks to join<br>the bloc, while largely<br>ignoring the stringent<br>conditions attached to the<br>announcement."
-          ],
-          [
-           "Google plans to release a<br>version of its desktop search<br>tool for computers that run<br>Apple Computer #39;s Mac<br>operating system, Google #39;s<br>chief executive, Eric Schmidt,<br>said Friday."
-          ],
-          [
-           "AMD : sicurezza e prestazioni<br>ottimali con il nuovo<br>processore mobile per notebook<br>leggeri e sottili; Acer Inc.<br>preme sull #39;acceleratore<br>con il nuovo notebook a<br>marchio Ferrari."
-          ],
-          [
-           "The sounds of tinkling bells<br>could be heard above the<br>bustle of the Farmers Market<br>on the Long Beach Promenade,<br>leading shoppers to a row of<br>bright red tin kettles dotting<br>a pathway Friday."
-          ],
-          [
-           "CBC SPORTS ONLINE - Bode<br>Miller continued his<br>impressive 2004-05 World Cup<br>skiing season by winning a<br>night slalom race in<br>Sestriere, Italy on Monday."
-          ],
-          [
-           "Firefox use around the world<br>climbed 34 percent in the last<br>month, according to a report<br>published by Web analytics<br>company WebSideStory Monday."
-          ],
-          [
-           "If a plastic card that gives<br>you credit for something you<br>don't want isn't your idea of<br>a great gift, you can put it<br>up for sale or swap."
-          ],
-          [
-           "WASHINGTON Aug. 17, 2004<br>Scientists are planning to<br>take the pulse of the planet<br>and more in an effort to<br>improve weather forecasts,<br>predict energy needs months in<br>advance, anticipate disease<br>outbreaks and even tell<br>fishermen where the catch will<br>be ..."
-          ],
-          [
-           "Damien Rhodes scored on a<br>2-yard run in the second<br>overtime, then Syracuse's<br>defense stopped Pittsburgh on<br>fourth and 1, sending the<br>Orange to a 38-31 victory<br>yesterday in Syracuse, N.Y."
-          ],
-          [
-           "AP - Anthony Harris scored 18<br>of his career-high 23 points<br>in the second half to help<br>Miami upset No. 19 Florida<br>72-65 Saturday and give first-<br>year coach Frank Haith his<br>biggest victory."
-          ],
-          [
-           "LONDON Santander Central<br>Hispano of Spain looked<br>certain to clinch its bid for<br>the British mortgage lender<br>Abbey National, after HBOS,<br>Britain #39;s biggest home-<br>loan company, said Wednesday<br>it would not counterbid, and<br>after the European Commission<br>cleared"
-          ],
-          [
-           "New communications technology<br>could spawn future products.<br>Could your purse tell you to<br>bring an umbrella?"
-          ],
-          [
-           " WASHINGTON (Reuters) - The<br>Justice Department is<br>investigating possible<br>accounting fraud at Fannie<br>Mae, bringing  greater<br>government scrutiny to bear on<br>the mortgage finance  company,<br>already facing a parallel<br>inquiry by the SEC, a source<br>close to the matter said on<br>Thursday."
-          ],
-          [
-           "AP - The five cities looking<br>to host the 2012 Summer Games<br>submitted bids to the<br>International Olympic<br>Committee on Monday, entering<br>the final stage of a long<br>process in hopes of landing<br>one of the biggest prizes in<br>sports."
-          ],
-          [
-           "SAP has won a \\$35 million<br>contract to install its human<br>resources software for the US<br>Postal Service. The NetWeaver-<br>based system will replace the<br>Post Office #39;s current<br>25-year-old legacy application"
-          ],
-          [
-           "The FIA has already cancelled<br>todays activities at Suzuka as<br>Super Typhoon Ma-On heads<br>towards the 5.807km circuit.<br>Saturday practice has been<br>cancelled altogether while<br>pre-qualifying and final<br>qualifying"
-          ],
-          [
-           "Thailand's prime minister<br>visits the southern town where<br>scores of Muslims died in army<br>custody after a rally."
-          ],
-          [
-           "Indian industrial group Tata<br>agrees to invest \\$2bn in<br>Bangladesh, the biggest single<br>deal agreed by a firm in the<br>south Asian country."
-          ],
-          [
-           "NewsFactor - For years,<br>companies large and small have<br>been convinced that if they<br>want the sophisticated<br>functionality of enterprise-<br>class software like ERP and<br>CRM systems, they must buy<br>pre-packaged applications.<br>And, to a large extent, that<br>remains true."
-          ],
-          [
-           "Following in the footsteps of<br>the RIAA, the MPAA (Motion<br>Picture Association of<br>America) announced that they<br>have began filing lawsuits<br>against people who use peer-<br>to-peer software to download<br>copyrighted movies off the<br>Internet."
-          ],
-          [
-           " GRAND PRAIRIE, Texas<br>(Reuters) - Betting on horses<br>was  banned in Texas until as<br>recently as 1987. Times have<br>changed  rapidly since.<br>Saturday, Lone Star Park race<br>track hosts the  \\$14 million<br>Breeders Cup, global racing's<br>end-of-season  extravaganza."
-          ],
-          [
-           "MacCentral - At a special<br>music event featuring Bono and<br>The Edge from rock group U2<br>held on Tuesday, Apple took<br>the wraps off the iPod Photo,<br>a color iPod available in 40GB<br>or 60GB storage capacities.<br>The company also introduced<br>the iPod U2, a special edition<br>of Apple's 20GB player clad in<br>black, equipped with a red<br>Click Wheel and featuring<br>engraved U2 band member<br>signatures. The iPod Photo is<br>available immediately, and<br>Apple expects the iPod U2 to<br>ship in mid-November."
-          ],
-          [
-           "Beijing: At least 170 miners<br>were trapped underground after<br>a gas explosion on Sunday<br>ignited a fire in a coalmine<br>in north-west China #39;s<br>Shaanxi province, reports<br>said."
-          ],
-          [
-           "The steel tubing company<br>reports sharply higher<br>earnings, but the stock is<br>falling."
-          ],
-          [
-           "It might be a stay of<br>execution for Coach P, or it<br>might just be a Christmas<br>miracle come early. SU #39;s<br>upset win over BC has given<br>hope to the Orange playing in<br>a post season Bowl game."
-          ],
-          [
-           "PHIL Neville insists<br>Manchester United don #39;t<br>fear anyone in the Champions<br>League last 16 and declared:<br>quot;Bring on the Italians."
-          ],
-          [
-           "Playboy Enterprises, the adult<br>entertainment company, has<br>announced plans to open a<br>private members club in<br>Shanghai even though the<br>company #39;s flagship men<br>#39;s magazine is still banned<br>in China."
-          ],
-          [
-           "Reuters - Oracle Corp is<br>likely to win clearance\\from<br>the European Commission for<br>its hostile  #36;7.7<br>billion\\takeover of rival<br>software firm PeopleSoft Inc.,<br>a source close\\to the<br>situation said on Friday."
-          ],
-          [
-           "TORONTO (CP) - Earnings<br>warnings from Celestica and<br>Coca-Cola along with a<br>slowdown in US industrial<br>production sent stock markets<br>lower Wednesday."
-          ],
-          [
-           "IBM (Quote, Chart) said it<br>would spend a quarter of a<br>billion dollars over the next<br>year and a half to grow its<br>RFID (define) business."
-          ],
-          [
-           "Eastman Kodak Co., the world<br>#39;s largest maker of<br>photographic film, said<br>Wednesday it expects sales of<br>digital products and services<br>to grow at an annual rate of<br>36 percent between 2003 and<br>2007, above prior growth rate<br>estimates of 26 percent<br>between 2002"
-          ],
-          [
-           "SAMARRA (Iraq): With renewe d<br>wave of skirmishes between the<br>Iraqi insurgents and the US-<br>led coalition marines, several<br>people including top police<br>officers were put to death on<br>Saturday."
-          ],
-          [
-           "SPACE.com - NASA released one<br>of the best pictures ever made<br>of Saturn's moon Titan as the<br>Cassini spacecraft begins a<br>close-up inspection of the<br>satellite today. Cassini is<br>making the nearest flyby ever<br>of the smog-shrouded moon."
-          ],
-          [
-           "AFP - The Iraqi government<br>plans to phase out slowly<br>subsidies on basic products,<br>such as oil and electricity,<br>which comprise 50 percent of<br>public spending, equal to 15<br>billion dollars, the planning<br>minister said."
-          ],
-          [
-           "ANNAPOLIS ROYAL, NS - Nova<br>Scotia Power officials<br>continued to keep the sluice<br>gates open at one of the<br>utility #39;s hydroelectric<br>plants Wednesday in hopes a<br>wayward whale would leave the<br>area and head for the open<br>waters of the Bay of Fundy."
-          ],
-          [
-           "TORONTO -- Toronto Raptors<br>point guard Alvin Williams<br>will miss the rest of the<br>season after undergoing<br>surgery on his right knee<br>Monday."
-          ],
-          [
-           "The federal agency that<br>insures pension plans said<br>that its deficit, already at<br>the highest in its history,<br>had doubled in its last fiscal<br>year, to \\$23.3 billion."
-          ],
-          [
-           "AFP - Like most US Latinos,<br>members of the extended<br>Rodriguez family say they will<br>cast their votes for Democrat<br>John Kerry in next month's<br>presidential polls."
-          ],
-          [
-           "A Milan judge on Tuesday opens<br>hearings into whether to put<br>on trial 32 executives and<br>financial institutions over<br>the collapse of international<br>food group Parmalat in one of<br>Europe #39;s biggest fraud<br>cases."
-          ],
-          [
-           "AP - Tennessee's two freshmen<br>quarterbacks have Volunteers<br>fans fantasizing about the<br>next four years. Brent<br>Schaeffer and Erik Ainge<br>surprised many with the nearly<br>seamless way they rotated<br>throughout a 42-17 victory<br>over UNLV on Sunday night."
-          ],
-          [
-           "In fact, Larry Ellison<br>compares himself to the<br>warlord, according to<br>PeopleSoft's former CEO,<br>defending previous remarks he<br>made."
-          ],
-          [
-           "FALLUJAH, Iraq -- Four Iraqi<br>fighters huddled in a trench,<br>firing rocket-propelled<br>grenades at Lieutenant Eric<br>Gregory's Bradley Fighting<br>Vehicle and the US tanks and<br>Humvees that were lumbering<br>through tight streets between<br>boxlike beige houses."
-          ],
-          [
-           "MADRID, Aug 18 (Reuters) -<br>Portugal captain Luis Figo<br>said on Wednesday he was<br>taking an indefinite break<br>from international football,<br>but would not confirm whether<br>his decision was final."
-          ],
-          [
-           "The Bank of England on<br>Thursday left its benchmark<br>interest rate unchanged, at<br>4.75 percent, as policy makers<br>assessed whether borrowing<br>costs, already the highest in<br>the Group of Seven, are<br>constraining consumer demand."
-          ],
-          [
-           "AP - Several thousand<br>Christians who packed a<br>cathedral compound in the<br>Egyptian capital hurled stones<br>at riot police Wednesday to<br>protest a woman's alleged<br>forced conversion to Islam. At<br>least 30 people were injured."
-          ],
-          [
-           "A group of Saudi religious<br>scholars have signed an open<br>letter urging Iraqis to<br>support jihad against US-led<br>forces.  quot;Fighting the<br>occupiers is a duty for all<br>those who are able, quot; they<br>said in a statement posted on<br>the internet at the weekend."
-          ],
-          [
-           "Fashion retailers Austin Reed<br>and Ted Baker have reported<br>contrasting fortunes on the<br>High Street. Austin Reed<br>reported interim losses of 2."
-          ],
-          [
-           "AP - Shaun Rogers is in the<br>backfield as often as some<br>running backs. Whether teams<br>dare to block Detroit's star<br>defensive tackle with one<br>player or follow the trend of<br>double-teaming him, he often<br>rips through offensive lines<br>with a rare combination of<br>size, speed, strength and<br>nimble footwork."
-          ],
-          [
-           " NEW YORK (Reuters) - A<br>federal judge on Friday<br>approved  Citigroup Inc.'s<br>\\$2.6 billion settlement with<br>WorldCom Inc.  investors who<br>lost billions when an<br>accounting scandal plunged<br>the telecommunications company<br>into bankruptcy protection."
-          ],
-          [
-           "The Lions and Eagles entered<br>Sunday #39;s game at Ford<br>Field in the same place --<br>atop their respective<br>divisions -- and with<br>identical 2-0 records."
-          ],
-          [
-           "An unspecified number of<br>cochlear implants to help<br>people with severe hearing<br>loss are being recalled<br>because they may malfunction<br>due to ear moisture, the US<br>Food and Drug Administration<br>announced."
-          ],
-          [
-           "Profits triple at McDonald's<br>Japan after the fast-food<br>chain starts selling larger<br>burgers."
-          ],
-          [
-           "After Marcos Moreno threw four<br>more interceptions in last<br>week's 14-13 overtime loss at<br>N.C. A T, Bison Coach Ray<br>Petty will start Antoine<br>Hartfield against Norfolk<br>State on Saturday."
-          ],
-          [
-           "You can empty your pockets of<br>change, take off your belt and<br>shoes and stick your keys in<br>the little tray. But if you've<br>had radiation therapy<br>recently, you still might set<br>off Homeland Security alarms."
-          ],
-          [
-           "Mountaineers retrieve three<br>bodies believed to have been<br>buried for 22 years on an<br>Indian glacier."
-          ],
-          [
-           "SEOUL, Oct 19 Asia Pulse -<br>LG.Philips LCD Co.<br>(KSE:034220), the world #39;s<br>second-largest maker of liquid<br>crystal display (LCD), said<br>Tuesday it has developed the<br>world #39;s largest organic<br>light emitting diode"
-          ],
-          [
-           "SOUTH WILLIAMSPORT, Pa. --<br>Looking ahead to the US<br>championship game almost cost<br>Conejo Valley in the<br>semifinals of the Little<br>League World Series."
-          ],
-          [
-           "The Cubs didn #39;t need to<br>fly anywhere near Florida to<br>be in the eye of the storm.<br>For a team that is going on<br>100 years since last winning a<br>championship, the only thing<br>they never are at a loss for<br>is controversy."
-          ],
-          [
-           "Security experts warn of<br>banner ads with a bad attitude<br>--and a link to malicious<br>code. Also: Phishers, be gone."
-          ],
-          [
-           "KETTERING, Ohio Oct. 12, 2004<br>- Cincinnati Bengals defensive<br>end Justin Smith pleaded not<br>guilty to a driving under the<br>influence charge."
-          ],
-          [
-           "com October 15, 2004, 5:11 AM<br>PT. Wood paneling and chrome<br>made your dad #39;s station<br>wagon look like a million<br>bucks, and they might also be<br>just the ticket for Microsoft<br>#39;s fledgling"
-          ],
-          [
-           "President Thabo Mbeki met with<br>Ivory Coast Prime Minister<br>Seydou Diarra for three hours<br>yesterday as part of talks<br>aimed at bringing peace to the<br>conflict-wracked Ivory Coast."
-          ],
-          [
-           "MINNEAPOLIS -- For much of the<br>2004 season, Twins pitcher<br>Johan Santana didn #39;t just<br>beat opposing hitters. Often,<br>he overwhelmed and owned them<br>in impressive fashion."
-          ],
-          [
-           "Britain #39;s inflation rate<br>fell in August further below<br>its 2.0 percent government-set<br>upper limit target with<br>clothing and footwear prices<br>actually falling, official<br>data showed on Tuesday."
-          ],
-          [
-           " KATHMANDU (Reuters) - Nepal's<br>Maoist rebels have<br>temporarily suspended a<br>crippling economic blockade of<br>the  capital from Wednesday,<br>saying the move was in<br>response to  popular appeals."
-          ],
-          [
-           "Reuters - An Algerian<br>suspected of being a leader\\of<br>the Madrid train bombers has<br>been identified as one of<br>seven\\people who blew<br>themselves up in April to<br>avoid arrest, Spain's\\Interior<br>Ministry said on Friday."
-          ],
-          [
-           "KABUL: An Afghan man was found<br>guilty on Saturday of killing<br>four journalists in 2001,<br>including two from Reuters,<br>and sentenced to death."
-          ],
-          [
-           "Yasser Arafat, the leader for<br>decades of a fight for<br>Palestinian independence from<br>Israel, has died at a military<br>hospital in Paris, according<br>to news reports."
-          ],
-          [
-           " LONDON (Reuters) - European<br>shares shrugged off a spike in<br>the euro to a fresh all-time<br>high Wednesday, with telecoms<br>again leading the way higher<br>after interim profits at<br>Britain's  mm02 beat<br>expectations."
-          ],
-          [
-           "WASHINGTON - Weighed down by<br>high energy prices, the US<br>economy grew slower than the<br>government estimated in the<br>April-June quarter, as higher<br>oil prices limited consumer<br>spending and contributed to a<br>record trade deficit."
-          ],
-          [
-           "CHICAGO United Airlines says<br>it will need even more labor<br>cuts than anticipated to get<br>out of bankruptcy. United told<br>a bankruptcy court judge in<br>Chicago today that it intends<br>to start talks with unions<br>next month on a new round of<br>cost savings."
-          ],
-          [
-           " JABALYA, Gaza Strip (Reuters)<br>- Israel pulled most of its<br>forces out of the northern<br>Gaza Strip Saturday after a<br>four-day  incursion it said<br>was staged to halt Palestinian<br>rocket attacks  on southern<br>Israeli towns."
-          ],
-          [
-           "Computer Associates<br>International yesterday<br>reported a 6 increase in<br>revenue during its second<br>fiscal quarter, but posted a<br>\\$94 million loss after paying<br>to settle government<br>investigations into the<br>company, it said yesterday."
-          ],
-          [
-           "THE Turkish embassy in Baghdad<br>was investigating a television<br>report that two Turkish<br>hostages had been killed in<br>Iraq, but no confirmation was<br>available so far, a senior<br>Turkish diplomat said today."
-          ],
-          [
-           "Reuters - Thousands of<br>supporters of<br>Ukraine's\\opposition leader,<br>Viktor Yushchenko, celebrated<br>on the streets\\in the early<br>hours on Monday after an exit<br>poll showed him\\winner of a<br>bitterly fought presidential<br>election."
-          ],
-          [
-           "LONDON : The United States<br>faced rare criticism over<br>human rights from close ally<br>Britain, with an official<br>British government report<br>taking Washington to task over<br>concerns about Iraq and the<br>Guantanamo Bay jail."
-          ],
-          [
-           "The University of California,<br>Berkeley, has signed an<br>agreement with the Samoan<br>government to isolate, from a<br>tree, the gene for a promising<br>anti- Aids drug and to share<br>any royalties from the sale of<br>a gene-derived drug with the<br>people of Samoa."
-          ],
-          [
-           "At a charity auction in New<br>Jersey last weekend, baseball<br>memorabilia dealer Warren<br>Heller was approached by a man<br>with an unusual but topical<br>request."
-          ],
-          [
-           " TOKYO (Reuters) - Tokyo's<br>Nikkei average jumped 2.5<br>percent  by mid-afternoon on<br>Monday as semiconductor-<br>related stocks such  as<br>Advantest Corp. mirrored a<br>rally by their U.S. peers<br>while  banks and brokerages<br>extended last week's gains."
-          ],
-          [
-           "INTER Milan coach Roberto<br>Mancini believes the club<br>#39;s lavish (northern) summer<br>signings will enable them to<br>mount a serious Serie A<br>challenge this season."
-          ],
-          [
-           "LONDON - A bomb threat that<br>mentioned Iraq forced a New<br>York-bound Greek airliner to<br>make an emergency landing<br>Sunday at London's Stansted<br>Airport escorted by military<br>jets, authorities said.    An<br>airport spokeswoman said an<br>Athens newspaper had received<br>a phone call saying there was<br>a bomb on board the Olympic<br>Airlines plane..."
-          ],
-          [
-           "Links to this week's topics<br>from search engine forums<br>across the web: New MSN Search<br>Goes LIVE in Beta - Microsoft<br>To Launch New Search Engine -<br>Google Launches 'Google<br>Advertising Professionals' -<br>Organic vs Paid Traffic ROI? -<br>Making Money With AdWords? -<br>Link Building 101"
-          ],
-          [
-           "AP - Brad Ott shot an 8-under<br>64 on Sunday to win the<br>Nationwide Tour's Price Cutter<br>Charity Championship for his<br>first Nationwide victory."
-          ],
-          [
-           "AP - New York Jets running<br>back Curtis Martin passed Eric<br>Dickerson and Jerome Bettis on<br>the NFL career rushing list<br>Sunday against the St. Louis<br>Rams, moving to fourth all-<br>time."
-          ],
-          [
-           "Eight conservation groups are<br>fighting the US government<br>over a plan to poison<br>thousands of prairie dogs in<br>the grasslands of South<br>Dakota, saying wildlife should<br>not take a backseat to<br>ranching interests."
-          ],
-          [
-           "ATHENS, Greece - Sheryl<br>Swoopes made three big plays<br>at the end - two baskets and<br>another on defense - to help<br>the United States squeeze out<br>a 66-62 semifinal victory over<br>Russia on Friday. Now, only<br>one game stands between the<br>U.S..."
-          ],
-          [
-           "Instead of standing for ante<br>meridian and post meridian,<br>though, fans will remember the<br>time periods of pre-Mia and<br>after-Mia. After playing for<br>18 years and shattering nearly<br>every record"
-          ],
-          [
-           "General Motors (GM) plans to<br>announce a massive<br>restructuring Thursday that<br>will eliminate as many as<br>12,000 jobs in Europe in a<br>move to stem the five-year<br>flow of red ink from its auto<br>operations in the region."
-          ],
-          [
-           "Scientists are developing a<br>device which could improve the<br>lives of kidney dialysis<br>patients."
-          ],
-          [
-           "KABUL, Afghanistan The Afghan<br>government is blaming drug<br>smugglers for yesterday #39;s<br>attack on the leading vice<br>presidential candidate ."
-          ],
-          [
-           "Stephon Marbury, concerned<br>about his lousy shooting in<br>Athens, used an off day to go<br>to the gym and work on his<br>shot. By finding his range, he<br>saved the United States #39;<br>hopes for a basketball gold<br>medal."
-          ],
-          [
-           " LONDON (Reuters) - Oil prices<br>held firm on Wednesday as<br>Hurricane Ivan closed off<br>crude output and shut<br>refineries in  the Gulf of<br>Mexico, while OPEC's Gulf<br>producers tried to  reassure<br>traders by recommending an<br>output hike."
-          ],
-          [
-           "State-owned, running a<br>monopoly on imports of jet<br>fuel to China #39;s fast-<br>growing aviation industry and<br>a prized member of Singapore<br>#39;s Stock Exchange."
-          ],
-          [
-           "Google has won a trade mark<br>dispute, with a District Court<br>judge finding that the search<br>engines sale of sponsored<br>search terms Geico and Geico<br>Direct did not breach car<br>insurance firm GEICOs rights<br>in the trade marked terms."
-          ],
-          [
-           "Wall Street bounded higher for<br>the second straight day<br>yesterday as investors reveled<br>in sharply falling oil prices<br>and the probusiness agenda of<br>the second Bush<br>administration. The Dow Jones<br>industrials gained more than<br>177 points for its best day of<br>2004, while the Standard  amp;<br>Poor's 500 closed at its<br>highest level since early<br>2002."
-          ],
-          [
-           "Key factors help determine if<br>outsourcing benefits or hurts<br>Americans."
-          ],
-          [
-           "The US Trade Representative on<br>Monday rejected the European<br>Union #39;s assertion that its<br>ban on beef from hormone-<br>treated cattle is now<br>justified by science and that<br>US and Canadian retaliatory<br>sanctions should be lifted."
-          ],
-          [
-           "One of the leading figures in<br>the Greek Orthodox Church, the<br>Patriarch of Alexandria Peter<br>VII, has been killed in a<br>helicopter crash in the Aegean<br>Sea."
-          ],
-          [
-           "Siding with chip makers,<br>Microsoft said it won't charge<br>double for its per-processor<br>licenses when dual-core chips<br>come to market next year."
-          ],
-          [
-           "NEW YORK -- Wall Street's<br>fourth-quarter rally gave<br>stock mutual funds a solid<br>performance for 2004, with<br>small-cap equity funds and<br>real estate funds scoring some<br>of the biggest returns. Large-<br>cap growth equities and<br>technology-focused funds had<br>the slimmest gains."
-          ],
-          [
-           "CANBERRA, Australia -- The<br>sweat-stained felt hats worn<br>by Australian cowboys, as much<br>a part of the Outback as<br>kangaroos and sun-baked soil,<br>may be heading for the history<br>books. They fail modern<br>industrial safety standards."
-          ],
-          [
-           "Big Food Group Plc, the UK<br>owner of the Iceland grocery<br>chain, said second-quarter<br>sales at stores open at least<br>a year dropped 3.3 percent,<br>the second consecutive<br>decline, after competitors cut<br>prices."
-          ],
-          [
-           "A London-to-Washington flight<br>is diverted after a security<br>alert involving the singer<br>formerly known as Cat Stevens."
-          ],
-          [
-           " WASHINGTON (Reuters) - The<br>first case of soybean rust has<br>been found on the mainland<br>United States and could affect<br>U.S.  crops for the near<br>future, costing farmers<br>millions of dollars,  the<br>Agriculture Department said on<br>Wednesday."
-          ],
-          [
-           "IBM and the Spanish government<br>have introduced a new<br>supercomputer they hope will<br>be the most powerful in<br>Europe, and one of the 10 most<br>powerful in the world."
-          ],
-          [
-           "The Supreme Court today<br>overturned a five-figure<br>damage award to an Alexandria<br>man for a local auto dealer<br>#39;s alleged loan scam,<br>ruling that a Richmond-based<br>federal appeals court had<br>wrongly"
-          ],
-          [
-           "AP - President Bush declared<br>Friday that charges of voter<br>fraud have cast doubt on the<br>Ukrainian election, and warned<br>that any European-negotiated<br>pact on Iran's nuclear program<br>must ensure the world can<br>verify Tehran's compliance."
-          ],
-          [
-           "TheSpaceShipOne team is handed<br>the \\$10m cheque and trophy it<br>won for claiming the Ansari<br>X-Prize."
-          ],
-          [
-           "Security officials have<br>identified six of the<br>militants who seized a school<br>in southern Russia as being<br>from Chechnya, drawing a<br>strong connection to the<br>Chechen insurgents who have<br>been fighting Russian forces<br>for years."
-          ],
-          [
-           "AP - Randy Moss is expected to<br>play a meaningful role for the<br>Minnesota Vikings this weekend<br>against the Giants, even<br>without a fully healed right<br>hamstring."
-          ],
-          [
-           "Pros: Fits the recent profile<br>(44, past PGA champion, fiery<br>Ryder Cup player); the job is<br>his if he wants it. Cons:<br>Might be too young to be<br>willing to burn two years of<br>play on tour."
-          ],
-          [
-           "SEOUL -- North Korea set three<br>conditions yesterday to be met<br>before it would consider<br>returning to six-party talks<br>on its nuclear programs."
-          ],
-          [
-           "Official figures show the<br>12-nation eurozone economy<br>continues to grow, but there<br>are warnings it may slow down<br>later in the year."
-          ],
-          [
-           "Elmer Santos scored in the<br>second half, lifting East<br>Boston to a 1-0 win over<br>Brighton yesterday afternoon<br>and giving the Jets an early<br>leg up in what is shaping up<br>to be a tight Boston City<br>League race."
-          ],
-          [
-           "In upholding a lower court<br>#39;s ruling, the Supreme<br>Court rejected arguments that<br>the Do Not Call list violates<br>telemarketers #39; First<br>Amendment rights."
-          ],
-          [
-           "US-backed Iraqi commandos were<br>poised Friday to storm rebel<br>strongholds in the northern<br>city of Mosul, as US military<br>commanders said they had<br>quot;broken the back quot; of<br>the insurgency with their<br>assault on the former rebel<br>bastion of Fallujah."
-          ],
-          [
-           "Infineon Technologies, the<br>second-largest chip maker in<br>Europe, said Wednesday that it<br>planned to invest about \\$1<br>billion in a new factory in<br>Malaysia to expand its<br>automotive chip business and<br>be closer to customers in the<br>region."
-          ],
-          [
-           "Mozilla's new web browser is<br>smart, fast and user-friendly<br>while offering a slew of<br>advanced, customizable<br>functions. By Michelle Delio."
-          ],
-          [
-           "Saints special teams captain<br>Steve Gleason expects to be<br>fined by the league after<br>being ejected from Sunday's<br>game against the Carolina<br>Panthers for throwing a punch."
-          ],
-          [
-           "JERUSALEM (Reuters) - Prime<br>Minister Ariel Sharon, facing<br>a party mutiny over his plan<br>to quit the Gaza Strip, has<br>approved 1,000 more Israeli<br>settler homes in the West Bank<br>in a move that drew a cautious<br>response on Tuesday from ..."
-          ],
-          [
-           "Play has begun in the<br>Australian Masters at<br>Huntingdale in Melbourne with<br>around half the field of 120<br>players completing their first<br>rounds."
-          ],
-          [
-           " NEW YORK (Reuters) -<br>Washington Post Co. &lt;A HREF<br>=\"http://www.investor.reuters.<br>com/FullQuote.aspx?ticker=WPO.<br>N target=/stocks/quickinfo/ful<br>lquote\"&gt;WPO.N&lt;/A&gt;<br>said on  Friday that quarterly<br>profit jumped, beating<br>analysts'  forecasts, boosted<br>by results at its Kaplan<br>education unit and  television<br>broadcasting operations."
-          ],
-          [
-           "GHAZNI, Afghanistan, 6 October<br>2004 - Wartime security was<br>rolled out for Afghanistans<br>interim President Hamid Karzai<br>as he addressed his first<br>election campaign rally<br>outside the capital yesterday<br>amid spiraling violence."
-          ],
-          [
-           "LOUISVILLE, Ky. - Louisville<br>men #39;s basketball head<br>coach Rick Pitino and senior<br>forward Ellis Myles met with<br>members of the media on Friday<br>to preview the Cardinals #39;<br>home game against rival<br>Kentucky on Satursday."
-          ],
-          [
-           "AP - Sounds like David<br>Letterman is as big a \"Pops\"<br>fan as most everyone else."
-          ],
-          [
-           "originally offered on notebook<br>PCs -- to its Opteron 32- and<br>64-bit x86 processors for<br>server applications. The<br>technology will help servers<br>to run"
-          ],
-          [
-           "New orders for US-made durable<br>goods increased 0.2pc in<br>September, held back by a big<br>drop in orders for<br>transportation goods, the US<br>Commerce Department said<br>today."
-          ],
-          [
-           "Siblings are the first ever to<br>be convicted for sending<br>boatloads of junk e-mail<br>pushing bogus products. Also:<br>Microsoft takes MSN music<br>download on a Euro trip....<br>Nokia begins legal battle<br>against European<br>counterparts.... and more."
-          ],
-          [
-           "I always get a kick out of the<br>annual list published by<br>Forbes singling out the<br>richest people in the country.<br>It #39;s almost as amusing as<br>those on the list bickering<br>over their placement."
-          ],
-          [
-           "MacCentral - After Apple<br>unveiled the iMac G5 in Paris<br>this week, Vice President of<br>Hardware Product Marketing<br>Greg Joswiak gave Macworld<br>editors a guided tour of the<br>desktop's new design. Among<br>the topics of conversation:<br>the iMac's cooling system, why<br>pre-installed Bluetooth<br>functionality and FireWire 800<br>were left out, and how this<br>new model fits in with Apple's<br>objectives."
-          ],
-          [
-           "Williams-Sonoma Inc., operator<br>of home furnishing chains<br>including Pottery Barn, said<br>third-quarter earnings rose 19<br>percent, boosted by store<br>openings and catalog sales."
-          ],
-          [
-           "We #39;ve known about<br>quot;strained silicon quot;<br>for a while--but now there<br>#39;s a better way to do it.<br>Straining silicon improves<br>chip performance."
-          ],
-          [
-           "This week, Sir Richard Branson<br>announced his new company,<br>Virgin Galactic, has the<br>rights to the first commercial<br>flights into space."
-          ],
-          [
-           "71-inch HDTV comes with a home<br>stereo system and components<br>painted in 24-karat gold."
-          ],
-          [
-           "Arsenal was held to a 1-1 tie<br>by struggling West Bromwich<br>Albion on Saturday, failing to<br>pick up a Premier League<br>victory when Rob Earnshaw<br>scored with 11 minutes left."
-          ],
-          [
-           "TOKYO - Mitsubishi Heavy<br>Industries said today it #39;s<br>in talks to buy a plot of land<br>in central Japan #39;s Nagoya<br>city from Mitsubishi Motors<br>for building aircraft parts."
-          ],
-          [
-           "China has confirmed that it<br>found a deadly strain of bird<br>flu in pigs as early as two<br>years ago. China #39;s<br>Agriculture Ministry said two<br>cases had been discovered, but<br>it did not say exactly where<br>the samples had been taken."
-          ],
-          [
-           "Baseball #39;s executive vice<br>president Sandy Alderson<br>insisted last month that the<br>Cubs, disciplined for an<br>assortment of run-ins with<br>umpires, would not be targeted<br>the rest of the season by<br>umpires who might hold a<br>grudge."
-          ],
-          [
-           "As Superman and Batman would<br>no doubt reflect during their<br>cigarette breaks, the really<br>draining thing about being a<br>hero was that you have to keep<br>riding to the rescue."
-          ],
-          [
-           "MacCentral - RealNetworks Inc.<br>said on Tuesday that it has<br>sold more than a million songs<br>at its online music store<br>since slashing prices last<br>week as part of a limited-time<br>sale aimed at growing the user<br>base of its new digital media<br>software."
-          ],
-          [
-           "With the presidential election<br>less than six weeks away,<br>activists and security experts<br>are ratcheting up concern over<br>the use of touch-screen<br>machines to cast votes.<br>&lt;FONT face=\"verdana,MS Sans<br>Serif,arial,helvetica\"<br>size=\"-2\"\\ color=\"#666666\"&gt;<br>&lt;B&gt;-washingtonpost.com&l<br>t;/B&gt;&lt;/FONT&gt;"
-          ],
-          [
-           "NEW YORK, September 14 (New<br>Ratings) - Yahoo! Inc<br>(YHOO.NAS) has agreed to<br>acquire Musicmatch Inc, a<br>privately held digital music<br>software company, for about<br>\\$160 million in cash."
-          ],
-          [
-           "Japan #39;s Sumitomo Mitsui<br>Financial Group Inc. said<br>Tuesday it proposed to UFJ<br>Holdings Inc. that the two<br>banks merge on an equal basis<br>in its latest attempt to woo<br>UFJ away from a rival suitor."
-          ],
-          [
-           "Oil futures prices were little<br>changed Thursday as traders<br>anxiously watched for<br>indications that the supply or<br>demand picture would change in<br>some way to add pressure to<br>the market or take some away."
-          ],
-          [
-           "Gov. Rod Blagojevich plans to<br>propose a ban Thursday on the<br>sale of violent and sexually<br>explicit video games to<br>minors, something other states<br>have tried with little<br>success."
-          ],
-          [
-           " CHICAGO (Reuters) - Delta Air<br>Lines Inc. &lt;A HREF=\"http://<br>www.investor.reuters.com/FullQ<br>uote.aspx?ticker=DAL.N target=<br>/stocks/quickinfo/fullquote\"&g<br>t;DAL.N&lt;/A&gt; said on<br>Tuesday it will cut wages by<br>10 percent and its chief<br>executive  will go unpaid for<br>the rest of the year, but it<br>still warned of  bankruptcy<br>within weeks unless more cuts<br>are made."
-          ],
-          [
-           "AP - Ten years after the Irish<br>Republican Army's momentous<br>cease-fire, negotiations<br>resumed Wednesday in hope of<br>reviving a Catholic-Protestant<br>administration, an elusive<br>goal of Northern Ireland's<br>hard-fought peace process."
-          ],
-          [
-           "A cable channel plans to<br>resurrect each of the 1,230<br>regular-season games listed on<br>the league's defunct 2004-2005<br>schedule by setting them in<br>motion on a video game<br>console."
-          ],
-          [
-           "  SANTO DOMINGO, Dominican<br>Republic, Sept. 18 -- Tropical<br>Storm Jeanne headed for the<br>Bahamas on Saturday after an<br>assault on the Dominican<br>Republic that killed 10<br>people, destroyed hundreds of<br>houses and forced thousands<br>from their homes."
-          ],
-          [
-           "An explosion tore apart a car<br>in Gaza City Monday, killing<br>at least one person,<br>Palestinian witnesses said.<br>They said Israeli warplanes<br>were circling overhead at the<br>time of the blast, indicating<br>a possible missile strike."
-          ],
-          [
-           " WASHINGTON (Reuters) - A<br>former Fannie Mae &lt;A HREF=\"<br>http://www.investor.reuters.co<br>m/FullQuote.aspx?ticker=FNM.N <br>target=/stocks/quickinfo/fullq<br>uote\"&gt;FNM.N&lt;/A&gt;<br>employee  who gave U.S.<br>officials information about<br>what he saw as  accounting<br>irregularities will not<br>testify as planned before a<br>congressional hearing next<br>week, a House committee said<br>on  Friday."
-          ],
-          [
-           "Beijing, Oct. 25 (PTI): China<br>and the US today agreed to<br>work jointly to re-energise<br>the six-party talks mechanism<br>aimed at dismantling North<br>Korea #39;s nuclear programmes<br>while Washington urged Beijing<br>to resume"
-          ],
-          [
-           "AFP - Sporadic gunfire and<br>shelling took place overnight<br>in the disputed Georgian<br>region of South Ossetia in<br>violation of a fragile<br>ceasefire, wounding seven<br>Georgian servicemen."
-          ],
-          [
-           "PARIS, Nov 4 (AFP) - The<br>European Aeronautic Defence<br>and Space Company reported<br>Thursday that its nine-month<br>net profit more than doubled,<br>thanks largely to sales of<br>Airbus aircraft, and raised<br>its full-year forecast."
-          ],
-          [
-           "AP - Eric Hinske and Vernon<br>Wells homered, and the Toronto<br>Blue Jays completed a three-<br>game sweep of the Baltimore<br>Orioles with an 8-5 victory<br>Sunday."
-          ],
-          [
-           "SiliconValley.com - When<br>\"Halo\" became a smash video<br>game hit following Microsoft's<br>launch of the Xbox console in<br>2001, it was a no-brainer that<br>there would be a sequel to the<br>science fiction shoot-em-up."
-          ],
-          [
-           "The number of people claiming<br>unemployment benefit last<br>month fell by 6,100 to<br>830,200, according to the<br>Office for National<br>Statistics."
-          ],
-          [
-           " NEW YORK (Reuters) - Todd<br>Walker homered, had three hits<br>and drove in four runs to lead<br>the Chicago Cubs to a 12-5 win<br>over the Cincinnati Reds in<br>National League play at<br>Wrigley  Field on Monday."
-          ],
-          [
-           "PARIS -- The city of Paris<br>intends to reduce its<br>dependence on software<br>suppliers with \"de facto<br>monopolies,\" but considers an<br>immediate switch of its 17,000<br>desktops to open source<br>software too costly, it said<br>Wednesday."
-          ],
-          [
-           " FALLUJA, Iraq (Reuters) -<br>U.S. forces hit Iraq's rebel<br>stronghold of Falluja with the<br>fiercest air and ground<br>bombardment in months, as<br>insurgents struck back on<br>Saturday  with attacks that<br>killed up to 37 people in<br>Samarra."
-          ],
-          [
-           "MIAMI (Sports Network) -<br>Shaquille O #39;Neal made his<br>home debut, but once again it<br>was Dwyane Wade stealing the<br>show with 28 points as the<br>Miami Heat downed the<br>Cleveland Cavaliers, 92-86, in<br>front of a record crowd at<br>AmericanAirlines Arena."
-          ],
-          [
-           "AP - The San Diego Chargers<br>looked sharp  #151; and played<br>the same way. Wearing their<br>powder-blue throwback jerseys<br>and white helmets from the<br>1960s, the Chargers did almost<br>everything right in beating<br>the Jacksonville Jaguars 34-21<br>on Sunday."
-          ],
-          [
-           "The vast majority of consumers<br>are unaware that an Apple iPod<br>digital music player only<br>plays proprietary iTunes<br>files, while a smaller<br>majority agree that it is<br>within RealNetworks #39;<br>rights to develop a program<br>that will make its music files<br>compatible"
-          ],
-          [
-           "Tyler airlines are gearing up<br>for the beginning of holiday<br>travel, as officials offer<br>tips to help travelers secure<br>tickets and pass through<br>checkpoints with ease."
-          ],
-          [
-           " NAJAF, Iraq (Reuters) - The<br>fate of a radical Shi'ite<br>rebellion in the holy city of<br>Najaf was uncertain Friday<br>amid  disputed reports that<br>Iraqi police had gained<br>control of the  Imam Ali<br>Mosque."
-          ],
-          [
-           " PROVIDENCE, R.I. (Reuters) -<br>You change the oil in your car<br>every 5,000 miles or so. You<br>clean your house every week or<br>two. Your PC needs regular<br>maintenance as well --<br>especially if  you're using<br>Windows and you spend a lot of<br>time on the  Internet."
-          ],
-          [
-           "NERVES - no problem. That<br>#39;s the verdict of Jose<br>Mourinho today after his<br>Chelsea side gave a resolute<br>display of character at<br>Highbury."
-          ],
-          [
-           "AP - The latest low point in<br>Ron Zook's tenure at Florida<br>even has the coach wondering<br>what went wrong. Meanwhile,<br>Sylvester Croom's first big<br>win at Mississippi State has<br>given the Bulldogs and their<br>fans a reason to believe in<br>their first-year leader.<br>Jerious Norwood's 37-yard<br>touchdown run with 32 seconds<br>remaining lifted the Bulldogs<br>to a 38-31 upset of the 20th-<br>ranked Gators on Saturday."
-          ],
-          [
-           "A criminal trial scheduled to<br>start Monday involving former<br>Enron Corp. executives may<br>shine a rare and potentially<br>harsh spotlight on the inner<br>workings"
-          ],
-          [
-           "The Motley Fool - Here's<br>something you don't see every<br>day -- the continuing brouhaha<br>between Oracle (Nasdaq: ORCL -<br>News) and PeopleSoft (Nasdaq:<br>PSFT - News) being a notable<br>exception. South Africa's<br>Harmony Gold Mining Company<br>(NYSE: HMY - News) has<br>announced a hostile takeover<br>bid to acquire fellow South<br>African miner Gold Fields<br>Limited (NYSE: GFI - News).<br>The transaction, if it takes<br>place, would be an all-stock<br>acquisition, with Harmony<br>issuing 1.275 new shares in<br>payment for each share of Gold<br>Fields. The deal would value<br>Gold Fields at more than<br>#36;8 billion. ..."
-          ],
-          [
-           "Someone forgot to inform the<br>US Olympic basketball team<br>that it was sent to Athens to<br>try to win a gold medal, not<br>to embarrass its country."
-          ],
-          [
-           "SPACE.com - NASA's Mars \\rover<br>Opportunity nbsp;will back its<br>\\way out of a nbsp;crater it<br>has spent four months<br>exploring after reaching<br>terrain nbsp;that appears \\too<br>treacherous to tread. nbsp;"
-          ],
-          [
-           "Sony Corp. announced Tuesday a<br>new 20 gigabyte digital music<br>player with MP3 support that<br>will be available in Great<br>Britain and Japan before<br>Christmas and elsewhere in<br>Europe in early 2005."
-          ],
-          [
-           "Wal-Mart Stores Inc. #39;s<br>Asda, the UK #39;s second<br>biggest supermarket chain,<br>surpassed Marks  amp; Spencer<br>Group Plc as Britain #39;s<br>largest clothing retailer in<br>the last three months,<br>according to the Sunday<br>Telegraph."
-          ],
-          [
-           "Ten-man Paris St Germain<br>clinched their seventh<br>consecutive victory over arch-<br>rivals Olympique Marseille<br>with a 2-1 triumph in Ligue 1<br>on Sunday thanks to a second-<br>half winner by substitute<br>Edouard Cisse."
-          ],
-          [
-           "Until this week, only a few<br>things about the strange,<br>long-ago disappearance of<br>Charles Robert Jenkins were<br>known beyond a doubt. In the<br>bitter cold of Jan. 5, 1965,<br>the 24-year-old US Army<br>sergeant was leading"
-          ],
-          [
-           "Roy Oswalt wasn #39;t<br>surprised to hear the Astros<br>were flying Sunday night<br>through the remnants of a<br>tropical depression that<br>dumped several inches of rain<br>in Louisiana and could bring<br>showers today in Atlanta."
-          ],
-          [
-           "AP - This hardly seemed<br>possible when Pitt needed<br>frantic rallies to overcome<br>Division I-AA Furman or Big<br>East cellar dweller Temple. Or<br>when the Panthers could barely<br>move the ball against Ohio<br>#151; not Ohio State, but Ohio<br>U."
-          ],
-          [
-           "Everyone is moaning about the<br>fallout from last weekend but<br>they keep on reporting the<br>aftermath.  #39;The fall-out<br>from the so-called<br>quot;Battle of Old Trafford<br>quot; continues to settle over<br>the nation and the debate"
-          ],
-          [
-           "Oil supply concerns and broker<br>downgrades of blue-chip<br>companies left stocks mixed<br>yesterday, raising doubts that<br>Wall Street #39;s year-end<br>rally would continue."
-          ],
-          [
-           "Genentech Inc. said the<br>marketing of Rituxan, a cancer<br>drug that is the company #39;s<br>best-selling product, is the<br>subject of a US criminal<br>investigation."
-          ],
-          [
-           "American Lindsay Davenport<br>regained the No. 1 ranking in<br>the world for the first time<br>since early 2002 by defeating<br>Dinara Safina of Russia 6-4,<br>6-2 in the second round of the<br>Kremlin Cup on Thursday."
-          ],
-          [
-           " The world's No. 2 soft drink<br>company said on Thursday<br>quarterly profit rose due to<br>tax benefits."
-          ],
-          [
-           "TOKYO (AP) -- The electronics<br>and entertainment giant Sony<br>Corp. (SNE) is talking with<br>Wal-Mart Stores Inc..."
-          ],
-          [
-           "After an unprecedented span of<br>just five days, SpaceShipOne<br>is ready for a return trip to<br>space on Monday, its final<br>flight to clinch a \\$10<br>million prize."
-          ],
-          [
-           "The United States on Tuesday<br>modified slightly a threat of<br>sanctions on Sudan #39;s oil<br>industry in a revised text of<br>its UN resolution on<br>atrocities in the country<br>#39;s Darfur region."
-          ],
-          [
-           "Freshman Jeremy Ito kicked<br>four field goals and Ryan<br>Neill scored on a 31-yard<br>interception return to lead<br>improving Rutgers to a 19-14<br>victory on Saturday over<br>visiting Michigan State."
-          ],
-          [
-           "Hi-tech monitoring of<br>livestock at pig farms could<br>help improve the animal growth<br>process and reduce costs."
-          ],
-          [
-           "Third-seeded Guillermo Canas<br>defeated Guillermo Garcia-<br>Lopez of Spain 7-6 (1), 6-3<br>Monday on the first day of the<br>Shanghai Open on Monday."
-          ],
-          [
-           "AP - France intensified<br>efforts Tuesday to save the<br>lives of two journalists held<br>hostage in Iraq, and the Arab<br>League said the militants'<br>deadline for France to revoke<br>a ban on Islamic headscarves<br>in schools had been extended."
-          ],
-          [
-           "Cable  amp; Wireless plc<br>(NYSE: CWP - message board) is<br>significantly ramping up its<br>investment in local loop<br>unbundling (LLU) in the UK,<br>and it plans to spend up to 85<br>million (\\$152."
-          ],
-          [
-           "USATODAY.com - Personal<br>finance software programs are<br>the computer industry's<br>version of veggies: Everyone<br>knows they're good for you,<br>but it's just hard to get<br>anyone excited about them."
-          ],
-          [
-           " NEW YORK (Reuters) - The<br>dollar rebounded on Monday<br>after  last week's heavy<br>selloff, but analysts were<br>uncertain if the  rally would<br>hold after fresh economic data<br>suggested the  December U.S.<br>jobs report due Friday might<br>not live up to  expectations."
-          ],
-          [
-           "AFP - Microsoft said that it<br>had launched a new desktop<br>search tool that allows<br>personal computer users to<br>find documents or messages on<br>their PCs."
-          ],
-          [
-           "At least 12 people die in an<br>explosion at a fuel pipeline<br>on the outskirts of Nigeria's<br>biggest city, Lagos."
-          ],
-          [
-           "The three largest computer<br>makers spearheaded a program<br>today designed to standardize<br>working conditions for their<br>non-US workers."
-          ],
-          [
-           "Description: Illinois Gov. Rod<br>Blagojevich is backing state<br>legislation that would ban<br>sales or rentals of video<br>games with graphic sexual or<br>violent content to children<br>under 18."
-          ],
-          [
-           "Volkswagen demanded a two-year<br>wage freeze for the<br>170,000-strong workforce at<br>Europe #39;s biggest car maker<br>yesterday, provoking union<br>warnings of imminent conflict<br>at key pay and conditions<br>negotiations."
-          ],
-          [
-           " NEW YORK (Reuters) - U.S.<br>stock futures pointed to a<br>lower  open on Wall Street on<br>Thursday, extending the<br>previous  session's sharp<br>fall, with rising energy<br>prices feeding  investor<br>concerns about corporate<br>profits and slower growth."
-          ],
-          [
-           "But to play as feebly as it<br>did for about 35 minutes last<br>night in Game 1 of the WNBA<br>Finals and lose by only four<br>points -- on the road, no less<br>-- has to be the best<br>confidence builder since Cindy<br>St."
-          ],
-          [
-           "MILAN General Motors and Fiat<br>on Wednesday edged closer to<br>initiating a legal battle that<br>could pit the two carmakers<br>against each other in a New<br>York City court room as early<br>as next month."
-          ],
-          [
-           "Are you bidding on keywords<br>through Overture's Precision<br>Match, Google's AdWords or<br>another pay-for-placement<br>service? If so, you're<br>eligible to participate in<br>their contextual advertising<br>programs."
-          ],
-          [
-           "Two of the Ford Motor Company<br>#39;s most senior executives<br>retired on Thursday in a sign<br>that the company #39;s deep<br>financial crisis has abated,<br>though serious challenges<br>remain."
-          ],
-          [
-           "Citing security concerns, the<br>U.S. Embassy on Thursday<br>banned its employees from<br>using the highway linking the<br>embassy area to the<br>international airport, a<br>10-mile stretch of road<br>plagued by frequent suicide<br>car-bomb attacks."
-          ],
-          [
-           "Nobel Laureate Wilkins, 87,<br>played an important role in<br>the discovery of the double<br>helix structure of DNA, the<br>molecule that carries our<br>quot;life code quot;,<br>Kazinform refers to BBC News."
-          ],
-          [
-           "With yesterday #39;s report on<br>its athletic department<br>violations completed, the<br>University of Washington says<br>it is pleased to be able to<br>move forward."
-          ],
-          [
-           " LONDON (Reuters) - Wall<br>Street was expected to start<br>little  changed on Friday as<br>investors continue to fret<br>over the impact  of high oil<br>prices on earnings, while<br>Boeing &lt;A HREF=\"http://www.<br>investor.reuters.com/FullQuote<br>.aspx?ticker=BA.N target=/stoc<br>ks/quickinfo/fullquote\"&gt;BA.<br>N&lt;/A&gt; will be  eyed<br>after it reiterated its<br>earnings forecast."
-          ],
-          [
-           "AP - Tom Daschle bade his<br>fellow Senate Democrats<br>farewell Tuesday with a plea<br>that they seek common ground<br>with Republicans yet continue<br>to fight for the less<br>fortunate."
-          ],
-          [
-           "Sammy Sosa was fined \\$87,400<br>-- one day's salary -- for<br>arriving late to the Cubs'<br>regular-season finale at<br>Wrigley Field and leaving the<br>game early. The slugger's<br>agent, Adam Katz , said<br>yesterday Sosa most likely<br>will file a grievance. Sosa<br>arrived 70 minutes before<br>Sunday's first pitch, and he<br>apparently left 15 minutes<br>after the game started without<br>..."
-          ],
-          [
-           "Having an always-on, fast net<br>connection is changing the way<br>Britons use the internet,<br>research suggests."
-          ],
-          [
-           "AP - Police defused a bomb in<br>a town near Prime Minister<br>Silvio Berlusconi's villa on<br>the island of Sardinia on<br>Wednesday shortly after<br>British Prime Minister Tony<br>Blair finished a visit there<br>with the Italian leader."
-          ],
-          [
-           "Is the Oklahoma defense a<br>notch below its predecessors?<br>Is Texas #39; offense a step-<br>ahead? Why is Texas Tech<br>feeling good about itself<br>despite its recent loss?"
-          ],
-          [
-           "The coffin of Yasser Arafat,<br>draped with the Palestinian<br>flag, was bound for Ramallah<br>in the West Bank Friday,<br>following a formal funeral on<br>a military compound near<br>Cairo."
-          ],
-          [
-           "US Ambassador to the United<br>Nations John Danforth resigned<br>on Thursday after serving in<br>the post for less than six<br>months. Danforth, 68, said in<br>a letter released Thursday"
-          ],
-          [
-           "Crude oil futures prices<br>dropped below \\$51 a barrel<br>yesterday as supply concerns<br>ahead of the Northern<br>Hemisphere winter eased after<br>an unexpectedly high rise in<br>US inventories."
-          ],
-          [
-           "New York gets 57 combined<br>points from its starting<br>backcourt of Jamal Crawford<br>and Stephon Marbury and tops<br>Denver, 107-96."
-          ],
-          [
-           "ISLAMABAD, Pakistan -- Photos<br>were published yesterday in<br>newspapers across Pakistan of<br>six terror suspects, including<br>a senior Al Qaeda operative,<br>the government says were<br>behind attempts to assassinate<br>the nation's president."
-          ],
-          [
-           "AP - Shawn Marion had a<br>season-high 33 points and 15<br>rebounds, leading the Phoenix<br>Suns on a fourth-quarter<br>comeback despite the absence<br>of Steve Nash in a 95-86 win<br>over the New Orleans Hornets<br>on Friday night."
-          ],
-          [
-           "By Lilly Vitorovich Of DOW<br>JONES NEWSWIRES SYDNEY (Dow<br>Jones)--Rupert Murdoch has<br>seven weeks to convince News<br>Corp. (NWS) shareholders a<br>move to the US will make the<br>media conglomerate more<br>attractive to"
-          ],
-          [
-           "A number of signs point to<br>increasing demand for tech<br>workers, but not all the<br>clouds have been driven away."
-          ],
-          [
-           "Messina upset defending<br>champion AC Milan 2-1<br>Wednesday, while Juventus won<br>its third straight game to<br>stay alone atop the Italian<br>league standings."
-          ],
-          [
-           "Microsoft Corp. (MSFT.O:<br>Quote, Profile, Research)<br>filed nine new lawsuits<br>against spammers who send<br>unsolicited e-mail, including<br>an e-mail marketing Web<br>hosting company, the world<br>#39;s largest software maker<br>said on Thursday."
-          ],
-          [
-           "AP - Padraig Harrington<br>rallied to a three-stroke<br>victory in the German Masters<br>on a windy Sunday, closing<br>with a 2-under-par 70 and<br>giving his game a big boost<br>before the Ryder Cup."
-          ],
-          [
-           " ATHENS (Reuters) - The Athens<br>Paralympics canceled<br>celebrations at its closing<br>ceremony after seven<br>schoolchildren  traveling to<br>watch the event died in a bus<br>crash on Monday."
-          ],
-          [
-           "The rocket plane SpaceShipOne<br>is just one flight away from<br>claiming the Ansari X-Prize, a<br>\\$10m award designed to kick-<br>start private space travel."
-          ],
-          [
-           "Reuters - Three American<br>scientists won the\\2004 Nobel<br>physics prize on Tuesday for<br>showing how tiny<br>quark\\particles interact,<br>helping to explain everything<br>from how a\\coin spins to how<br>the universe was built."
-          ],
-          [
-           "Ironically it was the first<br>regular season game for the<br>Carolina Panthers that not<br>only began the history of the<br>franchise, but also saw the<br>beginning of a rivalry that<br>goes on to this day."
-          ],
-          [
-           "Baltimore Ravens running back<br>Jamal Lewis did not appear at<br>his arraignment Friday, but<br>his lawyers entered a not<br>guilty plea on charges in an<br>expanded drug conspiracy<br>indictment."
-          ],
-          [
-           "AP - Sharp Electronics Corp.<br>plans to stop selling its<br>Linux-based handheld computer<br>in the United States, another<br>sign of the slowing market for<br>personal digital assistants."
-          ],
-          [
-           "After serving a five-game<br>suspension, Milton Bradley<br>worked out with the Dodgers as<br>they prepared for Tuesday's<br>opener against the St. Louis<br>Cardinals."
-          ],
-          [
-           "AP - Prime Time won't be<br>playing in prime time this<br>time. Deion Sanders was on the<br>inactive list and missed a<br>chance to strut his stuff on<br>\"Monday Night Football.\""
-          ],
-          [
-           "Reuters - Glaciers once held<br>up by a floating\\ice shelf off<br>Antarctica are now sliding off<br>into the sea --\\and they are<br>going fast, scientists said on<br>Tuesday."
-          ],
-          [
-           "DUBAI : An Islamist group has<br>threatened to kill two Italian<br>women held hostage in Iraq if<br>Rome does not withdraw its<br>troops from the war-torn<br>country within 24 hours,<br>according to an internet<br>statement."
-          ],
-          [
-           "AP - Warning lights flashed<br>atop four police cars as the<br>caravan wound its way up the<br>driveway in a procession fit<br>for a presidential candidate.<br>At long last, Azy and Indah<br>had arrived. They even flew<br>through a hurricane to get<br>here."
-          ],
-          [
-           "The man who delivered the<br>knockout punch was picked up<br>from the Seattle scrap heap<br>just after the All-Star Game.<br>Before that, John Olerud<br>certainly hadn't figured on<br>facing Pedro Martinez in<br>Yankee Stadium in October."
-          ],
-          [
-           "\\Female undergraduates work<br>harder and are more open-<br>minded than males, leading to<br>better results, say<br>scientists."
-          ],
-          [
-           "A heavy quake rocked Indonesia<br>#39;s Papua province killing<br>at least 11 people and<br>wounding 75. The quake<br>destroyed 150 buildings,<br>including churches, mosques<br>and schools."
-          ],
-          [
-           "LONDON : A consortium,<br>including former world<br>champion Nigel Mansell, claims<br>it has agreed terms to ensure<br>Silverstone remains one of the<br>venues for the 2005 Formula<br>One world championship."
-          ],
-          [
-           " BATON ROUGE, La. (Sports<br>Network) - LSU has named Les<br>Miles  its new head football<br>coach, replacing Nick Saban."
-          ],
-          [
-           "The United Nations annual<br>World Robotics Survey predicts<br>the use of robots around the<br>home will surge seven-fold by<br>2007. The boom is expected to<br>be seen in robots that can mow<br>lawns and vacuum floors, among<br>other chores."
-          ],
-          [
-           "The long-term economic health<br>of the United States is<br>threatened by \\$53 trillion in<br>government debts and<br>liabilities that start to come<br>due in four years when baby<br>boomers begin to retire."
-          ],
-          [
-           "Reuters - A small group of<br>suspected\\gunmen stormed<br>Uganda's Water Ministry<br>Wednesday and took<br>three\\people hostage to<br>protest against proposals to<br>allow President\\Yoweri<br>Museveni for a third<br>term.\\Police and soldiers with<br>assault rifles cordoned off<br>the\\three-story building, just<br>328 feet from Uganda's<br>parliament\\building in the<br>capital Kampala."
-          ],
-          [
-           "The Moscow Arbitration Court<br>ruled on Monday that the YUKOS<br>oil company must pay RUR<br>39.113bn (about \\$1.34bn) as<br>part of its back tax claim for<br>2001."
-          ],
-          [
-           "NOVEMBER 11, 2004 -- Bankrupt<br>US Airways this morning said<br>it had reached agreements with<br>lenders and lessors to<br>continue operating nearly all<br>of its mainline and US Airways<br>Express fleets."
-          ],
-          [
-           "Venezuela suggested Friday<br>that exiles living in Florida<br>may have masterminded the<br>assassination of a prosecutor<br>investigating a short-lived<br>coup against leftist President<br>Hugo Chvez"
-          ],
-          [
-           "Want to dive deep -- really<br>deep -- into the technical<br>literature about search<br>engines?  Here's a road map to<br>some of the best web<br>information retrieval<br>resources available online."
-          ],
-          [
-           "Reuters - Ancel Keys, a<br>pioneer in public health\\best<br>known for identifying the<br>connection between<br>a\\cholesterol-rich diet and<br>heart disease, has died."
-          ],
-          [
-           "The US government asks the<br>World Trade Organisation to<br>step in to stop EU member<br>states from \"subsidising\"<br>planemaker Airbus."
-          ],
-          [
-           "Reuters - T-Mobile USA, the<br>U.S. wireless unit\\of Deutsche<br>Telekom AG (DTEGn.DE), does<br>not expect to offer\\broadband<br>mobile data services for at<br>least the next two years,\\its<br>chief executive said on<br>Thursday."
-          ],
-          [
-           "Verizon Communications is<br>stepping further into video as<br>a way to compete against cable<br>companies."
-          ],
-          [
-           "Facing a popular outcry at<br>home and stern warnings from<br>Europe, the Turkish government<br>discreetly stepped back<br>Tuesday from a plan to<br>introduce a motion into a<br>crucial penal reform bill to<br>make adultery a crime<br>punishable by prison."
-          ],
-          [
-           "Boston Scientific Corp.<br>(BSX.N: Quote, Profile,<br>Research) said on Wednesday it<br>received US regulatory<br>approval for a device to treat<br>complications that arise in<br>patients with end-stage kidney<br>disease who need dialysis."
-          ],
-          [
-           "North-west Norfolk MP Henry<br>Bellingham has called for the<br>release of an old college<br>friend accused of plotting a<br>coup in Equatorial Guinea."
-          ],
-          [
-           "With the economy slowly<br>turning up, upgrading hardware<br>has been on businesses radar<br>in the past 12 months as their<br>number two priority."
-          ],
-          [
-           "AP - The Chicago Blackhawks<br>re-signed goaltender Michael<br>Leighton to a one-year<br>contract Wednesday."
-          ],
-          [
-           "Oracle Corp. plans to release<br>the latest version of its CRM<br>(customer relationship<br>management) applications<br>within the next two months, as<br>part of an ongoing update of<br>its E-Business Suite."
-          ],
-          [
-           "Toyota Motor Corp. #39;s<br>shares fell for a second day,<br>after the world #39;s second-<br>biggest automaker had an<br>unexpected quarterly profit<br>drop."
-          ],
-          [
-           "AFP - Want to buy a castle?<br>Head for the former East<br>Germany."
-          ],
-          [
-           "Hosted CRM service provider<br>Salesforce.com took another<br>step forward last week in its<br>strategy to build an online<br>ecosystem of vendors that<br>offer software as a service."
-          ],
-          [
-           "Britain-based HBOS says it<br>will file a complaint to the<br>European Commission against<br>Spanish bank Santander Central<br>Hispano (SCH) in connection<br>with SCH #39;s bid to acquire<br>British bank Abbey National"
-          ],
-          [
-           "AFP - Steven Gerrard has moved<br>to allay Liverpool fans' fears<br>that he could be out until<br>Christmas after breaking a<br>metatarsal bone in his left<br>foot."
-          ],
-          [
-           "Verizon Wireless on Thursday<br>announced an agreement to<br>acquire all the PCS spectrum<br>licenses of NextWave Telecom<br>Inc. in 23 markets for \\$3<br>billion."
-          ],
-          [
-           "washingtonpost.com -<br>Technology giants IBM and<br>Hewlett-Packard are injecting<br>hundreds of millions of<br>dollars into radio-frequency<br>identification technology,<br>which aims to advance the<br>tracking of items from ho-hum<br>bar codes to smart tags packed<br>with data."
-          ],
-          [
-           "ATHENS -- She won her first<br>Olympic gold medal in kayaking<br>when she was 18, the youngest<br>paddler to do so in Games<br>history. Yesterday, at 42,<br>Germany #39;s golden girl<br>Birgit Fischer won her eighth<br>Olympic gold in the four-woman<br>500-metre kayak race."
-          ],
-          [
-           "England boss Sven Goran<br>Eriksson has defended<br>goalkeeper David James after<br>last night #39;s 2-2 draw in<br>Austria. James allowed Andreas<br>Ivanschitz #39;s shot to slip<br>through his fingers to<br>complete Austria comeback from<br>two goals down."
-          ],
-          [
-           "MINSK - Legislative elections<br>in Belarus held at the same<br>time as a referendum on<br>whether President Alexander<br>Lukashenko should be allowed<br>to seek a third term fell<br>significantly short of<br>democratic standards, foreign<br>observers said here Monday."
-          ],
-          [
-           "An Olympic sailor is charged<br>with the manslaughter of a<br>Briton who died after being<br>hit by a car in Athens."
-          ],
-          [
-           "The Norfolk Broads are on<br>their way to getting a clean<br>bill of ecological  health<br>after a century of stagnation."
-          ],
-          [
-           "AP - Secretary of State Colin<br>Powell on Friday praised the<br>peace deal that ended fighting<br>in Iraq's holy city of Najaf<br>and said the presence of U.S.<br>forces in the area helped make<br>it possible."
-          ],
-          [
-           "The  quot;future quot; is<br>getting a chance to revive the<br>presently struggling New York<br>Giants. Two other teams also<br>decided it was time for a<br>change at quarterback, but the<br>Buffalo Bills are not one of<br>them."
-          ],
-          [
-           "For the second time this year,<br>an alliance of major Internet<br>providers - including Atlanta-<br>based EarthLink -iled a<br>coordinated group of lawsuits<br>aimed at stemming the flood of<br>online junk mail."
-          ],
-          [
-           " WASHINGTON (Reuters) - The<br>PIMCO mutual fund group has<br>agreed to pay \\$50 million to<br>settle fraud charges involving<br>improper rapid dealing in<br>mutual fund shares, the U.S.<br>Securities and Exchange<br>Commission said on Monday."
-          ],
-          [
-           "Via Technologies has released<br>a version of the open-source<br>Xine media player that is<br>designed to take advantage of<br>hardware digital video<br>acceleration capabilities in<br>two of the company #39;s PC<br>chipsets, the CN400 and<br>CLE266."
-          ],
-          [
-           "The Conference Board reported<br>Thursday that the Leading<br>Economic Index fell for a<br>third consecutive month in<br>August, suggesting slower<br>economic growth ahead amid<br>rising oil prices."
-          ],
-          [
-           " SAN FRANCISCO (Reuters) -<br>Software maker Adobe Systems<br>Inc.&lt;A HREF=\"http://www.inv<br>estor.reuters.com/FullQuote.as<br>px?ticker=ADBE.O target=/stock<br>s/quickinfo/fullquote\"&gt;ADBE<br>.O&lt;/A&gt; on Thursday<br>posted a quarterly profit that<br>rose  more than one-third from<br>a year ago, but shares fell 3<br>percent  after the maker of<br>Photoshop and Acrobat software<br>did not raise  forecasts for<br>fiscal 2005."
-          ],
-          [
-           "William Morrison Supermarkets<br>has agreed to sell 114 small<br>Safeway stores and a<br>distribution centre for 260.2<br>million pounds. Morrison<br>bought these stores as part of<br>its 3 billion pound"
-          ],
-          [
-           "SCO Group has a plan to keep<br>itself fit enough to continue<br>its legal battles against<br>Linux and to develop its Unix-<br>on-Intel operating systems."
-          ],
-          [
-           "Flushing Meadows, NY (Sports<br>Network) - The men #39;s<br>semifinals at the 2004 US Open<br>will be staged on Saturday,<br>with three of the tournament<br>#39;s top-five seeds ready for<br>action at the USTA National<br>Tennis Center."
-          ],
-          [
-           "Pepsi pushes a blue version of<br>Mountain Dew only at Taco<br>Bell. Is this a winning<br>strategy?"
-          ],
-          [
-           "New software helps corporate<br>travel managers track down<br>business travelers who<br>overspend. But it also poses a<br>dilemma for honest travelers<br>who are only trying to save<br>money."
-          ],
-          [
-           "NATO Secretary-General Jaap de<br>Hoop Scheffer has called a<br>meeting of NATO states and<br>Russia on Tuesday to discuss<br>the siege of a school by<br>Chechen separatists in which<br>more than 335 people died, a<br>NATO spokesman said."
-          ],
-          [
-           "26 August 2004 -- Iraq #39;s<br>top Shi #39;ite cleric, Grand<br>Ayatollah Ali al-Sistani,<br>arrived in the city of Al-<br>Najaf today in a bid to end a<br>weeks-long conflict between US<br>forces and militiamen loyal to<br>Shi #39;ite cleric Muqtada al-<br>Sadr."
-          ],
-          [
-           "AFP - Senior executives at<br>business software group<br>PeopleSoft unanimously<br>recommended that its<br>shareholders reject a 8.8<br>billion dollar takeover bid<br>from Oracle Corp, PeopleSoft<br>said in a statement Wednesday."
-          ],
-          [
-           "Reuters - Neolithic people in<br>China may have\\been the first<br>in the world to make wine,<br>according to\\scientists who<br>have found the earliest<br>evidence of winemaking\\from<br>pottery shards dating from<br>7,000 BC in northern China."
-          ],
-          [
-           "Given nearly a week to examine<br>the security issues raised by<br>the now-infamous brawl between<br>players and fans in Auburn<br>Hills, Mich., Nov. 19, the<br>Celtics returned to the<br>FleetCenter last night with<br>two losses and few concerns<br>about their on-court safety."
-          ],
-          [
-           " TOKYO (Reuters) - Electronics<br>conglomerate Sony Corp.<br>unveiled eight new flat-screen<br>televisions on Thursday in a<br>product push it hopes will<br>help it secure a leading 35<br>percent  of the domestic<br>market in the key month of<br>December."
-          ],
-          [
-           "As the election approaches,<br>Congress abandons all pretense<br>of fiscal responsibility,<br>voting tax cuts that would<br>drive 10-year deficits past<br>\\$3 trillion."
-          ],
-          [
-           "PARIS : French trade unions<br>called on workers at France<br>Telecom to stage a 24-hour<br>strike September 7 to protest<br>government plans to privatize<br>the public telecommunications<br>operator, union sources said."
-          ],
-          [
-           "ServiceMaster profitably<br>bundles services and pays a<br>healthy 3.5 dividend."
-          ],
-          [
-           "The Indonesian tourism<br>industry has so far not been<br>affected by last week #39;s<br>bombing outside the Australian<br>embassy in Jakarta and<br>officials said they do not<br>expect a significant drop in<br>visitor numbers as a result of<br>the attack."
-          ],
-          [
-           "\\$222.5 million -- in an<br>ongoing securities class<br>action lawsuit against Enron<br>Corp. The settlement,<br>announced Friday and"
-          ],
-          [
-           "Arsenals Thierry Henry today<br>missed out on the European<br>Footballer of the Year award<br>as Andriy Shevchenko took the<br>honour. AC Milan frontman<br>Shevchenko held off<br>competition from Barcelona<br>pair Deco and"
-          ],
-          [
-           "Donald Halsted, one target of<br>a class-action suit alleging<br>financial improprieties at<br>bankrupt Polaroid, officially<br>becomes CFO."
-          ],
-          [
-           "Neil Mellor #39;s sensational<br>late winner for Liverpool<br>against Arsenal on Sunday has<br>earned the back-up striker the<br>chance to salvage a career<br>that had appeared to be<br>drifting irrevocably towards<br>the lower divisions."
-          ],
-          [
-           "ABOUT 70,000 people were<br>forced to evacuate Real Madrid<br>#39;s Santiago Bernabeu<br>stadium minutes before the end<br>of a Primera Liga match<br>yesterday after a bomb threat<br>in the name of ETA Basque<br>separatist guerillas."
-          ],
-          [
-           "The team learned on Monday<br>that full-back Jon Ritchie<br>will miss the rest of the<br>season with a torn anterior<br>cruciate ligament in his left<br>knee."
-          ],
-          [
-           " NEW YORK (Reuters) -<br>Lifestyle guru Martha Stewart<br>said on  Wednesday she wants<br>to start serving her prison<br>sentence for  lying about a<br>suspicious stock sale as soon<br>as possible, so she  can put<br>her \"nightmare\" behind her."
-          ],
-          [
-           "Apple Computer's iPod remains<br>the king of digital music<br>players, but robust pretenders<br>to the throne have begun to<br>emerge in the Windows<br>universe. One of them is the<br>Zen Touch, from Creative Labs."
-          ],
-          [
-           "The 7710 model features a<br>touch screen, pen input, a<br>digital camera, an Internet<br>browser, a radio, video<br>playback and streaming and<br>recording capabilities, the<br>company said."
-          ],
-          [
-           "SAN FRANCISCO (CBS.MW) --<br>Crude futures closed under<br>\\$46 a barrel Wednesday for<br>the first time since late<br>September and heating-oil and<br>unleaded gasoline prices<br>dropped more than 6 percent<br>following an across-the-board<br>climb in US petroleum<br>inventories."
-          ],
-          [
-           "The University of Iowa #39;s<br>market for US presidential<br>futures, founded 16-years ago,<br>has been overtaken by a<br>Dublin-based exchange that is<br>now 25 times larger."
-          ],
-          [
-           "Venus Williams barely kept<br>alive her hopes of qualifying<br>for next week #39;s WTA Tour<br>Championships. Williams,<br>seeded fifth, survived a<br>third-set tiebreaker to<br>outlast Yuilana Fedak of the<br>Ukraine, 6-4 2-6 7-6"
-          ],
-          [
-           " SYDNEY (Reuters) - Arnold<br>Palmer has taken a swing at<br>America's top players,<br>criticizing their increasing<br>reluctance  to travel abroad<br>to play in tournaments."
-          ],
-          [
-           "MARK Thatcher will have to<br>wait until at least next April<br>to face trial on allegations<br>he helped bankroll a coup<br>attempt in oil-rich Equatorial<br>Guinea."
-          ],
-          [
-           "A top Red Hat executive has<br>attacked the open-source<br>credentials of its sometime<br>business partner Sun<br>Microsystems. In a Web log<br>posting Thursday, Michael<br>Tiemann, Red Hat #39;s vice<br>president of open-source<br>affairs"
-          ],
-          [
-           "President Bush #39;s drive to<br>deploy a multibillion-dollar<br>shield against ballistic<br>missiles was set back on<br>Wednesday by what critics<br>called a stunning failure of<br>its first full flight test in<br>two years."
-          ],
-          [
-           "Although he was well-beaten by<br>Retief Goosen in Sunday #39;s<br>final round of The Tour<br>Championship in Atlanta, there<br>has been some compensation for<br>the former world number one,<br>Tiger Woods."
-          ],
-          [
-           "WAYNE Rooney and Henrik<br>Larsson are among the players<br>nominated for FIFAs<br>prestigious World Player of<br>the Year award. Rooney is one<br>of four Manchester United<br>players on a list which is<br>heavily influenced by the<br>Premiership."
-          ],
-          [
-           "It didn #39;t look good when<br>it happened on the field, and<br>it looked worse in the<br>clubhouse. Angels second<br>baseman Adam Kennedy left the<br>Angels #39; 5-2 win over the<br>Seattle Mariners"
-          ],
-          [
-           "Air travelers moved one step<br>closer to being able to talk<br>on cell phones and surf the<br>Internet from laptops while in<br>flight, thanks to votes by the<br>Federal Communications<br>Commission yesterday."
-          ],
-          [
-           "MySQL developers turn to an<br>unlikely source for database<br>tool: Microsoft. Also: SGI<br>visualizes Linux, and the<br>return of Java veteran Kim<br>Polese."
-          ],
-          [
-           "DESPITE the budget deficit,<br>continued increases in oil and<br>consumer prices, the economy,<br>as measured by gross domestic<br>product, grew by 6.3 percent<br>in the third"
-          ],
-          [
-           "NEW YORK - A drop in oil<br>prices and upbeat outlooks<br>from Wal-Mart and Lowe's<br>helped send stocks sharply<br>higher Monday on Wall Street,<br>with the swing exaggerated by<br>thin late summer trading. The<br>Dow Jones industrials surged<br>nearly 130 points..."
-          ],
-          [
-           "Freshman Darius Walker ran for<br>115 yards and scored two<br>touchdowns, helping revive an<br>Irish offense that had managed<br>just one touchdown in the<br>season's first six quarters."
-          ],
-          [
-           "Consumers who cut it close by<br>paying bills from their<br>checking accounts a couple of<br>days before depositing funds<br>will be out of luck under a<br>new law that takes effect Oct.<br>28."
-          ],
-          [
-           "Dell Inc. said its profit<br>surged 25 percent in the third<br>quarter as the world's largest<br>personal computer maker posted<br>record sales due to rising<br>technology spending in the<br>corporate and government<br>sectors in the United States<br>and abroad."
-          ],
-          [
-           "AP - NBC is adding a 5-second<br>delay to its NASCAR telecasts<br>after Dale Earnhardt Jr. used<br>a vulgarity during a postrace<br>TV interview last weekend."
-          ],
-          [
-           " BOSTON (Sports Network) - The<br>New York Yankees will start<br>Orlando \"El Duque\" Hernandez<br>in Game 4 of the American<br>League  Championship Series on<br>Saturday against the Boston<br>Red Sox."
-          ],
-          [
-           "The future of Sven-Goran<br>Eriksson as England coach is<br>the subject of intense<br>discussion after the draw in<br>Austria. Has the Swede lost<br>the confidence of the nation<br>or does he remain the best man<br>for the job?"
-          ],
-          [
-           "Component problems meant<br>Brillian's new big screens<br>missed the NFL's kickoff<br>party."
-          ],
-          [
-           "Spain begin their third final<br>in five seasons at the Olympic<br>stadium hoping to secure their<br>second title since their first<br>in Barcelona against Australia<br>in 2000."
-          ],
-          [
-           "Second-seeded David Nalbandian<br>of Argentina lost at the Japan<br>Open on Thursday, beaten by<br>Gilles Muller of Luxembourg<br>7-6 (4), 3-6, 6-4 in the third<br>round."
-          ],
-          [
-           "Thursday #39;s unexpected<br>resignation of Memphis<br>Grizzlies coach Hubie Brown<br>left a lot of questions<br>unanswered. In his unique way<br>of putting things, the<br>71-year-old Brown seemed to<br>indicate he was burned out and<br>had some health concerns."
-          ],
-          [
-           "RUDI Voller had quit as coach<br>of Roma after a 3-1 defeat<br>away to Bologna, the Serie A<br>club said today. Under the<br>former Germany coach, Roma had<br>taken just four league points<br>from a possible 12."
-          ],
-          [
-           "A Russian court on Thursday<br>rejected an appeal by the<br>Yukos oil company seeking to<br>overturn a freeze on the<br>accounts of the struggling oil<br>giant #39;s core subsidiaries."
-          ],
-          [
-           "ONE by one, the players #39;<br>faces had flashed up on the<br>giant Ibrox screens offering<br>season #39;s greetings to the<br>Rangers fans. But the main<br>presents were reserved for<br>Auxerre."
-          ],
-          [
-           "Switzerland #39;s struggling<br>national airline reported a<br>second-quarter profit of 45<br>million Swiss francs (\\$35.6<br>million) Tuesday, although its<br>figures were boosted by a<br>legal settlement in France."
-          ],
-          [
-           "ROSTOV-ON-DON, Russia --<br>Hundreds of protesters<br>ransacked and occupied the<br>regional administration<br>building in a southern Russian<br>province Tuesday, demanding<br>the resignation of the region<br>#39;s president, whose former<br>son-in-law has been linked to<br>a multiple"
-          ],
-          [
-           "SIPTU has said it is strongly<br>opposed to any privatisation<br>of Aer Lingus as pressure<br>mounts on the Government to<br>make a decision on the future<br>funding of the airline."
-          ],
-          [
-           "Reuters - SBC Communications<br>said on Monday it\\would offer<br>a television set-top box that<br>can handle music,\\photos and<br>Internet downloads, part of<br>SBC's efforts to expand\\into<br>home entertainment."
-          ],
-          [
-           "Molson Inc. Chief Executive<br>Officer Daniel O #39;Neill<br>said he #39;ll provide<br>investors with a positive #39;<br>#39; response to their<br>concerns over the company<br>#39;s plan to let stock-<br>option holders vote on its<br>planned merger with Adolph<br>Coors Co."
-          ],
-          [
-           "South Korea #39;s Grace Park<br>shot a seven-under-par 65 to<br>triumph at the CJ Nine Bridges<br>Classic on Sunday. Park #39;s<br>victory made up her final-<br>round collapse at the Samsung<br>World Championship two weeks<br>ago."
-          ],
-          [
-           " WASHINGTON (Reuters) - Hopes<br>-- and worries -- that U.S.<br>regulators will soon end the<br>ban on using wireless phones<br>during U.S. commercial flights<br>are likely at least a year or<br>two early, government<br>officials and analysts say."
-          ],
-          [
-           "AFP - Iraqi Foreign Minister<br>Hoshyar Zebari arrived<br>unexpectedly in the holy city<br>of Mecca Wednesday where he<br>met Crown Prince Abdullah bin<br>Abdul Aziz, the official SPA<br>news agency reported."
-          ],
-          [
-           "Titans QB Steve McNair was<br>released from a Nashville<br>hospital after a two-night<br>stay for treatment of a<br>bruised sternum. McNair was<br>injured during the fourth<br>quarter of the Titans #39;<br>15-12 loss to Jacksonville on<br>Sunday."
-          ],
-          [
-           "Keith Miller, Australia #39;s<br>most prolific all-rounder in<br>Test cricket, died today at a<br>nursing home, Cricket<br>Australia said. He was 84."
-          ],
-          [
-           "Haitian police and UN troops<br>moved into a slum neighborhood<br>on Sunday and cleared street<br>barricades that paralyzed a<br>part of the capital."
-          ],
-          [
-           "TORONTO Former Toronto pitcher<br>John Cerutti (seh-ROO<br>#39;-tee) was found dead in<br>his hotel room today,<br>according to the team. He was<br>44."
-          ],
-          [
-           "withdrawal of troops and<br>settlers from occupied Gaza<br>next year. Militants seek to<br>claim any pullout as a<br>victory.  quot;Islamic Jihad<br>will not be broken by this<br>martyrdom, quot; said Khaled<br>al-Batsh, a senior political<br>leader in Gaza."
-          ],
-          [
-           " NEW YORK (Reuters) - The<br>world's largest gold producer,<br>Newmont Mining Corp. &lt;A HRE<br>F=\"http://www.investor.reuters<br>.com/FullQuote.aspx?ticker=NEM<br>.N target=/stocks/quickinfo/fu<br>llquote\"&gt;NEM.N&lt;/A&gt;,<br>on Wednesday said higher gold<br>prices drove up quarterly<br>profit by 12.5 percent, even<br>though  it sold less of the<br>precious metal."
-          ],
-          [
-           "The U.S. military has found<br>nearly 20 houses where<br>intelligence officers believe<br>hostages were tortured or<br>killed in this city, including<br>the house with the cage that<br>held a British contractor who<br>was beheaded last month."
-          ],
-          [
-           "AFP - Opponents of the Lao<br>government may be plotting<br>bomb attacks in Vientiane and<br>other areas of Laos timed to<br>coincide with a summit of<br>Southeast Asian leaders the<br>country is hosting next month,<br>the United States said."
-          ],
-          [
-           "After a year of pilots and<br>trials, Siebel Systems jumped<br>with both feet into the SMB<br>market Tuesday, announcing a<br>new approach to offer Siebel<br>Professional CRM applications<br>to SMBs (small and midsize<br>businesses) -- companies with<br>revenues up to about \\$500<br>million."
-          ],
-          [
-           "AP - Russia agreed Thursday to<br>send warships to help NATO<br>naval patrols that monitor<br>suspicious vessels in the<br>Mediterranean, part of a push<br>for closer counterterrorism<br>cooperation between Moscow and<br>the western alliance."
-          ],
-          [
-           "Intel won't release a 4-GHz<br>version of its flagship<br>Pentium 4 product, having<br>decided instead to realign its<br>engineers around the company's<br>new design priorities, an<br>Intel spokesman said today.<br>\\\\"
-          ],
-          [
-           "AP - A Soyuz spacecraft<br>carrying two Russians and an<br>American rocketed closer<br>Friday to its docking with the<br>international space station,<br>where the current three-man<br>crew made final departure<br>preparations."
-          ],
-          [
-           "Defense: Ken Lucas. His<br>biggest play was his first<br>one. The fourth-year<br>cornerback intercepted a Ken<br>Dorsey pass that kissed off<br>the hands of wide receiver<br>Rashaun Woods and returned it<br>25 yards to set up the<br>Seahawks #39; first score."
-          ],
-          [
-           "Scientists have manipulated<br>carbon atoms to create a<br>material that could be used to<br>create light-based, versus<br>electronic, switches. The<br>material could lead to a<br>supercharged Internet based<br>entirely on light, scientists<br>say."
-          ],
-          [
-           "A military plane crashed in<br>the mountains near Caracas,<br>killing all 16 persons on<br>board, including two high-<br>ranking military officers,<br>officials said."
-          ],
-          [
-           "The powerful St. Louis trio of<br>Albert Pujols, Scott Rolen and<br>Jim Edmonds is 4 for 23 with<br>one RBI in the series and with<br>runners on base, they are 1<br>for 13."
-          ],
-          [
-           "A voice recording said to be<br>that of suspected Al Qaeda<br>commander Abu Mussab al-<br>Zarqawi, claims Iraq #39;s<br>Prime Minister Iyad Allawi is<br>the militant network #39;s<br>number one target."
-          ],
-          [
-           "BEIJING -- More than a year<br>after becoming China's<br>president, Hu Jintao was<br>handed the full reins of power<br>yesterday when his<br>predecessor, Jiang Zemin, gave<br>up the nation's most powerful<br>military post."
-          ],
-          [
-           "LOS ANGELES (Reuters)<br>Qualcomm has dropped an \\$18<br>million claim for monetary<br>damages from rival Texas<br>Instruments for publicly<br>discussing terms of a<br>licensing pact, a TI<br>spokeswoman confirmed Tuesday."
-          ],
-          [
-           "Hewlett-Packard is the latest<br>IT vendor to try blogging. But<br>analysts wonder if the weblog<br>trend is the 21st century<br>equivalent of CB radios, which<br>made a big splash in the 1970s<br>before fading."
-          ],
-          [
-           " WASHINGTON (Reuters) - Fannie<br>Mae executives and their<br>regulator squared off on<br>Wednesday, with executives<br>denying any  accounting<br>irregularity and the regulator<br>saying the housing  finance<br>company's management may need<br>to go."
-          ],
-          [
-           "The scientists behind Dolly<br>the sheep apply for a license<br>to clone human embryos. They<br>want to take stem cells from<br>the embryos to study Lou<br>Gehrig's disease."
-          ],
-          [
-           "As the first criminal trial<br>stemming from the financial<br>deals at Enron opened in<br>Houston on Monday, it is<br>notable as much for who is not<br>among the six defendants as<br>who is - and for how little<br>money was involved compared<br>with how much in other Enron"
-          ],
-          [
-           "LONDON (CBS.MW) -- British<br>bank Barclays on Thursday said<br>it is in talks to buy a<br>majority stake in South<br>African bank ABSA. Free!"
-          ],
-          [
-           "The Jets signed 33-year-old<br>cornerback Terrell Buckley,<br>who was released by New<br>England on Sunday, after<br>putting nickel back Ray<br>Mickens on season-ending<br>injured reserve yesterday with<br>a torn ACL in his left knee."
-          ],
-          [
-           "Some of the silly tunes<br>Japanese pay to download to<br>use as the ring tone for their<br>mobile phones sure have their<br>knockers, but it #39;s for<br>precisely that reason that a<br>well-known counselor is raking<br>it in at the moment, according<br>to Shukan Gendai (10/2)."
-          ],
-          [
-           "WEST INDIES thrilling victory<br>yesterday in the International<br>Cricket Council Champions<br>Trophy meant the world to the<br>five million people of the<br>Caribbean."
-          ],
-          [
-           "AP - Greenpeace activists<br>scaled the walls of Ford Motor<br>Co.'s Norwegian headquarters<br>Tuesday to protest plans to<br>destroy hundreds of non-<br>polluting electric cars."
-          ],
-          [
-           "Investors sent stocks sharply<br>lower yesterday as oil prices<br>continued their climb higher<br>and new questions about the<br>safety of arthritis drugs<br>pressured pharmaceutical<br>stocks."
-          ],
-          [
-           "Scotland manager Berti Vogts<br>insists he is expecting<br>nothing but victory against<br>Moldova on Wednesday. The game<br>certainly is a must-win affair<br>if the Scots are to have any<br>chance of qualifying for the<br>2006 World Cup finals."
-          ],
-          [
-           "IBM announced yesterday that<br>it will invest US\\$250 million<br>(S\\$425 million) over the next<br>five years and employ 1,000<br>people in a new business unit<br>to support products and<br>services related to sensor<br>networks."
-          ],
-          [
-           "AFP - The chances of Rupert<br>Murdoch's News Corp relocating<br>from Australia to the United<br>States have increased after<br>one of its biggest<br>institutional investors has<br>chosen to abstain from a vote<br>next week on the move."
-          ],
-          [
-           "AFP - An Indian minister said<br>a school text-book used in the<br>violence-prone western state<br>of Gujarat portrayed Adolf<br>Hitler as a role model."
-          ],
-          [
-           "Reuters - The head of UAL<br>Corp.'s United\\Airlines said<br>on Thursday the airline's<br>restructuring plan\\would lead<br>to a significant number of job<br>losses, but it was\\not clear<br>how many."
-          ],
-          [
-           "DOVER, N.H. (AP) -- Democrat<br>John Kerry is seizing on the<br>Bush administration's failure<br>to secure hundreds of tons of<br>explosives now missing in<br>Iraq."
-          ],
-          [
-           "AP - Microsoft Corp. goes into<br>round two Friday of its battle<br>to get the European Union's<br>sweeping antitrust ruling<br>lifted having told a judge<br>that it had been prepared<br>during settlement talks to<br>share more software code with<br>its rivals than the EU<br>ultimately demanded."
-          ],
-          [
-           " INDIANAPOLIS (Reuters) -<br>Jenny Thompson will take the<br>spotlight from injured U.S.<br>team mate Michael Phelps at<br>the  world short course<br>championships Saturday as she<br>brings down  the curtain on a<br>spectacular swimming career."
-          ],
-          [
-           "Martin Brodeur made 27 saves,<br>and Brad Richards, Kris Draper<br>and Joe Sakic scored goals to<br>help Canada beat Russia 3-1<br>last night in the World Cup of<br>Hockey, giving the Canadians a<br>3-0 record in round-robin<br>play."
-          ],
-          [
-           "AP - Sears, Roebuck and Co.,<br>which has successfully sold<br>its tools and appliances on<br>the Web, is counting on having<br>the same magic with bedspreads<br>and sweaters, thanks in part<br>to expertise gained by its<br>purchase of Lands' End Inc."
-          ],
-          [
-           "com September 14, 2004, 9:12<br>AM PT. With the economy slowly<br>turning up, upgrading hardware<br>has been on businesses radar<br>in the past 12 months as their<br>number two priority."
-          ],
-          [
-           " NEW YORK (Reuters) -<br>Children's Place Retail Stores<br>Inc.  &lt;A HREF=\"http://www.i<br>nvestor.reuters.com/FullQuote.<br>aspx?ticker=PLCE.O target=/sto<br>cks/quickinfo/fullquote\"&gt;PL<br>CE.O&lt;/A&gt; said on<br>Wednesday it will buy 313<br>retail stores from  Walt<br>Disney Co., and its stock rose<br>more than 14 percent in  early<br>morning trade."
-          ],
-          [
-           "ALBANY, N.Y. -- A California-<br>based company that brokers<br>life, accident, and disability<br>policies for leading US<br>companies pocketed millions of<br>dollars a year in hidden<br>payments from insurers and<br>from charges on clients'<br>unsuspecting workers, New York<br>Attorney General Eliot Spitzer<br>charged yesterday."
-          ],
-          [
-           "NORTEL Networks plans to slash<br>its workforce by 3500, or ten<br>per cent, as it struggles to<br>recover from an accounting<br>scandal that toppled three top<br>executives and led to a<br>criminal investigation and<br>lawsuits."
-          ],
-          [
-           "Ebay Inc. (EBAY.O: Quote,<br>Profile, Research) said on<br>Friday it would buy Rent.com,<br>an Internet housing rental<br>listing service, for \\$415<br>million in a deal that gives<br>it access to a new segment of<br>the online real estate market."
-          ],
-          [
-           "Austin police are working with<br>overseas officials to bring<br>charges against an English man<br>for sexual assault of a child,<br>a second-degree felony."
-          ],
-          [
-           "United Nations officials<br>report security breaches in<br>internally displaced people<br>and refugee camps in Sudan<br>#39;s embattled Darfur region<br>and neighboring Chad."
-          ],
-          [
-           "Noranda Inc., Canada #39;s<br>biggest mining company, began<br>exclusive talks on a takeover<br>proposal from China Minmetals<br>Corp. that would lead to the<br>spinoff of Noranda #39;s<br>aluminum business to<br>shareholders."
-          ],
-          [
-           "San Francisco<br>developer/publisher lands<br>coveted Paramount sci-fi<br>license, \\$6.5 million in<br>funding on same day. Although<br>it is less than two years old,<br>Perpetual Entertainment has<br>acquired one of the most<br>coveted sci-fi licenses on the<br>market."
-          ],
-          [
-           "ST. LOUIS -- Mike Martz #39;s<br>week of anger was no empty<br>display. He saw the defending<br>NFC West champions slipping<br>and thought taking potshots at<br>his players might be his best<br>shot at turning things around."
-          ],
-          [
-           "Google warned Thursday that<br>increased competition and the<br>maturing of the company would<br>result in an  quot;inevitable<br>quot; slowing of its growth."
-          ],
-          [
-           "By KELLY WIESE    JEFFERSON<br>CITY, Mo. (AP) -- Missouri<br>will allow members of the<br>military stationed overseas to<br>return absentee ballots via<br>e-mail, raising concerns from<br>Internet security experts<br>about fraud and ballot<br>secrecy..."
-          ],
-          [
-           "Avis Europe PLC has dumped a<br>new ERP system based on<br>software from PeopleSoft Inc.<br>before it was even rolled out,<br>citing substantial delays and<br>higher-than-expected costs."
-          ],
-          [
-           " TOKYO (Reuters) - The Nikkei<br>average rose 0.55 percent by<br>midsession on Wednesday as<br>some techs including Advantest<br>Corp.  gained ground after<br>Wall Street reacted positively<br>to results  from Intel Corp.<br>released after the U.S. market<br>close."
-          ],
-          [
-           "Yahoo #39;s (Quote, Chart)<br>public embrace of the RSS<br>content syndication format<br>took a major leap forward with<br>the release of a revamped My<br>Yahoo portal seeking to<br>introduce the technology to<br>mainstream consumers."
-          ],
-          [
-           "KINGSTON, Jamaica - Hurricane<br>Ivan's deadly winds and<br>monstrous waves bore down on<br>Jamaica on Friday, threatening<br>a direct hit on its densely<br>populated capital after<br>ravaging Grenada and killing<br>at least 33 people.    The<br>Jamaican government ordered<br>the evacuation of half a<br>million people from coastal<br>areas, where rains on Ivan's<br>outer edges were already<br>flooding roads..."
-          ],
-          [
-           "North Korea has denounced as<br>quot;wicked terrorists quot;<br>the South Korean officials who<br>orchestrated last month #39;s<br>airlift to Seoul of 468 North<br>Korean defectors."
-          ],
-          [
-           "The Black Watch regiment has<br>returned to its base in Basra<br>in southern Iraq after a<br>month-long mission standing in<br>for US troops in a more<br>violent part of the country,<br>the Ministry of Defence says."
-          ],
-          [
-           "Romanian soccer star Adrian<br>Mutu as he arrives at the<br>British Football Association<br>in London, ahead of his<br>disciplinary hearing, Thursday<br>Nov. 4, 2004."
-          ],
-          [
-           "Australia completed an<br>emphatic Test series sweep<br>over New Zealand with a<br>213-run win Tuesday, prompting<br>a caution from Black Caps<br>skipper Stephen Fleming for<br>other cricket captains around<br>the globe."
-          ],
-          [
-           "AP - A senior Congolese<br>official said Tuesday his<br>nation had been invaded by<br>neighboring Rwanda, and U.N.<br>officials said they were<br>investigating claims of<br>Rwandan forces clashing with<br>militias in the east."
-          ],
-          [
-           "Liverpool, England (Sports<br>Network) - Former English<br>international and Liverpool<br>great Emlyn Hughes passed away<br>Tuesday from a brain tumor."
-          ],
-          [
-           " ATLANTA (Reuters) - Soft<br>drink giant Coca-Cola Co.<br>&lt;A HREF=\"http://www.investo<br>r.reuters.com/FullQuote.aspx?t<br>icker=KO.N target=/stocks/quic<br>kinfo/fullquote\"&gt;KO.N&lt;/A<br>&gt;,  stung by a prolonged<br>downturn in North America,<br>Germany and  other major<br>markets, on Thursday lowered<br>its key long-term  earnings<br>and sales targets."
-          ],
-          [
-           "JACKSONVILLE, Fla. -- They<br>were singing in the Colts #39;<br>locker room today, singing<br>like a bunch of wounded<br>songbirds. Never mind that<br>Marcus Pollard, Dallas Clark<br>and Ben Hartsock won #39;t be<br>recording a remake of Kenny<br>Chesney #39;s song,<br>quot;Young, quot; any time<br>soon."
-          ],
-          [
-           "TOKYO (AP) -- Japanese<br>electronics and entertainment<br>giant Sony Corp. (SNE) plans<br>to begin selling a camcorder<br>designed for consumers that<br>takes video at digital high-<br>definition quality and is<br>being priced at about<br>\\$3,600..."
-          ],
-          [
-           "As the close-knit NASCAR<br>community mourns the loss of<br>team owner Rick Hendrick #39;s<br>son, brother, twin nieces and<br>six others in a plane crash<br>Sunday, perhaps no one outside<br>of the immediate family<br>grieves more deeply than<br>Darrell Waltrip."
-          ],
-          [
-           "AP - Purdue quarterback Kyle<br>Orton has no trouble<br>remembering how he felt after<br>last year's game at Michigan."
-          ],
-          [
-           "UNITED NATIONS - The United<br>Nations #39; nuclear agency<br>says it is concerned about the<br>disappearance of equipment and<br>materials from Iraq that could<br>be used to make nuclear<br>weapons."
-          ],
-          [
-           " BRUSSELS (Reuters) - The EU's<br>historic deal with Turkey to<br>open entry talks with the vast<br>Muslim country was hailed by<br>supporters as a bridge builder<br>between Europe and the Islamic<br>world."
-          ],
-          [
-           "Iraqi President Ghazi al-<br>Yawar, who was due in Paris on<br>Sunday to start a European<br>tour, has postponed his visit<br>to France due to the ongoing<br>hostage drama involving two<br>French journalists, Arab<br>diplomats said Friday."
-          ],
-          [
-           " SAO PAULO, Brazil (Reuters) -<br>President Luiz Inacio Lula da<br>Silva's Workers' Party (PT)<br>won the mayoralty of six state<br>capitals in Sunday's municipal<br>vote but was forced into a<br>run-off to defend its hold on<br>the race's biggest prize, the<br>city of Sao Paulo."
-          ],
-          [
-           "ATHENS, Greece - They are<br>America's newest golden girls<br>- powerful and just a shade<br>from perfection. The U.S..."
-          ],
-          [
-           "AMMAN, Sept. 15. - The owner<br>of a Jordanian truck company<br>announced today that he had<br>ordered its Iraq operations<br>stopped in a bid to save the<br>life of a driver held hostage<br>by a militant group."
-          ],
-          [
-           "Israel is prepared to back a<br>Middle East conference<br>convened by Tony Blair early<br>next year despite having<br>expressed fears that the<br>British plans were over-<br>ambitious and designed"
-          ],
-          [
-           "AP - U.S. State Department<br>officials learned that seven<br>American children had been<br>abandoned at a Nigerian<br>orphanage but waited more than<br>a week to check on the youths,<br>who were suffering from<br>malnutrition, malaria and<br>typhoid, a newspaper reported<br>Saturday."
-          ],
-          [
-           "\\Angry mobs in Ivory Coast's<br>main city, Abidjan, marched on<br>the airport, hours after it<br>came under French control."
-          ],
-          [
-           "Several workers are believed<br>to have been killed and others<br>injured after a contruction<br>site collapsed at Dubai<br>airport. The workers were<br>trapped under rubble at the<br>site of a \\$4."
-          ],
-          [
-           "Talks between Sudan #39;s<br>government and two rebel<br>groups to resolve the nearly<br>two-year battle resume Friday.<br>By Abraham McLaughlin  Staff<br>writer of The Christian<br>Science Monitor."
-          ],
-          [
-           "In a meeting of the cinematic<br>with the scientific, Hollywood<br>helicopter stunt pilots will<br>try to snatch a returning NASA<br>space probe out of the air<br>before it hits the ground."
-          ],
-          [
-           "Legend has it (incorrectly, it<br>seems) that infamous bank<br>robber Willie Sutton, when<br>asked why banks were his<br>favorite target, responded,<br>quot;Because that #39;s where<br>the money is."
-          ],
-          [
-           "Brown is a second year player<br>from Memphis and has spent the<br>2004 season on the Steelers<br>#39; practice squad. He played<br>in two games last year."
-          ],
-          [
-           "A Canadian court approved Air<br>Canada #39;s (AC.TO: Quote,<br>Profile, Research) plan of<br>arrangement with creditors on<br>Monday, clearing the way for<br>the world #39;s 11th largest<br>airline to emerge from<br>bankruptcy protection at the<br>end of next month"
-          ],
-          [
-           "Pfizer, GlaxoSmithKline and<br>Purdue Pharma are the first<br>drugmakers willing to take the<br>plunge and use radio frequency<br>identification technology to<br>protect their US drug supply<br>chains from counterfeiters."
-          ],
-          [
-           "Barret Jackman, the last of<br>the Blues left to sign before<br>the league #39;s probable<br>lockout on Wednesday,<br>finalized a deal Monday that<br>is rare in the current<br>economic climate but fitting<br>for him."
-          ],
-          [
-           " LONDON (Reuters) - Oil prices<br>eased on Monday after rebels<br>in Nigeria withdrew a threat<br>to target oil operations, but<br>lingering concerns over<br>stretched supplies ahead of<br>winter kept  prices close to<br>\\$50."
-          ],
-          [
-           "AP - In the tumult of the<br>visitors' clubhouse at Yankee<br>Stadium, champagne pouring all<br>around him, Theo Epstein held<br>a beer. \"I came in and there<br>was no champagne left,\" he<br>said this week. \"I said, 'I'll<br>have champagne if we win it<br>all.'\" Get ready to pour a<br>glass of bubbly for Epstein.<br>No I.D. necessary."
-          ],
-          [
-           "Search any fee-based digital<br>music service for the best-<br>loved musical artists of the<br>20th century and most of the<br>expected names show up."
-          ],
-          [
-           "Barcelona held on from an<br>early Deco goal to edge game<br>local rivals Espanyol 1-0 and<br>carve out a five point<br>tabletop cushion. Earlier,<br>Ronaldo rescued a point for<br>Real Madrid, who continued<br>their middling form with a 1-1<br>draw at Real Betis."
-          ],
-          [
-           "MONTREAL (CP) - The Expos may<br>be history, but their demise<br>has heated up the market for<br>team memorabilia. Vintage<br>1970s and 1980s shirts are<br>already sold out, but<br>everything from caps, beer<br>glasses and key-chains to<br>dolls of mascot Youppi!"
-          ],
-          [
-           "Stansted airport is the<br>designated emergency landing<br>ground for planes in British<br>airspace hit by in-flight<br>security alerts. Emergency<br>services at Stansted have<br>successfully dealt"
-          ],
-          [
-           "The massive military operation<br>to retake Fallujah has been<br>quot;accomplished quot;, a<br>senior Iraqi official said.<br>Fierce fighting continued in<br>the war-torn city where<br>pockets of resistance were<br>still holding out against US<br>forces."
-          ],
-          [
-           "There are some signs of<br>progress in resolving the<br>Nigerian conflict that is<br>riling global oil markets. The<br>leader of militia fighters<br>threatening to widen a battle<br>for control of Nigeria #39;s<br>oil-rich south has"
-          ],
-          [
-           "A strong earthquake hit Taiwan<br>on Monday, shaking buildings<br>in the capital Taipei for<br>several seconds. No casualties<br>were reported."
-          ],
-          [
-           "America Online Inc. is<br>packaging new features to<br>combat viruses, spam and<br>spyware in response to growing<br>online security threats.<br>Subscribers will be able to<br>get the free tools"
-          ],
-          [
-           "A 76th minute goal from<br>European Footballer of the<br>Year Pavel Nedved gave<br>Juventus a 1-0 win over Bayern<br>Munich on Tuesday handing the<br>Italians clear control at the<br>top of Champions League Group<br>C."
-          ],
-          [
-           " LONDON (Reuters) - Oil prices<br>climbed above \\$42 a barrel on<br>Wednesday, rising for the<br>third day in a row as cold<br>weather  gripped the U.S.<br>Northeast, the world's biggest<br>heating fuel  market."
-          ],
-          [
-           "A policeman ran amok at a<br>security camp in Indian-<br>controlled Kashmir after an<br>argument and shot dead seven<br>colleagues before he was<br>gunned down, police said on<br>Sunday."
-          ],
-          [
-           "ANN ARBOR, Mich. -- Some NHL<br>players who took part in a<br>charity hockey game at the<br>University of Michigan on<br>Thursday were hopeful the news<br>that the NHL and the players<br>association will resume talks<br>next week"
-          ],
-          [
-           "New York police have developed<br>a pre-emptive strike policy,<br>cutting off demonstrations<br>before they grow large."
-          ],
-          [
-           "CAPE CANAVERAL-- NASA aims to<br>launch its first post-Columbia<br>shuttle mission during a<br>shortened nine-day window<br>March, and failure to do so<br>likely would delay a planned<br>return to flight until at<br>least May."
-          ],
-          [
-           "Travelers headed home for<br>Thanksgiving were greeted<br>Wednesday with snow-covered<br>highways in the Midwest, heavy<br>rain and tornadoes in parts of<br>the South, and long security<br>lines at some of the nation<br>#39;s airports."
-          ],
-          [
-           "BOULDER, Colo. -- Vernand<br>Morency ran for 165 yards and<br>two touchdowns and Donovan<br>Woods threw for three more<br>scores, lifting No. 22<br>Oklahoma State to a 42-14<br>victory over Colorado<br>yesterday."
-          ],
-          [
-           "The Chinese city of Beijing<br>has cancelled an order for<br>Microsoft software, apparently<br>bowing to protectionist<br>sentiment. The deal has come<br>under fire in China, which is<br>trying to build a domestic<br>software industry."
-          ],
-          [
-           "Apple says it will deliver its<br>iTunes music service to more<br>European countries next month.<br>Corroborating several reports<br>in recent months, Reuters is<br>reporting today that Apple<br>Computer is planning the next"
-          ],
-          [
-           "Reuters - Motorola Inc., the<br>world's\\second-largest mobile<br>phone maker, said on Tuesday<br>it expects\\to sustain strong<br>sales growth in the second<br>half of 2004\\thanks to new<br>handsets with innovative<br>designs and features."
-          ],
-          [
-           "PULLMAN - Last week, in<br>studying USC game film, Cougar<br>coaches thought they found a<br>chink in the national<br>champions armor. And not just<br>any chink - one with the<br>potential, right from the get<br>go, to"
-          ],
-          [
-           "The union representing flight<br>attendants on Friday said it<br>mailed more than 5,000 strike<br>authorization ballots to its<br>members employed by US Airways<br>as both sides continued talks<br>that are expected to stretch<br>through the weekend."
-          ],
-          [
-           "AP - Matt Leinart was quite a<br>baseball prospect growing up,<br>showing so much promise as a<br>left-handed pitcher that<br>scouts took notice before high<br>school."
-          ],
-          [
-           "PRAGUE, Czech Republic --<br>Eugene Cernan, the last man to<br>walk on the moon during the<br>final Apollo landing, said<br>Thursday he doesn't expect<br>space tourism to become<br>reality in the near future,<br>despite a strong demand.<br>Cernan, now 70, who was<br>commander of NASA's Apollo 17<br>mission and set foot on the<br>lunar surface in December 1972<br>during his third space flight,<br>acknowledged that \"there are<br>many people interested in<br>space tourism.\"     But the<br>former astronaut said he<br>believed \"we are a long way<br>away from the day when we can<br>send a bus of tourists to the<br>moon.\" He spoke to reporters<br>before being awarded a medal<br>by the Czech Academy of<br>Sciences for his contribution<br>to science..."
-          ],
-          [
-           "Never shy about entering a<br>market late, Microsoft Corp.<br>is planning to open the<br>virtual doors of its long-<br>planned Internet music store<br>next week. &lt;FONT<br>face=\"verdana,MS Sans<br>Serif,arial,helvetica\"<br>size=\"-2\"\\ color=\"#666666\"&gt;<br>&lt;B&gt;-Leslie<br>Walker&lt;/B&gt;&lt;/FONT&gt;"
-          ],
-          [
-           "AP - On his first birthday<br>Thursday, giant panda cub Mei<br>Sheng delighted visitors by<br>playing for the first time in<br>snow delivered to him at the<br>San Diego Zoo. He also sat on<br>his ice cake, wrestled with<br>his mom, got his coat<br>incredibly dirty, and didn't<br>read any of the more than 700<br>birthday wishes sent him via<br>e-mail from as far away as<br>Ireland and Argentina."
-          ],
-          [
-           "AP - Researchers put a<br>satellite tracking device on a<br>15-foot shark that appeared to<br>be lost in shallow water off<br>Cape Cod, the first time a<br>great white has been tagged<br>that way in the Atlantic."
-          ],
-          [
-           "LSU will stick with a two-<br>quarterback rotation Saturday<br>at Auburn, according to Tigers<br>coach Nick Saban, who seemed<br>to have some fun telling the<br>media what he will and won<br>#39;t discuss Monday."
-          ],
-          [
-           "Bulgaria has started its first<br>co-mission with the EU in<br>Bosnia and Herzegovina, along<br>with some 30 countries,<br>including Canada and Turkey."
-          ],
-          [
-           "The Windows Future Storage<br>(WinFS) technology that got<br>cut out of Windows<br>quot;Longhorn quot; is in<br>serious trouble, and not just<br>the hot water a feature might<br>encounter for missing its<br>intended production vehicle."
-          ],
-          [
-           "Seattle -- - Not so long ago,<br>the 49ers were inflicting on<br>other teams the kind of pain<br>and embarrassment they felt in<br>their 34-0 loss to the<br>Seahawks on Sunday."
-          ],
-          [
-           "AP - The pileup of events in<br>the city next week, including<br>the Republican National<br>Convention, will add to the<br>security challenge for the New<br>York Police Department, but<br>commissioner Ray Kelly says,<br>\"With a big, experienced<br>police force, we can do it.\""
-          ],
-          [
-           "washingtonpost.com - Let the<br>games begin. Not the Olympics<br>again, but the all-out battle<br>between video game giants Sony<br>Corp. and Nintendo Co. Ltd.<br>The two Japanese companies are<br>rolling out new gaming<br>consoles, but Nintendo has<br>beaten Sony to the punch by<br>announcing an earlier launch<br>date for its new hand-held<br>game player."
-          ],
-          [
-           "London - Manchester City held<br>fierce crosstown rivals<br>Manchester United to a 0-0<br>draw on Sunday, keeping the<br>Red Devils eleven points<br>behind leaders Chelsea."
-          ],
-          [
-           "LONDON, Dec 11 (IranMania) -<br>Iraqi Vice-President Ibrahim<br>al-Jaafari refused to believe<br>in remarks published Friday<br>that Iran was attempting to<br>influence Iraqi polls with the<br>aim of creating a<br>quot;crescent quot; dominated<br>by Shiites in the region."
-          ],
-          [
-           "LOS ANGELES (CBS.MW) - The US<br>Securities and Exchange<br>Commission is probing<br>transactions between Delphi<br>Corp and EDS, which supplies<br>the automotive parts and<br>components giant with<br>technology services, Delphi<br>said late Wednesday."
-          ],
-          [
-           "MONTREAL (CP) - Molson Inc.<br>and Adolph Coors Co. are<br>sweetening their brewery<br>merger plan with a special<br>dividend to Molson<br>shareholders worth \\$381<br>million."
-          ],
-          [
-           "AP - Echoing what NASA<br>officials said a day earlier,<br>a Russian space official on<br>Friday said the two-man crew<br>on the international space<br>station could be forced to<br>return to Earth if a planned<br>resupply flight cannot reach<br>them with food supplies later<br>this month."
-          ],
-          [
-           "InfoWorld - SANTA CLARA,<br>CALIF. -- Accommodating large<br>patch sets in Linux is<br>expected to mean forking off<br>of the 2.7 version of the<br>platform to accommodate these<br>changes, according to Andrew<br>Morton, lead maintainer of the<br>Linux kernel for Open Source<br>Development Labs (OSDL)."
-          ],
-          [
-           "AMSTERDAM The mobile phone<br>giants Vodafone and Nokia<br>teamed up on Thursday to<br>simplify cellphone software<br>written with the Java computer<br>language."
-          ],
-          [
-           "WELLINGTON: National carrier<br>Air New Zealand said yesterday<br>the Australian Competition<br>Tribunal has approved a<br>proposed alliance with Qantas<br>Airways Ltd, despite its<br>rejection in New Zealand."
-          ],
-          [
-           "The late Princess Dianas<br>former bodyguard, Ken Wharfe,<br>dismisses her suspicions that<br>one of her lovers was bumped<br>off. Princess Diana had an<br>affair with Barry Mannakee, a<br>policeman who was assigned to<br>protect her."
-          ],
-          [
-           "Long considered beyond the<br>reach of mainland mores, the<br>Florida city is trying to<br>limit blatant displays of<br>sexual behavior."
-          ],
-          [
-           "The overall Linux market is<br>far larger than previous<br>estimates show, a new study<br>says. In an analysis of the<br>Linux market released late<br>Tuesday, market research firm<br>IDC estimated that the Linux<br>market -- including"
-          ],
-          [
-           "By PAUL ELIAS    SAN FRANCISCO<br>(AP) -- Several California<br>cities and counties, including<br>San Francisco and Los Angeles,<br>sued Microsoft Corp. (MSFT) on<br>Friday, accusing the software<br>giant of illegally charging<br>inflated prices for its<br>products because of monopoly<br>control of the personal<br>computer operating system<br>market..."
-          ],
-          [
-           "New Ole Miss head coach Ed<br>Orgeron, speaking for the<br>first time since his hiring,<br>made clear the goal of his<br>football program.  quot;The<br>goal of this program will be<br>to go to the Sugar Bowl, quot;<br>Orgeron said."
-          ],
-          [
-           "\"Everyone's nervous,\" Acting<br>Undersecretary of Defense<br>Michael W. Wynne warned in a<br>confidential e-mail to Air<br>Force Secretary James G. Roche<br>on July 8, 2003."
-          ],
-          [
-           "Reuters - Alpharma Inc.  on<br>Friday began\\selling a cheaper<br>generic version of Pfizer<br>Inc.'s   #36;3\\billion a year<br>epilepsy drug Neurontin<br>without waiting for a\\court<br>ruling on Pfizer's request to<br>block the copycat medicine."
-          ],
-          [
-           "Public opinion of the database<br>giant sinks to 12-year low, a<br>new report indicates."
-          ],
-          [
-           "Opinion: Privacy hysterics<br>bring old whine in new bottles<br>to the Internet party. The<br>desktop search beta from this<br>Web search leader doesn #39;t<br>do anything you can #39;t do<br>already."
-          ],
-          [
-           "It is much too easy to call<br>Pedro Martinez the selfish<br>one, to say he is walking out<br>on the Red Sox, his baseball<br>family, for the extra year of<br>the Mets #39; crazy money."
-          ],
-          [
-           "It is impossible for young<br>tennis players today to know<br>what it was like to be Althea<br>Gibson and not to be able to<br>quot;walk in the front door,<br>quot; Garrison said."
-          ],
-          [
-           "Senator John Kerry said today<br>that the war in Iraq was a<br>\"profound diversion\" from the<br>war on terror and Osama bin<br>Laden."
-          ],
-          [
-           "For spammers, it #39;s been a<br>summer of love. Two newly<br>issued reports tracking the<br>circulation of unsolicited<br>e-mails say pornographic spam<br>dominated this summer, nearly<br>all of it originating from<br>Internet addresses in North<br>America."
-          ],
-          [
-           "The Nordics fared well because<br>of their long-held ideals of<br>keeping corruption clamped<br>down and respect for<br>contracts, rule of law and<br>dedication to one-on-one<br>business relationships."
-          ],
-          [
-           "Microsoft portrayed its<br>Longhorn decision as a<br>necessary winnowing to hit the<br>2006 timetable. The<br>announcement on Friday,<br>Microsoft executives insisted,<br>did not point to a setback in<br>software"
-          ],
-          [
-           "Here #39;s an obvious word of<br>advice to Florida athletic<br>director Jeremy Foley as he<br>kicks off another search for<br>the Gators football coach: Get<br>Steve Spurrier on board."
-          ],
-          [
-           "Don't bother with the small<br>stuff. Here's what really<br>matters to your lender."
-          ],
-          [
-           "A problem in the Service Pack<br>2 update for Windows XP may<br>keep owners of AMD-based<br>computers from using the long-<br>awaited security package,<br>according to Microsoft."
-          ],
-          [
-           "Five years ago, running a<br>telephone company was an<br>immensely profitable<br>proposition. Since then, those<br>profits have inexorably<br>declined, and now that decline<br>has taken another gut-<br>wrenching dip."
-          ],
-          [
-           "NEW YORK - The litigious<br>Recording Industry Association<br>of America (RIAA) is involved<br>in another legal dispute with<br>a P-to-P (peer-to-peer)<br>technology maker, but this<br>time, the RIAA is on defense.<br>Altnet Inc. filed a lawsuit<br>Wednesday accusing the RIAA<br>and several of its partners of<br>infringing an Altnet patent<br>covering technology for<br>identifying requested files on<br>a P-to-P network."
-          ],
-          [
-           "A group claiming to have<br>captured two Indonesian women<br>in Iraq has said it will<br>release them if Jakarta frees<br>Muslim cleric Abu Bakar Bashir<br>being held for alleged<br>terrorist links."
-          ],
-          [
-           "Amid the stormy gloom in<br>Gotham, the rain-idled Yankees<br>last night had plenty of time<br>to gather in front of their<br>televisions and watch the Red<br>Sox Express roar toward them.<br>The national telecast might<br>have been enough to send a<br>jittery Boss Steinbrenner<br>searching his Bartlett's<br>Familiar Quotations for some<br>quot;Little Engine That Could<br>quot; metaphor."
-          ],
-          [
-           "FULHAM fans would have been<br>singing the late Elvis #39;<br>hit  #39;The wonder of you<br>#39; to their player Elvis<br>Hammond. If not for Frank<br>Lampard spoiling the party,<br>with his dedication to his<br>late grandfather."
-          ],
-          [
-           "Indonesian police said<br>yesterday that DNA tests had<br>identified a suicide bomber<br>involved in a deadly attack<br>this month on the Australian<br>embassy in Jakarta."
-          ],
-          [
-           "NEW YORK - Wal-Mart Stores<br>Inc.'s warning of<br>disappointing sales sent<br>stocks fluctuating Monday as<br>investors' concerns about a<br>slowing economy offset their<br>relief over a drop in oil<br>prices.    October contracts<br>for a barrel of light crude<br>were quoted at \\$46.48, down<br>24 cents, on the New York<br>Mercantile Exchange..."
-          ],
-          [
-           "Iraq #39;s top Shi #39;ite<br>cleric made a sudden return to<br>the country on Wednesday and<br>said he had a plan to end an<br>uprising in the  quot;burning<br>city quot; of Najaf, where<br>fighting is creeping ever<br>closer to its holiest shrine."
-          ],
-          [
-           "For two weeks before MTV<br>debuted U2 #39;s video for the<br>new single  quot;Vertigo,<br>quot; fans had a chance to see<br>the band perform the song on<br>TV -- in an iPod commercial."
-          ],
-          [
-           "A bird #39;s eye view of the<br>circuit at Shanghai shows what<br>an event Sunday #39;s Chinese<br>Grand Prix will be. The course<br>is arguably one of the best<br>there is, and so it should be<br>considering the amount of<br>money that has been spent on<br>it."
-          ],
-          [
-           "KABUL, Afghanistan Aug. 22,<br>2004 - US soldiers sprayed a<br>pickup truck with bullets<br>after it failed to stop at a<br>roadblock in central<br>Afghanistan, killing two women<br>and a man and critically<br>wounding two other"
-          ],
-          [
-           "Oct. 26, 2004 - The US-<br>European spacecraft Cassini-<br>Huygens on Tuesday made a<br>historic flyby of Titan,<br>Saturn #39;s largest moon,<br>passing so low as to almost<br>touch the fringes of its<br>atmosphere."
-          ],
-          [
-           "Reuters - A volcano in central<br>Japan sent smoke and\\ash high<br>into the sky and spat out<br>molten rock as it erupted\\for<br>a fourth straight day on<br>Friday, but experts said the<br>peak\\appeared to be quieting<br>slightly."
-          ],
-          [
-           "Shares of Google Inc. made<br>their market debut on Thursday<br>and quickly traded up 19<br>percent at \\$101.28. The Web<br>search company #39;s initial<br>public offering priced at \\$85"
-          ],
-          [
-           "SYDNEY -- Prime Minister John<br>Howard of Australia, a key US<br>ally and supporter of the Iraq<br>war, celebrated his election<br>win over opposition Labor<br>after voters enjoying the<br>fruits of a strong economy<br>gave him another term."
-          ],
-          [
-           "Reuters - Global warming is<br>melting\\Ecuador's cherished<br>mountain glaciers and could<br>cause several\\of them to<br>disappear over the next two<br>decades, Ecuadorean and\\French<br>scientists said on Wednesday."
-          ],
-          [
-           "AP - Sirius Satellite Radio<br>signed a deal to air the men's<br>NCAA basketball tournament<br>through 2007, the latest move<br>made in an attempt to draw<br>customers through sports<br>programming."
-          ],
-          [
-           "Rather than tell you, Dan<br>Kranzler chooses instead to<br>show you how he turned Mforma<br>into a worldwide publisher of<br>video games, ringtones and<br>other hot downloads for mobile<br>phones."
-          ],
-          [
-           "UK interest rates have been<br>kept on hold at 4.75 following<br>the latest meeting of the Bank<br>of England #39;s rate-setting<br>committee."
-          ],
-          [
-           "BAGHDAD, Iraq - Two rockets<br>hit a downtown Baghdad hotel<br>housing foreigners and<br>journalists Thursday, and<br>gunfire erupted in the<br>neighborhood across the Tigris<br>River from the U.S. Embassy<br>compound..."
-          ],
-          [
-           "The Prevention of Terrorism<br>Act 2002 (Pota) polarised the<br>country, not just by the<br>manner in which it was pushed<br>through by the NDA government<br>through a joint session of<br>Parliament but by the shabby<br>and often biased manner in<br>which it was enforced."
-          ],
-          [
-           "Not being part of a culture<br>with a highly developed<br>language, could limit your<br>thoughts, at least as far as<br>numbers are concerned, reveals<br>a new study conducted by a<br>psychologist at the Columbia<br>University in New York."
-          ],
-          [
-           "CAMBRIDGE, Mass. A native of<br>Red Oak, Iowa, who was a<br>pioneer in astronomy who<br>proposed the  quot;dirty<br>snowball quot; theory for the<br>substance of comets, has died."
-          ],
-          [
-           "Resurgent oil prices paused<br>for breath as the United<br>States prepared to draw on its<br>emergency reserves to ease<br>supply strains caused by<br>Hurricane Ivan."
-          ],
-          [
-           "(Sports Network) - The<br>inconsistent San Diego Padres<br>will try for consecutive wins<br>for the first time since<br>August 28-29 tonight, when<br>they begin a huge four-game<br>set against the Los Angeles<br>Dodgers at Dodger Stadium."
-          ],
-          [
-           "A Portuguese-sounding version<br>of the virus has appeared in<br>the wild. Be wary of mail from<br>Manaus."
-          ],
-          [
-           " NEW YORK (Reuters) - Top seed<br>Roger Federer survived a<br>stirring comeback from twice<br>champion Andre Agassi to reach<br>the  semifinals of the U.S.<br>Open for the first time on<br>Thursday,  squeezing through<br>6-3, 2-6, 7-5, 3-6, 6-3."
-          ],
-          [
-           "President Bush, who credits<br>three years of tax relief<br>programs with helping<br>strengthen the slow economy,<br>said Saturday he would sign<br>into law the Working Families<br>Tax Relief Act to preserve tax<br>cuts."
-          ],
-          [
-           "HEN investors consider the<br>bond market these days, the<br>low level of interest rates<br>should be more cause for worry<br>than for gratitude."
-          ],
-          [
-           "Reuters - Hunters soon may be<br>able to sit at\\their computers<br>and blast away at animals on a<br>Texas ranch via\\the Internet,<br>a prospect that has state<br>wildlife officials up\\in arms."
-          ],
-          [
-           "The Bedminster-based company<br>yesterday said it was pushing<br>into 21 new markets with the<br>service, AT amp;T CallVantage,<br>and extending an introductory<br>rate offer until Sept. 30. In<br>addition, the company is<br>offering in-home installation<br>of up to five ..."
-          ],
-          [
-           "Samsung Electronics Co., Ltd.<br>has developed a new LCD<br>(liquid crystal display)<br>technology that builds a touch<br>screen into the display, a<br>development that could lead to<br>thinner and cheaper display<br>panels for mobile phones, the<br>company said Tuesday."
-          ],
-          [
-           "The US military says marines<br>in Fallujah shot and killed an<br>insurgent who engaged them as<br>he was faking being dead, a<br>week after footage of a marine<br>killing an apparently unarmed<br>and wounded Iraqi caused a<br>stir in the region."
-          ],
-          [
-           " NEW YORK (Reuters) - U.S.<br>stocks rallied on Monday after<br>software maker PeopleSoft Inc.<br>&lt;A HREF=\"http://www.investo<br>r.reuters.com/FullQuote.aspx?t<br>icker=PSFT.O target=/stocks/qu<br>ickinfo/fullquote\"&gt;PSFT.O&l<br>t;/A&gt; accepted a sweetened<br>\\$10.3 billion buyout by rival<br>Oracle Corp.'s &lt;A HREF=\"htt<br>p://www.investor.reuters.com/F<br>ullQuote.aspx?ticker=ORCL.O ta<br>rget=/stocks/quickinfo/fullquo<br>te\"&gt;ORCL.O&lt;/A&gt; and<br>other  big deals raised<br>expectations of more<br>takeovers."
-          ],
-          [
-           "SAN FRANCISCO - What Babe Ruth<br>was to the first half of the<br>20th century and Hank Aaron<br>was to the second, Barry Bonds<br>has become for the home run<br>generation."
-          ],
-          [
-           "Description: NPR #39;s Alex<br>Chadwick talks to Colin Brown,<br>deputy political editor for<br>the United Kingdom #39;s<br>Independent newspaper,<br>currently covering the British<br>Labour Party Conference."
-          ],
-          [
-           "Birgit Fischer settled for<br>silver, leaving the 42-year-<br>old Olympian with two medals<br>in two days against decidedly<br>younger competition."
-          ],
-          [
-           "The New Jersey-based Accoona<br>Corporation, an industry<br>pioneer in artificial<br>intelligence search<br>technology, announced on<br>Monday the launch of Accoona."
-          ],
-          [
-           "Hamas vowed revenge yesterday<br>after an Israeli airstrike in<br>Gaza killed one of its senior<br>commanders - the latest<br>assassination to have weakened<br>the militant group."
-          ],
-          [
-           "There was no mystery ... no<br>secret strategy ... no baited<br>trap that snapped shut and<br>changed the course of history<br>#39;s most lucrative non-<br>heavyweight fight."
-          ],
-          [
-           "Notre Dame accepted an<br>invitation Sunday to play in<br>the Insight Bowl in Phoenix<br>against a Pac-10 team on Dec.<br>28. The Irish (6-5) accepted<br>the bid a day after losing to<br>Southern California"
-          ],
-          [
-           "Greg Anderson has so dominated<br>Pro Stock this season that his<br>championship quest has evolved<br>into a pursuit of NHRA<br>history. By Bob Hesser, Racers<br>Edge Photography."
-          ],
-          [
-           "Goldman Sachs Group Inc. on<br>Thursday said fourth-quarter<br>profit rose as its fixed-<br>income, currency and<br>commodities business soared<br>while a rebounding stock<br>market boosted investment<br>banking."
-          ],
-          [
-           " NEW YORK (Reuters) - The<br>dollar rose on Monday in a<br>retracement from last week's<br>steep losses, but dealers said<br>the  bias toward a weaker<br>greenback remained intact."
-          ],
-          [
-           "Michael Powell, chairman of<br>the FCC, said Wednesday he was<br>disappointed with ABC for<br>airing a sexually suggestive<br>opening to \"Monday Night<br>Football.\""
-          ],
-          [
-           "The message against illegally<br>copying CDs for uses such as<br>in file-sharing over the<br>Internet has widely sunk in,<br>said the company in it #39;s<br>recent announcement to drop<br>the Copy-Control program."
-          ],
-          [
-           "Former Washington football<br>coach Rick Neuheisel looked<br>forward to a return to<br>coaching Wednesday after being<br>cleared by the NCAA of<br>wrongdoing related to his<br>gambling on basketball games."
-          ],
-          [
-           "Reuters - California will<br>become hotter and\\drier by the<br>end of the century, menacing<br>the valuable wine and\\dairy<br>industries, even if dramatic<br>steps are taken to curb\\global<br>warming, researchers said on<br>Monday."
-          ],
-          [
-           "A senior member of the<br>Palestinian resistance group<br>Hamas has been released from<br>an Israeli prison after<br>completing a two-year<br>sentence."
-          ],
-          [
-           "IBM said Monday that it won a<br>500 million (AUD\\$1.25<br>billion), seven-year services<br>contract to help move UK bank<br>Lloyds TBS from its<br>traditional voice<br>infrastructure to a converged<br>voice and data network."
-          ],
-          [
-           "MPs have announced a new<br>inquiry into family courts and<br>whether parents are treated<br>fairly over issues such as<br>custody or contact with their<br>children."
-          ],
-          [
-           "Canadian Press - MELBOURNE,<br>Australia (AP) - A 36-year-old<br>businesswoman was believed to<br>be the first woman to walk<br>around Australia on Friday<br>after striding into her<br>hometown of Melbourne to<br>complete her 16,700-kilometre<br>trek in 365 days."
-          ],
-          [
-           "Most remaining Pakistani<br>prisoners held at the US<br>Guantanamo Bay prison camp are<br>freed, officials say."
-          ],
-          [
-           "Space shuttle astronauts will<br>fly next year without the<br>ability to repair in orbit the<br>type of damage that destroyed<br>the Columbia vehicle in<br>February 2003."
-          ],
-          [
-           "Moscow - Russia plans to<br>combine Gazprom, the world<br>#39;s biggest natural gas<br>producer, with state-owned oil<br>producer Rosneft, easing rules<br>for trading Gazprom shares and<br>creating a company that may<br>dominate the country #39;s<br>energy industry."
-          ],
-          [
-           "AP - Rutgers basketball player<br>Shalicia Hurns was suspended<br>from the team after pleading<br>guilty to punching and tying<br>up her roommate during a<br>dispute over painkilling<br>drugs."
-          ],
-          [
-           "By cutting WinFS from Longhorn<br>and indefinitely delaying the<br>storage system, Microsoft<br>Corp. has also again delayed<br>the Microsoft Business<br>Framework (MBF), a new Windows<br>programming layer that is<br>closely tied to WinFS."
-          ],
-          [
-           "French police are<br>investigating an arson-caused<br>fire at a Jewish Social Center<br>that might have killed dozens<br>without the quick response of<br>firefighters."
-          ],
-          [
-           "Rodney King, whose videotaped<br>beating led to riots in Los<br>Angeles in 1992, is out of<br>jail now and talking frankly<br>for the first time about the<br>riots, himself and the<br>American way of life."
-          ],
-          [
-           "AFP - Radical Islamic cleric<br>Abu Hamza al-Masri was set to<br>learn Thursday whether he<br>would be charged under<br>Britain's anti-terrorism law,<br>thus delaying his possible<br>extradition to the United<br>States to face terrorism-<br>related charges."
-          ],
-          [
-           "Diversified manufacturer<br>Honeywell International Inc.<br>(HON.N: Quote, Profile,<br>Research) posted a rise in<br>quarterly profit as strong<br>demand for aerospace equipment<br>and automobile components"
-          ],
-          [
-           "This was the event Michael<br>Phelps didn't really need to<br>compete in if his goal was to<br>win eight golds. He probably<br>would have had a better chance<br>somewhere else."
-          ],
-          [
-           "Samsung's new SPH-V5400 mobile<br>phone sports a built-in<br>1-inch, 1.5-gigabyte hard disk<br>that can store about 15 times<br>more data than conventional<br>handsets, Samsung said."
-          ],
-          [
-           "Reuters - U.S. housing starts<br>jumped a\\larger-than-expected<br>6.4 percent in October to the<br>busiest pace\\since December as<br>buyers took advantage of low<br>mortgage rates,\\a government<br>report showed on Wednesday."
-          ],
-          [
-           "Gabe Kapler became the first<br>player to leave the World<br>Series champion Boston Red<br>Sox, agreeing to a one-year<br>contract with the Yomiuri<br>Giants in Tokyo."
-          ],
-          [
-           "Louisen Louis, 30, walked<br>Monday in the middle of a<br>street that resembled a small<br>river with brown rivulets and<br>waves. He wore sandals and had<br>a cut on one of his big toes."
-          ],
-          [
-           "BALI, Indonesia - Svetlana<br>Kuznetsova, fresh off her<br>championship at the US Open,<br>defeated Australian qualifier<br>Samantha Stosur 6-4, 6-4<br>Thursday to reach the<br>quarterfinals of the Wismilak<br>International."
-          ],
-          [
-           "The Securities and Exchange<br>Commission ordered mutual<br>funds to stop paying higher<br>commissions to brokers who<br>promote the companies' funds<br>and required portfolio<br>managers to reveal investments<br>in funds they supervise."
-          ],
-          [
-           "A car bomb exploded outside<br>the main hospital in Chechny<br>#39;s capital, Grozny, on<br>Sunday, injuring 17 people in<br>an attack apparently targeting<br>members of a Chechen security<br>force bringing in wounded from<br>an earlier explosion"
-          ],
-          [
-           "AP - Just like the old days in<br>Dallas, Emmitt Smith made life<br>miserable for the New York<br>Giants on Sunday."
-          ],
-          [
-           "Sumitomo Mitsui Financial<br>Group (SMFG), Japans second<br>largest bank, today put<br>forward a 3,200 billion (\\$29<br>billion) takeover bid for<br>United Financial Group (UFJ),<br>the countrys fourth biggest<br>lender, in an effort to regain<br>initiative in its bidding"
-          ],
-          [
-           "AP - Gay marriage is emerging<br>as a big enough issue in<br>several states to influence<br>races both for Congress and<br>the presidency."
-          ],
-          [
-           "TAMPA, Fla. - Chris Simms<br>first NFL start lasted 19<br>plays, and it might be a while<br>before he plays again for the<br>Tampa Bay Buccaneers."
-          ],
-          [
-           "Vendor says it #39;s<br>developing standards-based<br>servers in various form<br>factors for the telecom<br>market. By Darrell Dunn.<br>Hewlett-Packard on Thursday<br>unveiled plans to create a<br>portfolio of products and<br>services"
-          ],
-          [
-           "Jarno Trulli made the most of<br>the conditions in qualifying<br>to claim pole ahead of Michael<br>Schumacher, while Fernando<br>finished third."
-          ],
-          [
-           "More than 30 aid workers have<br>been airlifted to safety from<br>a town in Sudan #39;s troubled<br>Darfur region after fighting<br>broke out and their base was<br>bombed, a British charity<br>says."
-          ],
-          [
-           " NEW YORK (Reuters) - U.S.<br>chain store retail sales<br>slipped  during the<br>Thanksgiving holiday week, as<br>consumers took  advantage of<br>discounted merchandise, a<br>retail report said on<br>Tuesday."
-          ],
-          [
-           "The Mac maker says it will<br>replace about 28,000 batteries<br>in one model of PowerBook G4<br>and tells people to stop using<br>the notebook."
-          ],
-          [
-           "It #39;s the mildest of mild<br>winters down here in the south<br>of Italy and, last weekend at<br>Bcoli, a pretty suburb by the<br>seaside west of Naples, the<br>customers of Pizzeria  quot;Da<br>Enrico quot; were making the<br>most of it."
-          ],
-          [
-           "By George Chamberlin , Daily<br>Transcript Financial<br>Correspondent. Concerns about<br>oil production leading into<br>the winter months sent shivers<br>through the stock market<br>Wednesday."
-          ],
-          [
-           "Airbus has withdrawn a filing<br>that gave support for<br>Microsoft in an antitrust case<br>before the European Union<br>#39;s Court of First Instance,<br>a source close to the<br>situation said on Friday."
-          ],
-          [
-           "WASHINGTON - A spotty job<br>market and stagnant paychecks<br>cloud this Labor Day holiday<br>for many workers, highlighting<br>the importance of pocketbook<br>issues in the presidential<br>election.   \"Working harder<br>and enjoying it less,\" said<br>economist Ken Mayland,<br>president of ClearView<br>Economics, summing up the<br>state of working America..."
-          ],
-          [
-           " NEW YORK (Reuters) - U.S.<br>stocks rose on Wednesday<br>lifted  by a merger between<br>retailers Kmart and Sears,<br>better-than-expected earnings<br>from Hewlett-Packard and data<br>showing a slight rise in core<br>inflation."
-          ],
-          [
-           "AP - Authorities are<br>investigating whether bettors<br>at New York's top thoroughbred<br>tracks were properly informed<br>when jockeys came in<br>overweight at races, a source<br>familiar with the probe told<br>The Associated Press."
-          ],
-          [
-           "European Commission president<br>Romano Prodi has unveiled<br>proposals to loosen the<br>deficit rules under the EU<br>Stability Pact. The loosening<br>was drafted by monetary<br>affairs commissioner Joaquin<br>Almunia, who stood beside the<br>president at the announcement."
-          ],
-          [
-           "Canadian Press - MONTREAL (CP)<br>- A 19-year-old man charged in<br>a firebombing at a Jewish<br>elementary school pleaded<br>guilty Thursday to arson."
-          ],
-          [
-           "Retail sales in Britain saw<br>the fastest growth in<br>September since January,<br>casting doubts on the view<br>that the economy is slowing<br>down, according to official<br>figures released Thursday."
-          ],
-          [
-           " NEW YORK (Reuters) -<br>Interstate Bakeries Corp.<br>&lt;A HREF=\"http://www.investo<br>r.reuters.com/FullQuote.aspx?t<br>icker=IBC.N target=/stocks/qui<br>ckinfo/fullquote\"&gt;IBC.N&lt;<br>/A&gt;,  maker of Hostess<br>Twinkies and Wonder Bread,<br>filed for  bankruptcy on<br>Wednesday after struggling<br>with more than \\$1.3  billion<br>in debt and high costs."
-          ],
-          [
-           "Delta Air Lines (DAL.N: Quote,<br>Profile, Research) on Thursday<br>said it reached a deal with<br>FedEx Express to sell eight<br>McDonnell Douglas MD11<br>aircraft and four spare<br>engines for delivery in 2004."
-          ],
-          [
-           "Michael Owen scored his first<br>goal for Real Madrid in a 1-0<br>home victory over Dynamo Kiev<br>in the Champions League. The<br>England striker toe-poked home<br>Ronaldo #39;s cross in the<br>35th minute to join the<br>Russians"
-          ],
-          [
-           " quot;Resuming uranium<br>enrichment is not in our<br>agenda. We are still committed<br>to the suspension, quot;<br>Foreign Ministry spokesman<br>Hamid Reza."
-          ],
-          [
-           "Leading OPEC producer Saudi<br>Arabia said on Monday in<br>Vienna, Austria, that it had<br>made a renewed effort to<br>deflate record high world oil<br>prices by upping crude output<br>again."
-          ],
-          [
-           "The U.S. military presence in<br>Iraq will grow to 150,000<br>troops by next month, the<br>highest level since the<br>invasion last year."
-          ],
-          [
-           "UPDATE, SUN 9PM: More than a<br>million people have left their<br>homes in Cuba, as Hurricane<br>Ivan approaches. The ferocious<br>storm is headed that way,<br>after ripping through the<br>Cayman Islands, tearing off<br>roofs, flooding homes and<br>causing general havoc."
-          ],
-          [
-           "Jason Giambi has returned to<br>the New York Yankees'<br>clubhouse but is still<br>clueless as to when he will be<br>able to play again."
-          ],
-          [
-           "Seventy-five National Hockey<br>League players met with union<br>leaders yesterday to get an<br>update on a lockout that shows<br>no sign of ending."
-          ],
-          [
-           "Howard, at 6-4 overall and 3-3<br>in the Mid-Eastern Athletic<br>Conference, can clinch a<br>winning record in the MEAC<br>with a win over Delaware State<br>on Saturday."
-          ],
-          [
-           "Millions of casual US anglers<br>are having are larger than<br>appreciated impact on sea fish<br>stocks, scientists claim."
-          ],
-          [
-           "The founders of the Pilgrim<br>Baxter  amp; Associates money-<br>management firm agreed<br>yesterday to personally fork<br>over \\$160 million to settle<br>charges they allowed a friend<br>to"
-          ],
-          [
-           " ATHENS (Reuters) - Top-ranked<br>Argentina booked their berth<br>in the women's hockey semi-<br>finals at the Athens Olympics<br>on  Friday but defending<br>champions Australia now face<br>an obstacle  course to qualify<br>for the medal matches."
-          ],
-          [
-           "IBM Corp. Tuesday announced<br>plans to acquire software<br>vendor Systemcorp ALG for an<br>undisclosed amount. Systemcorp<br>of Montreal makes project<br>portfolio management software<br>aimed at helping companies<br>better manage their IT<br>projects."
-          ],
-          [
-           "The Notre Dame message boards<br>are no longer discussing<br>whether Tyrone Willingham<br>should be fired. Theyre<br>already arguing about whether<br>the next coach should be Barry<br>Alvarez or Steve Spurrier."
-          ],
-          [
-           "Forbes.com - By now you<br>probably know that earnings of<br>Section 529 college savings<br>accounts are free of federal<br>tax if used for higher<br>education. But taxes are only<br>part of the problem. What if<br>your investments tank? Just<br>ask Laurence and Margo<br>Williams of Alexandria, Va. In<br>2000 they put  #36;45,000 into<br>the Virginia Education Savings<br>Trust to open accounts for<br>daughters Lea, now 5, and<br>Anne, now 3. Since then their<br>investment has shrunk 5 while<br>the average private college<br>tuition has climbed 18 to<br>#36;18,300."
-          ],
-          [
-           "German Chancellor Gerhard<br>Schroeder said Sunday that<br>there was  quot;no problem<br>quot; with Germany #39;s<br>support to the start of<br>negotiations on Turkey #39;s<br>entrance into EU."
-          ],
-          [
-           "Coca-Cola Amatil Ltd.,<br>Australia #39;s biggest soft-<br>drink maker, offered A\\$500<br>million (\\$382 million) in<br>cash and stock for fruit<br>canner SPC Ardmona Ltd."
-          ],
-          [
-           "US technology shares tumbled<br>on Friday after technology<br>bellwether Intel Corp.<br>(INTC.O: Quote, Profile,<br>Research) slashed its revenue<br>forecast, but blue chips were<br>only moderately lower as drug<br>and industrial stocks made<br>solid gains."
-          ],
-          [
-           " WASHINGTON (Reuters) - Final<br>U.S. government tests on an<br>animal suspected of having mad<br>cow disease were not yet<br>complete, the U.S. Agriculture<br>Department said, with no<br>announcement on the results<br>expected on Monday."
-          ],
-          [
-           "MANILA Fernando Poe Jr., the<br>popular actor who challenged<br>President Gloria Macapagal<br>Arroyo in the presidential<br>elections this year, died<br>early Tuesday."
-          ],
-          [
-           " THOMASTOWN, Ireland (Reuters)<br>- World number three Ernie<br>Els overcame difficult weather<br>conditions to fire a sparkling<br>eight-under-par 64 and move<br>two shots clear after two<br>rounds of  the WGC-American<br>Express Championship Friday."
-          ],
-          [
-           "Lamar Odom supplemented 20<br>points with 13 rebounds and<br>Kobe Bryant added 19 points to<br>overcome a big night from Yao<br>Ming as the Los Angeles Lakers<br>ground out an 84-79 win over<br>the Rockets in Houston<br>Saturday."
-          ],
-          [
-           "AMSTERDAM, NETHERLANDS - A<br>Dutch filmmaker who outraged<br>members of the Muslim<br>community by making a film<br>critical of the mistreatment<br>of women in Islamic society<br>was gunned down and stabbed to<br>death Tuesday on an Amsterdam<br>street."
-          ],
-          [
-           "Microsoft Xbox Live traffic on<br>service provider networks<br>quadrupled following the<br>November 9th launch of Halo-II<br>-- which set entertainment<br>industry records by selling<br>2.4-million units in the US<br>and Canada on the first day of<br>availability, driving cash"
-          ],
-          [
-           "Lawyers in a California class<br>action suit against Microsoft<br>will get less than half the<br>payout they had hoped for. A<br>judge in San Francisco ruled<br>that the attorneys will<br>collect only \\$112."
-          ],
-          [
-           "Google Browser May Become<br>Reality\\\\There has been much<br>fanfare in the Mozilla fan<br>camps about the possibility of<br>Google using Mozilla browser<br>technology to produce a<br>GBrowser - the Google Browser.<br>Over the past two weeks, the<br>news and speculation has<br>escalated to the point where<br>even Google itself is ..."
-          ],
-          [
-           "Metro, Germany's biggest<br>retailer, turns in weaker-<br>than-expected profits as sales<br>at its core supermarkets<br>division dip lower."
-          ],
-          [
-           "It rained Sunday, of course,<br>and but another soppy, sloppy<br>gray day at Westside Tennis<br>Club did nothing to deter<br>Roger Federer from his<br>appointed rounds."
-          ],
-          [
-           "Hewlett-Packard has joined<br>with Brocade to integrate<br>Brocade #39;s storage area<br>network switching technology<br>into HP Bladesystem servers to<br>reduce the amount of fabric<br>infrastructure needed in a<br>datacentre."
-          ],
-          [
-           "Zimbabwe #39;s most persecuted<br>white MP began a year of hard<br>labour last night after<br>parliament voted to jail him<br>for shoving the Justice<br>Minister during a debate over<br>land seizures."
-          ],
-          [
-           "BOSTON (CBS.MW) -- First<br>Command has reached a \\$12<br>million settlement with<br>federal regulators for making<br>misleading statements and<br>omitting important information<br>when selling mutual funds to<br>US military personnel."
-          ],
-          [
-           "A smashing blow is being dealt<br>to thousands of future<br>pensioners by a law that has<br>just been brought into force<br>by the Federal Government."
-          ],
-          [
-           "The US Senate Commerce<br>Committee on Wednesday<br>approved a measure that would<br>provide up to \\$1 billion to<br>ensure consumers can still<br>watch television when<br>broadcasters switch to new,<br>crisp digital signals."
-          ],
-          [
-           "Amelie Mauresmo was handed a<br>place in the Advanta<br>Championships final after<br>Maria Sharapova withdrew from<br>their semi-final because of<br>injury."
-          ],
-          [
-           "AP - An Israeli helicopter<br>fired two missiles in Gaza<br>City after nightfall<br>Wednesday, one at a building<br>in the Zeitoun neighborhood,<br>witnesses said, setting a<br>fire."
-          ],
-          [
-           "Reuters - Internet stocks<br>are\\as volatile as ever, with<br>growth-starved investors<br>flocking to\\the sector in the<br>hope they've bought shares in<br>the next online\\blue chip."
-          ],
-          [
-           "The federal government, banks<br>and aircraft lenders are<br>putting the clamps on<br>airlines, particularly those<br>operating under bankruptcy<br>protection."
-          ],
-          [
-           "EURO DISNEY, the financially<br>crippled French theme park<br>operator, has admitted that<br>its annual losses more than<br>doubled last financial year as<br>it was hit by a surge in<br>costs."
-          ],
-          [
-           " EAST RUTHERFORD, New Jersey<br>(Sports Network) - Retired NBA<br>center and seven-time All-<br>Star Alonzo Mourning is going<br>to  give his playing career<br>one more shot."
-          ],
-          [
-           "NASA has released an inventory<br>of the scientific devices to<br>be put on board the Mars<br>Science Laboratory rover<br>scheduled to land on the<br>surface of Mars in 2009, NASAs<br>news release reads."
-          ],
-          [
-           "The U.S. Congress needs to<br>invest more in the U.S.<br>education system and do more<br>to encourage broadband<br>adoption, the chief executive<br>of Cisco said Wednesday.&lt;p&<br>gt;ADVERTISEMENT&lt;/p&gt;&lt;<br>p&gt;&lt;img src=\"http://ad.do<br>ubleclick.net/ad/idg.us.ifw.ge<br>neral/sbcspotrssfeed;sz=1x1;or<br>d=200301151450?\" width=\"1\"<br>height=\"1\"<br>border=\"0\"/&gt;&lt;a href=\"htt<br>p://ad.doubleclick.net/clk;922<br>8975;9651165;a?http://www.info<br>world.com/spotlights/sbc/main.<br>html?lpid0103035400730000idlp\"<br>&gt;SBC Case Study: Crate   Ba<br>rrel&lt;/a&gt;&lt;br/&gt;What<br>sold them on improving their<br>network? A system that could<br>cut management costs from the<br>get-go. Find out<br>more.&lt;/p&gt;"
-          ],
-          [
-           "The Philippines put the toll<br>at more than 1,000 dead or<br>missing in four storms in two<br>weeks but, even with a break<br>in the weather on Saturday"
-          ],
-          [
-           "Reuters - Four explosions were<br>reported at petrol\\stations in<br>the Madrid area on Friday,<br>Spanish radio stations\\said,<br>following a phone warning in<br>the name of the armed<br>Basque\\separatist group ETA to<br>a Basque newspaper."
-          ],
-          [
-           "Thirty-two countries and<br>regions will participate the<br>Fifth China International<br>Aviation and Aerospace<br>Exhibition, opening Nov. 1 in<br>Zhuhai, a city in south China<br>#39;s Guangdong Province."
-          ],
-          [
-           "Jordan have confirmed that<br>Timo Glock will replace<br>Giorgio Pantano for this<br>weekend #39;s Chinese GP as<br>the team has terminated its<br>contract with Pantano."
-          ],
-          [
-           "WEST PALM BEACH, Fla. -<br>Hurricane Jeanne got stronger,<br>bigger and faster as it<br>battered the Bahamas and bore<br>down on Florida Saturday,<br>sending huge waves crashing<br>onto beaches and forcing<br>thousands into shelters just<br>weeks after Frances ravaged<br>this area..."
-          ],
-          [
-           "p2pnet.net News:- Virgin<br>Electronics has joined the mp3<br>race with a \\$250, five gig<br>player which also handles<br>Microsoft #39;s WMA format."
-          ],
-          [
-           "WASHINGTON The idea of a no-<br>bid contract for maintaining<br>airport security equipment has<br>turned into a non-starter for<br>the Transportation Security<br>Administration."
-          ],
-          [
-           "Eyetech (EYET:Nasdaq - news -<br>research) did not open for<br>trading Friday because a Food<br>and Drug Administration<br>advisory committee is meeting<br>to review the small New York-<br>based biotech #39;s<br>experimental eye disease drug."
-          ],
-          [
-           "The continuing heartache of<br>Wake Forest #39;s ACC football<br>season was best described by<br>fifth-ranked Florida State<br>coach Bobby Bowden, after his<br>Seminoles had edged the<br>Deacons 20-17 Saturday at<br>Groves Stadium."
-          ],
-          [
-           "On September 13, 2001, most<br>Americans were still reeling<br>from the shock of the<br>terrorist attacks on New York<br>and the Pentagon two days<br>before."
-          ],
-          [
-           "Microsoft has suspended the<br>beta testing of the next<br>version of its MSN Messenger<br>client because of a potential<br>security problem, a company<br>spokeswoman said Wednesday."
-          ],
-          [
-           "AP - Business software maker<br>Oracle Corp. attacked the<br>credibility and motives of<br>PeopleSoft Inc.'s board of<br>directors Monday, hoping to<br>rally investor support as the<br>17-month takeover battle<br>between the bitter business<br>software rivals nears a<br>climactic showdown."
-          ],
-          [
-           "NEW YORK - Elena Dementieva<br>shook off a subpar serve that<br>produced 15 double-faults, an<br>aching left thigh and an upset<br>stomach to advance to the<br>semifinals at the U.S. Open<br>with a 4-6, 6-4, 7-6 (1)<br>victory Tuesday over Amelie<br>Mauresmo..."
-          ],
-          [
-           "THE glory days have returned<br>to White Hart Lane. When Spurs<br>new first-team coach Martin<br>Jol promised a return to the<br>traditions of the 1960s,<br>nobody could have believed he<br>was so determined to act so<br>quickly and so literally."
-          ],
-          [
-           "A new worm has been discovered<br>in the wild that #39;s not<br>just settling for invading<br>users #39; PCs--it wants to<br>invade their homes too."
-          ],
-          [
-           "Domestic air travelers could<br>be surfing the Web by 2006<br>with government-approved<br>technology that allows people<br>access to high-speed Internet<br>connections while they fly."
-          ],
-          [
-           "GENEVA: Cross-border<br>investment is set to bounce in<br>2004 after three years of deep<br>decline, reflecting a stronger<br>world economy and more<br>international merger activity,<br>the United Nations (UN) said<br>overnight."
-          ],
-          [
-           "Researchers have for the first<br>time established the existence<br>of odd-parity superconductors,<br>materials that can carry<br>electric current without any<br>resistance."
-          ],
-          [
-           "Chewing gum giant Wm. Wrigley<br>Jr. Co. on Thursday said it<br>plans to phase out production<br>of its Eclipse breath strips<br>at a plant in Phoenix, Arizona<br>and shift manufacturing to<br>Poznan, Poland."
-          ],
-          [
-           "Prime Minister Dr Manmohan<br>Singh inaugurated a research<br>centre in the Capital on<br>Thursday to mark 400 years of<br>compilation of Sikh holy book<br>the Guru Granth Sahib."
-          ],
-          [
-           "com September 16, 2004, 7:58<br>AM PT. This fourth priority<br>#39;s main focus has been<br>improving or obtaining CRM and<br>ERP software for the past year<br>and a half."
-          ],
-          [
-           "BRUSSELS, Belgium (AP) --<br>European antitrust regulators<br>said Monday they have extended<br>their review of a deal between<br>Microsoft Corp. (MSFT) and<br>Time Warner Inc..."
-          ],
-          [
-           "AP - When Paula Radcliffe<br>dropped out of the Olympic<br>marathon miles from the<br>finish, she sobbed<br>uncontrollably. Margaret Okayo<br>knew the feeling. Okayo pulled<br>out of the marathon at the<br>15th mile with a left leg<br>injury, and she cried, too.<br>When she watched Radcliffe<br>quit, Okayo thought, \"Let's<br>cry together.\""
-          ],
-          [
-           "Tightness in the labour market<br>notwithstanding, the prospects<br>for hiring in the third<br>quarter are down from the<br>second quarter, according to<br>the new Manpower Employment<br>Outlook Survey."
-          ],
-          [
-           "THE re-election of British<br>Prime Minister Tony Blair<br>would be seen as an<br>endorsement of the military<br>action in Iraq, Prime Minister<br>John Howard said today."
-          ],
-          [
-           "Fans who can't get enough of<br>\"The Apprentice\" can visit a<br>new companion Web site each<br>week and watch an extra 40<br>minutes of video not broadcast<br>on the Thursday<br>show.&lt;br&gt;&lt;FONT<br>face=\"verdana,MS Sans<br>Serif,arial,helvetica\"<br>size=\"-2\"\\ color=\"#666666\"&gt;<br>&lt;B&gt;-Leslie<br>Walker&lt;/b&gt;&lt;/font&gt;"
-          ],
-          [
-           " ATLANTA (Sports Network) -<br>The Atlanta Hawks signed free<br>agent Kevin Willis on<br>Wednesday, nearly a decade<br>after the  veteran big man<br>ended an 11- year stint with<br>the team."
-          ],
-          [
-           "An adult Web site publisher is<br>suing Google, saying the<br>search engine company made it<br>easier for users to see the<br>site #39;s copyrighted nude<br>photographs without paying or<br>gaining access through the<br>proper channels."
-          ],
-          [
-           "When his right-front tire went<br>flying off early in the Ford<br>400, the final race of the<br>NASCAR Nextel Cup Series<br>season, Kurt Busch, it seemed,<br>was destined to spend his<br>offseason"
-          ],
-          [
-           "A Washington-based public<br>opinion firm has released the<br>results of an election day<br>survey of Nevada voters<br>showing 81 support for the<br>issuance of paper receipts<br>when votes are cast<br>electronically."
-          ],
-          [
-           "NAPSTER creator SHAWN FANNING<br>has revealed his plans for a<br>new licensed file-sharing<br>service with an almost<br>unlimited selection of tracks."
-          ],
-          [
-           " NEW YORK (Reuters) - The<br>dollar rose on Friday, after a<br>U.S. report showed consumer<br>prices in line with<br>expections,  reminding<br>investors that the Federal<br>Reserve was likely to<br>continue raising interest<br>rates, analysts said."
-          ],
-          [
-           "Brandon Backe and Woody<br>Williams pitched well last<br>night even though neither<br>earned a win. But their<br>outings will show up in the<br>record books."
-          ],
-          [
-           "President George W. Bush<br>pledged Friday to spend some<br>of the political capital from<br>his re-election trying to<br>secure a lasting Middle East<br>peace, and he envisioned the<br>establishment"
-          ],
-          [
-           "The Football Association today<br>decided not to charge David<br>Beckham with bringing the game<br>into disrepute. The FA made<br>the surprise announcement<br>after their compliance unit<br>ruled"
-          ],
-          [
-           "Last year some election<br>watchers made a bold<br>prediction that this<br>presidential election would<br>set a record: the first half<br>billion dollar campaign in<br>hard money alone."
-          ],
-          [
-           "It #39;s one more blow to<br>patients who suffer from<br>arthritis. Pfizer, the maker<br>of Celebrex, says it #39;s<br>painkiller poses an increased<br>risk of heart attacks to<br>patients using the drugs."
-          ],
-          [
-           "NEW DELHI - A bomb exploded<br>during an Independence Day<br>parade in India's remote<br>northeast on Sunday, killing<br>at least 15 people, officials<br>said, just an hour after Prime<br>Minister Manmohan Singh<br>pledged to fight terrorism.<br>The outlawed United Liberation<br>Front of Asom was suspected of<br>being behind the attack in<br>Assam state and a second one<br>later in the area, said Assam<br>Inspector General of Police<br>Khagen Sharma..."
-          ],
-          [
-           "Two separate studies by U.S.<br>researchers find that super<br>drug-resistant strains of<br>tuberculosis are at the<br>tipping point of a global<br>epidemic, and only small<br>changes could help them spread<br>quickly."
-          ],
-          [
-           " CRANS-SUR-SIERRE, Switzerland<br>(Reuters) - World number<br>three Ernie Els says he feels<br>a failure after narrowly<br>missing  out on three of the<br>year's four major<br>championships."
-          ],
-          [
-           "A UN envoy to Sudan will visit<br>Darfur tomorrow to check on<br>the government #39;s claim<br>that some 70,000 people<br>displaced by conflict there<br>have voluntarily returned to<br>their homes, a spokesman said."
-          ],
-          [
-           "Dell cut prices on some<br>servers and PCs by as much as<br>22 percent because it #39;s<br>paying less for parts. The<br>company will pass the savings<br>on components such as memory<br>and liquid crystal displays"
-          ],
-          [
-           "AP - Most of the presidential<br>election provisional ballots<br>rejected so far in Ohio came<br>from people who were not even<br>registered to vote, election<br>officials said after spending<br>nearly two weeks poring over<br>thousands of disputed votes."
-          ],
-          [
-           "Striker Bonaventure Kalou<br>netted twice to send AJ<br>Auxerre through to the first<br>knockout round of the UEFA Cup<br>at the expense of Rangers on<br>Wednesday."
-          ],
-          [
-           "AP - Rival inmates fought each<br>other with knives and sticks<br>Wednesday at a San Salvador<br>prison, leaving at least 31<br>people dead and two dozen<br>injured, officials said."
-          ],
-          [
-           "WASHINGTON: The European-<br>American Cassini-Huygens space<br>probe has detected traces of<br>ice flowing on the surface of<br>Saturn #39;s largest moon,<br>Titan, suggesting the<br>existence of an ice volcano,<br>NASA said Tuesday."
-          ],
-          [
-           "The economic growth rate in<br>the July-September period was<br>revised slightly downward from<br>an already weak preliminary<br>report, the government said<br>Wednesday."
-          ],
-          [
-           "All ISS systems continue to<br>function nominally, except<br>those noted previously or<br>below. Day 7 of joint<br>Exp.9/Exp.10 operations and<br>last full day before 8S<br>undocking."
-          ],
-          [
-           "BAGHDAD - Two Egyptian<br>employees of a mobile phone<br>company were seized when<br>gunmen stormed into their<br>Baghdad office, the latest in<br>a series of kidnappings in the<br>country."
-          ],
-          [
-           "BRISBANE, Australia - The body<br>of a whale resembling a giant<br>dolphin that washed up on an<br>eastern Australian beach has<br>intrigued local scientists,<br>who agreed Wednesday that it<br>is rare but are not sure just<br>how rare."
-          ],
-          [
-           " quot;Magic can happen. quot;<br>Sirius Satellite Radio<br>(nasdaq: SIRI - news - people<br>) may have signed Howard Stern<br>and the men #39;s NCAA<br>basketball tournaments, but XM<br>Satellite Radio (nasdaq: XMSR<br>- news - people ) has its<br>sights on your cell phone."
-          ],
-          [
-           "Trick-or-treaters can expect<br>an early Halloween treat on<br>Wednesday night, when a total<br>lunar eclipse makes the moon<br>look like a glowing pumpkin."
-          ],
-          [
-           "THIS weekend sees the<br>quot;other quot; showdown<br>between New York and New<br>England as the Jets and<br>Patriots clash in a battle of<br>the unbeaten teams."
-          ],
-          [
-           "Sifting through millions of<br>documents to locate a valuable<br>few is tedious enough, but<br>what happens when those files<br>are scattered across different<br>repositories?"
-          ],
-          [
-           "President Bush aims to<br>highlight American drug-<br>fighting aid in Colombia and<br>boost a conservative Latin<br>American leader with a stop in<br>the Andean nation where<br>thousands of security forces<br>are deployed to safeguard his<br>brief stay."
-          ],
-          [
-           "Dubai - Former Palestinian<br>security minister Mohammed<br>Dahlan said on Monday that a<br>quot;gang of mercenaries quot;<br>known to the Palestinian<br>police were behind the<br>shooting that resulted in two<br>deaths in a mourning tent for<br>Yasser Arafat in Gaza."
-          ],
-          [
-           "A drug company executive who<br>spoke out in support of<br>Montgomery County's proposal<br>to import drugs from Canada<br>and similar legislation before<br>Congress said that his company<br>has launched an investigation<br>into his political activities."
-          ],
-          [
-           "Nicolas Anelka is fit for<br>Manchester City #39;s<br>Premiership encounter against<br>Tottenham at Eastlands, but<br>the 13million striker will<br>have to be content with a<br>place on the bench."
-          ],
-          [
-           " PITTSBURGH (Reuters) - Ben<br>Roethlisberger passed for 183<br>yards and two touchdowns,<br>Hines Ward scored twice and<br>the  Pittsburgh Steelers<br>rolled to a convincing 27-3<br>victory over  Philadelphia on<br>Sunday for their second<br>straight win against an<br>undefeated opponent."
-          ],
-          [
-           " ATHENS (Reuters) - The U.S.<br>men's basketball team got<br>their  first comfortable win<br>at the Olympic basketball<br>tournament  Monday, routing<br>winless Angola 89-53 in their<br>final preliminary  round game."
-          ],
-          [
-           "A Frenchman working for Thales<br>SA, Europe #39;s biggest maker<br>of military electronics, was<br>shot dead while driving home<br>at night in the Saudi Arabian<br>city of Jeddah."
-          ],
-          [
-           "Often, the older a pitcher<br>becomes, the less effective he<br>is on the mound. Roger Clemens<br>apparently didn #39;t get that<br>memo. On Tuesday, the 42-year-<br>old Clemens won an<br>unprecedented"
-          ],
-          [
-           "NASA #39;s Mars rovers have<br>uncovered more tantalizing<br>evidence of a watery past on<br>the Red Planet, scientists<br>said Wednesday. And the<br>rovers, Spirit and<br>Opportunity, are continuing to<br>do their jobs months after<br>they were expected to ..."
-          ],
-          [
-           "SYDNEY (AFP) - Australia #39;s<br>commodity exports are forecast<br>to increase by 15 percent to a<br>record 95 billion dollars (71<br>million US), the government<br>#39;s key economic forecaster<br>said."
-          ],
-          [
-           "Google won a major legal<br>victory when a federal judge<br>ruled that the search engines<br>advertising policy does not<br>violate federal trademark<br>laws."
-          ],
-          [
-           "Intel Chief Technology Officer<br>Pat Gelsinger said on<br>Thursday, Sept. 9, that the<br>Internet needed to be upgraded<br>in order to deal with problems<br>that will become real issues<br>soon."
-          ],
-          [
-           "China will take tough measures<br>this winter to improve the<br>country #39;s coal mine safety<br>and prevent accidents. State<br>Councilor Hua Jianmin said<br>Thursday the industry should<br>take"
-          ],
-          [
-           "AT amp;T Corp. on Thursday<br>said it is reducing one fifth<br>of its workforce this year and<br>will record a non-cash charge<br>of approximately \\$11."
-          ],
-          [
-           "BAGHDAD (Iraq): As the<br>intensity of skirmishes<br>swelled on the soils of Iraq,<br>dozens of people were put to<br>death with toxic shots by the<br>US helicopter gunship, which<br>targeted the civilians,<br>milling around a burning<br>American vehicle in a Baghdad<br>street on"
-          ],
-          [
-           " LONDON (Reuters) - Television<br>junkies of the world, get<br>ready for \"Friends,\" \"Big<br>Brother\" and \"The Simpsons\" to<br>phone  home."
-          ],
-          [
-           "A rift appeared within Canada<br>#39;s music industry yesterday<br>as prominent artists called on<br>the CRTC to embrace satellite<br>radio and the industry warned<br>of lost revenue and job<br>losses."
-          ],
-          [
-           "Reuters - A key Iranian<br>nuclear facility which<br>the\\U.N.'s nuclear watchdog<br>has urged Tehran to shut down<br>is\\nearing completion, a<br>senior Iranian nuclear<br>official said on\\Sunday."
-          ],
-          [
-           "Spain's Football Federation<br>launches an investigation into<br>racist comments made by<br>national coach Luis Aragones."
-          ],
-          [
-           "Bricks and plaster blew inward<br>from the wall, as the windows<br>all shattered and I fell to<br>the floorwhether from the<br>shock wave, or just fright, it<br>wasn #39;t clear."
-          ],
-          [
-           "Surfersvillage Global Surf<br>News, 13 September 2004: - -<br>Hurricane Ivan, one of the<br>most powerful storms to ever<br>hit the Caribbean, killed at<br>least 16 people in Jamaica,<br>where it wrecked houses and<br>washed away roads on Saturday,<br>but appears to have spared"
-          ],
-          [
-           "I #39;M FEELING a little bit<br>better about the hundreds of<br>junk e-mails I get every day<br>now that I #39;ve read that<br>someone else has much bigger<br>e-mail troubles."
-          ],
-          [
-           "NEW DELHI: India and Pakistan<br>agreed on Monday to step up<br>cooperation in the energy<br>sector, which could lead to<br>Pakistan importing large<br>amounts of diesel fuel from<br>its neighbour, according to<br>Pakistani Foreign Minister<br>Khurshid Mehmood Kasuri."
-          ],
-          [
-           "LONDON, England -- A US<br>scientist is reported to have<br>observed a surprising jump in<br>the amount of carbon dioxide,<br>the main greenhouse gas."
-          ],
-          [
-           "Microsoft's antispam Sender ID<br>technology continues to get<br>the cold shoulder. Now AOL<br>adds its voice to a growing<br>chorus of businesses and<br>organizations shunning the<br>proprietary e-mail<br>authentication system."
-          ],
-          [
-           "PSV Eindhoven faces Arsenal at<br>Highbury tomorrow night on the<br>back of a free-scoring start<br>to the season. Despite losing<br>Mateja Kezman to Chelsea in<br>the summer, the Dutch side has<br>scored 12 goals in the first"
-          ],
-          [
-           "Through the World Community<br>Grid, your computer could help<br>address the world's health and<br>social problems."
-          ],
-          [
-           "Zimbabwe #39;s ruling Zanu-PF<br>old guard has emerged on top<br>after a bitter power struggle<br>in the deeply divided party<br>during its five-yearly<br>congress, which ended<br>yesterday."
-          ],
-          [
-           "PLAYER OF THE GAME: Playing<br>with a broken nose, Seattle<br>point guard Sue Bird set a<br>WNBA playoff record for<br>assists with 14, also pumping<br>in 10 points as the Storm<br>claimed the Western Conference<br>title last night."
-          ],
-          [
-           "Reuters - Thousands of<br>demonstrators pressing<br>to\\install Ukraine's<br>opposition leader as president<br>after a\\disputed election<br>launched fresh street rallies<br>in the capital\\for the third<br>day Wednesday."
-          ],
-          [
-           "Michael Jackson wishes he had<br>fought previous child<br>molestation claims instead of<br>trying to \"buy peace\", his<br>lawyer says."
-          ],
-          [
-           "North Korea says it will not<br>abandon its weapons programme<br>after the South admitted<br>nuclear activities."
-          ],
-          [
-           "While there is growing<br>attention to ongoing genocide<br>in Darfur, this has not<br>translated into either a<br>meaningful international<br>response or an accurate<br>rendering of the scale and<br>evident course of the<br>catastrophe."
-          ],
-          [
-           "A planned component for<br>Microsoft #39;s next version<br>of Windows is causing<br>consternation among antivirus<br>experts, who say that the new<br>module, a scripting platform<br>called Microsoft Shell, could<br>give birth to a whole new<br>generation of viruses and<br>remotely"
-          ],
-          [
-           "THE prosecution on terrorism<br>charges of extremist Islamic<br>cleric and accused Jemaah<br>Islamiah leader Abu Bakar<br>Bashir will rely heavily on<br>the potentially tainted<br>testimony of at least two<br>convicted Bali bombers, his<br>lawyers have said."
-          ],
-          [
-           "SAN JOSE, California Yahoo<br>will likely have a tough time<br>getting American courts to<br>intervene in a dispute over<br>the sale of Nazi memorabilia<br>in France after a US appeals<br>court ruling."
-          ],
-          [
-           "TORONTO (CP) - Glamis Gold of<br>Reno, Nev., is planning a<br>takeover bid for Goldcorp Inc.<br>of Toronto - but only if<br>Goldcorp drops its<br>\\$2.4-billion-Cdn offer for<br>another Canadian firm, made in<br>early December."
-          ],
-          [
-           "Clashes between US troops and<br>Sadr militiamen escalated<br>Thursday, as the US surrounded<br>Najaf for possible siege."
-          ],
-          [
-           "eBay Style director Constance<br>White joins Post fashion<br>editor Robin Givhan and host<br>Janet Bennett to discuss  how<br>to find trends and bargains<br>and pull together a wardrobe<br>online."
-          ],
-          [
-           "This week will see the release<br>of October new and existing<br>home sales, a measure of<br>strength in the housing<br>industry. But the short<br>holiday week will also leave<br>investors looking ahead to the<br>holiday travel season."
-          ],
-          [
-           "Frankfurt - World Cup winners<br>Brazil were on Monday drawn to<br>meet European champions<br>Greece, Gold Cup winners<br>Mexico and Asian champions<br>Japan at the 2005<br>Confederations Cup."
-          ],
-          [
-           "Third baseman Vinny Castilla<br>said he fits fine with the<br>Colorado youth movement, even<br>though he #39;ll turn 38 next<br>season and the Rockies are<br>coming off the second-worst"
-          ],
-          [
-           "With a sudden shudder, the<br>ground collapsed and the pipe<br>pushed upward, buckling into a<br>humped shape as Cornell<br>University scientists produced<br>the first simulated earthquake"
-          ],
-          [
-           "AFP - A battle group of<br>British troops rolled out of<br>southern Iraq on a US-<br>requested mission to deadlier<br>areas near Baghdad, in a major<br>political gamble for British<br>Prime Minister Tony Blair."
-          ],
-          [
-           "(Sports Network) - Two of the<br>top teams in the American<br>League tangle in a possible<br>American League Division<br>Series preview tonight, as the<br>West-leading Oakland Athletics<br>host the wild card-leading<br>Boston Red Sox for the first<br>of a three-game set at the"
-          ],
-          [
-           "over half the children in the<br>world - suffer extreme<br>deprivation because of war,<br>HIV/AIDS or poverty, according<br>to a report released yesterday<br>by the United Nations Children<br>#39;s Fund."
-          ],
-          [
-           "Microsoft (Quote, Chart) has<br>fired another salvo in its<br>ongoing spam battle, this time<br>against porn peddlers who don<br>#39;t keep their smut inside<br>the digital equivalent of a<br>quot;Brown Paper Wrapper."
-          ],
-          [
-           " BETHESDA, Md. (Reuters) - The<br>use of some antidepressant<br>drugs appears linked to an<br>increase in suicidal behavior<br>in  some children and teen-<br>agers, a U.S. advisory panel<br>concluded  on Tuesday."
-          ],
-          [
-           " SEATTLE (Reuters) - The next<br>version of the Windows<br>operating system, Microsoft<br>Corp.'s &lt;A HREF=\"http://www<br>.reuters.co.uk/financeQuoteLoo<br>kup.jhtml?ticker=MSFT.O<br>qtype=sym infotype=info<br>qcat=news\"&gt;MSFT.O&lt;/A&gt;<br>flagship product,  will ship<br>in 2006, the world's largest<br>software maker said on<br>Friday."
-          ],
-          [
-           "Reuters - Philippine rescue<br>teams\\evacuated thousands of<br>people from the worst flooding<br>in the\\central Luzon region<br>since the 1970s as hungry<br>victims hunted\\rats and birds<br>for food."
-          ],
-          [
-           "Inverness Caledonian Thistle<br>appointed Craig Brewster as<br>its new manager-player<br>Thursday although he #39;s<br>unable to play for the team<br>until January."
-          ],
-          [
-           "The Afghan president expresses<br>deep concern after a bomb<br>attack which left at least<br>seven people dead."
-          ],
-          [
-           " NEW YORK (Reuters) - U.S.<br>technology stocks opened lower<br>on  Thursday after a sales<br>warning from Applied Materials<br>Inc.  &lt;A HREF=\"http://www.i<br>nvestor.reuters.com/FullQuote.<br>aspx?ticker=AMAT.O target=/sto<br>cks/quickinfo/fullquote\"&gt;AM<br>AT.O&lt;/A&gt;, while weekly<br>jobless claims data met Wall<br>Street's  expectations,<br>leaving the Dow and S P 500<br>market measures  little<br>changed."
-          ],
-          [
-           "ATHENS, Greece -- Alan Shearer<br>converted an 87th-minute<br>penalty to give Newcastle a<br>1-0 win over Panionios in<br>their UEFA Cup Group D match."
-          ],
-          [
-           "Fossil remains of the oldest<br>and smallest known ancestor of<br>Tyrannosaurus rex, the world<br>#39;s favorite ferocious<br>dinosaur, have been discovered<br>in China with evidence that<br>its body was cloaked in downy<br>quot;protofeathers."
-          ],
-          [
-           "Derek Jeter turned a season<br>that started with a terrible<br>slump into one of the best in<br>his accomplished 10-year<br>career.  quot;I don #39;t<br>think there is any question,<br>quot; the New York Yankees<br>manager said."
-          ],
-          [
-           "Gardez (Afghanistan), Sept. 16<br>(Reuters): Afghan President<br>Hamid Karzai escaped an<br>assassination bid today when a<br>rocket was fired at his US<br>military helicopter as it was<br>landing in the southeastern<br>town of Gardez."
-          ],
-          [
-           "The Jets came up with four<br>turnovers by Dolphins<br>quarterback Jay Fiedler in the<br>second half, including an<br>interception returned 66 yards<br>for a touchdown."
-          ],
-          [
-           "China's Guo Jingjing easily<br>won the women's 3-meter<br>springboard last night, and Wu<br>Minxia made it a 1-2 finish<br>for the world's diving<br>superpower, taking the silver."
-          ],
-          [
-           "GREEN BAY, Wisconsin (Ticker)<br>-- Brett Favre will be hoping<br>his 200th consecutive start<br>turns out better than his last<br>two have against the St."
-          ],
-          [
-           "People fishing for sport are<br>doing far more damage to US<br>marine fish stocks than anyone<br>thought, accounting for nearly<br>a quarter of the"
-          ],
-          [
-           "When an NFL team opens with a<br>prolonged winning streak,<br>former Miami Dolphins coach<br>Don Shula and his players from<br>the 17-0 team of 1972 root<br>unabashedly for the next<br>opponent."
-          ],
-          [
-           "MIANNE Bagger, the transsexual<br>golfer who prompted a change<br>in the rules to allow her to<br>compete on the professional<br>circuit, made history<br>yesterday by qualifying to<br>play full-time on the Ladies<br>European Tour."
-          ],
-          [
-           "Great Britain #39;s gold medal<br>tally now stands at five after<br>Leslie Law was handed the<br>individual three day eventing<br>title - in a courtroom."
-          ],
-          [
-           "This particular index is<br>produced by the University of<br>Michigan Business School, in<br>partnership with the American<br>Society for Quality and CFI<br>Group, and is supported in<br>part by ForeSee Results"
-          ],
-          [
-           "CHICAGO : Interstate Bakeries<br>Corp., the maker of popular,<br>old-style snacks Twinkies and<br>Hostess Cakes, filed for<br>bankruptcy, citing rising<br>costs and falling sales."
-          ],
-          [
-           "Delta Air Lines (DAL:NYSE -<br>commentary - research) will<br>cut employees and benefits but<br>give a bigger-than-expected<br>role to Song, its low-cost<br>unit, in a widely anticipated<br>but still unannounced<br>overhaul, TheStreet.com has<br>learned."
-          ],
-          [
-           "By byron kho. A consortium of<br>movie and record companies<br>joined forces on Friday to<br>request that the US Supreme<br>Court take another look at<br>peer-to-peer file-sharing<br>programs."
-          ],
-          [
-           "DUBLIN -- Prime Minister<br>Bertie Ahern urged Irish<br>Republican Army commanders<br>yesterday to meet what he<br>acknowledged was ''a heavy<br>burden quot;: disarming and<br>disbanding their organization<br>in support of Northern<br>Ireland's 1998 peace accord."
-          ],
-          [
-           "Mayor Tom Menino must be<br>proud. His Boston Red Sox just<br>won their first World Series<br>in 86 years and his Hyde Park<br>Blue Stars yesterday clinched<br>their first Super Bowl berth<br>in 32 years, defeating<br>O'Bryant, 14-0. Who would have<br>thought?"
-          ],
-          [
-           "While reproductive planning<br>and women #39;s equality have<br>improved substantially over<br>the past decade, says a United<br>Nations report, world<br>population will increase from<br>6.4 billion today to 8.9<br>billion by 2050, with the 50<br>poorest countries tripling in"
-          ],
-          [
-           "Instead of the skinny black<br>line, showing a hurricane<br>#39;s forecast track,<br>forecasters have drafted a<br>couple of alternative graphics<br>to depict where the storms<br>might go -- and they want your<br>opinion."
-          ],
-          [
-           "South Korea have appealed to<br>sport #39;s supreme legal body<br>in an attempt to award Yang<br>Tae-young the Olympic<br>gymnastics all-round gold<br>medal after a scoring error<br>robbed him of the title in<br>Athens."
-          ],
-          [
-           "BERLIN - Volkswagen AG #39;s<br>announcement this week that it<br>has forged a new partnership<br>deal with Malaysian carmaker<br>Proton comes as a strong euro<br>and Europe #39;s weak economic<br>performance triggers a fresh<br>wave of German investment in<br>Asia."
-          ],
-          [
-           "AP - Johan Santana had an<br>early lead and was well on his<br>way to his 10th straight win<br>when the rain started to fall."
-          ],
-          [
-           "ATHENS-In one of the biggest<br>shocks in Olympic judo<br>history, defending champion<br>Kosei Inoue was defeated by<br>Dutchman Elco van der Geest in<br>the men #39;s 100-kilogram<br>category Thursday."
-          ],
-          [
-           "Consumers in Dublin pay more<br>for basic goods and services<br>that people elsewhere in the<br>country, according to figures<br>released today by the Central<br>Statistics Office."
-          ],
-          [
-           "LIBERTY Media #39;s move last<br>week to grab up to 17.1 per<br>cent of News Corporation<br>voting stock has prompted the<br>launch of a defensive<br>shareholder rights plan."
-          ],
-          [
-           "NBC is adding a 5-second delay<br>to its Nascar telecasts after<br>Dale Earnhardt Jr. used a<br>vulgarity during a postrace<br>interview last weekend."
-          ],
-          [
-           "LONDON - Wild capuchin monkeys<br>can understand cause and<br>effect well enough to use<br>rocks to dig for food,<br>scientists have found.<br>Capuchin monkeys often use<br>tools and solve problems in<br>captivity and sometimes"
-          ],
-          [
-           "San Francisco Giants<br>outfielder Barry Bonds, who<br>became the third player in<br>Major League Baseball history<br>to hit 700 career home runs,<br>won the National League Most<br>Valuable Player Award"
-          ],
-          [
-           "The blue-chip Hang Seng Index<br>rose 171.88 points, or 1.22<br>percent, to 14,066.91. On<br>Friday, the index had slipped<br>31.58 points, or 0.2 percent."
-          ],
-          [
-           "BAR's Anthony Davidson and<br>Jenson Button set the pace at<br>the first Chinese Grand Prix."
-          ],
-          [
-           "Shares plunge after company<br>says its vein graft treatment<br>failed to show benefit in<br>late-stage test. CHICAGO<br>(Reuters) - Biotechnology<br>company Corgentech Inc."
-          ],
-          [
-           "WASHINGTON - Contradicting the<br>main argument for a war that<br>has cost more than 1,000<br>American lives, the top U.S.<br>arms inspector reported<br>Wednesday that he found no<br>evidence that Iraq produced<br>any weapons of mass<br>destruction after 1991..."
-          ],
-          [
-           "The key to hidden treasure<br>lies in your handheld GPS<br>unit. GPS-based \"geocaching\"<br>is a high-tech sport being<br>played by thousands of people<br>across the globe."
-          ],
-          [
-           "AFP - Style mavens will be<br>scanning the catwalks in Paris<br>this week for next spring's<br>must-have handbag, as a<br>sweeping exhibition at the<br>French capital's fashion and<br>textile museum reveals the bag<br>in all its forms."
-          ],
-          [
-           "Canadian Press - SAINT-<br>QUENTIN, N.B. (CP) - A major<br>highway in northern New<br>Brunswick  remained closed to<br>almost all traffic Monday, as<br>local residents protested<br>planned health care cuts."
-          ],
-          [
-           "The U.S. information tech<br>sector lost 403,300 jobs<br>between March 2001 and April<br>2004, and the market for tech<br>workers remains bleak,<br>according to a new report."
-          ],
-          [
-           " NAJAF, Iraq (Reuters) - A<br>radical Iraqi cleric leading a<br>Shi'ite uprising agreed on<br>Wednesday to disarm his<br>militia and  leave one of the<br>country's holiest Islamic<br>shrines after  warnings of an<br>onslaught by government<br>forces."
-          ],
-          [
-           "Saudi security forces have<br>killed a wanted militant near<br>the scene of a deadly shootout<br>Thursday. Officials say the<br>militant was killed in a<br>gunbattle Friday in the<br>northern town of Buraida,<br>hours after one"
-          ],
-          [
-           "Portsmouth chairman Milan<br>Mandaric said on Tuesday that<br>Harry Redknapp, who resigned<br>as manager last week, was<br>innocent of any wrong-doing<br>over agent or transfer fees."
-          ],
-          [
-           "This record is for all the<br>little guys, for all the<br>players who have to leg out<br>every hit instead of taking a<br>relaxing trot around the<br>bases, for all the batters<br>whose muscles aren #39;t"
-          ],
-          [
-           "Two South Africans acquitted<br>by a Zimbabwean court of<br>charges related to the alleged<br>coup plot in Equatorial Guinea<br>are to be questioned today by<br>the South African authorities."
-          ],
-          [
-           "Charlie Hodgson #39;s record-<br>equalling performance against<br>South Africa was praised by<br>coach Andy Robinson after the<br>Sale flyhalf scored 27 points<br>in England #39;s 32-16 victory<br>here at Twickenham on<br>Saturday."
-          ],
-          [
-           "com September 30, 2004, 11:11<br>AM PT. SanDisk announced<br>Thursday increased capacities<br>for several different flash<br>memory cards. The Sunnyvale,<br>Calif."
-          ],
-          [
-           "MOSCOW (CP) - Russia mourned<br>89 victims of a double air<br>disaster today as debate<br>intensified over whether the<br>two passenger liners could<br>have plunged almost<br>simultaneously from the sky by<br>accident."
-          ],
-          [
-           "US blue-chip stocks rose<br>slightly on Friday as<br>government data showed better-<br>than-expected demand in August<br>for durable goods other than<br>transportation equipment, but<br>climbing oil prices limited<br>gains."
-          ],
-          [
-           "BASEBALL Atlanta (NL):<br>Optioned P Roman Colon to<br>Greenville (Southern);<br>recalled OF Dewayne Wise from<br>Richmond (IL). Boston (AL):<br>Purchased C Sandy Martinez<br>from Cleveland (AL) and<br>assigned him to Pawtucket<br>(IL). Cleveland (AL): Recalled<br>OF Ryan Ludwick from Buffalo<br>(IL). Chicago (NL): Acquired<br>OF Ben Grieve from Milwaukee<br>(NL) for player to be named<br>and cash; acquired C Mike ..."
-          ],
-          [
-           "Australia #39;s prime minister<br>says a body found in Fallujah<br>is likely that of kidnapped<br>aid worker Margaret Hassan.<br>John Howard told Parliament a<br>videotape of an Iraqi<br>terrorist group executing a<br>Western woman appears to have<br>been genuine."
-          ],
-          [
-           "roundup Plus: Tech firms rally<br>against copyright bill...Apple<br>.Mac customers suffer e-mail<br>glitches...Alvarion expands<br>wireless broadband in China."
-          ],
-          [
-           "BRONX, New York (Ticker) --<br>Kelvim Escobar was the latest<br>Anaheim Angels #39; pitcher to<br>subdue the New York Yankees.<br>Escobar pitched seven strong<br>innings and Bengie Molina tied<br>a career-high with four hits,<br>including"
-          ],
-          [
-           "Business software maker<br>PeopleSoft Inc. said Monday<br>that it expects third-quarter<br>revenue to range between \\$680<br>million and \\$695 million,<br>above average Wall Street<br>estimates of \\$651."
-          ],
-          [
-           "Sep 08 - Vijay Singh revelled<br>in his status as the new world<br>number one after winning the<br>Deutsche Bank Championship by<br>three shots in Boston on<br>Monday."
-          ],
-          [
-           "Reuters - Enron Corp. ,<br>desperate to\\meet profit<br>targets, \"parked\" unwanted<br>power generating barges\\at<br>Merrill Lynch in a sham sale<br>designed to be reversed,<br>a\\prosecutor said on Tuesday<br>in the first criminal trial<br>of\\former executives at the<br>fallen energy company."
-          ],
-          [
-           " NEW YORK (Reuters) - The<br>dollar rebounded on Monday<br>after a  heavy selloff last<br>week, but analysts were<br>uncertain if the  rally could<br>hold as the drumbeat of<br>expectation began for to  the<br>December U.S. jobs report due<br>Friday."
-          ],
-          [
-           "AP - Their first debate less<br>than a week away, President<br>Bush and Democrat John Kerry<br>kept their public schedules<br>clear on Saturday and began to<br>focus on their prime-time<br>showdown."
-          ],
-          [
-           "Many people in golf are asking<br>that today. He certainly wasn<br>#39;t A-list and he wasn #39;t<br>Larry Nelson either. But you<br>couldn #39;t find a more solid<br>guy to lead the United States<br>into Ireland for the 2006<br>Ryder Cup Matches."
-          ],
-          [
-           "Coles Myer Ltd. Australia<br>#39;s biggest retailer,<br>increased second-half profit<br>by 26 percent after opening<br>fuel and convenience stores,<br>selling more-profitable<br>groceries and cutting costs."
-          ],
-          [
-           "MOSCOW: Us oil major<br>ConocoPhillips is seeking to<br>buy up to 25 in Russian oil<br>giant Lukoil to add billions<br>of barrels of reserves to its<br>books, an industry source<br>familiar with the matter said<br>on Friday."
-          ],
-          [
-           "Australian Stuart Appleby, who<br>was the joint second-round<br>leader, returned a two-over 74<br>to drop to third at three-<br>under while American Chris<br>DiMarco moved into fourth with<br>a round of 69."
-          ],
-          [
-           "PARIS Getting to the bottom of<br>what killed Yassar Arafat<br>could shape up to be an ugly<br>family tug-of-war. Arafat<br>#39;s half-brother and nephew<br>want copies of Arafat #39;s<br>medical records from the<br>suburban Paris hospital"
-          ],
-          [
-           "Red Hat is acquiring security<br>and authentication tools from<br>Netscape Security Solutions to<br>bolster its software arsenal.<br>Red Hat #39;s CEO and chairman<br>Matthew Szulik spoke about the<br>future strategy of the Linux<br>supplier."
-          ],
-          [
-           "With a doubleheader sweep of<br>the Minnesota Twins, the New<br>York Yankees moved to the<br>verge of clinching their<br>seventh straight AL East<br>title."
-          ],
-          [
-           "Global Web portal Yahoo! Inc.<br>Wednesday night made available<br>a beta version of a new search<br>service for videos. Called<br>Yahoo! Video Search, the<br>search engine crawls the Web<br>for different types of media<br>files"
-          ],
-          [
-           "Interactive posters at 25<br>underground stations are<br>helping Londoners travel<br>safely over Christmas."
-          ],
-          [
-           "Athens, Greece (Sports<br>Network) - The first official<br>track event took place this<br>morning and Italy #39;s Ivano<br>Brugnetti won the men #39;s<br>20km walk at the Summer<br>Olympics in Athens."
-          ],
-          [
-           " THE HAGUE (Reuters) - Former<br>Yugoslav President Slobodan<br>Milosevic condemned his war<br>crimes trial as a \"pure farce\"<br>on  Wednesday in a defiant<br>finish to his opening defense<br>statement  against charges of<br>ethnic cleansing in the<br>Balkans."
-          ],
-          [
-           "US Airways Group (otc: UAIRQ -<br>news - people ) on Thursday<br>said it #39;ll seek a court<br>injunction to prohibit a<br>strike by disaffected unions."
-          ],
-          [
-           "Shares in Unilever fall after<br>the Anglo-Dutch consumer goods<br>giant issued a surprise<br>profits warning."
-          ],
-          [
-           "SAN FRANCISCO (CBS.MW) - The<br>Canadian government will sell<br>its 19 percent stake in Petro-<br>Canada for \\$2.49 billion,<br>according to the final<br>prospectus filed with the US<br>Securities and Exchange<br>Commission Thursday."
-          ],
-          [
-           "Champions Arsenal opened a<br>five-point lead at the top of<br>the Premier League after a 4-0<br>thrashing of Charlton Athletic<br>at Highbury Saturday."
-          ],
-          [
-           "The Redskins and Browns have<br>traded field goals and are<br>tied, 3-3, in the first<br>quarter in Cleveland."
-          ],
-          [
-           " HYDERABAD, India (Reuters) -<br>Microsoft Corp. &lt;A HREF=\"ht<br>tp://www.investor.reuters.com/<br>FullQuote.aspx?ticker=MSFT.O t<br>arget=/stocks/quickinfo/fullqu<br>ote\"&gt;MSFT.O&lt;/A&gt; will<br>hire several hundred new staff<br>at its new Indian campus in<br>the  next year, its chief<br>executive said on Monday, in a<br>move aimed  at strengthening<br>its presence in Asia's fourth-<br>biggest economy."
-          ],
-          [
-           "According to Swiss<br>authorities, history was made<br>Sunday when 2723 people in<br>four communities in canton<br>Geneva, Switzerland, voted<br>online in a national federal<br>referendum."
-          ],
-          [
-           " GUWAHATI, India (Reuters) -<br>People braved a steady drizzle<br>to come out to vote in a<br>remote northeast Indian state<br>on  Thursday, as troops<br>guarded polling stations in an<br>election  being held under the<br>shadow of violence."
-          ],
-          [
-           "AFP - Three of the nine<br>Canadian sailors injured when<br>their newly-delivered,<br>British-built submarine caught<br>fire in the North Atlantic<br>were airlifted Wednesday to<br>hospital in northwest Ireland,<br>officials said."
-          ],
-          [
-           "Alitalia SpA, Italy #39;s<br>largest airline, reached an<br>agreement with its flight<br>attendants #39; unions to cut<br>900 jobs, qualifying the<br>company for a government<br>bailout that will keep it in<br>business for another six<br>months."
-          ],
-          [
-           "BAGHDAD, Iraq - A series of<br>strong explosions shook<br>central Baghdad near dawn<br>Sunday, and columns of thick<br>black smoke rose from the<br>Green Zone where U.S. and<br>Iraqi government offices are<br>located..."
-          ],
-          [
-           "Forget September call-ups. The<br>Red Sox may tap their minor<br>league system for an extra<br>player or two when the rules<br>allow them to expand their<br>25-man roster Wednesday, but<br>any help from the farm is<br>likely to pale against the<br>abundance of talent they gain<br>from the return of numerous<br>players, including Trot Nixon<br>, from the disabled list."
-          ],
-          [
-           "P amp;Os cutbacks announced<br>today are the result of the<br>waves of troubles that have<br>swamped the ferry industry of<br>late. Some would say the<br>company has done well to<br>weather the storms for as long<br>as it has."
-          ],
-          [
-           "Sven-Goran Eriksson may gamble<br>by playing goalkeeper Paul<br>Robinson and striker Jermain<br>Defoe in Poland."
-          ],
-          [
-           "Foreign Secretary Jack Straw<br>has flown to Khartoum on a<br>mission to pile the pressure<br>on the Sudanese government to<br>tackle the humanitarian<br>catastrophe in Darfur."
-          ],
-          [
-           "  Nextel was the big story in<br>telecommunications yesterday,<br>thanks to the Reston company's<br>mega-merger with Sprint, but<br>the future of wireless may be<br>percolating in dozens of<br>Washington area start-ups."
-          ],
-          [
-           "Reuters - A senior U.S.<br>official said on<br>Wednesday\\deals should not be<br>done with hostage-takers ahead<br>of the\\latest deadline set by<br>Afghan Islamic militants who<br>have\\threatened to kill three<br>kidnapped U.N. workers."
-          ],
-          [
-           "I have been anticipating this<br>day like a child waits for<br>Christmas. Today, PalmOne<br>introduces the Treo 650, the<br>answer to my  quot;what smart<br>phone will I buy?"
-          ],
-          [
-           "THOUSAND OAKS -- Anonymity is<br>only a problem if you want it<br>to be, and it is obvious Vijay<br>Singh doesn #39;t want it to<br>be. Let others chase fame."
-          ],
-          [
-           "Wikipedia has surprised Web<br>watchers by growing fast and<br>maturing into one of the most<br>popular reference sites."
-          ],
-          [
-           "It only takes 20 minutes on<br>the Internet for an<br>unprotected computer running<br>Microsoft Windows to be taken<br>over by a hacker. Any personal<br>or financial information<br>stored"
-          ],
-          [
-           "TORONTO (CP) - Russia #39;s<br>Severstal has made an offer to<br>buy Stelco Inc., in what #39;s<br>believed to be one of several<br>competing offers emerging for<br>the restructuring but<br>profitable Hamilton steel<br>producer."
-          ],
-          [
-           "Prices for flash memory cards<br>-- the little modules used by<br>digital cameras, handheld<br>organizers, MP3 players and<br>cell phones to store pictures,<br>music and other data -- are<br>headed down -- way down. Past<br>trends suggest that prices<br>will drop 35 percent a year,<br>but industry analysts think<br>that rate will be more like 40<br>or 50 percent this year and<br>next, due to more<br>manufacturers entering the<br>market."
-          ],
-          [
-           "Walt Disney Co. #39;s<br>directors nominated Michael<br>Ovitz to serve on its board<br>for another three years at a<br>meeting just weeks before<br>forcing him out of his job as"
-          ],
-          [
-           "The European Union, Japan,<br>Brazil and five other<br>countries won World Trade<br>Organization approval to<br>impose tariffs worth more than<br>\\$150 million a year on<br>imports from the United"
-          ],
-          [
-           "Industrial conglomerate<br>Honeywell International on<br>Wednesday said it has filed a<br>lawsuit against 34 electronics<br>companies including Apple<br>Computer and Eastman Kodak,<br>claiming patent infringement<br>of its liquid crystal display<br>technology."
-          ],
-          [
-           "Sinn Fein leader Gerry Adams<br>has put the pressure for the<br>success or failure of the<br>Northern Ireland assembly<br>talks firmly on the shoulders<br>of Ian Paisley."
-          ],
-          [
-           "Australia #39;s Computershare<br>has agreed to buy EquiServe of<br>the United States for US\\$292<br>million (\\$423 million),<br>making it the largest US share<br>registrar and driving its<br>shares up by a third."
-          ],
-          [
-           "David Coulthard #39;s season-<br>long search for a Formula One<br>drive next year is almost<br>over. Negotiations between Red<br>Bull Racing and Coulthard, who<br>tested for the Austrian team<br>for the first time"
-          ],
-          [
-           "Interest rates on short-term<br>Treasury securities were mixed<br>in yesterday's auction. The<br>Treasury Department sold \\$18<br>billion in three-month bills<br>at a discount rate of 1.640<br>percent, up from 1.635 percent<br>last week. An additional \\$16<br>billion was sold in six-month<br>bills at a rate of 1.840<br>percent, down from 1.860<br>percent."
-          ],
-          [
-           "Two top executives of scandal-<br>tarred insurance firm Marsh<br>Inc. were ousted yesterday,<br>the company said, the latest<br>casualties of an industry<br>probe by New York's attorney<br>general."
-          ],
-          [
-           "AP - Southern California<br>tailback LenDale White<br>remembers Justin Holland from<br>high school. The Colorado<br>State quarterback made quite<br>an impression."
-          ],
-          [
-           "TIM HENMAN last night admitted<br>all of his energy has been<br>drained away as he bowed out<br>of the Madrid Masters. The top<br>seed, who had a blood test on<br>Wednesday to get to the bottom<br>of his fatigue, went down"
-          ],
-          [
-           "USDA #39;s Animal Plant Health<br>Inspection Service (APHIS)<br>this morning announced it has<br>confirmed a detection of<br>soybean rust from two test<br>plots at Louisiana State<br>University near Baton Rouge,<br>Louisiana."
-          ],
-          [
-           " JAKARTA (Reuters) - President<br>Megawati Sukarnoputri urged<br>Indonesians on Thursday to<br>accept the results of the<br>country's  first direct<br>election of a leader, but<br>stopped short of  conceding<br>defeat."
-          ],
-          [
-           "ISLAMABAD: Pakistan early<br>Monday test-fired its<br>indigenously developed short-<br>range nuclear-capable Ghaznavi<br>missile, the Inter Services<br>Public Relations (ISPR) said<br>in a statement."
-          ],
-          [
-           "While the US software giant<br>Microsoft has achieved almost<br>sweeping victories in<br>government procurement<br>projects in several Chinese<br>provinces and municipalities,<br>the process"
-          ],
-          [
-           "Mexican Cemex, being the third<br>largest cement maker in the<br>world, agreed to buy its<br>British competitor - RMC Group<br>- for \\$5.8 billion, as well<br>as their debts in order to<br>expand their activity on the<br>building materials market of<br>the USA and Europe."
-          ],
-          [
-           "Microsoft Corp. has delayed<br>automated distribution of a<br>major security upgrade to its<br>Windows XP Professional<br>operating system, citing a<br>desire to give companies more<br>time to test it."
-          ],
-          [
-           "The trial of a man accused of<br>murdering York backpacker<br>Caroline Stuttle begins in<br>Australia."
-          ],
-          [
-           "Gateway computers will be more<br>widely available at Office<br>Depot, in the PC maker #39;s<br>latest move to broaden<br>distribution at retail stores<br>since acquiring rival<br>eMachines this year."
-          ],
-          [
-           "ATHENS -- US sailors needed a<br>big day to bring home gold and<br>bronze medals from the sailing<br>finale here yesterday. But<br>rolling the dice on windshifts<br>and starting tactics backfired<br>both in Star and Tornado<br>classes, and the Americans had<br>to settle for a single silver<br>medal."
-          ],
-          [
-           "Intel Corp. is refreshing its<br>64-bit Itanium 2 processor<br>line with six new chips based<br>on the Madison core. The new<br>processors represent the last<br>single-core Itanium chips that<br>the Santa Clara, Calif."
-          ],
-          [
-           "The  world's largest insurance<br>group pays \\$126m in fines as<br>part of a settlement with US<br>regulators over its dealings<br>with two firms."
-          ],
-          [
-           "BRUSSELS: The EU sought<br>Wednesday to keep pressure on<br>Turkey over its bid to start<br>talks on joining the bloc, as<br>last-minute haggling seemed<br>set to go down to the wire at<br>a summit poised to give a<br>green light to Ankara."
-          ],
-          [
-           "AP - J. Cofer Black, the State<br>Department official in charge<br>of counterterrorism, is<br>leaving government in the next<br>few weeks."
-          ],
-          [
-           "For the first time, broadband<br>connections are reaching more<br>than half (51 percent) of the<br>American online population at<br>home, according to measurement<br>taken in July by<br>Nielsen/NetRatings, a<br>Milpitas-based Internet<br>audience measurement and<br>research ..."
-          ],
-          [
-           "AP - Cavaliers forward Luke<br>Jackson was activated<br>Wednesday after missing five<br>games because of tendinitis in<br>his right knee. Cleveland also<br>placed forward Sasha Pavlovic<br>on the injured list."
-          ],
-          [
-           "The tobacco firm John Player<br>amp; Sons has announced plans<br>to lay off 90 workers at its<br>cigarette factory in Dublin.<br>The company said it was<br>planning a phased closure of<br>the factory between now and<br>February as part of a review<br>of its global operations."
-          ],
-          [
-           "AP - Consumers borrowed more<br>freely in September,<br>especially when it came to<br>racking up charges on their<br>credit cards, the Federal<br>Reserve reported Friday."
-          ],
-          [
-           "AFP - The United States<br>presented a draft UN<br>resolution that steps up the<br>pressure on Sudan over the<br>crisis in Darfur, including<br>possible international<br>sanctions against its oil<br>sector."
-          ],
-          [
-           "AFP - At least 33 people were<br>killed and dozens others<br>wounded when two bombs ripped<br>through a congregation of<br>Sunni Muslims in Pakistan's<br>central city of Multan, police<br>said."
-          ],
-          [
-           "Bold, innovative solutions are<br>key to addressing the rapidly<br>rising costs of higher<br>education and the steady<br>reduction in government-<br>subsidized help to finance<br>such education."
-          ],
-          [
-           "Just as the PhD crowd emerge<br>with different interpretations<br>of today's economy, everyday<br>Americans battling to balance<br>the checkbook hold diverse<br>opinions about where things<br>stand now and in the future."
-          ],
-          [
-           "The Brisbane Lions #39;<br>football manager stepped out<br>of the changerooms just before<br>six o #39;clock last night and<br>handed one of the milling<br>supporters a six-pack of beer."
-          ],
-          [
-           "Authorities here are always<br>eager to show off their<br>accomplishments, so when<br>Beijing hosted the World<br>Toilet Organization conference<br>last week, delegates were<br>given a grand tour of the<br>city's toilets."
-          ],
-          [
-           "Cavaliers owner Gordon Gund is<br>in  quot;serious quot;<br>negotiations to sell the NBA<br>franchise, which has enjoyed a<br>dramatic financial turnaround<br>since the arrival of star<br>LeBron James."
-          ],
-          [
-           "WASHINGTON Trying to break a<br>deadlock on energy policy, a<br>diverse group of<br>environmentalists, academics<br>and former government<br>officials were to publish a<br>report on Wednesday that<br>presents strategies for making<br>the United States cleaner,<br>more competitive"
-          ],
-          [
-           "After two days of gloom, China<br>was back on the winning rails<br>on Thursday with Liu Chunhong<br>winning a weightlifting title<br>on her record-shattering binge<br>and its shuttlers contributing<br>two golds in the cliff-hanging<br>finals."
-          ],
-          [
-           "One question that arises<br>whenever a player is linked to<br>steroids is, \"What would he<br>have done without them?\"<br>Baseball history whispers an<br>answer."
-          ],
-          [
-           "AFP - A series of torchlight<br>rallies and vigils were held<br>after darkness fell on this<br>central Indian city as victims<br>and activists jointly<br>commemorated a night of horror<br>20 years ago when lethal gas<br>leaked from a pesticide plant<br>and killed thousands."
-          ],
-          [
-           "Consider the New World of<br>Information - stuff that,<br>unlike the paper days of the<br>past, doesn't always<br>physically exist. You've got<br>notes, scrawlings and<br>snippets, Web graphics, photos<br>and sounds. Stuff needs to be<br>cut, pasted, highlighted,<br>annotated, crossed out,<br>dragged away. And, as Ross<br>Perot used to say (or maybe it<br>was Dana Carvey impersonating<br>him), don't forget the graphs<br>and charts."
-          ],
-          [
-           "The second round of the<br>Canadian Open golf tournament<br>continues Saturday Glenn Abbey<br>Golf Club in Oakville,<br>Ontario, after play was<br>suspended late Friday due to<br>darkness."
-          ],
-          [
-           "A consortium led by Royal<br>Dutch/Shell Group that is<br>developing gas reserves off<br>Russia #39;s Sakhalin Island<br>said Thursday it has struck a<br>US\\$6 billion (euro4."
-          ],
-          [
-           "Major Hollywood studios on<br>Tuesday announced scores of<br>lawsuits against computer<br>server operators worldwide,<br>including eDonkey, BitTorrent<br>and DirectConnect networks,<br>for allowing trading of<br>pirated movies."
-          ],
-          [
-           "A massive plan to attract the<br>2012 Summer Olympics to New<br>York, touting the city's<br>diversity, financial and media<br>power, was revealed Wednesday."
-          ],
-          [
-           "A Zimbabwe court Friday<br>convicted a British man<br>accused of leading a coup plot<br>against the government of oil-<br>rich Equatorial Guinea on<br>weapons charges, but acquitted<br>most of the 69 other men held<br>with him."
-          ],
-          [
-           "But will Wi-Fi, high-<br>definition broadcasts, mobile<br>messaging and other<br>enhancements improve the game,<br>or wreck it?\\&lt;br /&gt;<br>Photos of tech-friendly parks\\"
-          ],
-          [
-           "An audit by international<br>observers supported official<br>elections results that gave<br>President Hugo Chavez a<br>victory over a recall vote<br>against him, the secretary-<br>general of the Organisation of<br>American States announced."
-          ],
-          [
-           "Canadian Press - TORONTO (CP)<br>- The fatal stabbing of a<br>young man trying to eject<br>unwanted party guests from his<br>family home, the third such<br>knifing in just weeks, has<br>police worried about a<br>potentially fatal holiday<br>recipe: teens, alcohol and<br>knives."
-          ],
-          [
-           "NICK Heidfeld #39;s test with<br>Williams has been brought<br>forward after BAR blocked<br>plans for Anthony Davidson to<br>drive its Formula One rival<br>#39;s car."
-          ],
-          [
-           "MOSCOW - A female suicide<br>bomber set off a shrapnel-<br>filled explosive device<br>outside a busy Moscow subway<br>station on Tuesday night,<br>officials said, killing 10<br>people and injuring more than<br>50."
-          ],
-          [
-           "Grace Park closed with an<br>eagle and two birdies for a<br>7-under-par 65 and a two-<br>stroke lead after three rounds<br>of the Wachovia LPGA Classic<br>on Saturday."
-          ],
-          [
-           "ABIDJAN (AFP) - Two Ivory<br>Coast military aircraft<br>carried out a second raid on<br>Bouake, the stronghold of the<br>former rebel New Forces (FN)<br>in the divided west African<br>country, a French military<br>source told AFP."
-          ],
-          [
-           "Carlos Beltran drives in five<br>runs to carry the Astros to a<br>12-3 rout of the Braves in<br>Game 5 of their first-round NL<br>playoff series."
-          ],
-          [
-           "On-demand viewing isn't just<br>for TiVo owners anymore.<br>Television over internet<br>protocol, or TVIP, offers<br>custom programming over<br>standard copper wires."
-          ],
-          [
-           "Apple is recalling 28,000<br>faulty batteries for its<br>15-inch Powerbook G4 laptops."
-          ],
-          [
-           "Since Lennox Lewis #39;s<br>retirement, the heavyweight<br>division has been knocked for<br>having more quantity than<br>quality. Eight heavyweights on<br>Saturday night #39;s card at<br>Madison Square Garden hope to<br>change that perception, at<br>least for one night."
-          ],
-          [
-           "PalmSource #39;s European<br>developer conference is going<br>on now in Germany, and this<br>company is using this<br>opportunity to show off Palm<br>OS Cobalt 6.1, the latest<br>version of its operating<br>system."
-          ],
-          [
-           "The former Chief Executive<br>Officer of Computer Associates<br>was indicted by a federal<br>grand jury in New York<br>Wednesday for allegedly<br>participating in a massive<br>fraud conspiracy and an<br>elaborate cover up of a scheme<br>that cost investors"
-          ],
-          [
-           "Speaking to members of the<br>Massachusetts Software<br>Council, Microsoft CEO Steve<br>Ballmer touted a bright future<br>for technology but warned his<br>listeners to think twice<br>before adopting open-source<br>products like Linux."
-          ],
-          [
-           "MIAMI - The Trillian instant<br>messaging (IM) application<br>will feature several<br>enhancements in its upcoming<br>version 3.0, including new<br>video and audio chat<br>capabilities, enhanced IM<br>session logs and integration<br>with the Wikipedia online<br>encyclopedia, according to<br>information posted Friday on<br>the product developer's Web<br>site."
-          ],
-          [
-           "Honeywell International Inc.,<br>the world #39;s largest<br>supplier of building controls,<br>agreed to buy Novar Plc for<br>798 million pounds (\\$1.53<br>billion) to expand its<br>security, fire and<br>ventilation-systems business<br>in Europe."
-          ],
-          [
-           "San Francisco investment bank<br>Thomas Weisel Partners on<br>Thursday agreed to pay \\$12.5<br>million to settle allegations<br>that some of the stock<br>research the bank published<br>during the Internet boom was<br>tainted by conflicts of<br>interest."
-          ],
-          [
-           "AFP - A state of civil<br>emergency in the rebellion-hit<br>Indonesian province of Aceh<br>has been formally extended by<br>six month, as the country's<br>president pledged to end<br>violence there without foreign<br>help."
-          ],
-          [
-           "Forbes.com - Peter Frankling<br>tapped an unusual source to<br>fund his new business, which<br>makes hot-dog-shaped ice cream<br>treats known as Cool Dogs: Two<br>investors, one a friend and<br>the other a professional<br>venture capitalist, put in<br>more than  #36;100,000 each<br>from their Individual<br>Retirement Accounts. Later<br>Franklin added  #36;150,000<br>from his own IRA."
-          ],
-          [
-           "Reuters - Online DVD rental<br>service Netflix Inc.\\and TiVo<br>Inc., maker of a digital video<br>recorder, on Thursday\\said<br>they have agreed to develop a<br>joint entertainment\\offering,<br>driving shares of both<br>companies higher."
-          ],
-          [
-           "A San Diego insurance<br>brokerage has been sued by New<br>York Attorney General Elliot<br>Spitzer for allegedly<br>soliciting payoffs in exchange<br>for steering business to<br>preferred insurance companies."
-          ],
-          [
-           "The European Union agreed<br>Monday to lift penalties that<br>have cost American exporters<br>\\$300 million, following the<br>repeal of a US corporate tax<br>break deemed illegal under<br>global trade rules."
-          ],
-          [
-           "US Secretary of State Colin<br>Powell on Monday said he had<br>spoken to both Indian Foreign<br>Minister K Natwar Singh and<br>his Pakistani counterpart<br>Khurshid Mahmud Kasuri late<br>last week before the two met<br>in New Delhi this week for<br>talks."
-          ],
-          [
-           "NEW YORK - Victor Diaz hit a<br>tying, three-run homer with<br>two outs in the ninth inning,<br>and Craig Brazell's first<br>major league home run in the<br>11th gave the New York Mets a<br>stunning 4-3 victory over the<br>Chicago Cubs on Saturday.<br>The Cubs had much on the<br>line..."
-          ],
-          [
-           "AFP - At least 54 people have<br>died and more than a million<br>have fled their homes as<br>torrential rains lashed parts<br>of India and Bangladesh,<br>officials said."
-          ],
-          [
-           "LOS ANGELES - California has<br>adopted the world's first<br>rules to reduce greenhouse<br>emissions for autos, taking<br>what supporters see as a<br>dramatic step toward cleaning<br>up the environment but also<br>ensuring higher costs for<br>drivers.    The rules may lead<br>to sweeping changes in<br>vehicles nationwide,<br>especially if other states opt<br>to follow California's<br>example..."
-          ],
-          [
-           " LONDON (Reuters) - European<br>stock markets scaled<br>near-2-1/2  year highs on<br>Friday as oil prices held<br>below \\$48 a barrel, and  the<br>euro held off from mounting<br>another assault on \\$1.30 but<br>hovered near record highs<br>against the dollar."
-          ],
-          [
-           "Tim Duncan had 17 points and<br>10 rebounds, helping the San<br>Antonio Spurs to a 99-81<br>victory over the New York<br>Kicks. This was the Spurs<br>fourth straight win this<br>season."
-          ],
-          [
-           "Nagpur: India suffered a<br>double blow even before the<br>first ball was bowled in the<br>crucial third cricket Test<br>against Australia on Tuesday<br>when captain Sourav Ganguly<br>and off spinner Harbhajan<br>Singh were ruled out of the<br>match."
-          ],
-          [
-           "AFP - Republican and<br>Democratic leaders each<br>declared victory after the<br>first head-to-head sparring<br>match between President George<br>W. Bush and Democratic<br>presidential hopeful John<br>Kerry."
-          ],
-          [
-           "THIS YULE is all about console<br>supply and there #39;s<br>precious little units around,<br>it has emerged. Nintendo has<br>announced that it is going to<br>ship another 400,000 units of<br>its DS console to the United<br>States to meet the shortfall<br>there."
-          ],
-          [
-           "Annual global semiconductor<br>sales growth will probably<br>fall by half in 2005 and<br>memory chip sales could<br>collapse as a supply glut saps<br>prices, world-leading memory<br>chip maker Samsung Electronics<br>said on Monday."
-          ],
-          [
-           "NEW YORK - Traditional phone<br>systems may be going the way<br>of the Pony Express. Voice-<br>over-Internet Protocol,<br>technology that allows users<br>to make and receive phone<br>calls using the Internet, is<br>giving the old circuit-<br>switched system a run for its<br>money."
-          ],
-          [
-           "AP - Former New York Yankees<br>hitting coach Rick Down was<br>hired for the same job by the<br>Mets on Friday, reuniting him<br>with new manager Willie<br>Randolph."
-          ],
-          [
-           "Last night in New York, the UN<br>secretary-general was given a<br>standing ovation - a robust<br>response to a series of<br>attacks in past weeks."
-          ],
-          [
-           "FILDERSTADT (Germany) - Amelie<br>Mauresmo and Lindsay Davenport<br>took their battle for the No.<br>1 ranking and Porsche Grand<br>Prix title into the semi-<br>finals with straight-sets<br>victories on Friday."
-          ],
-          [
-           "Reuters - The company behind<br>the Atkins Diet\\on Friday<br>shrugged off a recent decline<br>in interest in low-carb\\diets<br>as a seasonal blip, and its<br>marketing chief said\\consumers<br>would cut out starchy foods<br>again after picking up\\pounds<br>over the holidays."
-          ],
-          [
-           "There #39;s something to be<br>said for being the  quot;first<br>mover quot; in an industry<br>trend. Those years of extra<br>experience in tinkering with a<br>new idea can be invaluable in<br>helping the first"
-          ],
-          [
-           "JOHANNESBURG -- Meeting in<br>Nigeria four years ago,<br>African leaders set a goal<br>that 60 percent of children<br>and pregnant women in malaria-<br>affected areas around the<br>continent would be sleeping<br>under bed nets by the end of<br>2005."
-          ],
-          [
-           "AP - The first U.S. cases of<br>the fungus soybean rust, which<br>hinders plant growth and<br>drastically cuts crop<br>production, were found at two<br>research sites in Louisiana,<br>officials said Wednesday."
-          ],
-          [
-           "Carter returned, but it was<br>running back Curtis Martin and<br>the offensive line that put<br>the Jets ahead. Martin rushed<br>for all but 10 yards of a<br>45-yard drive that stalled at<br>the Cardinals 10."
-          ],
-          [
-           " quot;There #39;s no way<br>anyone would hire them to<br>fight viruses, quot; said<br>Sophos security analyst Gregg<br>Mastoras.  quot;For one, no<br>security firm could maintain<br>its reputation by employing<br>hackers."
-          ],
-          [
-           "Symantec has revoked its<br>decision to blacklist a<br>program that allows Web<br>surfers in China to browse<br>government-blocked Web sites.<br>The move follows reports that<br>the firm labelled the Freegate<br>program, which"
-          ],
-          [
-           " NEW YORK (Reuters) - Shares<br>of Chiron Corp. &lt;A HREF=\"ht<br>tp://www.investor.reuters.com/<br>FullQuote.aspx?ticker=CHIR.O t<br>arget=/stocks/quickinfo/fullqu<br>ote\"&gt;CHIR.O&lt;/A&gt; fell<br>7  percent before the market<br>open on Friday, a day after<br>the  biopharmaceutical company<br>said it is delaying shipment<br>of its  flu vaccine, Fluvirin,<br>because lots containing 4<br>million  vaccines do not meet<br>product sterility standards."
-          ],
-          [
-           "The nation's top<br>telecommunications regulator<br>said yesterday he will push --<br>before the next president is<br>inaugurated -- to protect<br>fledgling Internet telephone<br>services from getting taxed<br>and heavily regulated by the<br>50 state governments."
-          ],
-          [
-           "Microsoft has signed a pact to<br>work with the United Nations<br>Educational, Scientific and<br>Cultural Organization (UNESCO)<br>to increase computer use,<br>Internet access and teacher<br>training in developing<br>countries."
-          ],
-          [
-           "DENVER (Ticker) -- Jake<br>Plummer more than made up for<br>a lack of a running game.<br>Plummer passed for 294 yards<br>and two touchdowns as the<br>Denver Broncos posted a 23-13<br>victory over the San Diego<br>Chargers in a battle of AFC<br>West Division rivals."
-          ],
-          [
-           "DALLAS -- Belo Corp. said<br>yesterday that it would cut<br>250 jobs, more than half of<br>them at its flagship<br>newspaper, The Dallas Morning<br>News, and that an internal<br>investigation into circulation<br>overstatements"
-          ],
-          [
-           "AP - Duke Bainum outspent Mufi<br>Hannemann in Honolulu's most<br>expensive mayoral race, but<br>apparently failed to garner<br>enough votes in Saturday's<br>primary to claim the office<br>outright."
-          ],
-          [
-           "roundup Plus: Microsoft tests<br>Windows Marketplace...Nortel<br>delays financials<br>again...Microsoft updates<br>SharePoint."
-          ],
-          [
-           "The Federal Reserve still has<br>some way to go to restore US<br>interest rates to more normal<br>levels, Philadelphia Federal<br>Reserve President Anthony<br>Santomero said on Monday."
-          ],
-          [
-           "It took all of about five<br>minutes of an introductory<br>press conference Wednesday at<br>Heritage Hall for USC<br>basketball to gain something<br>it never really had before."
-          ],
-          [
-           "Delta Air Lines (DAL.N: Quote,<br>Profile, Research) said on<br>Wednesday its auditors have<br>expressed doubt about the<br>airline #39;s financial<br>viability."
-          ],
-          [
-           "POLITICIANS and aid agencies<br>yesterday stressed the<br>importance of the media in<br>keeping the spotlight on the<br>appalling human rights abuses<br>taking place in the Darfur<br>region of Sudan."
-          ],
-          [
-           "AP - The Boston Red Sox looked<br>at the out-of-town scoreboard<br>and could hardly believe what<br>they saw. The New York Yankees<br>were trailing big at home<br>against the Cleveland Indians<br>in what would be the worst<br>loss in the 101-year history<br>of the storied franchise."
-          ],
-          [
-           "The Red Sox will either<br>complete an amazing comeback<br>as the first team to rebound<br>from a 3-0 deficit in<br>postseason history, or the<br>Yankees will stop them."
-          ],
-          [
-           "\\Children who have a poor diet<br>are more likely to become<br>aggressive and anti-social, US<br>researchers believe."
-          ],
-          [
-           "OPEN SOURCE champion Microsoft<br>is expanding its programme to<br>give government organisations<br>some of its source code. In a<br>communique from the lair of<br>the Vole, in Redmond,<br>spinsters have said that<br>Microsoft"
-          ],
-          [
-           "The Red Sox have reached<br>agreement with free agent<br>pitcher Matt Clement yesterday<br>on a three-year deal that will<br>pay him around \\$25 million,<br>his agent confirmed yesterday."
-          ],
-          [
-           "Takeover target Ronin Property<br>Group said it would respond to<br>an offer by Multiplex Group<br>for all the securities in the<br>company in about three weeks."
-          ],
-          [
-           "Canadian Press - OTTAWA (CP) -<br>Contrary to Immigration<br>Department claims, there is no<br>shortage of native-borne<br>exotic dancers in Canada, says<br>a University of Toronto law<br>professor who has studied the<br>strip club business."
-          ],
-          [
-           "HEN Manny Ramirez and David<br>Ortiz hit consecutive home<br>runs Sunday night in Chicago<br>to put the Red Sox ahead,<br>there was dancing in the<br>streets in Boston."
-          ],
-          [
-           "Google Inc. is trying to<br>establish an online reading<br>room for five major libraries<br>by scanning stacks of hard-to-<br>find books into its widely<br>used Internet search engine."
-          ],
-          [
-           "HOUSTON--(BUSINESS<br>WIRE)--Sept. 1, 2004-- L<br>#39;operazione crea una<br>centrale globale per l<br>#39;analisi strategica el<br>#39;approfondimento del<br>settore energetico IHS Energy,<br>fonte globale leader di<br>software, analisi e<br>informazioni"
-          ],
-          [
-           "The European Union presidency<br>yesterday expressed optimism<br>that a deal could be struck<br>over Turkey #39;s refusal to<br>recognize Cyprus in the lead-<br>up to next weekend #39;s EU<br>summit, which will decide<br>whether to give Ankara a date<br>for the start of accession<br>talks."
-          ],
-          [
-           " WASHINGTON (Reuters) -<br>President Bush on Friday set a<br>four-year goal of seeing a<br>Palestinian state established<br>and he  and British Prime<br>Minister Tony Blair vowed to<br>mobilize  international<br>support to help make it happen<br>now that Yasser  Arafat is<br>dead."
-          ],
-          [
-           "WASHINGTON Can you always tell<br>when somebody #39;s lying? If<br>so, you might be a wizard of<br>the fib. A California<br>psychology professor says<br>there #39;s a tiny subculture<br>of people that can pick out a<br>lie nearly every time they<br>hear one."
-          ],
-          [
-           " KHARTOUM (Reuters) - Sudan on<br>Saturday questioned U.N.<br>estimates that up to 70,000<br>people have died from hunger<br>and  disease in its remote<br>Darfur region since a<br>rebellion began 20  months<br>ago."
-          ],
-          [
-           "Type design was once the<br>province of skilled artisans.<br>With the help of new computer<br>programs, neophytes have<br>flooded the Internet with<br>their creations."
-          ],
-          [
-           "RCN Inc., co-owner of<br>Starpower Communications LLC,<br>the Washington area<br>television, telephone and<br>Internet provider, filed a<br>plan of reorganization<br>yesterday that it said puts<br>the company"
-          ],
-          [
-           "MIAMI -- Bryan Randall grabbed<br>a set of Mardi Gras beads and<br>waved them aloft, while his<br>teammates exalted in the<br>prospect of a trip to New<br>Orleans."
-          ],
-          [
-           "&lt;strong&gt;Letters&lt;/stro<br>ng&gt; Reports of demise<br>premature"
-          ],
-          [
-           "TORONTO (CP) - With an injured<br>Vince Carter on the bench, the<br>Toronto Raptors dropped their<br>sixth straight game Friday,<br>101-87 to the Denver Nuggets."
-          ],
-          [
-           "The US airline industry,<br>riddled with excess supply,<br>will see a significant drop in<br>capacity, or far fewer seats,<br>as a result of at least one<br>airline liquidating in the<br>next year, according to<br>AirTran Airways Chief<br>Executive Joe Leonard."
-          ],
-          [
-           "Boeing (nyse: BA - news -<br>people ) Chief Executive Harry<br>Stonecipher is keeping the<br>faith. On Monday, the head of<br>the aerospace and military<br>contractor insists he #39;s<br>confident his firm will<br>ultimately win out"
-          ],
-          [
-           "While not quite a return to<br>glory, Monday represents the<br>Redskins' return to the<br>national consciousness."
-          ],
-          [
-           "Australia #39;s biggest<br>supplier of fresh milk,<br>National Foods, has posted a<br>net profit of \\$68.7 million,<br>an increase of 14 per cent on<br>last financial year."
-          ],
-          [
-           "Lawyers for customers suing<br>Merck  amp; Co. want to<br>question CEO Raymond Gilmartin<br>about what he knew about the<br>dangers of Vioxx before the<br>company withdrew the drug from<br>the market because of health<br>hazards."
-          ],
-          [
-           "Vijay Singh has won the US PGA<br>Tour player of the year award<br>for the first time, ending<br>Tiger Woods #39;s five-year<br>hold on the honour."
-          ],
-          [
-           "New York; September 23, 2004 -<br>The Department of Justice<br>(DoJ), FBI and US Attorney<br>#39;s Office handed down a<br>10-count indictment against<br>former Computer Associates<br>(CA) chairman and CEO Sanjay<br>Kumar and Stephen Richards,<br>former CA head of worldwide<br>sales."
-          ],
-          [
-           "AFP - At least four Georgian<br>soldiers were killed and five<br>wounded in overnight clashes<br>in Georgia's separatist, pro-<br>Russian region of South<br>Ossetia, Georgian officers<br>near the frontline with<br>Ossetian forces said early<br>Thursday."
-          ],
-          [
-           "Intel, the world #39;s largest<br>chip maker, scrapped a plan<br>Thursday to enter the digital<br>television chip business,<br>marking a major retreat from<br>its push into consumer<br>electronics."
-          ],
-          [
-           "PACIFIC Hydro shares yesterday<br>caught an updraught that sent<br>them more than 20 per cent<br>higher after the wind farmer<br>moved to flush out a bidder."
-          ],
-          [
-           "The European Commission is<br>expected later this week to<br>recommend EU membership talks<br>with Turkey. Meanwhile, German<br>Chancellor Gerhard Schroeder<br>and Turkish Prime Minister<br>Tayyip Erdogan are<br>anticipating a  quot;positive<br>report."
-          ],
-          [
-           "The US is the originator of<br>over 42 of the worlds<br>unsolicited commercial e-mail,<br>making it the worst offender<br>in a league table of the top<br>12 spam producing countries<br>published yesterday by anti-<br>virus firm Sophos."
-          ],
-          [
-           " NEW YORK (Reuters) - U.S.<br>consumer confidence retreated<br>in  August while Chicago-area<br>business activity slowed,<br>according  to reports on<br>Tuesday that added to worries<br>the economy's patch  of slow<br>growth may last beyond the<br>summer."
-          ],
-          [
-           "Intel is drawing the curtain<br>on some of its future research<br>projects to continue making<br>transistors smaller, faster,<br>and less power-hungry out as<br>far as 2020."
-          ],
-          [
-           "England got strikes from<br>sparkling debut starter<br>Jermain Defoe and Michael Owen<br>to defeat Poland in a Uefa<br>World Cup qualifier in<br>Chorzow."
-          ],
-          [
-           "The Canadian government<br>signalled its intention<br>yesterday to reintroduce<br>legislation to decriminalise<br>the possession of small<br>amounts of marijuana."
-          ],
-          [
-           "A screensaver targeting spam-<br>related websites appears to<br>have been too successful."
-          ],
-          [
-           "Titleholder Ernie Els moved<br>within sight of a record sixth<br>World Match Play title on<br>Saturday by solving a putting<br>problem to overcome injured<br>Irishman Padraig Harrington 5<br>and 4."
-          ],
-          [
-           "If the Washington Nationals<br>never win a pennant, they have<br>no reason to ever doubt that<br>DC loves them. Yesterday, the<br>District City Council<br>tentatively approved a tab for<br>a publicly financed ballpark<br>that could amount to as much<br>as \\$630 million."
-          ],
-          [
-           "Plus: Experts fear Check 21<br>could lead to massive bank<br>fraud."
-          ],
-          [
-           "By SIOBHAN McDONOUGH<br>WASHINGTON (AP) -- Fewer<br>American youths are using<br>marijuana, LSD and Ecstasy,<br>but more are abusing<br>prescription drugs, says a<br>government report released<br>Thursday.    The 2003 National<br>Survey on Drug Use and Health<br>also found youths and young<br>adults are more aware of the<br>risks of using pot once a<br>month or more frequently..."
-          ],
-          [
-           " ABIDJAN (Reuters) - Ivory<br>Coast warplanes killed nine<br>French soldiers on Saturday in<br>a bombing raid during the<br>fiercest clashes with rebels<br>for 18 months and France hit<br>back  by destroying most of<br>the West African country's<br>small  airforce."
-          ],
-          [
-           "Unilever has reported a three<br>percent rise in third-quarter<br>earnings but warned it is<br>reviewing its targets up to<br>2010, after issuing a shock<br>profits warning last month."
-          ],
-          [
-           "A TNO engineer prepares to<br>start capturing images for the<br>world's biggest digital photo."
-          ],
-          [
-           "Defensive back Brandon<br>Johnson, who had two<br>interceptions for Tennessee at<br>Mississippi, was suspended<br>indefinitely Monday for<br>violation of team rules."
-          ],
-          [
-           "Points leader Kurt Busch spun<br>out and ran out of fuel, and<br>his misfortune was one of the<br>reasons crew chief Jimmy<br>Fennig elected not to pit with<br>20 laps to go."
-          ],
-          [
-           " LONDON (Reuters) - Oil prices<br>extended recent heavy losses<br>on Wednesday ahead of weekly<br>U.S. data expected to show<br>fuel  stocks rising in time<br>for peak winter demand."
-          ],
-          [
-           "(CP) - The NHL all-star game<br>hasn #39;t been cancelled<br>after all. It #39;s just been<br>moved to Russia. The agent for<br>New York Rangers winger<br>Jaromir Jagr confirmed Monday<br>that the Czech star had joined<br>Omsk Avangard"
-          ],
-          [
-           "PalmOne is aiming to sharpen<br>up its image with the launch<br>of the Treo 650 on Monday. As<br>previously reported, the smart<br>phone update has a higher-<br>resolution screen and a faster<br>processor than the previous<br>top-of-the-line model, the<br>Treo 600."
-          ],
-          [
-           "GAZA CITY, Gaza Strip --<br>Islamic militant groups behind<br>many suicide bombings<br>dismissed yesterday a call<br>from Mahmoud Abbas, the<br>interim Palestinian leader, to<br>halt attacks in the run-up to<br>a Jan. 9 election to replace<br>Yasser Arafat."
-          ],
-          [
-           "Secretary of State Colin<br>Powell is wrapping up an East<br>Asia trip focused on prodding<br>North Korea to resume talks<br>aimed at ending its nuclear-<br>weapons program."
-          ],
-          [
-           "HERE in the land of myth, that<br>familiar god of sports --<br>karma -- threw a bolt of<br>lightning into the Olympic<br>stadium yesterday. Marion<br>Jones lunged desperately with<br>her baton in the 4 x 100m<br>relay final, but couldn #39;t<br>reach her target."
-          ],
-          [
-           "kinrowan writes  quot;MIT,<br>inventor of Kerberos, has<br>announced a pair of<br>vulnerabities in the software<br>that will allow an attacker to<br>either execute a DOS attack or<br>execute code on the machine."
-          ],
-          [
-           "The risk of intestinal damage<br>from common painkillers may be<br>higher than thought, research<br>suggests."
-          ],
-          [
-           "AN earthquake measuring 7.3 on<br>the Richter Scale hit western<br>Japan this morning, just hours<br>after another strong quake<br>rocked the area."
-          ],
-          [
-           "Vodafone has increased the<br>competition ahead of Christmas<br>with plans to launch 10<br>handsets before the festive<br>season. The Newbury-based<br>group said it will begin<br>selling the phones in<br>November."
-          ],
-          [
-           "Reuters - Former Pink Floyd<br>mainman Roger\\Waters released<br>two new songs, both inspired<br>by the U.S.-led\\invasion of<br>Iraq, via online download<br>outlets Tuesday."
-          ],
-          [
-           "A former assistant treasurer<br>at Enron Corp. (ENRNQ.PK:<br>Quote, Profile, Research)<br>agreed to plead guilty to<br>conspiracy to commit<br>securities fraud on Tuesday<br>and will cooperate with"
-          ],
-          [
-           "Britain #39;s Prince Harry,<br>struggling to shed a growing<br>quot;wild child quot; image,<br>won #39;t apologize to a<br>photographer he scuffled with<br>outside an exclusive London<br>nightclub, a royal spokesman<br>said on Saturday."
-          ],
-          [
-           "UK house prices fell by 1.1 in<br>October, confirming a<br>softening of the housing<br>market, Halifax has said. The<br>UK #39;s biggest mortgage<br>lender said prices rose 18."
-          ],
-          [
-           "Pakistan #39;s interim Prime<br>Minister Chaudhry Shaujaat<br>Hussain has announced his<br>resignation, paving the way<br>for his successor Shauket<br>Aziz."
-          ],
-          [
-           "A previously unknown group<br>calling itself Jamaat Ansar<br>al-Jihad al-Islamiya says it<br>set fire to a Jewish soup<br>kitchen in Paris, according to<br>an Internet statement."
-          ],
-          [
-           "More than six newspaper<br>companies have received<br>letters from the Securities<br>and Exchange Commission<br>seeking information about<br>their circulation practices."
-          ],
-          [
-           "THE 64,000 dollar -<br>correction, make that 500<br>million dollar -uestion<br>hanging over Shire<br>Pharmaceuticals is whether the<br>5 per cent jump in the<br>companys shares yesterday<br>reflects relief that US<br>regulators have finally<br>approved its drug for"
-          ],
-          [
-           "The deadliest attack on<br>Americans in Iraq since May<br>came as Iraqi officials<br>announced that Saddam<br>Hussein's deputy had not been<br>captured on Sunday."
-          ],
-          [
-           "AP - Kenny Rogers lost at the<br>Coliseum for the first time in<br>more than 10 years, with Bobby<br>Crosby's three-run double in<br>the fifth inning leading the<br>Athletics to a 5-4 win over<br>the Texas Rangers on Thursday."
-          ],
-          [
-           "A fundraising concert will be<br>held in London in memory of<br>the hundreds of victims of the<br>Beslan school siege."
-          ],
-          [
-           "Dambulla, Sri Lanka - Kumar<br>Sangakkara and Avishka<br>Gunawardene slammed impressive<br>half-centuries to help an<br>under-strength Sri Lanka crush<br>South Africa by seven wickets<br>in the fourth one-day<br>international here on<br>Saturday."
-          ],
-          [
-           "Fresh off being the worst team<br>in baseball, the Arizona<br>Diamondbacks set a new record<br>this week: fastest team to<br>both hire and fire a manager."
-          ],
-          [
-           "Nebraska head coach Bill<br>Callahan runs off the field at<br>halftime of the game against<br>Baylor in Lincoln, Neb.,<br>Saturday, Oct. 16, 2004."
-          ],
-          [
-           "NASA has been working on a<br>test flight project for the<br>last few years involving<br>hypersonic flight. Hypersonic<br>flight is fight at speeds<br>greater than Mach 5, or five<br>times the speed of sound."
-          ],
-          [
-           "AFP - The landmark trial of a<br>Rwandan Roman Catholic priest<br>accused of supervising the<br>massacre of 2,000 of his Tutsi<br>parishioners during the<br>central African country's 1994<br>genocide opens at a UN court<br>in Tanzania."
-          ],
-          [
-           "The Irish government has<br>stepped up its efforts to free<br>the British hostage in Iraq,<br>Ken Bigley, whose mother is<br>from Ireland, by talking to<br>diplomats from Iran and<br>Jordan."
-          ],
-          [
-           "AP - Republican Sen. Lincoln<br>Chafee, who flirted with<br>changing political parties in<br>the wake of President Bush's<br>re-election victory, says he<br>will stay in the GOP."
-          ],
-          [
-           "AP - Microsoft Corp. announced<br>Wednesday that it would offer<br>a low-cost, localized version<br>of its Windows XP operating<br>system in India to tap the<br>large market potential in this<br>country of 1 billion people,<br>most of whom do not speak<br>English."
-          ],
-          [
-           "Businesses saw inventories<br>rise in July and sales picked<br>up, the government reported<br>Wednesday. The Commerce<br>Department said that stocks of<br>unsold goods increased 0.9 in<br>July, down from a 1.1 rise in<br>June."
-          ],
-          [
-           " EAST RUTHERFORD, N.J. (Sports<br>Network) - The Toronto<br>Raptors have traded All-Star<br>swingman Vince Carter to the<br>New  Jersey Nets in exchange<br>for center Alonzo Mourning,<br>forward  Eric Williams,<br>center/forward Aaron Williams<br>and two first-  round draft<br>picks."
-          ],
-          [
-           "AP - Utah State University has<br>secured a  #36;40 million<br>contract with NASA to build an<br>orbiting telescope that will<br>examine galaxies and try to<br>find new stars."
-          ],
-          [
-           "South Korean President Roh<br>Moo-hyun pays a surprise visit<br>to troops in Iraq, after his<br>government decided to extend<br>their mandate."
-          ],
-          [
-           "As the European Union<br>approaches a contentious<br>decision - whether to let<br>Turkey join the club - the<br>Continent #39;s rulers seem to<br>have left their citizens<br>behind."
-          ],
-          [
-           "What riot?  quot;An Argentine<br>friend of mine was a little<br>derisive of the Pacers-Pistons<br>eruption, quot; says reader<br>Mike Gaynes.  quot;He snorted,<br>#39;Is that what Americans<br>call a riot?"
-          ],
-          [
-           "All season, Chris Barnicle<br>seemed prepared for just about<br>everything, but the Newton<br>North senior was not ready for<br>the hot weather he encountered<br>yesterday in San Diego at the<br>Footlocker Cross-Country<br>National Championships. Racing<br>in humid conditions with<br>temperatures in the 70s, the<br>Massachusetts Division 1 state<br>champion finished sixth in 15<br>minutes 34 seconds in the<br>5-kilometer race. ..."
-          ],
-          [
-           "Shares of Genta Inc. (GNTA.O:<br>Quote, Profile, Research)<br>soared nearly 50 percent on<br>Monday after the biotechnology<br>company presented promising<br>data on an experimental<br>treatment for blood cancers."
-          ],
-          [
-           "I spend anywhere from three to<br>eight hours every week<br>sweating along with a motley<br>crew of local misfits,<br>shelving, sorting, and hauling<br>ton after ton of written<br>matter in a rowhouse basement<br>in Baltimore. We have no heat<br>nor air conditioning, but<br>still, every week, we come and<br>work. Volunteer night is<br>Wednesday, but many of us also<br>work on the weekends, when<br>we're open to the public.<br>There are times when we're<br>freezing and we have to wear<br>coats and gloves inside,<br>making handling books somewhat<br>tricky; other times, we're all<br>soaked with sweat, since it's<br>90 degrees out and the<br>basement is thick with bodies.<br>One learns to forget about<br>personal space when working at<br>The Book Thing, since you can<br>scarcely breathe without<br>bumping into someone, and we<br>are all so accustomed to<br>having to scrape by each other<br>that most of us no longer<br>bother to say \"excuse me\"<br>unless some particularly<br>dramatic brushing occurs."
-          ],
-          [
-           " BAGHDAD (Reuters) - A<br>deadline set by militants who<br>have  threatened to kill two<br>Americans and a Briton seized<br>in Iraq  was due to expire<br>Monday, and more than two<br>dozen other  hostages were<br>also facing death unless rebel<br>demands were met."
-          ],
-          [
-           "Alarmed by software glitches,<br>security threats and computer<br>crashes with ATM-like voting<br>machines, officials from<br>Washington, D.C., to<br>California are considering an<br>alternative from an unlikely<br>place: Nevada."
-          ],
-          [
-           "Some Venezuelan television<br>channels began altering their<br>programs Thursday, citing<br>fears of penalties under a new<br>law restricting violence and<br>sexual content over the<br>airwaves."
-          ],
-          [
-           "SBC Communications Inc. plans<br>to cut at least 10,000 jobs,<br>or 6 percent of its work<br>force, by the end of next year<br>to compensate for a drop in<br>the number of local-telephone<br>customers."
-          ],
-          [
-           "afrol News, 4 October -<br>Hundred years of conservation<br>efforts have lifted the<br>southern black rhino<br>population from about hundred<br>to 11,000 animals."
-          ],
-          [
-           "THE death of Philippine movie<br>star and defeated presidential<br>candidate Fernando Poe has<br>drawn some political backlash,<br>with some people seeking to<br>use his sudden demise as a<br>platform to attack President<br>Gloria Arroyo."
-          ],
-          [
-           " WASHINGTON (Reuters) - Major<br>cigarette makers go on trial<br>on Tuesday in the U.S.<br>government's \\$280 billion<br>racketeering  case that<br>charges the tobacco industry<br>with deliberately  deceiving<br>the public about the risks of<br>smoking since the  1950s."
-          ],
-          [
-           "More Americans are quitting<br>their jobs and taking the risk<br>of starting a business despite<br>a still-lackluster job market."
-          ],
-          [
-           "AP - Coach Tyrone Willingham<br>was fired by Notre Dame on<br>Tuesday after three seasons in<br>which he failed to return one<br>of the nation's most storied<br>football programs to<br>prominence."
-          ],
-          [
-           "COLLEGE PARK, Md. -- Joel<br>Statham completed 18 of 25<br>passes for 268 yards and two<br>touchdowns in No. 23<br>Maryland's 45-22 victory over<br>Temple last night, the<br>Terrapins' 12th straight win<br>at Byrd Stadium."
-          ],
-          [
-           "Manchester United boss Sir<br>Alex Ferguson wants the FA to<br>punish Arsenal good guy Dennis<br>Bergkamp for taking a swing at<br>Alan Smith last Sunday."
-          ],
-          [
-           "VIENTIANE, Laos China moved<br>yet another step closer in<br>cementing its economic and<br>diplomatic relationships with<br>Southeast Asia today when<br>Prime Minister Wen Jiabao<br>signed a trade accord at a<br>regional summit that calls for<br>zero tariffs on a wide range<br>of"
-          ],
-          [
-           "SPACE.com - With nbsp;food<br>stores nbsp;running low, the<br>two \\astronauts living aboard<br>the International Space<br>Station (ISS) are cutting back<br>\\their meal intake and<br>awaiting a critical cargo<br>nbsp;delivery expected to<br>arrive \\on Dec. 25."
-          ],
-          [
-           "British judges in London<br>Tuesday ordered radical Muslim<br>imam Abu Hamza to stand trial<br>for soliciting murder and<br>inciting racial hatred."
-          ],
-          [
-           "Federal Reserve policy-makers<br>raised the benchmark US<br>interest rate a quarter point<br>to 2.25 per cent and restated<br>a plan to carry out"
-          ],
-          [
-           " DETROIT (Reuters) - A<br>Canadian law firm on Tuesday<br>said it  had filed a lawsuit<br>against Ford Motor Co. &lt;A H<br>REF=\"http://www.investor.reute<br>rs.com/FullQuote.aspx?ticker=F<br>.N target=/stocks/quickinfo/fu<br>llquote\"&gt;F.N&lt;/A&gt; over<br>what it  claims are defective<br>door latches on about 400,000<br>of the  automaker's popular<br>pickup trucks and SUVs."
-          ],
-          [
-           "Published reports say Barry<br>Bonds has testified that he<br>used a clear substance and a<br>cream given to him by a<br>trainer who was indicted in a<br>steroid-distribution ring."
-          ],
-          [
-           "SARASOTA, Fla. - The<br>devastation brought on by<br>Hurricane Charley has been<br>especially painful for an<br>elderly population that is<br>among the largest in the<br>nation..."
-          ],
-          [
-           " ATHENS (Reuters) - Christos<br>Angourakis added his name to<br>Greece's list of Paralympic<br>medal winners when he claimed<br>a  bronze in the T53 shot put<br>competition Thursday."
-          ],
-          [
-           " quot;He is charged for having<br>a part in the Bali incident,<br>quot; state prosecutor Andi<br>Herman told Reuters on<br>Saturday. bombing attack at<br>the US-run JW."
-          ],
-          [
-           "Jay Fiedler threw for one<br>touchdown, Sage Rosenfels<br>threw for another and the<br>Miami Dolphins got a victory<br>in a game they did not want to<br>play, beating the New Orleans<br>Saints 20-19 Friday night."
-          ],
-          [
-           " NEW YORK (Reuters) - Terrell<br>Owens scored three touchdowns<br>and the Philadelphia Eagles<br>amassed 35 first-half points<br>on the  way to a 49-21<br>drubbing of the Dallas Cowboys<br>in Irving, Texas,  Monday."
-          ],
-          [
-           "AstraZeneca Plc suffered its<br>third setback in two months on<br>Friday as lung cancer drug<br>Iressa failed to help patients<br>live longer"
-          ],
-          [
-           "Virgin Electronics hopes its<br>slim Virgin Player, which<br>debuts today and is smaller<br>than a deck of cards, will<br>rise as a lead competitor to<br>Apple's iPod."
-          ],
-          [
-           "Researchers train a monkey to<br>feed itself by guiding a<br>mechanical arm with its mind.<br>It could be a big step forward<br>for prosthetics. By David<br>Cohn."
-          ],
-          [
-           "Bruce Wasserstein, the<br>combative chief executive of<br>investment bank Lazard, is<br>expected to agree this week<br>that he will quit the group<br>unless he can pull off a<br>successful"
-          ],
-          [
-           "A late strike by Salomon Kalou<br>sealed a 2-1 win for Feyenoord<br>over NEC Nijmegen, while<br>second placed AZ Alkmaar<br>defeated ADO Den Haag 2-0 in<br>the Dutch first division on<br>Sunday."
-          ],
-          [
-           "The United Nations called on<br>Monday for an immediate<br>ceasefire in eastern Congo as<br>fighting between rival army<br>factions flared for a third<br>day."
-          ],
-          [
-           "What a disgrace Ron Artest has<br>become. And the worst part is,<br>the Indiana Pacers guard just<br>doesn #39;t get it. Four days<br>after fueling one of the<br>biggest brawls in the history<br>of pro sports, Artest was on<br>national"
-          ],
-          [
-           "Allowing dozens of casinos to<br>be built in the UK would bring<br>investment and thousands of<br>jobs, Tony Blair says."
-          ],
-          [
-           "The shock here was not just<br>from the awful fact itself,<br>that two vibrant young Italian<br>women were kidnapped in Iraq,<br>dragged from their office by<br>attackers who, it seems, knew<br>their names."
-          ],
-          [
-           "Tehran/Vianna, Sept. 19 (NNN):<br>Iran on Sunday rejected the<br>International Atomic Energy<br>Agency (IAEA) call to suspend<br>of all its nuclear activities,<br>saying that it will not agree<br>to halt uranium enrichment."
-          ],
-          [
-           "A 15-year-old Argentine<br>student opened fire at his<br>classmates on Tuesday in a<br>middle school in the south of<br>the Buenos Aires province,<br>leaving at least four dead and<br>five others wounded, police<br>said."
-          ],
-          [
-           "Dr. David J. Graham, the FDA<br>drug safety reviewer who<br>sounded warnings over five<br>drugs he felt could become the<br>next Vioxx has turned to a<br>Whistleblower protection group<br>for legal help."
-          ],
-          [
-           "AP - Scientists in 17<br>countries will scout waterways<br>to locate and study the<br>world's largest freshwater<br>fish species, many of which<br>are declining in numbers,<br>hoping to learn how to better<br>protect them, researchers<br>announced Thursday."
-          ],
-          [
-           "AP - Google Inc.'s plans to<br>move ahead with its initial<br>public stock offering ran into<br>a roadblock when the<br>Securities and Exchange<br>Commission didn't approve the<br>Internet search giant's<br>regulatory paperwork as<br>requested."
-          ],
-          [
-           "Jenson Button has revealed<br>dissatisfaction with the way<br>his management handled a<br>fouled switch to Williams. Not<br>only did the move not come<br>off, his reputation may have<br>been irreparably damaged amid<br>news headline"
-          ],
-          [
-           "The Kmart purchase of Sears,<br>Roebuck may be the ultimate<br>expression of that old saying<br>in real estate: location,<br>location, location."
-          ],
-          [
-           "Citing security risks, a state<br>university is urging students<br>to drop Internet Explorer in<br>favor of alternative Web<br>browsers such as Firefox and<br>Safari."
-          ],
-          [
-           "Redknapp and his No2 Jim Smith<br>resigned from Portsmouth<br>yesterday, leaving<br>controversial new director<br>Velimir Zajec in temporary<br>control."
-          ],
-          [
-           "Despite being ranked eleventh<br>in the world in broadband<br>penetration, the United States<br>is rolling out high-speed<br>services on a  quot;reasonable<br>and timely basis to all<br>Americans, quot; according to<br>a new report narrowly approved<br>today by the Federal<br>Communications"
-          ],
-          [
-           "Sprint Corp. (FON.N: Quote,<br>Profile, Research) on Friday<br>said it plans to cut up to 700<br>jobs as it realigns its<br>business to focus on wireless<br>and Internet services and<br>takes a non-cash network<br>impairment charge."
-          ],
-          [
-           "As the season winds down for<br>the Frederick Keys, Manager<br>Tom Lawless is starting to<br>enjoy the progress his<br>pitching staff has made this<br>season."
-          ],
-          [
-           "Britain #39;s Bradley Wiggins<br>won the gold medal in men<br>#39;s individual pursuit<br>Saturday, finishing the<br>4,000-meter final in 4:16."
-          ],
-          [
-           "And when David Akers #39;<br>50-yard field goal cleared the<br>crossbar in overtime, they did<br>just that. They escaped a<br>raucous Cleveland Browns<br>Stadium relieved but not<br>broken, tested but not<br>cracked."
-          ],
-          [
-           "NEW YORK - A cable pay-per-<br>view company has decided not<br>to show a three-hour election<br>eve special with filmmaker<br>Michael Moore that included a<br>showing of his documentary<br>\"Fahrenheit 9/11,\" which is<br>sharply critical of President<br>Bush.    The company, iN<br>DEMAND, said Friday that its<br>decision is due to \"legitimate<br>business and legal concerns.\"<br>A spokesman would not<br>elaborate..."
-          ],
-          [
-           "Democracy candidates picked up<br>at least one more seat in<br>parliament, according to exit<br>polls."
-          ],
-          [
-           "The IOC wants suspended<br>Olympic member Ivan Slavkov to<br>be thrown out of the<br>organisation."
-          ],
-          [
-           " BANGKOK (Reuters) - The<br>ouster of Myanmar's prime<br>minister,  architect of a<br>tentative \"roadmap to<br>democracy,\" has dashed  faint<br>hopes for an end to military<br>rule and leaves Southeast<br>Asia's policy of constructive<br>engagement in tatters."
-          ],
-          [
-           "San Antonio, TX (Sports<br>Network) - Dean Wilson shot a<br>five-under 65 on Friday to<br>move into the lead at the<br>halfway point of the Texas<br>Open."
-          ],
-          [
-           "Now that Chelsea have added<br>Newcastle United to the list<br>of clubs that they have given<br>what for lately, what price<br>Jose Mourinho covering the<br>Russian-funded aristocrats of<br>west London in glittering<br>glory to the tune of four<br>trophies?"
-          ],
-          [
-           "AP - Former Seattle Seahawks<br>running back Chris Warren has<br>been arrested in Virginia on a<br>federal warrant, accused of<br>failing to pay  #36;137,147 in<br>child support for his two<br>daughters in Washington state."
-          ],
-          [
-           "The anguish of hostage Kenneth<br>Bigley in Iraq hangs over<br>Prime Minister Tony Blair<br>today as he faces the twin<br>test of a local election and a<br>debate by his Labour Party<br>about the divisive war."
-          ],
-          [
-           "Says that amount would have<br>been earned for the first 9<br>months of 2004, before AT<br>amp;T purchase. LOS ANGELES,<br>(Reuters) - Cingular Wireless<br>would have posted a net profit<br>of \\$650 million for the first<br>nine months"
-          ],
-          [
-           "NewsFactor - Taking an<br>innovative approach to the<br>marketing of high-performance<br>\\computing, Sun Microsystems<br>(Nasdaq: SUNW) is offering its<br>N1 Grid program in a pay-for-<br>use pricing model that mimics<br>the way such commodities as<br>electricity and wireless phone<br>plans are sold."
-          ],
-          [
-           " CHICAGO (Reuters) - Goodyear<br>Tire   Rubber Co. &lt;A HREF=\"<br>http://www.investor.reuters.co<br>m/FullQuote.aspx?ticker=GT.N t<br>arget=/stocks/quickinfo/fullqu<br>ote\"&gt;GT.N&lt;/A&gt; said<br>on Friday it will cut 340 jobs<br>in its engineered products and<br>chemical units as part of its<br>cost-reduction efforts,<br>resulting  in a third-quarter<br>charge."
-          ],
-          [
-           " quot;There were 16 people<br>travelling aboard. ... It<br>crashed into a mountain, quot;<br>Col. Antonio Rivero, head of<br>the Civil Protection service,<br>told."
-          ],
-          [
-           "Reuters - Shares of long-<br>distance phone\\companies AT T<br>Corp.  and MCI Inc.  have<br>plunged\\about 20 percent this<br>year, but potential buyers<br>seem to be\\holding out for<br>clearance sales."
-          ],
-          [
-           "Reuters - Madonna and m-Qube<br>have\\made it possible for the<br>star's North American fans to<br>download\\polyphonic ring tones<br>and other licensed mobile<br>content from\\her official Web<br>site, across most major<br>carriers and without\\the need<br>for a credit card."
-          ],
-          [
-           "President Bush is reveling in<br>winning the popular vote and<br>feels he can no longer be<br>considered a one-term accident<br>of history."
-          ],
-          [
-           "Russian oil giant Yukos files<br>for bankruptcy protection in<br>the US in a last ditch effort<br>to stop the Kremlin auctioning<br>its main production unit."
-          ],
-          [
-           "British Airways #39; (BA)<br>chief executive Rod Eddington<br>has admitted that the company<br>quot;got it wrong quot; after<br>staff shortages led to three<br>days of travel chaos for<br>passengers."
-          ],
-          [
-           "It #39;s official: US Open had<br>never gone into the third<br>round with only two American<br>men, including the defending<br>champion, Andy Roddick."
-          ],
-          [
-           "Canadian Press - TORONTO (CP)<br>- Thousands of Royal Bank<br>clerks are being asked to<br>display rainbow stickers at<br>their desks and cubicles to<br>promote a safe work<br>environment for gays,<br>lesbians, and bisexuals."
-          ],
-          [
-           "The chipmaker is back on a<br>buying spree, having scooped<br>up five other companies this<br>year."
-          ],
-          [
-           "The issue of drug advertising<br>directly aimed at consumers is<br>becoming political."
-          ],
-          [
-           "WASHINGTON, Aug. 17<br>(Xinhuanet) -- England coach<br>Sven-Goran Eriksson has urged<br>the international soccer<br>authorities to preserve the<br>health of the world superstar<br>footballers for major<br>tournaments, who expressed his<br>will in Slaley of England on<br>Tuesday ..."
-          ],
-          [
-           " BAGHDAD (Reuters) - A car<br>bomb killed two American<br>soldiers  and wounded eight<br>when it exploded in Baghdad on<br>Saturday, the  U.S. military<br>said in a statement."
-          ],
-          [
-           "Juventus coach Fabio Capello<br>has ordered his players not to<br>kick the ball out of play when<br>an opponent falls to the<br>ground apparently hurt because<br>he believes some players fake<br>injury to stop the match."
-          ],
-          [
-           "AP - China's economic boom is<br>still roaring despite efforts<br>to cool sizzling growth, with<br>the gross domestic product<br>climbing 9.5 percent in the<br>first three quarters of this<br>year, the government reported<br>Friday."
-          ],
-          [
-           "Soaring petroleum prices<br>pushed the cost of goods<br>imported into the U.S. much<br>higher than expected in<br>August, the government said<br>today."
-          ],
-          [
-           "Anheuser-Busch teams up with<br>Vietnam's largest brewer,<br>laying the groundwork for<br>future growth in the region."
-          ],
-          [
-           "You #39;re angry. You want to<br>lash out. The Red Sox are<br>doing it to you again. They<br>#39;re blowing a playoff<br>series, and to the Yankees no<br>less."
-          ],
-          [
-           "TORONTO -- There is no<br>mystique to it anymore,<br>because after all, the<br>Russians have become commoners<br>in today's National Hockey<br>League, and Finns, Czechs,<br>Slovaks, and Swedes also have<br>been entrenched in the<br>Original 30 long enough to<br>turn the ongoing World Cup of<br>Hockey into a protracted<br>trailer for the NHL season."
-          ],
-          [
-           "Sudanese authorities have<br>moved hundreds of pro-<br>government fighters from the<br>crisis-torn Darfur region to<br>other parts of the country to<br>keep them out of sight of<br>foreign military observers<br>demanding the militia #39;s<br>disarmament, a rebel leader<br>charged"
-          ],
-          [
-           "CHARLOTTE, NC - Shares of<br>Krispy Kreme Doughnuts Inc.<br>#39;s fell sharply Monday as a<br>79 percent plunge in third-<br>quarter earnings and an<br>intensifying accounting<br>investigation overshadowed the<br>pastrymaker #39;s statement<br>that the low-carb craze might<br>be easing."
-          ],
-          [
-           "The company hopes to lure<br>software partners by promising<br>to save them from<br>infrastructure headaches."
-          ],
-          [
-           "BAGHDAD, Iraq - A car bomb<br>Tuesday ripped through a busy<br>market near a Baghdad police<br>headquarters where Iraqis were<br>waiting to apply for jobs on<br>the force, and gunmen opened<br>fire on a van carrying police<br>home from work in Baqouba,<br>killing at least 59 people<br>total and wounding at least<br>114.    The attacks were the<br>latest attempts by militants<br>to wreck the building of a<br>strong Iraqi security force, a<br>keystone of the U.S..."
-          ],
-          [
-           "The Israeli prime minister<br>said today that he wanted to<br>begin withdrawing settlers<br>from Gaza next May or June."
-          ],
-          [
-           "Indianapolis, IN (Sports<br>Network) - The Indiana Pacers<br>try to win their second<br>straight game tonight, as they<br>host Kevin Garnett and the<br>Minnesota Timberwolves in the<br>third of a four-game homestand<br>at Conseco Fieldhouse."
-          ],
-          [
-           "OXNARD - A leak of explosive<br>natural gas forced dozens of<br>workers to evacuate an<br>offshore oil platform for<br>hours Thursday but no damage<br>or injuries were reported."
-          ],
-          [
-           "AP - Assets of the nation's<br>retail money market mutual<br>funds rose by  #36;2.85<br>billion in the latest week to<br>#36;845.69 billion, the<br>Investment Company Institute<br>said Thursday."
-          ],
-          [
-           "Peter Mandelson provoked fresh<br>Labour in-fighting yesterday<br>with an implied attack on<br>Gordon Brown #39;s<br>quot;exaggerated gloating<br>quot; about the health of the<br>British economy."
-          ],
-          [
-           "Queen Elizabeth II stopped<br>short of apologizing for the<br>Allies #39; bombing of Dresden<br>during her first state visit<br>to Germany in 12 years and<br>instead acknowledged  quot;the<br>appalling suffering of war on<br>both sides."
-          ],
-          [
-           "JC Penney said yesterday that<br>Allen I. Questrom, the chief<br>executive who has restyled the<br>once-beleaguered chain into a<br>sleeker and more profitable<br>entity, would be succeeded by<br>Myron E. Ullman III, another<br>longtime retail executive."
-          ],
-          [
-           " In the cosmetics department<br>at Hecht's in downtown<br>Washington, construction crews<br>have ripped out the<br>traditional glass display<br>cases, replacing them with a<br>system of open shelves stacked<br>high with fragrances from<br>Chanel, Burberry and Armani,<br>now easily within arm's reach<br>of the impulse buyer."
-          ],
-          [
-           " LONDON (Reuters) - Oil prices<br>slid from record highs above<br>\\$50 a barrel Wednesday as the<br>U.S. government reported a<br>surprise increase in crude<br>stocks and rebels in Nigeria's<br>oil-rich delta region agreed<br>to a preliminary cease-fire."
-          ],
-          [
-           "Rocky Shoes and Boots makes an<br>accretive acquisition -- and<br>gets Dickies and John Deere as<br>part of the deal."
-          ],
-          [
-           "AP - Fugitive Taliban leader<br>Mullah Mohammed Omar has<br>fallen out with some of his<br>lieutenants, who blame him for<br>the rebels' failure to disrupt<br>the landmark Afghan<br>presidential election, the<br>U.S. military said Wednesday."
-          ],
-          [
-           "HAVANA -- Cuban President<br>Fidel Castro's advancing age<br>-- and ultimately his<br>mortality -- were brought home<br>yesterday, a day after he<br>fractured a knee and arm when<br>he tripped and fell at a<br>public event."
-          ],
-          [
-           " BRASILIA, Brazil (Reuters) -<br>The United States and Brazil<br>predicted on Tuesday Latin<br>America's largest country<br>would  resolve a dispute with<br>the U.N. nuclear watchdog over<br>inspections of a uranium<br>enrichment plant."
-          ],
-          [
-           "Call it the Maximus factor.<br>Archaeologists working at the<br>site of an old Roman temple<br>near Guy #39;s hospital in<br>London have uncovered a pot of<br>cosmetic cream dating back to<br>AD2."
-          ],
-          [
-           "It is a team game, this Ryder<br>Cup stuff that will commence<br>Friday at Oakland Hills<br>Country Club. So what are the<br>teams? For the Americans,<br>captain Hal Sutton isn't<br>saying."
-          ],
-          [
-           "Two bombs exploded today near<br>a tea shop and wounded 20<br>people in southern Thailand,<br>police said, as violence<br>continued unabated in the<br>Muslim-majority region where<br>residents are seething over<br>the deaths of 78 detainees<br>while in military custody."
-          ],
-          [
-           "BONN: Deutsche Telekom is<br>bidding 2.9 bn for the 26 it<br>does not own in T-Online<br>International, pulling the<br>internet service back into the<br>fold four years after selling<br>stock to the public."
-          ],
-          [
-           "Motorola Inc. says it #39;s<br>ready to make inroads in the<br>cell-phone market after<br>posting a third straight<br>strong quarter and rolling out<br>a series of new handsets in<br>time for the holiday selling<br>season."
-          ],
-          [
-           "Prime Minister Junichiro<br>Koizumi, back in Tokyo after<br>an 11-day diplomatic mission<br>to the Americas, hunkered down<br>with senior ruling party<br>officials on Friday to focus<br>on a major reshuffle of<br>cabinet and top party posts."
-          ],
-          [
-           "Costs of employer-sponsored<br>health plans are expected to<br>climb an average of 8 percent<br>in 2005, the first time in<br>five years increases have been<br>in single digits."
-          ],
-          [
-           "NEW YORK - A sluggish gross<br>domestic product reading was<br>nonetheless better than<br>expected, prompting investors<br>to send stocks slightly higher<br>Friday on hopes that the<br>economic slowdown would not be<br>as bad as first thought.<br>The 2.8 percent GDP growth in<br>the second quarter, a revision<br>from the 3 percent preliminary<br>figure reported in July, is a<br>far cry from the 4.5 percent<br>growth in the first quarter..."
-          ],
-          [
-           "After again posting record<br>earnings for the third<br>quarter, Taiwan Semiconductor<br>Manufacturing Company (TSMC)<br>expects to see its first<br>sequential drop in fourth-<br>quarter revenues, coupled with<br>a sharp drop in capacity<br>utilization rates."
-          ],
-          [
-           " SEOUL (Reuters) - A huge<br>explosion in North Korea last<br>week  may have been due to a<br>combination of demolition work<br>for a  power plant and<br>atmospheric clouds, South<br>Korea's spy agency  said on<br>Wednesday."
-          ],
-          [
-           "The deal comes as Cisco pushes<br>to develop a market for CRS-1,<br>a new line of routers aimed at<br>telephone, wireless and cable<br>companies."
-          ],
-          [
-           "Many people who have never<br>bounced a check in their life<br>could soon bounce their first<br>check if they write checks to<br>pay bills a couple of days<br>before their paycheck is<br>deposited into their checking<br>account."
-          ],
-          [
-           " LUXEMBOURG (Reuters) -<br>Microsoft Corp told a judge on<br>Thursday that the European<br>Commission must be stopped<br>from  ordering it to give up<br>secret technology to<br>competitors."
-          ],
-          [
-           "SEPTEMBER 14, 2004 (IDG NEWS<br>SERVICE) - Sun Microsystems<br>Inc. and Microsoft Corp. next<br>month plan to provide more<br>details on the work they are<br>doing to make their products<br>interoperable, a Sun executive<br>said yesterday."
-          ],
-          [
-           "MANCHESTER United today<br>dramatically rejected the<br>advances of Malcolm Glazer,<br>the US sports boss who is<br>mulling an 825m bid for the<br>football club."
-          ],
-          [
-           "Dow Jones Industrial Average<br>futures declined amid concern<br>an upcoming report on<br>manufacturing may point to<br>slowing economic growth."
-          ],
-          [
-           "AP - Astronomy buffs and<br>amateur stargazers turned out<br>to watch a total lunar eclipse<br>Wednesday night  #151; the<br>last one Earth will get for<br>nearly two and a half years."
-          ],
-          [
-           "Reuters - U.S. industrial<br>output advanced in\\July, as<br>American factories operated at<br>their highest capacity\\in more<br>than three years, a Federal<br>Reserve report on<br>Tuesday\\showed."
-          ],
-          [
-           "As usual, the Big Ten coaches<br>were out in full force at<br>today #39;s Big Ten<br>Teleconference. Both OSU head<br>coach Jim Tressel and Iowa<br>head coach Kirk Ferentz<br>offered some thoughts on the<br>upcoming game between OSU"
-          ],
-          [
-           "Sir Martin Sorrell, chief<br>executive of WPP, yesterday<br>declared he was  quot;very<br>impressed quot; with Grey<br>Global, stoking speculation<br>WPP will bid for the US<br>advertising company."
-          ],
-          [
-           "The compact disc has at least<br>another five years as the most<br>popular music format before<br>online downloads chip away at<br>its dominance, a new study<br>said on Tuesday."
-          ],
-          [
-           "New York Knicks #39; Stephon<br>Marbury (3) fires over New<br>Orleans Hornets #39; Dan<br>Dickau (2) during the second<br>half in New Orleans Wednesday<br>night, Dec. 8, 2004."
-          ],
-          [
-           "AP - Sudan's U.N. ambassador<br>challenged the United States<br>to send troops to the Darfur<br>region if it really believes a<br>genocide is taking place as<br>the U.S. Congress and<br>President Bush's<br>administration have<br>determined."
-          ],
-          [
-           "At the very moment when the<br>Red Sox desperately need<br>someone slightly larger than<br>life to rally around, they<br>suddenly have the man for the<br>job: Thrilling Schilling."
-          ],
-          [
-           "Does Your Site Need a Custom<br>Search Engine<br>Toolbar?\\\\Today's surfers<br>aren't always too comfortable<br>installing software on their<br>computers. Especially free<br>software that they don't<br>necessarily understand. With<br>all the horror stories of<br>viruses, spyware, and adware<br>that make the front page these<br>days, it's no wonder. So is<br>there ..."
-          ],
-          [
-           "Dale Earnhardt Jr, right,<br>talks with Matt Kenseth, left,<br>during a break in practice at<br>Lowe #39;s Motor Speedway in<br>Concord, NC, Thursday Oct. 14,<br>2004 before qualifying for<br>Saturday #39;s UAW-GM Quality<br>500 NASCAR Nextel Cup race."
-          ],
-          [
-           "Several starting spots may<br>have been usurped or at least<br>threatened after relatively<br>solid understudy showings<br>Sunday, but few players<br>welcome the kind of shot<br>delivered to Oakland"
-          ],
-          [
-           "TEMPE, Ariz. -- Neil Rackers<br>kicked four field goals and<br>the Arizona Cardinals stifled<br>rookie Chris Simms and the<br>rest of the Tampa Bay offense<br>for a 12-7 victory yesterday<br>in a matchup of two sputtering<br>teams out of playoff<br>contention. Coach Jon Gruden's<br>team lost its fourth in a row<br>to finish 5-11, Tampa Bay's<br>worst record since going ..."
-          ],
-          [
-           "AFP - A junior British<br>minister said that people<br>living in camps after fleeing<br>their villages because of<br>conflict in Sudan's Darfur<br>region lived in fear of<br>leaving their temporary homes<br>despite a greater presence now<br>of aid workers."
-          ],
-          [
-           "US Deputy Secretary of State<br>Richard Armitage (L) shakes<br>hands with Pakistani Foreign<br>Minister Khurshid Kasuri prior<br>to their meeting in Islamabad,<br>09 November 2004."
-          ],
-          [
-           "Spammers aren't ducking<br>antispam laws by operating<br>offshore, they're just<br>ignoring it."
-          ],
-          [
-           "AP - Biologists plan to use<br>large nets and traps this week<br>in Chicago's Burnham Harbor to<br>search for the northern<br>snakehead  #151; a type of<br>fish known for its voracious<br>appetite and ability to wreak<br>havoc on freshwater<br>ecosystems."
-          ],
-          [
-           "BAE Systems PLC  and Northrop<br>Grumman Corp. won \\$45 million<br>contracts yesterday to develop<br>prototypes of anti-missile<br>technology that could protect<br>commercial aircraft from<br>shoulder-fired missiles."
-          ],
-          [
-           "AP - Democrat John Edwards<br>kept up a long-distance debate<br>over his \"two Americas\"<br>campaign theme with Vice<br>President Dick Cheney on<br>Tuesday, saying it was no<br>illusion to thousands of laid-<br>off workers in Ohio."
-          ],
-          [
-           "Like introductory credit card<br>rates and superior customer<br>service, some promises just<br>aren #39;t built to last. And<br>so it is that Bank of America<br>- mere months after its pledge<br>to preserve"
-          ],
-          [
-           "A group of 76 Eritreans on a<br>repatriation flight from Libya<br>Friday forced their plane to<br>change course and land in the<br>Sudanese capital, Khartoum,<br>where they"
-          ],
-          [
-           "Reuters - Accounting firm KPMG<br>will pay  #36;10\\million to<br>settle charges of improper<br>professional conduct\\while<br>acting as auditor for Gemstar-<br>TV Guide International Inc.\\,<br>the U.S. Securities and<br>Exchange Commission said<br>on\\Wednesday."
-          ],
-          [
-           "Family matters made public: As<br>eager cousins wait for a slice<br>of the \\$15 billion cake that<br>is the Pritzker Empire,<br>Circuit Court Judge David<br>Donnersberger has ruled that<br>the case will be conducted in<br>open court."
-          ],
-          [
-           "Users of Microsoft #39;s<br>Hotmail, most of whom are<br>accustomed to getting regular<br>sales pitches for premium<br>e-mail accounts, got a<br>pleasant surprise in their<br>inboxes this week: extra<br>storage for free."
-          ],
-          [
-           "AP - They say that opposites<br>attract, and in the case of<br>Sen. John Kerry and Teresa<br>Heinz Kerry, that may be true<br>#151; at least in their public<br>personas."
-          ],
-          [
-           "The weekly survey from<br>mortgage company Freddie Mac<br>had rates on 30-year fixed-<br>rate mortgages inching higher<br>this week, up to an average<br>5.82 percent from last week<br>#39;s 5.81 percent."
-          ],
-          [
-           "The classic power struggle<br>between Walt Disney Co. CEO<br>Michael Eisner and former<br>feared talent agent Michael<br>Ovitz makes for high drama in<br>the courtroom - and apparently<br>on cable."
-          ],
-          [
-           "ATHENS France, Britain and the<br>United States issued a joint<br>challenge Thursday to Germany<br>#39;s gold medal in equestrian<br>team three-day eventing."
-          ],
-          [
-           "LONDON (CBS.MW) -- Elan<br>(UK:ELA) (ELN) and partner<br>Biogen (BIIB) said the FDA has<br>approved new drug Tysabri to<br>treat relapsing forms of<br>multiple sclerosis."
-          ],
-          [
-           "IT services provider<br>Electronic Data Systems<br>yesterday reported a net loss<br>of \\$153 million for the third<br>quarter, with earnings hit in<br>part by an asset impairment<br>charge of \\$375 million<br>connected with EDS's N/MCI<br>project."
-          ],
-          [
-           "ATLANTA - Who could have<br>imagined Tommy Tuberville in<br>this position? Yet there he<br>was Friday, standing alongside<br>the SEC championship trophy,<br>posing for pictures and<br>undoubtedly chuckling a bit on<br>the inside."
-          ],
-          [
-           "AP - Impoverished North Korea<br>might resort to selling<br>weapons-grade plutonium to<br>terrorists for much-needed<br>cash, and that would be<br>\"disastrous for the world,\"<br>the top U.S. military<br>commander in South Korea said<br>Friday."
-          ],
-          [
-           "International Business<br>Machines Corp. said Wednesday<br>it had agreed to settle most<br>of the issues in a suit over<br>changes in its pension plans<br>on terms that allow the<br>company to continue to appeal<br>a key question while capping<br>its liability at \\$1.7<br>billion. &lt;BR&gt;&lt;FONT<br>face=\"verdana,MS Sans<br>Serif,arial,helvetica\"<br>size=\"-2\"\\ color=\"#666666\"&gt;<br>&lt;B&gt;-The Washington<br>Post&lt;/B&gt;&lt;/FONT&gt;"
-          ],
-          [
-           "Dubai: Osama bin Laden on<br>Thursday called on his<br>fighters to strike Gulf oil<br>supplies and warned Saudi<br>leaders they risked a popular<br>uprising in an audio message<br>said to be by the Western<br>world #39;s most wanted terror<br>mastermind."
-          ],
-          [
-           "Bank of New Zealand has frozen<br>all accounts held in the name<br>of Access Brokerage, which was<br>yesterday placed in<br>liquidation after a client<br>fund shortfall of around \\$5<br>million was discovered."
-          ],
-          [
-           "Edward Kozel, Cisco's former<br>chief technology officer,<br>joins the board of Linux<br>seller Red Hat."
-          ],
-          [
-           "Reuters - International<br>Business Machines\\Corp.  late<br>on Wednesday rolled out a new<br>version of its\\database<br>software aimed at users of<br>Linux and Unix<br>operating\\systems that it<br>hopes will help the company<br>take away market\\share from<br>market leader Oracle Corp. ."
-          ],
-          [
-           "NASA #39;s Mars Odyssey<br>mission, originally scheduled<br>to end on Tuesday, has been<br>granted a stay of execution<br>until at least September 2006,<br>reveal NASA scientists."
-          ],
-          [
-           "ZDNet #39;s survey of IT<br>professionals in August kept<br>Wired  amp; Wireless on top<br>for the 18th month in a row.<br>Telecommunications equipment<br>maker Motorola said Tuesday<br>that it would cut 1,000 jobs<br>and take related"
-          ],
-          [
-           "John Thomson threw shutout<br>ball for seven innings<br>Wednesday night in carrying<br>Atlanta to a 2-0 blanking of<br>the New York Mets. New York<br>lost for the 21st time in 25<br>games on the"
-          ],
-          [
-           "BEIJING -- Chinese authorities<br>have arrested or reprimanded<br>more than 750 officials in<br>recent months in connection<br>with billions of dollars in<br>financial irregularities<br>ranging from unpaid taxes to<br>embezzlement, according to a<br>report made public yesterday."
-          ],
-          [
-           "Canadian Press - GAUHATI,<br>India (AP) - Residents of<br>northeastern India were<br>bracing for more violence<br>Friday, a day after bombs<br>ripped through two buses and a<br>grenade was hurled into a<br>crowded market in attacks that<br>killed four people and wounded<br>54."
-          ],
-          [
-           "Vikram Solanki beat the rain<br>clouds to register his second<br>one-day international century<br>as England won the third one-<br>day international to wrap up a<br>series victory."
-          ],
-          [
-           "Some 28 people are charged<br>with trying to overthrow<br>Sudan's President Bashir,<br>reports say."
-          ],
-          [
-           "Hong Kong #39;s Beijing-backed<br>chief executive yesterday<br>ruled out any early moves to<br>pass a controversial national<br>security law which last year<br>sparked a street protest by<br>half a million people."
-          ],
-          [
-           "BRITAIN #39;S largest<br>financial institutions are<br>being urged to take lead roles<br>in lawsuits seeking hundreds<br>of millions of dollars from<br>the scandal-struck US<br>insurance industry."
-          ],
-          [
-           "Bankrupt UAL Corp. (UALAQ.OB:<br>Quote, Profile, Research) on<br>Thursday reported a narrower<br>third-quarter net loss. The<br>parent of United Airlines<br>posted a loss of \\$274<br>million, or"
-          ],
-          [
-           "A three-touchdown point spread<br>and a recent history of late-<br>season collapses had many<br>thinking the UCLA football<br>team would provide little<br>opposition to rival USC #39;s<br>march to the BCS-championship<br>game at the Orange Bowl."
-          ],
-          [
-           " PHOENIX (Sports Network) -<br>Free agent third baseman Troy<br>Glaus is reportedly headed to<br>the Arizona Diamondbacks."
-          ],
-          [
-           "The European Union #39;s head<br>office issued a bleak economic<br>report Tuesday, warning that<br>the sharp rise in oil prices<br>will  quot;take its toll quot;<br>on economic growth next year<br>while the euro #39;s renewed<br>climb could threaten crucial<br>exports."
-          ],
-          [
-           "Third-string tailback Chris<br>Markey ran for 131 yards to<br>lead UCLA to a 34-26 victory<br>over Oregon on Saturday.<br>Markey, playing because of an<br>injury to starter Maurice<br>Drew, also caught five passes<br>for 84 yards"
-          ],
-          [
-           "Though Howard Stern's<br>defection from broadcast to<br>satellite radio is still 16<br>months off, the industry is<br>already trying to figure out<br>what will fill the crater in<br>ad revenue and listenership<br>that he is expected to leave<br>behind."
-          ],
-          [
-           " WASHINGTON (Reuters) - The<br>United States set final  anti-<br>dumping duties of up to 112.81<br>percent on shrimp imported<br>from China and up to 25.76<br>percent on shrimp from Vietnam<br>to  offset unfair pricing, the<br>Commerce Department said on<br>Tuesday."
-          ],
-          [
-           "Jay Payton #39;s three-run<br>homer led the San Diego Padres<br>to a 5-1 win over the San<br>Francisco Giants in National<br>League play Saturday, despite<br>a 701st career blast from<br>Barry Bonds."
-          ],
-          [
-           "The optimists among Rutgers<br>fans were delighted, but the<br>Scarlet Knights still gave the<br>pessimists something to worry<br>about."
-          ],
-          [
-           "Beer consumption has doubled<br>over the past five years,<br>prompting legislators to<br>implement new rules."
-          ],
-          [
-           "BusinessWeek Online - The<br>jubilation that swept East<br>Germany after the fall of the<br>Berlin Wall in 1989 long ago<br>gave way to the sober reality<br>of globalization and market<br>forces. Now a decade of<br>resentment seems to be boiling<br>over. In Eastern cities such<br>as Leipzig or Chemnitz,<br>thousands have taken to the<br>streets since July to protest<br>cuts in unemployment benefits,<br>the main source of livelihood<br>for 1.6 million East Germans.<br>Discontent among<br>reunification's losers fueled<br>big gains by the far left and<br>far right in Brandenburg and<br>Saxony state elections Sept.<br>19. ..."
-          ],
-          [
-           "NEW YORK -- When Office Depot<br>Inc. stores ran an electronics<br>recycling drive last summer<br>that accepted everything from<br>cellphones to televisions,<br>some stores were overwhelmed<br>by the amount of e-trash they<br>received."
-          ],
-          [
-           "In a discovery sure to set off<br>a firestorm of debate over<br>human migration to the western<br>hemisphere, archaeologists in<br>South Carolina say they have<br>uncovered evidence that people<br>lived in eastern North America<br>at least 50,000 years ago -<br>far earlier than"
-          ],
-          [
-           "AP - Former president Bill<br>Clinton on Monday helped<br>launch a new Internet search<br>company backed by the Chinese<br>government which says its<br>technology uses artificial<br>intelligence to produce better<br>results than Google Inc."
-          ],
-          [
-           "The International Monetary<br>Fund expressed concern Tuesday<br>about the impact of the<br>troubles besetting oil major<br>Yukos on Russia #39;s standing<br>as a place to invest."
-          ],
-          [
-           "Perhaps the sight of Maria<br>Sharapova opposite her tonight<br>will jog Serena Williams #39;<br>memory. Wimbledon. The final.<br>You and Maria."
-          ],
-          [
-           "At least 79 people were killed<br>and 74 were missing after some<br>of the worst rainstorms in<br>recent years triggered<br>landslides and flash floods in<br>southwest China, disaster<br>relief officials said<br>yesterday."
-          ],
-          [
-           "LinuxWorld Conference  amp;<br>Expo will come to Boston for<br>the first time in February,<br>underscoring the area's<br>standing as a hub for the<br>open-source software being<br>adopted by thousands of<br>businesses."
-          ],
-          [
-           "BANGKOK Thai military aircraft<br>dropped 100 million paper<br>birds over southern Thailand<br>on Sunday in a gesture<br>intended to promote peace in<br>mainly Muslim provinces, where<br>more than 500 people have died<br>this year in attacks by<br>separatist militants and"
-          ],
-          [
-           "Insurgents threatened on<br>Saturday to cut the throats of<br>two Americans and a Briton<br>seized in Baghdad, and<br>launched a suicide car bomb<br>attack on Iraqi security<br>forces in Kirkuk that killed<br>at least 23 people."
-          ],
-          [
-           "Five days after making the<br>putt that won the Ryder Cup,<br>Colin Montgomerie looked set<br>to miss the cut at a European<br>PGA tour event."
-          ],
-          [
-           "Sun Microsystems plans to<br>release its Sun Studio 10<br>development tool in the fourth<br>quarter of this year,<br>featuring support for 64-bit<br>applications running on AMD<br>Opteron and Nocona processors,<br>Sun officials said on Tuesday."
-          ],
-          [
-           "Karachi - Captain Inzamam ul-<br>Haq and coach Bob Woolmer came<br>under fire on Thursday for<br>choosing to bat first on a<br>tricky pitch after Pakistan<br>#39;s humiliating defeat in<br>the ICC Champions Trophy semi-<br>final."
-          ],
-          [
-           "Scottish champions Celtic saw<br>their three-year unbeaten home<br>record in Europe broken<br>Tuesday as they lost 3-1 to<br>Barcelona in the Champions<br>League Group F opener."
-          ],
-          [
-           "Interest rates on short-term<br>Treasury securities rose in<br>yesterday's auction. The<br>Treasury Department sold \\$19<br>billion in three-month bills<br>at a discount rate of 1.710<br>percent, up from 1.685 percent<br>last week. An additional \\$17<br>billion was sold in six-month<br>bills at a rate of 1.950<br>percent, up from 1.870<br>percent."
-          ],
-          [
-           "Most IT Managers won #39;t<br>question the importance of<br>security, but this priority<br>has been sliding between the<br>third and fourth most<br>important focus for companies."
-          ],
-          [
-           "AP - Andy Roddick searched out<br>Carlos Moya in the throng of<br>jumping, screaming Spanish<br>tennis players, hoping to<br>shake hands."
-          ],
-          [
-           "AP - The Federal Trade<br>Commission on Thursday filed<br>the first case in the country<br>against software companies<br>accused of infecting computers<br>with intrusive \"spyware\" and<br>then trying to sell people the<br>solution."
-          ],
-          [
-           "While shares of Apple have<br>climbed more than 10 percent<br>this week, reaching 52-week<br>highs, two research firms told<br>investors Friday they continue<br>to remain highly bullish about<br>the stock."
-          ],
-          [
-           "Moody #39;s Investors Service<br>on Wednesday said it may cut<br>its bond ratings on HCA Inc.<br>(HCA.N: Quote, Profile,<br>Research) deeper into junk,<br>citing the hospital operator<br>#39;s plan to buy back about<br>\\$2."
-          ],
-          [
-           "States are now barred from<br>imposing telecommunications<br>regulations on Net phone<br>providers."
-          ],
-          [
-           "Telekom Austria AG, the<br>country #39;s biggest phone<br>operator, won the right to buy<br>Bulgaria #39;s largest mobile<br>phone company, MobilTel EAD,<br>for 1.6 billion euros (\\$2.1<br>billion), an acquisition that<br>would add 3 million<br>subscribers."
-          ],
-          [
-           "Shares of ID Biomedical jumped<br>after the company reported<br>Monday that it signed long-<br>term agreements with the three<br>largest flu vaccine<br>wholesalers in the United<br>States in light of the<br>shortage of vaccine for the<br>current flu season."
-          ],
-          [
-           "ENGLAND captain and Real<br>Madrid midfielder David<br>Beckham has played down<br>speculation that his club are<br>moving for England manager<br>Sven-Goran Eriksson."
-          ],
-          [
-           "The federal government closed<br>its window on the oil industry<br>Thursday, saying that it is<br>selling its last 19 per cent<br>stake in Calgary-based Petro-<br>Canada."
-          ],
-          [
-           "Strong sales of new mobile<br>phone models boosts profits at<br>Carphone Warehouse but the<br>retailer's shares fall on<br>concerns at a decline in<br>profits from pre-paid phones."
-          ],
-          [
-           " NEW YORK (Reuters) - IBM and<br>top scientific research<br>organizations are joining<br>forces in a humanitarian<br>effort to  tap the unused<br>power of millions of computers<br>and help solve  complex social<br>problems."
-          ],
-          [
-           " NEW YORK, Nov. 11 -- The 40<br>percent share price slide in<br>Merck  #38; Co. in the five<br>weeks after it pulled the<br>painkiller Vioxx off the<br>market highlighted larger<br>problems in the pharmaceutical<br>industry that may depress<br>performance for years,<br>according to academics and<br>stock analysts who follow the<br>sector."
-          ],
-          [
-           "Low-fare carrier Southwest<br>Airlines Co. said Thursday<br>that its third-quarter profit<br>rose 12.3 percent to beat Wall<br>Street expectations despite<br>higher fuel costs."
-          ],
-          [
-           "Another shock hit the drug<br>sector Friday when<br>pharmaceutical giant Pfizer<br>Inc. announced that it found<br>an increased heart risk to<br>patients for its blockbuster<br>arthritis drug Celebrex."
-          ],
-          [
-           "AFP - National Basketball<br>Association players trying to<br>win a fourth consecutive<br>Olympic gold medal for the<br>United States have gotten the<br>wake-up call that the \"Dream<br>Team\" days are done even if<br>supporters have not."
-          ],
-          [
-           " BEIJING (Reuters) - Secretary<br>of State Colin Powell will<br>urge China Monday to exert its<br>influence over North Korea to<br>resume six-party negotiations<br>on scrapping its suspected<br>nuclear weapons program."
-          ],
-          [
-           "Reuters - An Israeli missile<br>strike killed at least\\two<br>Hamas gunmen in Gaza City<br>Monday, a day after a<br>top\\commander of the Islamic<br>militant group was killed in a<br>similar\\attack, Palestinian<br>witnesses and security sources<br>said."
-          ],
-          [
-           "England will be seeking their<br>third clean sweep of the<br>summer when the NatWest<br>Challenge against India<br>concludes at Lord #39;s. After<br>beating New Zealand and West<br>Indies 3-0 and 4-0 in Tests,<br>they have come alive"
-          ],
-          [
-           "AP - The Pentagon has restored<br>access to a Web site that<br>assists soldiers and other<br>Americans living overseas in<br>voting, after receiving<br>complaints that its security<br>measures were preventing<br>legitimate voters from using<br>it."
-          ],
-          [
-           "The number of US information<br>technology workers rose 2<br>percent to 10.5 million in the<br>first quarter of this year,<br>but demand for them is<br>dropping, according to a new<br>report."
-          ],
-          [
-           "Montreal - The British-built<br>Canadian submarine HMCS<br>Chicoutimi, crippled since a<br>fire at sea that killed one of<br>its crew, is under tow and is<br>expected in Faslane, Scotland,<br>early next week, Canadian<br>naval commander Tyrone Pile<br>said on Friday."
-          ],
-          [
-           "AP - Grizzly and black bears<br>killed a majority of elk<br>calves in northern Yellowstone<br>National Park for the second<br>year in a row, preliminary<br>study results show."
-          ],
-          [
-           "Thirty-five Pakistanis freed<br>from the US Guantanamo Bay<br>prison camp arrived home on<br>Saturday and were taken<br>straight to prison for further<br>interrogation, the interior<br>minister said."
-          ],
-          [
-           "AP - Mark Richt knows he'll<br>have to get a little creative<br>when he divvies up playing<br>time for Georgia's running<br>backs next season. Not so on<br>Saturday. Thomas Brown is the<br>undisputed starter for the<br>biggest game of the season."
-          ],
-          [
-           "Witnesses in the trial of a US<br>soldier charged with abusing<br>prisoners at Abu Ghraib have<br>told the court that the CIA<br>sometimes directed abuse and<br>orders were received from<br>military command to toughen<br>interrogations."
-          ],
-          [
-           "Insurance firm says its board<br>now consists of its new CEO<br>Michael Cherkasky and 10<br>outside members. NEW YORK<br>(Reuters) - Marsh  amp;<br>McLennan Cos."
-          ],
-          [
-           "Michael Phelps, the six-time<br>Olympic champion, issued an<br>apology yesterday after being<br>arrested and charged with<br>drunken driving in the United<br>States."
-          ],
-          [
-           "AP - Italian and Lebanese<br>authorities have arrested 10<br>suspected terrorists who<br>planned to blow up the Italian<br>Embassy in Beirut, an Italian<br>news agency and the Defense<br>Ministry said Tuesday."
-          ],
-          [
-           "CORAL GABLES, Fla. -- John F.<br>Kerry and President Bush<br>clashed sharply over the war<br>in Iraq last night during the<br>first debate of the<br>presidential campaign season,<br>with the senator from<br>Massachusetts accusing"
-          ],
-          [
-           "GONAIVES, Haiti -- While<br>desperately hungry flood<br>victims wander the streets of<br>Gonaives searching for help,<br>tons of food aid is stacking<br>up in a warehouse guarded by<br>United Nations peacekeepers."
-          ],
-          [
-           "As part of its much-touted new<br>MSN Music offering, Microsoft<br>Corp. (MSFT) is testing a Web-<br>based radio service that<br>mimics nearly 1,000 local<br>radio stations, allowing users<br>to hear a version of their<br>favorite radio station with<br>far fewer interruptions."
-          ],
-          [
-           "AFP - The resignation of<br>disgraced Fiji Vice-President<br>Ratu Jope Seniloli failed to<br>quell anger among opposition<br>leaders and the military over<br>his surprise release from<br>prison after serving just<br>three months of a four-year<br>jail term for his role in a<br>failed 2000 coup."
-          ],
-          [
-           "ATHENS Larry Brown, the US<br>coach, leaned back against the<br>scorer #39;s table, searching<br>for support on a sinking ship.<br>His best player, Tim Duncan,<br>had just fouled out, and the<br>options for an American team<br>that"
-          ],
-          [
-           "Sourav Ganguly files an appeal<br>against a two-match ban<br>imposed for time-wasting."
-          ],
-          [
-           "Ziff Davis - A quick<br>resolution to the Mambo open-<br>source copyright dispute seems<br>unlikely now that one of the<br>parties has rejected an offer<br>for mediation."
-          ],
-          [
-           "Greek police surrounded a bus<br>full of passengers seized by<br>armed hijackers along a<br>highway from an Athens suburb<br>Wednesday, police said."
-          ],
-          [
-           "Spain have named an unchanged<br>team for the Davis Cup final<br>against the United States in<br>Seville on 3-5 December.<br>Carlos Moya, Juan Carlos<br>Ferrero, Rafael Nadal and<br>Tommy Robredo will take on the<br>US in front of 22,000 fans at<br>the converted Olympic stadium."
-          ],
-          [
-           "BAGHDAD: A suicide car bomber<br>attacked a police convoy in<br>Baghdad yesterday as guerillas<br>kept pressure on Iraq #39;s<br>security forces despite a<br>bloody rout of insurgents in<br>Fallujah."
-          ],
-          [
-           "Slot machine maker<br>International Game Technology<br>(IGT.N: Quote, Profile,<br>Research) on Tuesday posted<br>better-than-expected quarterly<br>earnings, as casinos bought"
-          ],
-          [
-           "Fixtures and fittings from<br>Damien Hirst's restaurant<br>Pharmacy sell for 11.1, 8m<br>more than expected."
-          ],
-          [
-           "Last Tuesday night, Harvard<br>knocked off rival Boston<br>College, which was ranked No.<br>1 in the country. Last night,<br>the Crimson knocked off<br>another local foe, Boston<br>University, 2-1, at Walter<br>Brown Arena, which marked the<br>first time since 1999 that<br>Harvard had beaten them both<br>in the same season."
-          ],
-          [
-           "Venezuelan election officials<br>say they expect to announce<br>Saturday, results of a partial<br>audit of last Sunday #39;s<br>presidential recall<br>referendum."
-          ],
-          [
-           "About 500 prospective jurors<br>will be in an Eagle, Colorado,<br>courtroom Friday, answering an<br>82-item questionnaire in<br>preparation for the Kobe<br>Bryant sexual assault trial."
-          ],
-          [
-           "Students take note - endless<br>journeys to the library could<br>become a thing of the past<br>thanks to a new multimillion-<br>pound scheme to make classic<br>texts available at the click<br>of a mouse."
-          ],
-          [
-           "Moscow - The next crew of the<br>International Space Station<br>(ISS) is to contribute to the<br>Russian search for a vaccine<br>against Aids, Russian<br>cosmonaut Salijan Sharipovthe<br>said on Thursday."
-          ],
-          [
-           "Locked away in fossils is<br>evidence of a sudden solar<br>cooling. Kate Ravilious meets<br>the experts who say it could<br>explain a 3,000-year-old mass<br>migration - and today #39;s<br>global warming."
-          ],
-          [
-           "By ANICK JESDANUN    NEW YORK<br>(AP) -- Taran Rampersad didn't<br>complain when he failed to<br>find anything on his hometown<br>in the online encyclopedia<br>Wikipedia. Instead, he simply<br>wrote his own entry for San<br>Fernando, Trinidad and<br>Tobago..."
-          ],
-          [
-           "Five years after catastrophic<br>floods and mudslides killed<br>thousands along Venezuela's<br>Caribbean coast, survivors in<br>this town still see the signs<br>of destruction - shattered<br>concrete walls and tall weeds<br>growing atop streets covered<br>in dried mud."
-          ],
-          [
-           "How do you top a battle<br>between Marines and an alien<br>religious cult fighting to the<br>death on a giant corona in<br>outer space? The next logical<br>step is to take that battle to<br>Earth, which is exactly what<br>Microsoft"
-          ],
-          [
-           "Sony Ericsson Mobile<br>Communications Ltd., the<br>mobile-phone venture owned by<br>Sony Corp. and Ericsson AB,<br>said third-quarter profit rose<br>45 percent on camera phone<br>demand and forecast this<br>quarter will be its strongest."
-          ],
-          [
-           "NEW YORK, September 17<br>(newratings.com) - Alcatel<br>(ALA.NYS) has expanded its<br>operations and presence in the<br>core North American<br>telecommunication market with<br>two separate acquisitions for<br>about \\$277 million."
-          ],
-          [
-           "Four U.S. agencies yesterday<br>announced a coordinated attack<br>to stem the global trade in<br>counterfeit merchandise and<br>pirated music and movies, an<br>underground industry that law-<br>enforcement officials estimate<br>to be worth \\$500 billion each<br>year."
-          ],
-          [
-           "BEIJING The NBA has reached<br>booming, basketball-crazy<br>China _ but the league doesn<br>#39;t expect to make any money<br>soon. The NBA flew more than<br>100 people halfway around the<br>world for its first games in<br>China, featuring"
-          ],
-          [
-           "The UN nuclear watchdog<br>confirmed Monday that nearly<br>400 tons of powerful<br>explosives that could be used<br>in conventional or nuclear<br>missiles disappeared from an<br>unguarded military<br>installation in Iraq."
-          ],
-          [
-           " NEW YORK (Reuters) - Curt<br>Schilling pitched 6 2/3<br>innings  and Manny Ramirez hit<br>a three-run homer in a seven-<br>run fourth  frame to lead the<br>Boston Red Sox to a 9-3 win<br>over the host  Anaheim Angels<br>in their American League<br>Divisional Series  opener<br>Tuesday."
-          ],
-          [
-           "AP - The game between the<br>Minnesota Twins and the New<br>York Yankees on Tuesday night<br>was postponed by rain."
-          ],
-          [
-           "Oil giant Shell swept aside<br>nearly 100 years of history<br>today when it unveiled plans<br>to merge its UK and Dutch<br>parent companies. Shell said<br>scrapping its twin-board<br>structure"
-          ],
-          [
-           "Caesars Entertainment Inc. on<br>Thursday posted a rise in<br>third-quarter profit as Las<br>Vegas hotels filled up and<br>Atlantic City properties<br>squeaked out a profit that was<br>unexpected by the company."
-          ],
-          [
-           "Half of all U.S. Secret<br>Service agents are dedicated<br>to protecting President<br>Washington #151;and all the<br>other Presidents on U.S.<br>currency #151;from<br>counterfeiters."
-          ],
-          [
-           "One of India #39;s leading<br>telecommunications providers<br>will use Cisco Systems #39;<br>gear to build its new<br>Ethernet-based broadband<br>network."
-          ],
-          [
-           "Militants in Iraq have killed<br>the second of two US civilians<br>they were holding hostage,<br>according to a statement on an<br>Islamist website."
-          ],
-          [
-           "PARIS The verdict is in: The<br>world #39;s greatest race car<br>driver, the champion of<br>champions - all disciplines<br>combined - is Heikki<br>Kovalainen."
-          ],
-          [
-           "Pakistan won the toss and<br>unsurprisingly chose to bowl<br>first as they and West Indies<br>did battle at the Rose Bowl<br>today for a place in the ICC<br>Champions Trophy final against<br>hosts England."
-          ],
-          [
-           "Shares of Beacon Roofing<br>Suppler Inc. shot up as much<br>as 26 percent in its trading<br>debut Thursday, edging out<br>bank holding company Valley<br>Bancorp as the biggest gainer<br>among a handful of new stocks<br>that went public this week."
-          ],
-          [
-           "More than 4,000 American and<br>Iraqi soldiers mounted a<br>military assault on the<br>insurgent-held city of<br>Samarra."
-          ],
-          [
-           "Maxime Faget conceived and<br>proposed the development of<br>the one-man spacecraft used in<br>Project Mercury, which put the<br>first American astronauts into<br>suborbital flight, then<br>orbital flight"
-          ],
-          [
-           "The first weekend of holiday<br>shopping went from red-hot to<br>dead white, as a storm that<br>delivered freezing, snowy<br>weather across Colorado kept<br>consumers at home."
-          ],
-          [
-           " MEXICO CITY (Reuters) -<br>Mexican President Vicente Fox<br>said  on Monday he hoped<br>President Bush's re-election<br>meant a  bilateral accord on<br>migration would be reached<br>before his own  term runs out<br>at the end of 2006."
-          ],
-          [
-           " LONDON (Reuters) - The dollar<br>fell within half a cent of<br>last week's record low against<br>the euro on Thursday after<br>capital inflows data added to<br>worries the United States may<br>struggle to fund its current<br>account deficit."
-          ],
-          [
-           " BRUSSELS (Reuters) - French<br>President Jacques Chirac said<br>on Friday he had not refused<br>to meet Iraqi interim Prime<br>Minister Iyad Allawi after<br>reports he was snubbing the<br>Iraqi  leader by leaving an EU<br>meeting in Brussels early."
-          ],
-          [
-           "China has pledged to invest<br>\\$20 billion in Argentina in<br>the next 10 years, La Nacion<br>reported Wednesday. The<br>announcement came during the<br>first day of a two-day visit"
-          ],
-          [
-           "NEW YORK - Former President<br>Bill Clinton was in good<br>spirits Saturday, walking<br>around his hospital room in<br>street clothes and buoyed by<br>thousands of get-well messages<br>as he awaited heart bypass<br>surgery early this coming<br>week, people close to the<br>family said.    Clinton was<br>expected to undergo surgery as<br>early as Monday but probably<br>Tuesday, said Democratic Party<br>Chairman Terry McAuliffe, who<br>said the former president was<br>\"upbeat\" when he spoke to him<br>by phone Friday..."
-          ],
-          [
-           "Toyota Motor Corp., the world<br>#39;s biggest carmaker by<br>value, will invest 3.8 billion<br>yuan (\\$461 million) with its<br>partner Guangzhou Automobile<br>Group to boost manufacturing<br>capacity in"
-          ],
-          [
-           "Poland will cut its troops in<br>Iraq early next year and won<br>#39;t stay in the country<br>quot;an hour longer quot; than<br>needed, the country #39;s<br>prime minister said Friday."
-          ],
-          [
-           "AP - Boston Red Sox center<br>fielder Johnny Damon is having<br>a recurrence of migraine<br>headaches that first bothered<br>him after a collision in last<br>year's playoffs."
-          ],
-          [
-           "The patch fixes a flaw in the<br>e-mail server software that<br>could be used to get access to<br>in-boxes and information."
-          ],
-          [
-           "Felix Cardenas of Colombia won<br>the 17th stage of the Spanish<br>Vuelta cycling race Wednesday,<br>while defending champion<br>Roberto Heras held onto the<br>overall leader #39;s jersey<br>for the sixth day in a row."
-          ],
-          [
-           "AP - Being the biggest dog may<br>pay off at feeding time, but<br>species that grow too large<br>may be more vulnerable to<br>extinction, new research<br>suggests."
-          ],
-          [
-           "A car bomb exploded at a US<br>military convoy in the<br>northern Iraqi city of Mosul,<br>causing several casualties,<br>the army and Iraqi officials<br>said."
-          ],
-          [
-           "Newest Efficeon processor also<br>offers higher frequency using<br>less power."
-          ],
-          [
-           "BAE Systems has launched a<br>search for a senior American<br>businessman to become a non-<br>executive director. The high-<br>profile appointment is<br>designed to strengthen the<br>board at a time when the<br>defence giant is"
-          ],
-          [
-           "AP - In what it calls a first<br>in international air travel,<br>Finnair says it will let its<br>frequent fliers check in using<br>text messages on mobile<br>phones."
-          ],
-          [
-           "Computer Associates<br>International is expected to<br>announce that its new chief<br>executive will be John<br>Swainson, an I.B.M. executive<br>with strong technical and<br>sales credentials."
-          ],
-          [
-           "Established star Landon<br>Donovan and rising sensation<br>Eddie Johnson carried the<br>United States into the<br>regional qualifying finals for<br>the 2006 World Cup in emphatic<br>fashion Wednesday night."
-          ],
-          [
-           "STOCKHOLM (Dow<br>Jones)--Expectations for<br>Telefon AB LM Ericsson #39;s<br>(ERICY) third-quarter<br>performance imply that while<br>sales of mobile telephony<br>equipment are expected to have<br>dipped, the company"
-          ],
-          [
-           "ATHENS, Greece - Michael<br>Phelps took care of qualifying<br>for the Olympic 200-meter<br>freestyle semifinals Sunday,<br>and then found out he had been<br>added to the American team for<br>the evening's 400 freestyle<br>relay final.    Phelps' rivals<br>Ian Thorpe and Pieter van den<br>Hoogenband and teammate Klete<br>Keller were faster than the<br>teenager in the 200 free<br>preliminaries..."
-          ],
-          [
-           " JERUSALEM (Reuters) - Israeli<br>Prime Minister Ariel Sharon<br>intends to present a timetable<br>for withdrawal from Gaza to<br>lawmakers from his Likud Party<br>Tuesday despite a mutiny in<br>the  right-wing bloc over the<br>plan."
-          ],
-          [
-           "Search Engine for Programming<br>Code\\\\An article at Newsforge<br>pointed me to Koders (<br>http://www.koders.com ) a<br>search engine for finding<br>programming code. Nifty.\\\\The<br>front page allows you to<br>specify keywords, sixteen<br>languages (from ASP to VB.NET)<br>and sixteen licenses (from AFL<br>to ZPL -- fortunately there's<br>an information page to ..."
-          ],
-          [
-           " #147;Apple once again was the<br>star of the show at the annual<br>MacUser awards, #148; reports<br>MacUser,  #147;taking away six<br>Maxine statues including<br>Product of the Year for the<br>iTunes Music Store. #148;<br>Other Apple award winners:<br>Power Mac G5, AirPort Express,<br>20-inch Apple Cinema Display,<br>GarageBand and DVD Studio Pro<br>3. Nov 22"
-          ],
-          [
-           " KABUL (Reuters) - Three U.N.<br>workers held by militants in<br>Afghanistan were in their<br>third week of captivity on<br>Friday  after calls from both<br>sides for the crisis to be<br>resolved ahead  of this<br>weekend's Muslim festival of<br>Eid al-Fitr."
-          ],
-          [
-           "AP - A sweeping wildlife<br>preserve in southwestern<br>Arizona is among the nation's<br>10 most endangered refuges,<br>due in large part to illegal<br>drug and immigrant traffic and<br>Border Patrol operations, a<br>conservation group said<br>Friday."
-          ],
-          [
-           "ROME, Oct 29 (AFP) - French<br>President Jacques Chirac urged<br>the head of the incoming<br>European Commission Friday to<br>take  quot;the appropriate<br>decisions quot; to resolve a<br>row over his EU executive team<br>which has left the EU in<br>limbo."
-          ],
-          [
-           "The Anglo-Dutch oil giant<br>Shell today sought to draw a<br>line under its reserves<br>scandal by announcing plans to<br>spend \\$15bn (8.4bn) a year to<br>replenish reserves and develop<br>production in its oil and gas<br>business."
-          ],
-          [
-           "SEPTEMBER 20, 2004<br>(COMPUTERWORLD) - At<br>PeopleSoft Inc. #39;s Connect<br>2004 conference in San<br>Francisco this week, the<br>software vendor is expected to<br>face questions from users<br>about its ability to fend off<br>Oracle Corp."
-          ],
-          [
-           "Russia's parliament will<br>launch an inquiry into a<br>school siege that killed over<br>300 hostages, President<br>Vladimir Putin said on Friday,<br>but analysts doubt it will<br>satisfy those who blame the<br>carnage on security services."
-          ],
-          [
-           "Tony Blair talks to business<br>leaders about new proposals<br>for a major shake-up of the<br>English exam system."
-          ],
-          [
-           "KUALA LUMPUR, Malaysia A<br>Malaysian woman has claimed a<br>new world record after living<br>with over six-thousand<br>scorpions for 36 days<br>straight."
-          ],
-          [
-           "PBS's Charlie Rose quizzes Sun<br>co-founder Bill Joy,<br>Monster.com chief Jeff Taylor,<br>and venture capitalist John<br>Doerr."
-          ],
-          [
-           "Circulation declined at most<br>major US newspapers in the<br>last half year, the latest<br>blow for an industry already<br>rocked by a scandal involving<br>circulation misstatements that<br>has undermined the confidence<br>of investors and advertisers."
-          ],
-          [
-           "Skype Technologies is teaming<br>with Siemens to offer cordless<br>phone users the ability to<br>make Internet telephony calls,<br>in addition to traditional<br>calls, from their handsets."
-          ],
-          [
-           "AP - After years of<br>resistance, the U.S. trucking<br>industry says it will not try<br>to impede or delay a new<br>federal rule aimed at cutting<br>diesel pollution."
-          ],
-          [
-           "INDIANAPOLIS - ATA Airlines<br>has accepted a \\$117 million<br>offer from Southwest Airlines<br>that would forge close ties<br>between two of the largest US<br>discount carriers."
-          ],
-          [
-           "could take drastic steps if<br>the talks did not proceed as<br>Tehran wants. Mehr news agency<br>quoted him as saying on<br>Wednesday. that could be used"
-          ],
-          [
-           "Wizards coach Eddie Jordan<br>says the team is making a<br>statement that immaturity will<br>not be tolerated by suspending<br>Kwame Brown one game for not<br>taking part in a team huddle<br>during a loss to Denver."
-          ],
-          [
-           "EVERETT  Fire investigators<br>are still trying to determine<br>what caused a two-alarm that<br>destroyed a portion of a South<br>Everett shopping center this<br>morning."
-          ],
-          [
-           "Umesh Patel, a 36-year old<br>software engineer from<br>California, debated until the<br>last minute."
-          ],
-          [
-           "Sure, the PeopleSoft board<br>told shareholders to just say<br>no. This battle will go down<br>to the wire, and even<br>afterward Ellison could<br>prevail."
-          ],
-          [
-           "Investors cheered by falling<br>oil prices and an improving<br>job picture sent stocks higher<br>Tuesday, hoping that the news<br>signals a renewal of economic<br>strength and a fall rally in<br>stocks."
-          ],
-          [
-           "AP - Andy Roddick has yet to<br>face a challenge in his U.S.<br>Open title defense. He beat<br>No. 18 Tommy Robredo of Spain<br>6-3, 6-2, 6-4 Tuesday night to<br>move into the quarterfinals<br>without having lost a set."
-          ],
-          [
-           "Now that hell froze over in<br>Boston, New England braces for<br>its rarest season -- a winter<br>of content. Red Sox fans are<br>adrift from the familiar<br>torture of the past."
-          ],
-          [
-           " CHICAGO (Reuters) - Wal-Mart<br>Stores Inc. &lt;A HREF=\"http:/<br>/www.investor.reuters.com/Full<br>Quote.aspx?ticker=WMT.N target<br>=/stocks/quickinfo/fullquote\"&<br>gt;WMT.N&lt;/A&gt;, the<br>world's largest retailer, said<br>on Saturday it still<br>anticipates  September U.S.<br>sales to be up 2 percent to 4<br>percent at stores  open at<br>least a year."
-          ],
-          [
-           " TOKYO (Reuters) - Tokyo's<br>Nikkei stock average opened<br>down  0.15 percent on<br>Wednesday as investors took a<br>breather from the  market's<br>recent rises and sold shares<br>of gainers such as Sharp<br>Corp."
-          ],
-          [
-           "AP - From now until the start<br>of winter, male tarantulas are<br>roaming around, searching for<br>female mates, an ideal time to<br>find out where the spiders<br>flourish in Arkansas."
-          ],
-          [
-           "Israeli authorities have<br>launched an investigation into<br>death threats against Israeli<br>Prime Minister Ariel Sharon<br>and other officials supporting<br>his disengagement plan from<br>Gaza and parts of the West<br>Bank, Jerusalem police said<br>Tuesday."
-          ],
-          [
-           "NewsFactor - While a U.S.<br>District Court continues to<br>weigh the legality of<br>\\Oracle's (Nasdaq: ORCL)<br>attempted takeover of<br>\\PeopleSoft (Nasdaq: PSFT),<br>Oracle has taken the necessary<br>steps to ensure the offer does<br>not die on the vine with<br>PeopleSoft's shareholders."
-          ],
-          [
-           "NEW YORK : World oil prices<br>fell, capping a drop of more<br>than 14 percent in a two-and-<br>a-half-week slide triggered by<br>a perception of growing US<br>crude oil inventories."
-          ],
-          [
-           "SUFFOLK -- Virginia Tech<br>scientists are preparing to<br>protect the state #39;s<br>largest crop from a disease<br>with strong potential to do<br>damage."
-          ],
-          [
-           "It was a carefully scripted<br>moment when Russian President<br>Vladimir Putin began quoting<br>Taras Shevchenko, this country<br>#39;s 19th-century bard,<br>during a live television"
-          ],
-          [
-           "China says it welcomes Russia<br>#39;s ratification of the<br>Kyoto Protocol that aims to<br>stem global warming by<br>reducing greenhouse-gas<br>emissions."
-          ],
-          [
-           "Analysts said the smartphone<br>enhancements hold the<br>potential to bring PalmSource<br>into an expanding market that<br>still has room despite early<br>inroads by Symbian and<br>Microsoft."
-          ],
-          [
-           "The Metropolitan<br>Transportation Authority is<br>proposing a tax increase to<br>raise \\$900 million a year to<br>help pay for a five-year<br>rebuilding program."
-          ],
-          [
-           "AFP - The Canadian armed<br>forces chief of staff on was<br>elected to take over as head<br>of NATO's Military Committee,<br>the alliance's highest<br>military authority, military<br>and diplomatic sources said."
-          ],
-          [
-           "AFP - Two proposed resolutions<br>condemning widespread rights<br>abuses in Sudan and Zimbabwe<br>failed to pass a UN committee,<br>mired in debate between<br>African and western nations."
-          ],
-          [
-           " NEW YORK (Reuters) -<br>Citigroup Inc. &lt;A HREF=\"htt<br>p://www.investor.reuters.com/F<br>ullQuote.aspx?ticker=C.N targe<br>t=/stocks/quickinfo/fullquote\"<br>&gt;C.N&lt;/A&gt; the world's<br>largest financial services<br>company, said on Tuesday it<br>will  acquire First American<br>Bank in the quickly-growing<br>Texas  market."
-          ],
-          [
-           " SINGAPORE (Reuters) - U.S.<br>oil prices hovered just below<br>\\$50 a barrel on Tuesday,<br>holding recent gains on a rash<br>of  crude supply outages and<br>fears over thin heating oil<br>tanks."
-          ],
-          [
-           "THE South Africans have called<br>the Wallabies scrum cheats as<br>a fresh round of verbal<br>warfare opened in the Republic<br>last night."
-          ],
-          [
-           "The return of noted reformer<br>Nabil Amr to Palestinian<br>politics comes at a crucial<br>juncture."
-          ],
-          [
-           "An overwhelming majority of<br>NHL players who expressed<br>their opinion in a poll said<br>they would not support a<br>salary cap even if it meant<br>saving a season that was<br>supposed to have started Oct.<br>13."
-          ],
-          [
-           "Tony Eury Sr. oversees Dale<br>Earnhardt Jr. on the<br>racetrack, but Sunday he<br>extended his domain to Victory<br>Lane. Earnhardt was unbuckling<br>to crawl out of the No."
-          ],
-          [
-           "AP - After two debates, voters<br>have seen President Bush look<br>peevish and heard him pass the<br>buck. They've watched Sen.<br>John Kerry deny he's a flip-<br>flopper and then argue that<br>Saddam Hussein was a threat<br>#151; and wasn't. It's no<br>wonder so few minds have<br>changed."
-          ],
-          [
-           "(Sports Network) - The New<br>York Yankees try to move one<br>step closer to a division<br>title when they conclude their<br>critical series with the<br>Boston Red Sox at Fenway Park."
-          ],
-          [
-           "US retail sales fell 0.3 in<br>August as rising energy costs<br>and bad weather persuaded<br>shoppers to reduce their<br>spending."
-          ],
-          [
-           "The United States says the<br>Lebanese parliament #39;s<br>decision Friday to extend the<br>term of pro-Syrian President<br>Emile Lahoud made a<br>quot;crude mockery of<br>democratic principles."
-          ],
-          [
-           "Kurt Busch claimed a stake in<br>the points lead in the NASCAR<br>Chase for the Nextel Cup<br>yesterday, winning the<br>Sylvania 300 at New Hampshire<br>International Speedway."
-          ],
-          [
-           "TOKYO (AFP) - Japan #39;s<br>Fujitsu and Cisco Systems of<br>the US said they have agreed<br>to form a strategic alliance<br>focusing on routers and<br>switches that will enable<br>businesses to build advanced<br>Internet Protocol (IP)<br>networks."
-          ],
-          [
-           "GEORGETOWN, Del., Oct. 28 --<br>Plaintiffs in a shareholder<br>lawsuit over former Walt<br>Disney Co. president Michael<br>Ovitz's \\$140 million<br>severance package attempted<br>Thursday to portray Ovitz as a<br>dishonest bumbler who botched<br>the hiring of a major<br>television executive and<br>pushed the release of a movie<br>that angered the Chinese<br>government, damaging Disney's<br>business prospects in the<br>country."
-          ],
-          [
-           "US stocks gained ground in<br>early trading Thursday after<br>tame inflation reports and<br>better than expected jobless<br>news. Oil prices held steady<br>as Hurricane Ivan battered the<br>Gulf coast, where oil<br>operations have halted."
-          ],
-          [
-           "It #39;s a new internet<br>browser. The first full<br>version, Firefox 1.0, was<br>launched earlier this month.<br>In the sense it #39;s a<br>browser, yes, but the<br>differences are larger than<br>the similarities."
-          ],
-          [
-           "LOUDON, NH - As this<br>newfangled stretch drive for<br>the Nextel Cup championship<br>ensues, Jeff Gordon has to be<br>considered the favorite for a<br>fifth title."
-          ],
-          [
-           "PepsiCo. Inc., the world #39;s<br>No. 2 soft- drink maker, plans<br>to buy General Mills Inc.<br>#39;s stake in their European<br>joint venture for \\$750<br>million in cash, giving it<br>complete ownership of Europe<br>#39;s largest snack-food<br>company."
-          ],
-          [
-           "Microsoft will accelerate SP2<br>distribution  to meet goal of<br>100 million downloads in two<br>months."
-          ],
-          [
-           " NEW YORK (Reuters) - U.S.<br>stocks opened little changed<br>on  Friday, after third-<br>quarter gross domestic product<br>data showed  the U.S. economy<br>grew at a slower-than-expected<br>pace."
-          ],
-          [
-           "International Business<br>Machines Corp., taken to court<br>by workers over changes it<br>made to its traditional<br>pension plan, has decided to<br>stop offering any such plan to<br>new employees."
-          ],
-          [
-           "NEW YORK - With four of its<br>executives pleading guilty to<br>price-fixing charges today,<br>Infineon will have a hard time<br>arguing that it didn #39;t fix<br>prices in its ongoing<br>litigation with Rambus."
-          ],
-          [
-           "By nick giongco. YOU KNOW you<br>have reached the status of a<br>boxing star when ring<br>announcer extraordinaire<br>Michael Buffer calls out your<br>name in his trademark booming<br>voice during a high-profile<br>event like yesterday"
-          ],
-          [
-           "Canadian Press - OTTAWA (CP) -<br>The prime minister says he's<br>been assured by President<br>George W. Bush that the U.S.<br>missile defence plan does not<br>necessarily involve the<br>weaponization of space."
-          ],
-          [
-           "AP - Even with a big lead,<br>Eric Gagne wanted to pitch in<br>front of his hometown fans one<br>last time."
-          ],
-          [
-           " NEW YORK (Reuters) - Limited<br>Brands Inc. &lt;A HREF=\"http:/<br>/www.investor.reuters.com/Full<br>Quote.aspx?ticker=LTD.N target<br>=/stocks/quickinfo/fullquote\"&<br>gt;LTD.N&lt;/A&gt; on<br>Thursday reported higher<br>quarterly operating profit as<br>cost  controls and strong<br>lingerie sales offset poor<br>results at the  retailer's<br>Express apparel stores."
-          ],
-          [
-           "General Motors and<br>DaimlerChrysler are<br>collaborating on development<br>of fuel- saving hybrid engines<br>in hopes of cashing in on an<br>expanding market dominated by<br>hybrid leaders Toyota and<br>Honda."
-          ],
-          [
-           "ATHENS, Greece -- Larry Brown<br>was despondent, the head of<br>the US selection committee was<br>defensive and an irritated<br>Allen Iverson was hanging up<br>on callers who asked what went<br>wrong."
-          ],
-          [
-           "Fifty-six miners are dead and<br>another 92 are still stranded<br>underground after a gas blast<br>at the Daping coal mine in<br>Central China #39;s Henan<br>Province, safety officials<br>said Thursday."
-          ],
-          [
-           "BEIRUT, Lebanon - Three<br>Lebanese men and their Iraqi<br>driver have been kidnapped in<br>Iraq, the Lebanese Foreign<br>Ministry said Sunday, as<br>Iraq's prime minister said his<br>government was working for the<br>release of two Americans and a<br>Briton also being held<br>hostage.    Gunmen snatched<br>the three Lebanese, who worked<br>for a travel agency with a<br>branch in Baghdad, as they<br>drove on the highway between<br>the capital and Fallujah on<br>Friday night, a ministry<br>official said..."
-          ],
-          [
-           "PORTLAND, Ore. - It's been<br>almost a year since singer-<br>songwriter Elliott Smith<br>committed suicide, and fans<br>and friends will be looking<br>for answers as the posthumous<br>\"From a Basement on the Hill\"<br>is released..."
-          ],
-          [
-           "AP - Courtney Brown refuses to<br>surrender to injuries. He's<br>already planning another<br>comeback."
-          ],
-          [
-           " GAZA (Reuters) - Israel<br>expanded its military<br>offensive in  northern Gaza,<br>launching two air strikes<br>early on Monday that  killed<br>at least three Palestinians<br>and wounded two, including a<br>senior Hamas leader, witnesses<br>and medics said."
-          ],
-          [
-           " TOKYO (Reuters) - Nintendo<br>Co. Ltd. raised its 2004<br>shipment target for its DS<br>handheld video game device by<br>40  percent to 2.8 million<br>units on Thursday after many<br>stores in  Japan and the<br>United States sold out in the<br>first week of  sales."
-          ],
-          [
-           "It took an off-the-cuff<br>reference to a serial<br>murderer/cannibal to punctuate<br>the Robby Gordon storyline.<br>Gordon has been vilified by<br>his peers and put on probation"
-          ],
-          [
-           "By BOBBY ROSS JR. Associated<br>Press Writer. play the Atlanta<br>Hawks. They will be treated to<br>free food and drink and have.<br>their pictures taken with<br>Mavericks players, dancers and<br>team officials."
-          ],
-          [
-           "ARSENAL #39;S Brazilian World<br>Cup winning midfielder<br>Gilberto Silva is set to be<br>out for at least a month with<br>a back injury, the Premiership<br>leaders said."
-          ],
-          [
-           "INDIANAPOLIS -- With a package<br>of academic reforms in place,<br>the NCAA #39;s next crusade<br>will address what its<br>president calls a dangerous<br>drift toward professionalism<br>and sports entertainment."
-          ],
-          [
-           "Autodesk  this week unwrapped<br>an updated version of its<br>hosted project collaboration<br>service targeted at the<br>construction and manufacturing<br>industries. Autodesk Buzzsaw<br>lets multiple, dispersed<br>project participants --<br>including building owners,<br>developers, architects,<br>construction teams, and<br>facility managers -- share and<br>manage data throughout the<br>life of a project, according<br>to Autodesk officials."
-          ],
-          [
-           "AP - It was difficult for<br>Southern California's Pete<br>Carroll and Oklahoma's Bob<br>Stoops to keep from repeating<br>each other when the two<br>coaches met Thursday."
-          ],
-          [
-           "Reuters - Sudan's government<br>resumed\\talks with rebels in<br>the oil-producing south on<br>Thursday while\\the United<br>Nations set up a panel to<br>investigate charges<br>of\\genocide in the west of<br>Africa's largest country."
-          ],
-          [
-           "Andy Roddick, along with<br>Olympic silver medalist Mardy<br>Fish and the doubles pair of<br>twins Bob and Mike Bryan will<br>make up the US team to compete<br>with Belarus in the Davis Cup,<br>reported CRIENGLISH."
-          ],
-          [
-           "NEW YORK - Optimism that the<br>embattled technology sector<br>was due for a recovery sent<br>stocks modestly higher Monday<br>despite a new revenue warning<br>from semiconductor company<br>Broadcom Inc.    While<br>Broadcom, which makes chips<br>for television set-top boxes<br>and other electronics, said<br>high inventories resulted in<br>delayed shipments, investors<br>were encouraged as it said<br>future quarters looked<br>brighter..."
-          ],
-          [
-           "A report indicates that many<br>giants of the industry have<br>been able to capture lasting<br>feelings of customer loyalty."
-          ],
-          [
-           "It is the news that Internet<br>users do not want to hear: the<br>worldwide web is in danger of<br>collapsing around us. Patrick<br>Gelsinger, the chief<br>technology officer for<br>computer chip maker Intel,<br>told a conference"
-          ],
-          [
-           " WASHINGTON (Reuters) - U.S.<br>employers hired just 96,000<br>workers in September, the<br>government said on Friday in a<br>weak  jobs snapshot, the final<br>one ahead of presidential<br>elections  that also fueled<br>speculation about a pause in<br>interest-rate  rises."
-          ],
-          [
-           "Cisco Systems CEO John<br>Chambers said today that his<br>company plans to offer twice<br>as many new products this year<br>as ever before."
-          ],
-          [
-           "While the world #39;s best<br>athletes fight the noble<br>Olympic battle in stadiums and<br>pools, their fans storm the<br>streets of Athens, turning the<br>Greek capital into a huge<br>international party every<br>night."
-          ],
-          [
-           "Carlos Barrios Orta squeezed<br>himself into his rubber diving<br>suit, pulled on an 18-pound<br>helmet that made him look like<br>an astronaut, then lowered<br>himself into the sewer. He<br>disappeared into the filthy<br>water, which looked like some<br>cauldron of rancid beef stew,<br>until the only sign of him was<br>air bubbles breaking the<br>surface."
-          ],
-          [
-           "The mutilated body of a woman<br>of about sixty years,<br>amputated of arms and legs and<br>with the sliced throat, has<br>been discovered this morning<br>in a street of the south of<br>Faluya by the Marines,<br>according to a statement by<br>AFP photographer."
-          ],
-          [
-           "Every day, somewhere in the<br>universe, there #39;s an<br>explosion that puts the power<br>of the Sun in the shade. Steve<br>Connor investigates the riddle<br>of gamma-ray bursts."
-          ],
-          [
-           "Ten months after NASA #39;s<br>twin rovers landed on Mars,<br>scientists reported this week<br>that both robotic vehicles are<br>still navigating their rock-<br>studded landscapes with all<br>instruments operating"
-          ],
-          [
-           "EVERTON showed they would not<br>be bullied into selling Wayne<br>Rooney last night by rejecting<br>a 23.5million bid from<br>Newcastle - as Manchester<br>United gamble on Goodison<br>#39;s resolve to keep the<br>striker."
-          ],
-          [
-           "SAN FRANCISCO (CBS.MW) -- The<br>magazine known for evaluating<br>cars and electronics is<br>setting its sights on finding<br>the best value and quality of<br>prescription drugs on the<br>market."
-          ],
-          [
-           "After months of legal<br>wrangling, the case of<br>&lt;em&gt;People v. Kobe Bean<br>Bryant&lt;/em&gt; commences on<br>Friday in Eagle, Colo., with<br>testimony set to begin next<br>month."
-          ],
-          [
-           "(SH) - In Afghanistan, Hamid<br>Karzai defeated a raft of<br>candidates to win his historic<br>election. In Iraq, more than<br>200 political parties have<br>registered for next month<br>#39;s elections."
-          ],
-          [
-           "Lyon coach Paul le Guen has<br>admitted his side would be<br>happy with a draw at Old<br>Trafford on Tuesday night. The<br>three-times French champions<br>have assured themselves of<br>qualification for the<br>Champions League"
-          ],
-          [
-           "British scientists say they<br>have found a new, greener way<br>to power cars and homes using<br>sunflower oil, a commodity<br>more commonly used for cooking<br>fries."
-          ],
-          [
-           "A mouse, a house, and your<br>tax-planning spouse all factor<br>huge in the week of earnings<br>that lies ahead."
-          ],
-          [
-           "The United States #39; top<br>computer-security official has<br>resigned after a little more<br>than a year on the job, the US<br>Department of Homeland<br>Security said on Friday."
-          ],
-          [
-           "Reuters - Barry Bonds failed<br>to collect a hit in\\his bid to<br>join the 700-homer club, but<br>he did score a run to\\help the<br>San Francisco Giants edge the<br>host Milwaukee Brewers\\3-2 in<br>National League action on<br>Tuesday."
-          ],
-          [
-           " SAN FRANCISCO (Reuters) -<br>Intel Corp. &lt;A HREF=\"http:/<br>/www.reuters.co.uk/financeQuot<br>eLookup.jhtml?ticker=INTC.O<br>qtype=sym infotype=info<br>qcat=news\"&gt;INTC.O&lt;/A&gt;<br>on Thursday  outlined its<br>vision of the Internet of the<br>future, one in which  millions<br>of computer servers would<br>analyze and direct network<br>traffic to make the Web safer<br>and more efficient."
-          ],
-          [
-           "Margaret Hassan, who works for<br>charity Care International,<br>was taken hostage while on her<br>way to work in Baghdad. Here<br>are the main events since her<br>kidnapping."
-          ],
-          [
-           "Check out new gadgets as<br>holiday season approaches."
-          ],
-          [
-           "DALLAS (CBS.MW) -- Royal<br>Dutch/Shell Group will pay a<br>\\$120 million penalty to<br>settle a Securities and<br>Exchange Commission<br>investigation of its<br>overstatement of nearly 4.5<br>billion barrels of proven<br>reserves, the federal agency<br>said Tuesday."
-          ],
-          [
-           "After waiting an entire summer<br>for the snow to fall and<br>Beaver Creek to finally open,<br>skiers from around the planet<br>are coming to check out the<br>Birds of Prey World Cup action<br>Dec. 1 - 5. Although everyones"
-          ],
-          [
-           "TOKYO, Sep 08, 2004 (AFX-UK<br>via COMTEX) -- Sony Corp will<br>launch its popular projection<br>televisions with large liquid<br>crystal display (LCD) screens<br>in China early next year, a<br>company spokeswoman said."
-          ],
-          [
-           "I confess that I am a complete<br>ignoramus when it comes to<br>women #39;s beach volleyball.<br>In fact, I know only one thing<br>about the sport - that it is<br>the supreme aesthetic<br>experience available on planet<br>Earth."
-          ],
-          [
-           "Manchester United Plc may<br>offer US billionaire Malcolm<br>Glazer a seat on its board if<br>he agrees to drop a takeover<br>bid for a year, the Observer<br>said, citing an unidentified<br>person in the soccer industry."
-          ],
-          [
-           "PHOENIX America West Airlines<br>has backed away from a<br>potential bidding war for<br>bankrupt ATA Airlines, paving<br>the way for AirTran to take<br>over ATA operations."
-          ],
-          [
-           "US stock-index futures<br>declined. Dow Jones Industrial<br>Average shares including<br>General Electric Co. slipped<br>in Europe. Citigroup Inc."
-          ],
-          [
-           "For a guy who spent most of<br>his first four professional<br>seasons on the disabled list,<br>Houston Astros reliever Brad<br>Lidge has developed into quite<br>the ironman these past two<br>days."
-          ],
-          [
-           "AFP - Outgoing EU competition<br>commissioner Mario Monti wants<br>to reach a decision on<br>Oracle's proposed takeover of<br>business software rival<br>PeopleSoft by the end of next<br>month, an official said."
-          ],
-          [
-           "Former Bengal Corey Dillon<br>found his stride Sunday in his<br>second game for the New<br>England Patriots. Dillon<br>gained 158 yards on 32 carries<br>as the Patriots beat the<br>Arizona Cardinals, 23-12, for<br>their 17th victory in a row."
-          ],
-          [
-           "If legend is to be believed,<br>the end of a victorious war<br>was behind Pheidippides #39;<br>trek from Marathon to Athens<br>2,500 years ago."
-          ],
-          [
-           " WASHINGTON (Reuters) -<br>Satellite companies would be<br>able to  retransmit<br>broadcasters' television<br>signals for another five<br>years but would have to offer<br>those signals on a single<br>dish,  under legislation<br>approved by Congress on<br>Saturday."
-          ],
-          [
-           " BEIJING (Reuters) - Wimbledon<br>champion Maria Sharapova<br>demolished fellow Russian<br>Tatiana Panova 6-1, 6-1 to<br>advance to  the quarter-finals<br>of the China Open on<br>Wednesday."
-          ],
-          [
-           "Sven Jaschan, who may face<br>five years in prison for<br>spreading the Netsky and<br>Sasser worms, is now working<br>in IT security. Photo: AFP."
-          ],
-          [
-           "Padres general manager Kevin<br>Towers called Expos general<br>manager Omar Minaya on<br>Thursday afternoon and told<br>him he needed a shortstop<br>because Khalil Greene had<br>broken his"
-          ],
-          [
-           "Motorsport.com. Nine of the<br>ten Formula One teams have<br>united to propose cost-cutting<br>measures for the future, with<br>the notable exception of<br>Ferrari."
-          ],
-          [
-           "Reuters - The United States<br>modified its\\call for U.N.<br>sanctions against Sudan on<br>Tuesday but still kept\\up the<br>threat of punitive measures if<br>Khartoum did not<br>stop\\atrocities in its Darfur<br>region."
-          ],
-          [
-           "Human rights and environmental<br>activists have hailed the<br>award of the 2004 Nobel Peace<br>Prize to Wangari Maathai of<br>Kenya as fitting recognition<br>of the growing role of civil<br>society"
-          ],
-          [
-           "Federal Reserve Chairman Alan<br>Greenspan has done it again.<br>For at least the fourth time<br>this year, he has touched the<br>electrified third rail of<br>American politics - Social<br>Security."
-          ],
-          [
-           "An Al Qaeda-linked militant<br>group beheaded an American<br>hostage in Iraq and threatened<br>last night to kill another two<br>Westerners in 24 hours unless<br>women prisoners were freed<br>from Iraqi jails."
-          ],
-          [
-           "TechWeb - An Indian Institute<br>of Technology professor--and<br>open-source evangelist--<br>discusses the role of Linux<br>and open source in India."
-          ],
-          [
-           "Here are some of the latest<br>health and medical news<br>developments, compiled by<br>editors of HealthDay:    -----<br>Contaminated Fish in Many U.S.<br>Lakes and Rivers      Fish<br>that may be contaminated with<br>dioxin, mercury, PCBs and<br>pesticides are swimming in<br>more than one-third of the<br>United States' lakes and<br>nearly one-quarter of its<br>rivers, according to a list of<br>advisories released by the<br>Environmental Protection<br>Agency..."
-          ],
-          [
-           "Argentina, Denmark, Greece,<br>Japan and Tanzania on Friday<br>won coveted two-year terms on<br>the UN Security Council at a<br>time when pressure is mounting<br>to expand the powerful<br>15-nation body."
-          ],
-          [
-           "Description: Scientists say<br>the arthritis drug Bextra may<br>pose increased risk of<br>cardiovascular troubles.<br>Bextra is related to Vioxx,<br>which was pulled off the<br>market in September for the<br>same reason."
-          ],
-          [
-           "Steve Francis and Shaquille O<br>#39;Neal enjoyed big debuts<br>with their new teams. Kobe<br>Bryant found out he can #39;t<br>carry the Lakers all by<br>himself."
-          ],
-          [
-           "The trial of a lawsuit by Walt<br>Disney Co. shareholders who<br>accuse the board of directors<br>of rubberstamping a deal to<br>hire Michael Ovitz"
-          ],
-          [
-           "Australia, by winning the<br>third Test at Nagpur on<br>Friday, also won the four-<br>match series 2-0 with one<br>match to go. Australia had<br>last won a Test series in<br>India way back in December<br>1969 when Bill Lawry #39;s<br>team beat Nawab Pataudi #39;s<br>Indian team 3-1."
-          ],
-          [
-           "LOS ANGELES Grocery giant<br>Albertsons says it has<br>purchased Bristol Farms, which<br>operates eleven upscale stores<br>in Southern California."
-          ],
-          [
-           "ISLAMABAD: Pakistan and India<br>agreed on Friday to re-open<br>the Khokhropar-Munabao railway<br>link, which was severed nearly<br>40 years ago."
-          ],
-          [
-           "Final Score: Connecticut 61,<br>New York 51 New York, NY<br>(Sports Network) - Nykesha<br>Sales scored 15 points to lead<br>Connecticut to a 61-51 win<br>over New York in Game 1 of<br>their best-of-three Eastern<br>Conference Finals series at<br>Madison Square Garden."
-          ],
-          [
-           "NEW YORK - Stocks moved higher<br>Friday as a stronger than<br>expected retail sales report<br>showed that higher oil prices<br>aren't scaring consumers away<br>from spending. Federal Reserve<br>Chairman Alan Greenspan's<br>positive comments on oil<br>prices also encouraged<br>investors..."
-          ],
-          [
-           "The figures from a survey<br>released today are likely to<br>throw more people into the<br>ranks of the uninsured,<br>analysts said."
-          ],
-          [
-           "Bill Gates is giving his big<br>speech right now at Microsofts<br>big Digital Entertainment<br>Anywhere event in Los Angeles.<br>Well have a proper report for<br>you soon, but in the meantime<br>we figured wed"
-          ],
-          [
-           "Spinal and non-spinal<br>fractures are reduced by<br>almost a third in women age 80<br>or older who take a drug<br>called strontium ranelate,<br>European investigators<br>announced"
-          ],
-          [
-           "JB Oxford Holdings Inc., a<br>Beverly Hills-based discount<br>brokerage firm, was sued by<br>the Securities and Exchange<br>Commission for allegedly<br>allowing thousands of improper<br>trades in more than 600 mutual<br>funds."
-          ],
-          [
-           "BERLIN: Apple Computer Inc is<br>planning the next wave of<br>expansion for its popular<br>iTunes online music store with<br>a multi-country European<br>launch in October, the<br>services chief architect said<br>on Wednesday."
-          ],
-          [
-           "Charlotte, NC -- LeBron James<br>poured in a game-high 19<br>points and Jeff McInnis scored<br>18 as the Cleveland Cavaliers<br>routed the Charlotte Bobcats,<br>106-89, at the Charlotte<br>Coliseum."
-          ],
-          [
-           "Goldman Sachs reported strong<br>fourth quarter and full year<br>earnings of \\$1.19bn, up 36<br>per cent on the previous<br>quarter. Full year profit rose<br>52 per cent from the previous<br>year to \\$4.55bn."
-          ],
-          [
-           "Saddam Hussein lives in an<br>air-conditioned 10-by-13 foot<br>cell on the grounds of one of<br>his former palaces, tending<br>plants and proclaiming himself<br>Iraq's lawful ruler."
-          ],
-          [
-           "Lehmann, who was at fault in<br>two matches in the tournament<br>last season, was blundering<br>again with the German set to<br>take the rap for both Greek<br>goals."
-          ],
-          [
-           "Calls to 13 other countries<br>will be blocked to thwart<br>auto-dialer software."
-          ],
-          [
-           "AP - Brazilian U.N.<br>peacekeepers will remain in<br>Haiti until presidential<br>elections are held in that<br>Caribbean nation sometime next<br>year, President Luiz Inacio<br>Lula da Silva said Monday."
-          ],
-          [
-           "com September 27, 2004, 5:00<br>AM PT. This fourth priority<br>#39;s main focus has been<br>improving or obtaining CRM and<br>ERP software for the past year<br>and a half."
-          ],
-          [
-           "Jeju Island, South Korea<br>(Sports Network) - Grace Park<br>and Carin Koch posted matching<br>rounds of six-under-par 66 on<br>Friday to share the lead after<br>the first round of the CJ Nine<br>Bridges Classic."
-          ],
-          [
-           "SPACE.com - The Zero Gravity<br>Corporation \\  has been given<br>the thumbs up by the Federal<br>Aviation Administration (FAA)<br>to \\  conduct  quot;weightless<br>flights quot; for the general<br>public, providing the \\<br>sensation of floating in<br>space."
-          ],
-          [
-           "A 32-year-old woman in Belgium<br>has become the first woman<br>ever to give birth after<br>having ovarian tissue removed,<br>frozen and then implanted back<br>in her body."
-          ],
-          [
-           "Argosy Gaming (AGY:NYSE - news<br>- research) jumped in early<br>trading Thursday, after the<br>company agreed to be acquired<br>by Penn National Gaming<br>(PENN:Nasdaq - news -<br>research) in a \\$1."
-          ],
-          [
-           "No sweat, says the new CEO,<br>who's imported from IBM. He<br>also knows this will be the<br>challenge of a lifetime."
-          ],
-          [
-           "Iraq is  quot;working 24 hours<br>a day to ... stop the<br>terrorists, quot; interim<br>Iraqi Prime Minister Ayad<br>Allawi said Monday. Iraqis are<br>pushing ahead with reforms and<br>improvements, Allawi told"
-          ],
-          [
-           "AP - Their discoveries may be<br>hard for many to comprehend,<br>but this year's Nobel Prize<br>winners still have to explain<br>what they did and how they did<br>it."
-          ],
-          [
-           "The DuPont Co. has agreed to<br>pay up to \\$340 million to<br>settle a lawsuit that it<br>contaminated water supplies in<br>West Virginia and Ohio with a<br>chemical used to make Teflon,<br>one of its best-known brands."
-          ],
-          [
-           "Benfica and Real Madrid set<br>the standard for soccer<br>success in Europe in the late<br>1950s and early  #39;60s. The<br>clubs have evolved much<br>differently, but both have<br>struggled"
-          ],
-          [
-           "AP - Musicians, composers and<br>authors were among the more<br>than two dozen people<br>Wednesday honored with<br>National Medal of Arts and<br>National Humanities awards at<br>the White House."
-          ],
-          [
-           "More than 15 million homes in<br>the UK will be able to get on-<br>demand movies by 2008, say<br>analysts."
-          ],
-          [
-           "Wynton Marsalis, the trumpet-<br>playing star and artistic<br>director of Jazz at Lincoln<br>Center, has become an entity<br>above and around the daily<br>jazz world."
-          ],
-          [
-           "A well-researched study by the<br>National Academy of Sciences<br>makes a persuasive case for<br>refurbishing the Hubble Space<br>Telescope. NASA, which is<br>reluctant to take this<br>mission, should rethink its<br>position."
-          ],
-          [
-           "BUENOS AIRES: Pakistan has<br>ratified the Kyoto Protocol on<br>Climatic Change, Environment<br>Minister Malik Khan said on<br>Thursday. He said that<br>Islamabad has notified UN<br>authorities of ratification,<br>which formally comes into<br>effect in February 2005."
-          ],
-          [
-           "Reuters - Jeffrey Greenberg,<br>chairman and chief\\executive<br>of embattled insurance broker<br>Marsh   McLennan Cos.\\, is<br>expected to step down within<br>hours, a newspaper\\reported on<br>Friday, citing people close to<br>the discussions."
-          ],
-          [
-           "Staff Sgt. Johnny Horne, Jr.,<br>and Staff Sgt. Cardenas Alban<br>have been charged with murder<br>in the death of an Iraqi, the<br>1st Cavalry Division announced<br>Monday."
-          ],
-          [
-           "LONDON -- In a deal that<br>appears to buck the growing<br>trend among governments to<br>adopt open-source<br>alternatives, the U.K.'s<br>Office of Government Commerce<br>(OGC) is negotiating a renewal<br>of a three-year agreement with<br>Microsoft Corp."
-          ],
-          [
-           "WASHINGTON - A Pennsylvania<br>law requiring Internet service<br>providers (ISPs) to block Web<br>sites the state's prosecuting<br>attorneys deem to be child<br>pornography has been reversed<br>by a U.S. federal court, with<br>the judge ruling the law<br>violated free speech rights."
-          ],
-          [
-           "The Microsoft Corp. chairman<br>receives four million e-mails<br>a day, but practically an<br>entire department at the<br>company he founded is<br>dedicated to ensuring that<br>nothing unwanted gets into his<br>inbox, the company #39;s chief<br>executive said Thursday."
-          ],
-          [
-           "The 7100t has a mobile phone,<br>e-mail, instant messaging, Web<br>browsing and functions as an<br>organiser. The device looks<br>like a mobile phone and has<br>the features of the other<br>BlackBerry models, with a<br>large screen"
-          ],
-          [
-           "President Vladimir Putin makes<br>a speech as he hosts Russia<br>#39;s Olympic athletes at a<br>Kremlin banquet in Moscow,<br>Thursday, Nov. 4, 2004."
-          ],
-          [
-           "Apple Computer has unveiled<br>two new versions of its hugely<br>successful iPod: the iPod<br>Photo and the U2 iPod. Apple<br>also has expanded"
-          ],
-          [
-           "Pakistan are closing in fast<br>on Sri Lanka #39;s first<br>innings total after impressing<br>with both ball and bat on the<br>second day of the opening Test<br>in Faisalabad."
-          ],
-          [
-           "A state regulatory board<br>yesterday handed a five-year<br>suspension to a Lawrence<br>funeral director accused of<br>unprofessional conduct and<br>deceptive practices, including<br>one case where he refused to<br>complete funeral arrangements<br>for a client because she had<br>purchased a lower-priced<br>casket elsewhere."
-          ],
-          [
-           "AP - This year's hurricanes<br>spread citrus canker to at<br>least 11,000 trees in<br>Charlotte County, one of the<br>largest outbreaks of the<br>fruit-damaging infection to<br>ever affect Florida's citrus<br>industry, state officials<br>said."
-          ],
-          [
-           "AFP - Hundreds of Buddhists in<br>southern Russia marched<br>through snow to see and hear<br>the Dalai Lama as he continued<br>a long-awaited visit to the<br>country in spite of Chinese<br>protests."
-          ],
-          [
-           "British officials were on<br>diplomatic tenterhooks as they<br>awaited the arrival on<br>Thursday of French President<br>Jacques Chirac for a two-day<br>state visit to Britain."
-          ],
-          [
-           " SYDNEY (Reuters) - A group of<br>women on Pitcairn Island in<br>the South Pacific are standing<br>by their men, who face<br>underage  sex charges, saying<br>having sex at age 12 is a<br>tradition dating  back to 18th<br>century mutineers who settled<br>on the island."
-          ],
-          [
-           "Two aircraft are flying out<br>from the UK on Sunday to<br>deliver vital aid and supplies<br>to Haiti, which has been<br>devastated by tropical storm<br>Jeanne."
-          ],
-          [
-           "A scare triggered by a<br>vibrating sex toy shut down a<br>major Australian regional<br>airport for almost an hour<br>Monday, police said. The<br>vibrating object was<br>discovered Monday morning"
-          ],
-          [
-           "IBM moved back into the iSCSI<br>(Internet SCSI) market Friday<br>with a new array priced at<br>US\\$3,000 and aimed at the<br>small and midsize business<br>market."
-          ],
-          [
-           "Ron Artest has been hit with a<br>season long suspension,<br>unprecedented for the NBA<br>outside doping cases; Stephen<br>Jackson banned for 30 games;<br>Jermaine O #39;Neal for 25<br>games and Anthony Johnson for<br>five."
-          ],
-          [
-           "The California Public<br>Utilities Commission on<br>Thursday upheld a \\$12.1<br>million fine against Cingular<br>Wireless, related to a two-<br>year investigation into the<br>cellular telephone company<br>#39;s business practices."
-          ],
-          [
-           "Barclays, the British bank<br>that left South Africa in 1986<br>after apartheid protests, may<br>soon resume retail operations<br>in the nation."
-          ],
-          [
-           "AP - An Indiana congressional<br>candidate abruptly walked off<br>the set of a debate because<br>she got stage fright."
-          ],
-          [
-           "Italian-based Parmalat is<br>suing its former auditors --<br>Grant Thornton International<br>and Deloitte Touche Tohmatsu<br>-- for billions of dollars in<br>damages. Parmalat blames its<br>demise on the two companies<br>#39; mismanagement of its<br>finances."
-          ],
-          [
-           "Reuters - Having reached out<br>to Kashmiris during a two-day<br>visit to the region, the prime<br>minister heads this weekend to<br>the country's volatile<br>northeast, where public anger<br>is high over alleged abuses by<br>Indian soldiers."
-          ],
-          [
-           "SAN JUAN IXTAYOPAN, Mexico --<br>A pair of wooden crosses<br>outside the elementary school<br>are all that mark the macabre<br>site where, just weeks ago, an<br>angry mob captured two federal<br>police officers, beat them<br>unconscious, and set them on<br>fire."
-          ],
-          [
-           "Three shots behind Grace Park<br>with five holes to go, six-<br>time LPGA player of the year<br>Sorenstam rallied with an<br>eagle, birdie and three pars<br>to win her fourth Samsung<br>World Championship by three<br>shots over Park on Sunday."
-          ],
-          [
-           "update An alliance of<br>technology workers on Tuesday<br>accused conglomerate Honeywell<br>International of planning to<br>move thousands of jobs to low-<br>cost regions over the next<br>five years--a charge that<br>Honeywell denies."
-          ],
-          [
-           "NSW Rugby CEO Fraser Neill<br>believes Waratah star Mat<br>Rogers has learned his lesson<br>after he was fined and ordered<br>to do community service<br>following his controversial<br>comments about the club rugby<br>competition."
-          ],
-          [
-           "American Technology Research<br>analyst Shaw Wu has initiated<br>coverage of Apple Computer<br>(AAPL) with a  #39;buy #39;<br>recommendation, and a 12-month<br>target of US\\$78 per share."
-          ],
-          [
-           "washingtonpost.com - Cell<br>phone shoppers looking for new<br>deals and features didn't find<br>them yesterday, a day after<br>Sprint Corp. and Nextel<br>Communications Inc. announced<br>a merger that the phone<br>companies promised would shake<br>up the wireless business."
-          ],
-          [
-           "ATHENS: China, the dominant<br>force in world diving for the<br>best part of 20 years, won six<br>out of eight Olympic titles in<br>Athens and prompted<br>speculation about a clean<br>sweep when they stage the<br>Games in Beijing in 2008."
-          ],
-          [
-           " NEW YORK (Reuters) - Northrop<br>Grumman Corp. &lt;A HREF=\"http<br>://www.investor.reuters.com/Fu<br>llQuote.aspx?ticker=NOC.N targ<br>et=/stocks/quickinfo/fullquote<br>\"&gt;NOC.N&lt;/A&gt;  reported<br>higher third-quarter earnings<br>on Wednesday and an 11<br>percent increase in sales on<br>strength in its mission<br>systems,  integrated systems,<br>ships and space technology<br>businesses."
-          ],
-          [
-           "JAPANESE GIANT Sharp has<br>pulled the plug on its Linux-<br>based PDAs in the United<br>States as no-one seems to want<br>them. The company said that it<br>will continue to sell them in<br>Japan where they sell like hot<br>cakes"
-          ],
-          [
-           "DUBLIN : An Olympic Airlines<br>plane diverted to Ireland<br>following a bomb alert, the<br>second faced by the Greek<br>carrier in four days, resumed<br>its journey to New York after<br>no device was found on board,<br>airport officials said."
-          ],
-          [
-           "New NavOne offers handy PDA<br>and Pocket PC connectivity,<br>but fails to impress on<br>everything else."
-          ],
-          [
-           "TORONTO (CP) - Shares of<br>Iamgold fell more than 10 per<br>cent after its proposed merger<br>with Gold Fields Ltd. was<br>thrown into doubt Monday as<br>South Africa #39;s Harmony<br>Gold Mining Company Ltd."
-          ],
-          [
-           "The Marvel deal calls for<br>Mforma to work with the comic<br>book giant to develop a<br>variety of mobile applications<br>based on Marvel content."
-          ],
-          [
-           " LONDON (Reuters) - Oil prices<br>tumbled again on Monday to an<br>8-week low under \\$46 a<br>barrel, as growing fuel stocks<br>in the  United States eased<br>fears of a winter supply<br>crunch."
-          ],
-          [
-           " WASHINGTON (Reuters) - The<br>United States said on Friday<br>it  is preparing a new U.N.<br>resolution on Darfur and that<br>Secretary  of State Colin<br>Powell might address next week<br>whether the  violence in<br>western Sudan constitutes<br>genocide."
-          ],
-          [
-           "The Houston Astros won their<br>19th straight game at home and<br>are one game from winning<br>their first playoff series in<br>42 years."
-          ],
-          [
-           "washingtonpost.com - The<br>Portable Media Center -- a<br>new, Microsoft-conceived<br>handheld device that presents<br>video and photos as well as<br>music -- would be a decent<br>idea if there weren't such a<br>thing as lampposts. Or street<br>signs. Or trees. Or other<br>cars."
-          ],
-          [
-           "Alcoa Inc., one of the world<br>#39;s top producers of<br>aluminum, said Monday that it<br>received an unsolicited<br>quot;mini-tender quot; offer<br>from Toronto-based TRC Capital<br>Corp."
-          ],
-          [
-           "The European Commission is to<br>warn Greece about publishing<br>false information about its<br>public finances."
-          ],
-          [
-           "The Air Force Reserve #39;s<br>Hurricane Hunters, those<br>fearless crews who dive into<br>the eyewalls of hurricanes to<br>relay critical data on<br>tropical systems, were chased<br>from their base on the<br>Mississippi Gulf Coast by<br>Hurricane Ivan."
-          ],
-          [
-           " LONDON (Reuters) - U.S.<br>shares were expected to open<br>lower  on Wednesday after<br>crude oil pushed to a fresh<br>high overnight,  while Web<br>search engine Google Inc.<br>dented sentiment as it<br>slashed the price range on its<br>initial public offering."
-          ],
-          [
-           "The eighth-seeded American<br>fell to sixth-seeded Elena<br>Dementieva of Russia, 0-6 6-2<br>7-6 (7-5), on Friday - despite<br>being up a break on four<br>occasions in the third set."
-          ],
-          [
-           "TUCSON, Arizona (Ticker) --<br>No. 20 Arizona State tries to<br>post its first three-game<br>winning streak over Pac-10<br>Conference rival Arizona in 26<br>years when they meet Friday."
-          ],
-          [
-           "NAJAF, Iraq : Iraq #39;s top<br>Shiite Muslim clerics, back in<br>control of Najaf #39;s Imam<br>Ali shrine after a four-month<br>militia occupation, met amid<br>the ruins of the city as life<br>spluttered back to normality."
-          ],
-          [
-           "Embargo or not, Fidel Castro's<br>socialist paradise has quietly<br>become a pharmaceutical<br>powerhouse. (They're still<br>working on the capitalism<br>thing.) By Douglas Starr from<br>Wired magazine."
-          ],
-          [
-           "AP - Phillip Fulmer kept his<br>cool when starting center<br>Jason Respert drove off in the<br>coach's golf cart at practice."
-          ],
-          [
-           "GOALS from Wayne Rooney and<br>Ruud van Nistelrooy gave<br>Manchester United the win at<br>Newcastle. Alan Shearer<br>briefly levelled matters for<br>the Magpies but United managed<br>to scrape through."
-          ],
-          [
-           "The telemarketer at the other<br>end of Orlando Castelblanco<br>#39;s line promised to reduce<br>the consumer #39;s credit card<br>debt by at least \\$2,500 and<br>get his 20 percent -- and<br>growing -- interest rates down<br>to single digits."
-          ],
-          [
-           " NEW YORK (Reuters) - Blue-<br>chip stocks fell slightly on<br>Monday after No. 1 retailer<br>Wal-Mart Stores Inc. &lt;A HRE<br>F=\"http://www.investor.reuters<br>.com/FullQuote.aspx?ticker=WMT<br>.N target=/stocks/quickinfo/fu<br>llquote\"&gt;WMT.N&lt;/A&gt;<br>reported lower-than-expected<br>Thanksgiving sales, while<br>technology shares were lifted<br>by a rally in Apple Computer<br>Inc.  &lt;A HREF=\"http://www.i<br>nvestor.reuters.com/FullQuote.<br>aspx?ticker=AAPL.O target=/sto<br>cks/quickinfo/fullquote\"&gt;AA<br>PL.O&lt;/A&gt;."
-          ],
-          [
-           "Reuters - House of<br>Representatives<br>Majority\\Leader Tom DeLay,<br>admonished twice in six days<br>by his chamber's\\ethics<br>committee, withstood calls on<br>Thursday by rival\\Democrats<br>and citizen groups that he<br>step aside."
-          ],
-          [
-           "WPP Group Inc., the world<br>#39;s second- largest<br>marketing and advertising<br>company, said it won the<br>bidding for Grey Global Group<br>Inc."
-          ],
-          [
-           "AFP - Australia has accounted<br>for all its nationals known to<br>be working in Iraq following a<br>claim by a radical Islamic<br>group to have kidnapped two<br>Australians, Foreign Affairs<br>Minister Alexander Downer<br>said."
-          ],
-          [
-           "A new worm can spy on users by<br>hijacking their Web cameras, a<br>security firm warned Monday.<br>The Rbot.gr worm -- the latest<br>in a long line of similar<br>worms; one security firm<br>estimates that more than 4,000<br>variations"
-          ],
-          [
-           " NEW YORK (Reuters) - Stocks<br>were slightly lower on<br>Tuesday,  as concerns about<br>higher oil prices cutting into<br>corporate  profits and<br>consumer demand weighed on<br>sentiment, while retail  sales<br>posted a larger-than-expected<br>decline in August."
-          ],
-          [
-           "The separation of PalmOne and<br>PalmSource will be complete<br>with Eric Benhamou's<br>resignation as the latter's<br>chairman."
-          ],
-          [
-           "AP - Two-time U.S. Open<br>doubles champion Max Mirnyi<br>will lead the Belarus team<br>that faces the United States<br>in the Davis Cup semifinals in<br>Charleston later this month."
-          ],
-          [
-           "The hurricane appeared to be<br>strengthening and forecasters<br>warned of an increased threat<br>of serious flooding and wind<br>damage."
-          ],
-          [
-           "AP - New York Jets safety Erik<br>Coleman got his souvenir<br>football from the equipment<br>manager and held it tightly."
-          ],
-          [
-           " SINGAPORE (Reuters) - Oil<br>prices climbed above \\$42 a<br>barrel  on Wednesday, rising<br>for the third day in a row as<br>the heavy  consuming U.S.<br>Northeast feels the first<br>chills of winter."
-          ],
-          [
-           "\\\\\"(CNN) -- A longtime<br>associate of al Qaeda leader<br>Osama bin Laden surrendered<br>to\\Saudi Arabian officials<br>Tuesday, a Saudi Interior<br>Ministry official said.\"\\\\\"But<br>it is unclear what role, if<br>any, Khaled al-Harbi may have<br>had in any terror\\attacks<br>because no public charges have<br>been filed against him.\"\\\\\"The<br>Saudi government -- in a<br>statement released by its<br>embassy in Washington<br>--\\called al-Harbi's surrender<br>\"the latest direct result\" of<br>its limited, one-month\\offer<br>of leniency to terror<br>suspects.\"\\\\This is great!  I<br>hope this really starts to pay<br>off.  Creative solutions<br>to\\terrorism that don't<br>involve violence.  \\\\How<br>refreshing! \\\\Are you paying<br>attention Bush<br>administration?\\\\"
-          ],
-          [
-           " NEW YORK (Reuters) - Merck<br>Co Inc. &lt;A HREF=\"http://www<br>.investor.reuters.com/FullQuot<br>e.aspx?ticker=MRK.N target=/st<br>ocks/quickinfo/fullquote\"&gt;M<br>RK.N&lt;/A&gt; on Thursday<br>pulled its arthritis drug<br>Vioxx off the market after a<br>study  showed it doubled the<br>risk of heart attack and<br>stroke, a move  that sent its<br>shares plunging and erased<br>\\$25 billion from its  market<br>value."
-          ],
-          [
-           "AT T Corp. is cutting 7,400<br>more jobs and slashing the<br>book value of its assets by<br>\\$11.4 billion, drastic moves<br>prompted by the company's plan<br>to retreat from the<br>traditional consumer telephone<br>business following a lost<br>court battle."
-          ],
-          [
-           "The government on Wednesday<br>defended its decision to<br>radically revise the country<br>#39;s deficit figures, ahead<br>of a European Commission<br>meeting to consider possible<br>disciplinary action against<br>Greece for submitting faulty<br>figures."
-          ],
-          [
-           "Ivan Hlinka coached the Czech<br>Republic to the hockey gold<br>medal at the 1998 Nagano<br>Olympics and became the coach<br>of the Pittsburgh Penguins two<br>years later."
-          ],
-          [
-           "Four homeless men were<br>bludgeoned to death and six<br>were in critical condition on<br>Friday following early morning<br>attacks by unknown assailants<br>in downtown streets of Sao<br>Paulo, a police spokesman<br>said."
-          ],
-          [
-           "OPEC ministers yesterday<br>agreed to increase their<br>ceiling for oil production to<br>help bring down stubbornly<br>high prices in a decision that<br>traders and analysts dismissed<br>as symbolic because the cartel<br>already is pumping more than<br>its new target."
-          ],
-          [
-           "Williams-Sonoma Inc. said<br>second- quarter profit rose 55<br>percent, boosted by the<br>addition of Pottery Barn<br>stores and sale of outdoor<br>furniture."
-          ],
-          [
-           "Celerons form the basis of<br>Intel #39;s entry-level<br>platform which includes<br>integrated/value motherboards<br>as well. The Celeron 335D is<br>the fastest - until the<br>Celeron 340D - 2.93GHz -<br>becomes mainstream - of the"
-          ],
-          [
-           "The entertainment industry<br>asks the Supreme Court to<br>reverse the Grokster decision,<br>which held that peer-to-peer<br>networks are not liable for<br>copyright abuses of their<br>users. By Michael Grebb."
-          ],
-          [
-           " HONG KONG/SAN FRANCISCO<br>(Reuters) - China's largest<br>personal computer maker,<br>Lenovo Group Ltd., said on<br>Tuesday it  was in acquisition<br>talks with a major technology<br>company, which  a source<br>familiar with the situation<br>said was IBM."
-          ],
-          [
-           "Phone companies are not doing<br>enough to warn customers about<br>internet \"rogue-dialling\"<br>scams, watchdog Icstis warns."
-          ],
-          [
-           "Reuters - Oil prices stayed<br>close to  #36;49 a\\barrel on<br>Thursday, supported by a<br>forecast for an early<br>cold\\snap in the United States<br>that could put a strain on a<br>thin\\supply cushion of winter<br>heating fuel."
-          ],
-          [
-           "AUBURN - Ah, easy street. No<br>game this week. Light<br>practices. And now Auburn is<br>being touted as the No. 3 team<br>in the Bowl Championship<br>Series standings."
-          ],
-          [
-           "Portsmouth #39;s Harry<br>Redknapp has been named as the<br>Barclays manager of the month<br>for October. Redknapp #39;s<br>side were unbeaten during the<br>month and maintained an<br>impressive climb to ninth in<br>the Premiership."
-          ],
-          [
-           "India's main opposition party<br>takes action against senior<br>party member Uma Bharti after<br>a public row."
-          ],
-          [
-           "Hewlett-Packard will shell out<br>\\$16.1 billion for chips in<br>2005, but Dell's wallet is<br>wide open, too."
-          ],
-          [
-           "WASHINGTON (CBS.MW) --<br>President Bush announced<br>Monday that Kellogg chief<br>executive Carlos Gutierrez<br>would replace Don Evans as<br>Commerce secretary, naming the<br>first of many expected changes<br>to his economic team."
-          ],
-          [
-           "Iron Mountain moved further<br>into the backup and recovery<br>space Tuesday with the<br>acquisition of Connected Corp.<br>for \\$117 million. Connected<br>backs up desktop data for more<br>than 600 corporations, with<br>more than"
-          ],
-          [
-           "Three directors of Manchester<br>United have been ousted from<br>the board after US tycoon<br>Malcolm Glazer, who is<br>attempting to buy the club,<br>voted against their re-<br>election."
-          ],
-          [
-           "The Russian military yesterday<br>extended its offer of a \\$10<br>million reward for information<br>leading to the capture of two<br>separatist leaders who, the<br>Kremlin claims, were behind<br>the Beslan massacre."
-          ],
-          [
-           "AP - Manny Ramirez singled and<br>scored before leaving with a<br>bruised knee, and the<br>streaking Boston Red Sox beat<br>the Detroit Tigers 5-3 Friday<br>night for their 10th victory<br>in 11 games."
-          ],
-          [
-           "A remote attacker could take<br>complete control over<br>computers running many<br>versions of Microsoft software<br>by inserting malicious code in<br>a JPEG image that executes<br>through an unchecked buffer"
-          ],
-          [
-           "Montgomery County (website -<br>news) is a big step closer to<br>shopping for prescription<br>drugs north of the border. On<br>a 7-2 vote, the County Council<br>is approving a plan that would<br>give county"
-          ],
-          [
-           "Israels Shin Bet security<br>service has tightened<br>protection of the prime<br>minister, MPs and parliament<br>ahead of next weeks crucial<br>vote on a Gaza withdrawal."
-          ],
-          [
-           "The news comes fast and<br>furious. Pedro Martinez goes<br>to Tampa to visit George<br>Steinbrenner. Theo Epstein and<br>John Henry go to Florida for<br>their turn with Pedro. Carl<br>Pavano comes to Boston to<br>visit Curt Schilling. Jason<br>Varitek says he's not a goner.<br>Derek Lowe is a goner, but he<br>says he wishes it could be<br>different. Orlando Cabrera ..."
-          ],
-          [
-           "The disclosure this week that<br>a Singapore-listed company<br>controlled by a Chinese state-<br>owned enterprise lost \\$550<br>million in derivatives<br>transactions"
-          ],
-          [
-           "Reuters - Iraq's interim<br>defense minister<br>accused\\neighbors Iran and<br>Syria on Wednesday of aiding<br>al Qaeda\\Islamist Abu Musab<br>al-Zarqawi and former agents<br>of Saddam\\Hussein to promote a<br>\"terrorist\" insurgency in<br>Iraq."
-          ],
-          [
-           "AP - The Senate race in<br>Kentucky stayed at fever pitch<br>on Thursday as Democratic<br>challenger Daniel Mongiardo<br>stressed his opposition to gay<br>marriage while accusing<br>Republican incumbent Jim<br>Bunning of fueling personal<br>attacks that seemed to suggest<br>Mongiardo is gay."
-          ],
-          [
-           "The lawsuit claims the<br>companies use a patented<br>Honeywell technology for<br>brightening images and<br>reducing interference on<br>displays."
-          ],
-          [
-           "The co-president of Oracle<br>testified that her company was<br>serious about its takeover<br>offer for PeopleSoft and was<br>not trying to scare off its<br>customers."
-          ],
-          [
-           "VANCOUVER - A Vancouver-based<br>firm won #39;t sell 1.2<br>million doses of influenza<br>vaccine to the United States<br>after all, announcing Tuesday<br>that it will sell the doses<br>within Canada instead."
-          ],
-          [
-           "An extremely rare Hawaiian<br>bird dies in captivity,<br>possibly marking the<br>extinction of its entire<br>species only 31 years after it<br>was first discovered."
-          ],
-          [
-           "Does Geico's trademark lawsuit<br>against Google have merit? How<br>will the case be argued?<br>What's the likely outcome of<br>the trial?  A mock court of<br>trademark experts weighs in<br>with their verdict."
-          ],
-          [
-           "Treo 650 boasts a high-res<br>display, an improved keyboard<br>and camera, a removable<br>battery, and more. PalmOne<br>this week is announcing the<br>Treo 650, a hybrid PDA/cell-<br>phone device that addresses<br>many of the shortcomings"
-          ],
-          [
-           "FRED Hale Sr, documented as<br>the worlds oldest man, has<br>died at the age of 113. Hale<br>died in his sleep on Friday at<br>a hospital in Syracuse, New<br>York, while trying to recover<br>from a bout of pneumonia, his<br>grandson, Fred Hale III said."
-          ],
-          [
-           "The Oakland Raiders have<br>traded Jerry Rice to the<br>Seattle Seahawks in a move<br>expected to grant the most<br>prolific receiver in National<br>Football League history his<br>wish to get more playing time."
-          ],
-          [
-           "consortium led by the Sony<br>Corporation of America reached<br>a tentative agreement today to<br>buy Metro-Goldwyn-Mayer, the<br>Hollywood studio famous for<br>James Bond and the Pink<br>Panther, for"
-          ],
-          [
-           "International Business<br>Machines Corp.'s possible exit<br>from the personal computer<br>business would be the latest<br>move in what amounts to a long<br>goodbye from a field it<br>pioneered and revolutionized."
-          ],
-          [
-           "Leipzig Game Convention in<br>Germany, the stage for price-<br>slash revelations. Sony has<br>announced that it #39;s<br>slashing the cost of PS2 in<br>the UK and Europe to 104.99<br>GBP."
-          ],
-          [
-           "AP - Florida coach Ron Zook<br>was fired Monday but will be<br>allowed to finish the season,<br>athletic director Jeremy Foley<br>told The Gainesville Sun."
-          ],
-          [
-           "The country-cooking restaurant<br>chain has agreed to pay \\$8.7<br>million over allegations that<br>it segregated black customers,<br>subjected them to racial slurs<br>and gave black workers<br>inferior jobs."
-          ],
-          [
-           "Troy Brown has had to make a<br>lot of adjustments while<br>playing both sides of the<br>football.  quot;You always<br>want to score when you get the<br>ball -- offense or defense"
-          ],
-          [
-           " PORT LOUIS, Aug. 17<br>(Xinhuanet) -- Southern<br>African countries Tuesday<br>pledged better trade and<br>investment relations with<br>China as well as India in the<br>final communique released at<br>the end of their two-day<br>summit."
-          ],
-          [
-           "In yet another devastating<br>body blow to the company,<br>Intel (Nasdaq: INTC) announced<br>it would be canceling its<br>4-GHz Pentium chip. The<br>semiconductor bellwether said<br>it was switching"
-          ],
-          [
-           "Jenson Button will tomorrow<br>discover whether he is allowed<br>to quit BAR and move to<br>Williams for 2005. The<br>Englishman has signed<br>contracts with both teams but<br>prefers a switch to Williams,<br>where he began his Formula One<br>career in 2000."
-          ],
-          [
-           "Seagate #39;s native SATA<br>interface technology with<br>Native Command Queuing (NCQ)<br>allows the Barracuda 7200.8 to<br>match the performance of<br>10,000-rpm SATA drives without<br>sacrificing capacity"
-          ],
-          [
-           "ARSENAL boss Arsene Wenger<br>last night suffered a<br>Champions League setback as<br>Brazilian midfielder Gilberto<br>Silva (above) was left facing<br>a long-term injury absence."
-          ],
-          [
-           "BAGHDAD - A militant group has<br>released a video saying it<br>kidnapped a missing journalist<br>in Iraq and would kill him<br>unless US forces left Najaf<br>within 48 hours."
-          ],
-          [
-           "18 August 2004 -- There has<br>been renewed fighting in the<br>Iraqi city of Al-Najaf between<br>US and Iraqi troops and Shi<br>#39;a militiamen loyal to<br>radical cleric Muqtada al-<br>Sadr."
-          ],
-          [
-           "You #39;re probably already<br>familiar with one of the most<br>common questions we hear at<br>iPodlounge:  quot;how can I<br>load my iPod up with free<br>music?"
-          ],
-          [
-           " SINGAPORE (Reuters) -<br>Investors bought shares in<br>Asian  exporters and<br>electronics firms such as<br>Fujitsu Ltd. on  Tuesday,<br>buoyed by a favorable outlook<br>from U.S. technology<br>bellwethers and a slide in oil<br>prices."
-          ],
-          [
-           "Ace Ltd. will stop paying<br>brokers for steering business<br>its way, becoming the third<br>company to make concessions in<br>the five days since New York<br>Attorney General Eliot Spitzer<br>unveiled a probe of the<br>insurance industry."
-          ],
-          [
-           "Vice chairman of the office of<br>the chief executive officer in<br>Novell Inc, Chris Stone is<br>leaving the company to pursue<br>other opportunities in life."
-          ],
-          [
-           "Wm. Wrigley Jr. Co., the world<br>#39;s largest maker of chewing<br>gum, agreed to buy candy<br>businesses including Altoids<br>mints and Life Savers from<br>Kraft Foods Inc."
-          ],
-          [
-           "American improves to 3-1 on<br>the season with a hard-fought<br>overtime win, 74-63, against<br>Loyala at Bender Arena on<br>Friday night."
-          ],
-          [
-           "Australia tighten their grip<br>on the third Test and the<br>series after dominating India<br>on day two in Nagpur."
-          ],
-          [
-           " #39;Reaching a preliminary<br>pilot agreement is the single<br>most important hurdle they<br>have to clear, but certainly<br>not the only one."
-          ],
-          [
-           "Bee Staff Writers. SAN<br>FRANCISCO - As Eric Johnson<br>drove to the stadium Sunday<br>morning, his bruised ribs were<br>so sore, he wasn #39;t sure he<br>#39;d be able to suit up for<br>the game."
-          ],
-          [
-           "The New England Patriots are<br>so single-minded in pursuing<br>their third Super Bowl triumph<br>in four years that they almost<br>have no room for any other<br>history."
-          ],
-          [
-           "TORONTO (CP) - Canada #39;s<br>big banks are increasing<br>mortgage rates following a<br>decision by the Bank of Canada<br>to raise its overnight rate by<br>one-quarter of a percentage<br>point to 2.25 per cent."
-          ],
-          [
-           " SEOUL (Reuters) - North<br>Korea's two-year-old nuclear<br>crisis  has taxed the world's<br>patience, the chief United<br>Nations  nuclear regulator<br>said on Wednesday, urging<br>communist Pyongyang  to return<br>to its disarmament treaty<br>obligations."
-          ],
-          [
-           "washingtonpost.com - Microsoft<br>is going to Tinseltown today<br>to announce plans for its<br>revamped Windows XP Media<br>Center, part of an aggressive<br>push to get ahead in the<br>digital entertainment race."
-          ],
-          [
-           "GROZNY, Russia - The Russian<br>government's choice for<br>president of war-ravaged<br>Chechnya appeared to be the<br>victor Sunday in an election<br>tainted by charges of fraud<br>and shadowed by last week's<br>terrorist destruction of two<br>airliners.    Little more than<br>two hours after polls closed,<br>acting Chechen president<br>Sergei Abramov said<br>preliminary results showed<br>Maj..."
-          ],
-          [
-           "Because, while the Eagles are<br>certain to stumble at some<br>point during the regular<br>season, it seems inconceivable<br>that they will falter against<br>a team with as many offensive<br>problems as Baltimore has<br>right now."
-          ],
-          [
-           "AP - J.J. Arrington ran for 84<br>of his 121 yards in the second<br>half and Aaron Rodgers shook<br>off a slow start to throw two<br>touchdown passes to help No. 5<br>California beat Washington<br>42-12 on Saturday."
-          ],
-          [
-           "BAGHDAD, Sept 5 (AFP) - Izzat<br>Ibrahim al-Duri, Saddam<br>Hussein #39;s deputy whose<br>capture was announced Sunday,<br>is 62 and riddled with cancer,<br>but was public enemy number<br>two in Iraq for the world<br>#39;s most powerful military."
-          ],
-          [
-           "AP - An explosion targeted the<br>Baghdad governor's convoy as<br>he was traveling through the<br>capital Tuesday, killing two<br>people but leaving him<br>uninjured, the Interior<br>Ministry said."
-          ],
-          [
-           "GENEVA: Rescuers have found<br>the bodies of five Swiss<br>firemen who died after the<br>ceiling of an underground car<br>park collapsed during a fire,<br>a police spokesman said last<br>night."
-          ],
-          [
-           "John Kerry has held 10 \"front<br>porch visit\" events  an actual<br>front porch is optional  where<br>perhaps 100 people ask<br>questions in a low-key<br>campaigning style."
-          ],
-          [
-           "AP - Most of the turkeys<br>gracing the nation's dinner<br>tables Thursday have been<br>selectively bred for their<br>white meat for so many<br>generations that simply<br>walking can be a problem for<br>many of the big-breasted birds<br>and sex is no longer possible."
-          ],
-          [
-           "OTTAWA (CP) - The economy<br>created another 43,000 jobs<br>last month, pushing the<br>unemployment rate down to 7.1<br>per cent from 7.2 per cent in<br>August, Statistics Canada said<br>Friday."
-          ],
-          [
-           "The right-win opposition<br>Conservative Party and Liberal<br>Center Union won 43 seats in<br>the 141-member Lithuanian<br>parliament, after more than 99<br>percent of the votes were<br>counted"
-          ],
-          [
-           " TOKYO (Reuters) - Japan's<br>Nikkei average rose 0.39<br>percent  by midsession on<br>Friday, bolstered by solid<br>gains in stocks  dependent on<br>domestic business such as Kao<br>Corp. &lt;A HREF=\"http://www.i<br>nvestor.reuters.com/FullQuote.<br>aspx?ticker=4452.T target=/sto<br>cks/quickinfo/fullquote\"&gt;44<br>52.T&lt;/A&gt;."
-          ],
-          [
-           " FRANKFURT (Reuters) -<br>DaimlerChrysler and General<br>Motors  will jointly develop<br>new hybrid motors to compete<br>against  Japanese rivals on<br>the fuel-saving technology<br>that reduces  harmful<br>emissions, the companies said<br>on Monday."
-          ],
-          [
-           " SEATTLE (Reuters) - Microsoft<br>Corp. &lt;A HREF=\"http://www.r<br>euters.co.uk/financeQuoteLooku<br>p.jhtml?ticker=MSFT.O<br>qtype=sym infotype=info<br>qcat=news\"&gt;MSFT.O&lt;/A&gt;<br>is making a  renewed push this<br>week to get its software into<br>living rooms  with the launch<br>of a new version of its<br>Windows XP Media  Center, a<br>personal computer designed for<br>viewing movies,  listening to<br>music and scrolling through<br>digital pictures."
-          ],
-          [
-           "KHARTOUM, Aug 18 (Reuters) -<br>The United Nations said on<br>Wednesday it was very<br>concerned by Sudan #39;s lack<br>of practical progress in<br>bringing security to Darfur,<br>where more than a million<br>people have fled their homes<br>for fear of militia ..."
-          ],
-          [
-           "SHANGHAI, China The Houston<br>Rockets have arrived in<br>Shanghai with hometown<br>favorite Yao Ming declaring<br>himself  quot;here on<br>business."
-          ],
-          [
-           "Charleston, SC (Sports<br>Network) - Andy Roddick and<br>Mardy Fish will play singles<br>for the United States in this<br>weekend #39;s Davis Cup<br>semifinal matchup against<br>Belarus."
-          ],
-          [
-           "AFP - With less than two<br>months until the November 2<br>election, President George W.<br>Bush is working to shore up<br>support among his staunchest<br>supporters even as he courts<br>undecided voters."
-          ],
-          [
-           "The bass should be in your<br>face. That's what Matt Kelly,<br>of Boston's popular punk rock<br>band Dropkick Murphys, thinks<br>is the mark of a great stereo<br>system. And he should know.<br>Kelly, 29, is the drummer for<br>the band that likes to think<br>of itself as a bit of an Irish<br>lucky charm for the Red Sox."
-          ],
-          [
-           "Chile's government says it<br>will build a  prison for<br>officers convicted of human<br>rights abuses in the Pinochet<br>era."
-          ],
-          [
-           "Slumping corporate spending<br>and exports caused the economy<br>to slow to a crawl in the<br>July-September period, with<br>real gross domestic product<br>expanding just 0.1 percent<br>from the previous quarter,<br>Cabinet Office data showed<br>Friday."
-          ],
-          [
-           "US President George W. Bush<br>signed into law a bill<br>replacing an export tax<br>subsidy that violated<br>international trade rules with<br>a \\$145 billion package of new<br>corporate tax cuts and a<br>buyout for tobacco farmers."
-          ],
-          [
-           "The Nikkei average was up 0.37<br>percent in mid-morning trade<br>on Thursday as a recovery in<br>the dollar helped auto makers<br>among other exporters, but<br>trade was slow as investors<br>waited for important Japanese<br>economic data."
-          ],
-          [
-           "Jennifer Canada knew she was<br>entering a boy's club when she<br>enrolled in Southern Methodist<br>University's Guildhall school<br>of video-game making."
-          ],
-          [
-           "RICKY PONTING believes the<br>game #39;s watchers have<br>fallen for the  quot;myth<br>quot; that New Zealand know<br>how to rattle Australia."
-          ],
-          [
-           "MILWAUKEE (SportsTicker) -<br>Barry Bonds tries to go where<br>just two players have gone<br>before when the San Francisco<br>Giants visit the Milwaukee<br>Brewers on Tuesday."
-          ],
-          [
-           "Palestinian leader Mahmoud<br>Abbas reiterated calls for his<br>people to drop their weapons<br>in the struggle for a state. a<br>clear change of strategy for<br>peace with Israel after Yasser<br>Arafat #39;s death."
-          ],
-          [
-           "The new software is designed<br>to simplify the process of<br>knitting together back-office<br>business applications."
-          ],
-          [
-           "SYDNEY (Dow Jones)--Colorado<br>Group Ltd. (CDO.AU), an<br>Australian footwear and<br>clothing retailer, said Monday<br>it expects net profit for the<br>fiscal year ending Jan. 29 to<br>be over 30 higher than that of<br>a year earlier."
-          ],
-          [
-           "NEW YORK - What are the odds<br>that a tiny nation like<br>Antigua and Barbuda could take<br>on the United States in an<br>international dispute and win?"
-          ],
-          [
-           "AP - With Tom Brady as their<br>quarterback and a stingy,<br>opportunistic defense, it's<br>difficult to imagine when the<br>New England Patriots might<br>lose again. Brady and<br>defensive end Richard Seymour<br>combined to secure the<br>Patriots' record-tying 18th<br>straight victory, 31-17 over<br>the Buffalo Bills on Sunday."
-          ],
-          [
-           "FRANKFURT, GERMANY -- The<br>German subsidiaries of<br>Hewlett-Packard Co. (HP) and<br>Novell Inc. are teaming to<br>offer Linux-based products to<br>the country's huge public<br>sector."
-          ],
-          [
-           "SBC Communications expects to<br>cut 10,000 or more jobs by the<br>end of next year through<br>layoffs and attrition. That<br>#39;s about six percent of the<br>San Antonio-based company<br>#39;s work force."
-          ],
-          [
-           " BAGHDAD (Reuters) - Iraq's<br>U.S.-backed government said on<br>Tuesday that \"major neglect\"<br>by its American-led military<br>allies led to a massacre of 49<br>army recruits at the weekend."
-          ],
-          [
-           "SiliconValley.com - \"I'm<br>back,\" declared Apple<br>Computer's Steve Jobs on<br>Thursday morning in his first<br>public appearance before<br>reporters since cancer surgery<br>in late July."
-          ],
-          [
-           "BEIJING -- Police have<br>detained a man accused of<br>slashing as many as nine boys<br>to death as they slept in<br>their high school dormitory in<br>central China, state media<br>reported today."
-          ],
-          [
-           "Health India: London, Nov 4 :<br>Cosmetic face cream used by<br>fashionable Roman women was<br>discovered at an ongoing<br>archaeological dig in London,<br>in a metal container, complete<br>with the lid and contents."
-          ],
-          [
-           "Israeli Prime Minister Ariel<br>Sharon #39;s Likud party<br>agreed on Thursday to a<br>possible alliance with<br>opposition Labour in a vote<br>that averted a snap election<br>and strengthened his Gaza<br>withdrawal plan."
-          ],
-          [
-           "Another United Airlines union<br>is seeking to oust senior<br>management at the troubled<br>airline, saying its strategies<br>are reckless and incompetent."
-          ],
-          [
-           "Approaching Hurricane Ivan has<br>led to postponement of the<br>game Thursday night between<br>10th-ranked California and<br>Southern Mississippi in<br>Hattiesburg, Cal #39;s<br>athletic director said Monday."
-          ],
-          [
-           "Global oil prices boomed on<br>Wednesday, spreading fear that<br>energy prices will restrain<br>economic activity, as traders<br>worried about a heating oil<br>supply crunch in the American<br>winter."
-          ],
-          [
-           "Custom-designed imported<br>furniture was once an<br>exclusive realm. Now, it's the<br>economical alternative for<br>commercial developers and<br>designers needing everything<br>from seats to beds to desks<br>for their projects."
-          ],
-          [
-           "SAN DIEGO (Ticker) - The San<br>Diego Padres lacked speed and<br>an experienced bench last<br>season, things veteran<br>infielder Eric Young is<br>capable of providing."
-          ],
-          [
-           "This is an eye chart,<br>reprinted as a public service<br>to the New York Mets so they<br>may see from what they suffer:<br>myopia. Has ever a baseball<br>franchise been so shortsighted<br>for so long?"
-          ],
-          [
-           "Short-term interest rate<br>futures struggled on Thursday<br>after a government report<br>showing US core inflation for<br>August below market<br>expectations failed to alter<br>views on Federal Reserve rate<br>policy."
-          ],
-          [
-           "MacCentral - Microsoft's<br>Macintosh Business Unit on<br>Tuesday issued a patch for<br>Virtual PC 7 that fixes a<br>problem that occurred when<br>running the software on Power<br>Mac G5 computers with more<br>than 2GB of RAM installed.<br>Previously, Virtual PC 7 would<br>not run on those computers,<br>causing a fatal error that<br>crashed the application.<br>Microsoft also noted that<br>Virtual PC 7.0.1 also offers<br>stability improvements,<br>although it wasn't more<br>specific than that -- some<br>users have reported problems<br>with using USB devices and<br>other issues."
-          ],
-          [
-           "Samsung is now the world #39;s<br>second-largest mobile phone<br>maker, behind Nokia. According<br>to market watcher Gartner, the<br>South Korean company has<br>finally knocked Motorola into<br>third place."
-          ],
-          [
-           "Don't bother buying Star Wars:<br>Battlefront if you're looking<br>for a first-class shooter --<br>there are far better games out<br>there. But if you're a Star<br>Wars freak and need a fix,<br>this title will suffice. Lore<br>Sjberg reviews Battlefront."
-          ],
-          [
-           "While the American forces are<br>preparing to launch a large-<br>scale attack against Falluja<br>and al-Ramadi, one of the<br>chieftains of Falluja said<br>that contacts are still<br>continuous yesterday between<br>members representing the city<br>#39;s delegation and the<br>interim"
-          ],
-          [
-           "UN Security Council<br>ambassadors were still<br>quibbling over how best to<br>pressure Sudan and rebels to<br>end two different wars in the<br>country even as they left for<br>Kenya on Tuesday for a meeting<br>on the crisis."
-          ],
-          [
-           "HENDALA, Sri Lanka -- Day<br>after day, locked in a cement<br>room somewhere in Iraq, the<br>hooded men beat him. They told<br>him he would be beheaded.<br>''Ameriqi! quot; they shouted,<br>even though he comes from this<br>poor Sri Lankan fishing<br>village."
-          ],
-          [
-           "THE kidnappers of British aid<br>worker Margaret Hassan last<br>night threatened to turn her<br>over to the group which<br>beheaded Ken Bigley if the<br>British Government refuses to<br>pull its troops out of Iraq."
-          ],
-          [
-           " TOKYO (Reuters) - Tokyo<br>stocks climbed to a two week<br>high  on Friday after Tokyo<br>Electron Ltd. and other chip-<br>related  stocks were boosted<br>by a bullish revenue outlook<br>from industry  leader Intel<br>Corp."
-          ],
-          [
-           "More than by brain size or<br>tool-making ability, the human<br>species was set apart from its<br>ancestors by the ability to<br>jog mile after lung-stabbing<br>mile with greater endurance<br>than any other primate,<br>according to research<br>published today in the journal"
-          ],
-          [
-           " LONDON (Reuters) - A medical<br>product used to treat both<br>male hair loss and prostate<br>problems has been added to the<br>list  of banned drugs for<br>athletes."
-          ],
-          [
-           "AP - Curtis Martin and Jerome<br>Bettis have the opportunity to<br>go over 13,000 career yards<br>rushing in the same game when<br>Bettis and the Pittsburgh<br>Steelers play Martin and the<br>New York Jets in a big AFC<br>matchup Sunday."
-          ],
-          [
-           "&lt;p&gt;&lt;/p&gt;&lt;p&gt;<br>BOGOTA, Colombia (Reuters) -<br>Ten Colombian police<br>officerswere killed on Tuesday<br>in an ambush by the National<br>LiberationArmy, or ELN, in the<br>worst attack by the Marxist<br>group inyears, authorities<br>told Reuters.&lt;/p&gt;"
-          ],
-          [
-           "Woodland Hills-based Brilliant<br>Digital Entertainment and its<br>subsidiary Altnet announced<br>yesterday that they have filed<br>a patent infringement suit<br>against the Recording Industry<br>Association of America (RIAA)."
-          ],
-          [
-           "AFP - US President George W.<br>Bush called his Philippines<br>counterpart Gloria Arroyo and<br>said their countries should<br>keep strong ties, a spokesman<br>said after a spat over<br>Arroyo's handling of an Iraq<br>kidnapping."
-          ],
-          [
-           "A scathing judgment from the<br>UK #39;s highest court<br>condemning the UK government<br>#39;s indefinite detention of<br>foreign terror suspects as a<br>threat to the life of the<br>nation, left anti-terrorist<br>laws in the UK in tatters on<br>Thursday."
-          ],
-          [
-           "Sony Ericsson and Cingular<br>provide Z500a phones and<br>service for military families<br>to stay connected on today<br>#39;s  quot;Dr. Phil Show<br>quot;."
-          ],
-          [
-           "Reuters - Australia's<br>conservative Prime<br>Minister\\John Howard, handed<br>the most powerful mandate in a<br>generation,\\got down to work<br>on Monday with reform of<br>telecommunications,\\labor and<br>media laws high on his agenda."
-          ],
-          [
-           " TOKYO (Reuters) - Typhoon<br>Megi killed one person as it<br>slammed ashore in northern<br>Japan on Friday, bringing the<br>death  toll to at least 13 and<br>cutting power to thousands of<br>homes  before heading out into<br>the Pacific."
-          ],
-          [
-           "Cairo: Egyptian President<br>Hosni Mubarak held telephone<br>talks with Palestinian leader<br>Yasser Arafat about Israel<br>#39;s plan to pull troops and<br>the 8,000 Jewish settlers out<br>of the Gaza Strip next year,<br>the Egyptian news agency Mena<br>said."
-          ],
-          [
-           " NEW YORK (Reuters) - Adobe<br>Systems Inc. &lt;A HREF=\"http:<br>//www.investor.reuters.com/Ful<br>lQuote.aspx?ticker=ADBE.O targ<br>et=/stocks/quickinfo/fullquote<br>\"&gt;ADBE.O&lt;/A&gt; on<br>Monday  reported a sharp rise<br>in quarterly profit, driven by<br>robust  demand for its<br>Photoshop and document-sharing<br>software."
-          ],
-          [
-           "Dow Jones  amp; Co., publisher<br>of The Wall Street Journal,<br>has agreed to buy online<br>financial news provider<br>MarketWatch Inc. for about<br>\\$463 million in a bid to<br>boost its revenue from the<br>fast-growing Internet<br>advertising market."
-          ],
-          [
-           "The first American military<br>intelligence soldier to be<br>court-martialed over the Abu<br>Ghraib abuse scandal was<br>sentenced Saturday to eight<br>months in jail, a reduction in<br>rank and a bad-conduct<br>discharge."
-          ],
-          [
-           " TOKYO (Reuters) - Japan will<br>seek an explanation at weekend<br>talks with North Korea on<br>activity indicating Pyongyang<br>may be  preparing a missile<br>test, although Tokyo does not<br>think a  launch is imminent,<br>Japan's top government<br>spokesman said."
-          ],
-          [
-           "Michigan Stadium was mostly<br>filled with empty seats. The<br>only cheers were coming from<br>near one end zone -he Iowa<br>section. By Carlos Osorio, AP."
-          ],
-          [
-           "The International Rugby Board<br>today confirmed that three<br>countries have expressed an<br>interest in hosting the 2011<br>World Cup. New Zealand, South<br>Africa and Japan are leading<br>the race to host rugby union<br>#39;s global spectacular in<br>seven years #39; time."
-          ],
-          [
-           "Officials at EarthLink #39;s<br>(Quote, Chart) R amp;D<br>facility have quietly released<br>a proof-of-concept file-<br>sharing application based on<br>the Session Initiated Protocol<br>(define)."
-          ],
-          [
-           "Low-fare airline ATA has<br>announced plans to lay off<br>hundreds of employees and to<br>drop most of its flights out<br>of Midway Airport in Chicago."
-          ],
-          [
-           " BEIJING (Reuters) - Iran will<br>never be prepared to<br>dismantle its nuclear program<br>entirely but remains committed<br>to  the non-proliferation<br>treaty (NPT), its chief<br>delegate to the  International<br>Atomic Energy Agency said on<br>Wednesday."
-          ],
-          [
-           " WASHINGTON (Reuters) -<br>Germany's Bayer AG &lt;A HREF=<br>\"http://www.investor.reuters.c<br>om/FullQuote.aspx?ticker=BAYG.<br>DE target=/stocks/quickinfo/fu<br>llquote\"&gt;BAYG.DE&lt;/A&gt;<br>has  agreed to plead guilty<br>and pay a \\$4.7 million fine<br>for taking  part in a<br>conspiracy to fix the prices<br>of synthetic rubber, the  U.S.<br>Justice Department said on<br>Wednesday."
-          ],
-          [
-           "MIAMI (Ticker) -- In its first<br>season in the Atlantic Coast<br>Conference, No. 11 Virginia<br>Tech is headed to the BCS.<br>Bryan Randall threw two<br>touchdown passes and the<br>Virginia Tech defense came up<br>big all day as the Hokies<br>knocked off No."
-          ],
-          [
-           "(CP) - Somehow, in the span of<br>half an hour, the Detroit<br>Tigers #39; pitching went from<br>brutal to brilliant. Shortly<br>after being on the wrong end<br>of several records in a 26-5<br>thrashing from to the Kansas<br>City"
-          ],
-          [
-           "&lt;p&gt;&lt;/p&gt;&lt;p&gt;<br>SANTIAGO, Chile (Reuters) -<br>President Bush on<br>Saturdayreached into a throng<br>of squabbling bodyguards and<br>pulled aSecret Service agent<br>away from Chilean security<br>officers afterthey stopped the<br>U.S. agent from accompanying<br>the president ata<br>dinner.&lt;/p&gt;"
-          ],
-          [
-           " quot;It #39;s your mail,<br>quot; the Google Web site<br>said.  quot;You should be able<br>to choose how and where you<br>read it. You can even switch<br>to other e-mail services<br>without having to worry about<br>losing access to your<br>messages."
-          ],
-          [
-           "The US oil giant got a good<br>price, Russia #39;s No. 1 oil<br>company acquired a savvy<br>partner, and Putin polished<br>Russia #39;s image."
-          ],
-          [
-           "With the Huskies reeling at<br>0-4 - the only member of a<br>Bowl Championship Series<br>conference left without a win<br>-an Jose State suddenly looms<br>as the only team left on the<br>schedule that UW will be<br>favored to beat."
-          ],
-          [
-           "Darryl Sutter, who coached the<br>Calgary Flames to the Stanley<br>Cup finals last season, had an<br>emergency appendectomy and was<br>recovering Friday."
-          ],
-          [
-           "The maker of Hostess Twinkies,<br>a cake bar and a piece of<br>Americana children have<br>snacked on for almost 75<br>years, yesterday raised<br>concerns about the company<br>#39;s ability to stay in<br>business."
-          ],
-          [
-           "Iranian deputy foreign<br>minister Gholamali Khoshrou<br>denied Tuesday that his<br>country #39;s top leaders were<br>at odds over whether nuclear<br>weapons were un-Islamic,<br>insisting that it will<br>quot;never quot; make the<br>bomb."
-          ],
-          [
-           " quot;Israel mercenaries<br>assisting the Ivory Coast army<br>operated unmanned aircraft<br>that aided aerial bombings of<br>a French base in the country,<br>quot; claimed"
-          ],
-          [
-           "Athens, Greece (Sports<br>Network) - For the second<br>straight day a Briton captured<br>gold at the Olympic Velodrome.<br>Bradley Wiggins won the men<br>#39;s individual 4,000-meter<br>pursuit Saturday, one day<br>after teammate"
-          ],
-          [
-           "AFP - SAP, the world's leading<br>maker of business software,<br>may need an extra year to<br>achieve its medium-term profit<br>target of an operating margin<br>of 30 percent, its chief<br>financial officer said."
-          ],
-          [
-           "Tenet Healthcare Corp., the<br>second- largest US hospital<br>chain, said fourth-quarter<br>charges may exceed \\$1 billion<br>and its loss from continuing<br>operations will widen from the<br>third quarter #39;s because of<br>increased bad debt."
-          ],
-          [
-           "AFP - The airline Swiss said<br>it had managed to cut its<br>first-half net loss by about<br>90 percent but warned that<br>spiralling fuel costs were<br>hampering a turnaround despite<br>increasing passenger travel."
-          ],
-          [
-           "Vulnerable youngsters expelled<br>from schools in England are<br>being let down by the system,<br>say inspectors."
-          ],
-          [
-           "Yasser Arafat was undergoing<br>tests for possible leukaemia<br>at a military hospital outside<br>Paris last night after being<br>airlifted from his Ramallah<br>headquarters to an anxious<br>farewell from Palestinian<br>well-wishers."
-          ],
-          [
-           "The world #39;s only captive<br>great white shark made history<br>this week when she ate several<br>salmon fillets, marking the<br>first time that a white shark<br>in captivity"
-          ],
-          [
-           "Nepal #39;s main opposition<br>party urged the government on<br>Monday to call a unilateral<br>ceasefire with Maoist rebels<br>and seek peace talks to end a<br>road blockade that has cut the<br>capital off from the rest of<br>the country."
-          ],
-          [
-           "Communications aggregator<br>iPass said Monday that it is<br>adding in-flight Internet<br>access to its access<br>portfolio. Specifically, iPass<br>said it will add access<br>offered by Connexion by Boeing<br>to its list of access<br>providers."
-          ],
-          [
-           "The London-based brokerage<br>Collins Stewart Tullett placed<br>55m of new shares yesterday to<br>help fund the 69.5m purchase<br>of the money and futures<br>broker Prebon."
-          ],
-          [
-           "BOSTON - The New York Yankees<br>and Boston were tied 4-4 after<br>13 innings Monday night with<br>the Red Sox trying to stay<br>alive in the AL championship<br>series.    Boston tied the<br>game with two runs in the<br>eighth inning on David Ortiz's<br>solo homer, a walk to Kevin<br>Millar, a single by Trot Nixon<br>and a sacrifice fly by Jason<br>Varitek..."
-          ],
-          [
-           "A Steffen Iversen penalty was<br>sufficient to secure the<br>points for Norway at Hampden<br>on Saturday. James McFadden<br>was ordered off after 53<br>minutes for deliberate<br>handball as he punched Claus<br>Lundekvam #39;s header off the<br>line."
-          ],
-          [
-           "Reuters - The country may be<br>more\\or less evenly divided<br>along partisan lines when it<br>comes to\\the presidential<br>race, but the Republican Party<br>prevailed in\\the Nielsen<br>polling of this summer's<br>nominating conventions."
-          ],
-          [
-           " PARIS (Reuters) - European<br>equities flirted with 5-month<br>peaks as hopes that economic<br>growth was sustainable and a<br>small  dip in oil prices<br>helped lure investors back to<br>recent  underperformers such<br>as technology and insurance<br>stocks."
-          ],
-          [
-           " NEW YORK (Reuters) - U.S.<br>stocks looked to open higher<br>on  Friday, as the fourth<br>quarter begins on Wall Street<br>with oil  prices holding below<br>\\$50 a barrel."
-          ],
-          [
-           "LONDON : World oil prices<br>stormed above 54 US dollars<br>for the first time Tuesday as<br>strikes in Nigeria and Norway<br>raised worries about possible<br>supply shortages during the<br>northern hemisphere winter."
-          ],
-          [
-           "AP - Ailing St. Louis reliever<br>Steve Kline was unavailable<br>for Game 3 of the NL<br>championship series on<br>Saturday, but Cardinals<br>manager Tony LaRussa hopes the<br>left-hander will pitch later<br>this postseason."
-          ],
-          [
-           "Company launches free test<br>version of service that<br>fosters popular Internet<br>activity."
-          ],
-          [
-           "Outdated computer systems are<br>hampering the work of<br>inspectors, says the UN<br>nuclear agency."
-          ],
-          [
-           " In Vice President Cheney's<br>final push before next<br>Tuesday's election, talk of<br>nuclear annihilation and<br>escalating war rhetoric have<br>blended with balloon drops,<br>confetti cannons and the other<br>trappings of modern<br>campaigning with such ferocity<br>that it is sometimes tough to<br>tell just who the enemy is."
-          ],
-          [
-           "MADRID: A stunning first-half<br>free kick from David Beckham<br>gave Real Madrid a 1-0 win<br>over newly promoted Numancia<br>at the Bernabeu last night."
-          ],
-          [
-           "MacCentral - You Software Inc.<br>announced on Tuesday the<br>availability of You Control:<br>iTunes, a free\\download that<br>places iTunes controls in the<br>Mac OS X menu bar.<br>Without\\leaving the current<br>application, you can pause,<br>play, rewind or skip songs,\\as<br>well as control iTunes' volume<br>and even browse your entire<br>music library\\by album, artist<br>or genre. Each time a new song<br>plays, You Control:<br>iTunes\\also pops up a window<br>that displays the artist and<br>song name and the<br>album\\artwork, if it's in the<br>library. System requirements<br>call for Mac OS X\\v10.2.6 and<br>10MB free hard drive space.<br>..."
-          ],
-          [
-           "Favourites Argentina beat<br>Italy 3-0 this morning to<br>claim their place in the final<br>of the men #39;s Olympic<br>football tournament. Goals by<br>leading goalscorer Carlos<br>Tevez, with a smart volley<br>after 16 minutes, and"
-          ],
-          [
-           "Shortly after Steve Spurrier<br>arrived at Florida in 1990,<br>the Gators were placed on NCAA<br>probation for a year stemming<br>from a child-support payment<br>former coach Galen Hall made<br>for a player."
-          ],
-          [
-           "The US Secret Service Thursday<br>announced arrests in eight<br>states and six foreign<br>countries of 28 suspected<br>cybercrime gangsters on<br>charges of identity theft,<br>computer fraud, credit-card<br>fraud, and conspiracy."
-          ],
-          [
-           "US stocks were little changed<br>on Thursday as an upbeat<br>earnings report from chip<br>maker National Semiconductor<br>Corp. (NSM) sparked some<br>buying, but higher oil prices<br>limited gains."
-          ]
-         ],
-         "hovertemplate": "label=Other<br>Component 0=%{x}<br>Component 1=%{y}<br>string=%{customdata[0]}<extra></extra>",
-         "legendgroup": "Other",
-         "marker": {
-          "color": "#636efa",
-          "size": 5,
-          "symbol": "circle"
-         },
-         "mode": "markers",
-         "name": "Other",
-         "showlegend": true,
-         "type": "scattergl",
-         "x": [
-          9.787297,
-          16.660423,
-          -47.977715,
-          -51.65402,
-          17.206654,
-          -23.452963,
-          28.167477,
-          14.671119,
-          -37.6373,
-          21.907679,
-          49.959976,
-          -36.581165,
-          -19.791555,
-          11.003371,
-          12.786125,
-          54.445854,
-          -20.928211,
-          28.192938,
-          27.511831,
-          30.389194,
-          31.907536,
-          27.685726,
-          -0.48236108,
-          -53.210773,
-          24.631432,
-          -39.491558,
-          19.87161,
-          -22.567608,
-          13.9476,
-          42.217842,
-          23.463217,
-          -19.96729,
-          -49.124306,
-          15.450646,
-          -7.3474283,
-          -28.231606,
-          22.48473,
-          47.958393,
-          -22.541676,
-          -52.717,
-          47.226242,
-          51.068775,
-          50.124294,
-          -19.31264,
-          -28.148346,
-          44.945942,
-          -42.825386,
-          -47.410145,
-          -29.877638,
-          7.788443,
-          46.406788,
-          48.53827,
-          -5.8827424,
-          -35.965088,
-          31.687206,
-          26.455547,
-          -10.623615,
-          -40.76841,
-          -4.8219795,
-          -18.956379,
-          40.537342,
-          3.2403526,
-          -5.107883,
-          63.37852,
-          56.515934,
-          45.10189,
-          -42.131943,
-          -8.153443,
-          48.401085,
-          0.8158772,
-          -29.768171,
-          7.324227,
-          36.802402,
-          -32.52056,
-          24.88585,
-          -39.654697,
-          12.912951,
-          -18.497515,
-          54.15107,
-          -31.347673,
-          -48.55776,
-          38.79396,
-          -53.367012,
-          -27.265852,
-          -6.4607854,
-          13.661437,
-          30.355759,
-          58.71805,
-          -25.208595,
-          3.1252713,
-          -41.868053,
-          38.756367,
-          59.531124,
-          47.890396,
-          -17.98721,
-          36.084118,
-          -13.634508,
-          39.42093,
-          18.820461,
-          -30.356327,
-          -49.554066,
-          -29.197483,
-          55.4732,
-          -43.75864,
-          60.896523,
-          56.4989,
-          -33.627903,
-          48.16754,
-          -28.459074,
-          13.827141,
-          -11.594272,
-          47.840588,
-          -33.894855,
-          -5.484721,
-          1.4320391,
-          60.467564,
-          -13.830222,
-          -26.233013,
-          31.210938,
-          -36.616104,
-          12.191131,
-          49.345882,
-          -53.822376,
-          -44.628685,
-          -2.3659778,
-          -19.861258,
-          58.657722,
-          -44.997097,
-          -37.276833,
-          25.89013,
-          -10.061741,
-          -32.693943,
-          -1.0874362,
-          -19.60824,
-          -38.45829,
-          -15.162608,
-          16.015558,
-          -38.214413,
-          -18.354656,
-          20.328302,
-          37.406326,
-          45.95487,
-          27.38124,
-          46.569256,
-          15.950565,
-          11.055151,
-          14.368044,
-          40.19783,
-          -38.585472,
-          -46.83205,
-          15.940281,
-          48.277,
-          -38.63723,
-          48.961315,
-          -7.0522246,
-          28.371725,
-          -23.330465,
-          46.0185,
-          -44.325756,
-          -35.855865,
-          -18.20647,
-          -7.6315646,
-          59.281708,
-          -53.65577,
-          -33.435104,
-          17.925577,
-          -48.104885,
-          15.851762,
-          58.10119,
-          41.329796,
-          60.929493,
-          -56.60167,
-          49.080627,
-          1.6593695,
-          -1.9387143,
-          -40.07204,
-          -32.65333,
-          -11.705121,
-          18.05479,
-          52.442997,
-          25.193996,
-          28.471008,
-          -23.656853,
-          13.627039,
-          10.705277,
-          -8.970166,
-          18.345266,
-          49.169395,
-          -44.30361,
-          -36.139923,
-          31.360231,
-          50.538635,
-          50.209198,
-          -48.951195,
-          29.55601,
-          -21.136202,
-          -21.265085,
-          -41.619125,
-          -34.370987,
-          -33.846046,
-          -16.407732,
-          4.6381655,
-          16.084637,
-          38.928047,
-          -41.55955,
-          -33.503048,
-          57.835648,
-          25.167212,
-          -31.4103,
-          51.287056,
-          -41.654114,
-          -43.58004,
-          -40.584736,
-          54.942364,
-          12.821454,
-          24.011929,
-          31.13371,
-          -20.22472,
-          17.79019,
-          -24.227406,
-          15.120078,
-          -41.80841,
-          -43.47724,
-          -39.450546,
-          19.99747,
-          15.529904,
-          45.565693,
-          -28.54648,
-          56.076347,
-          19.791918,
-          -55.67927,
-          -41.094902,
-          -27.870377,
-          -41.256504,
-          -11.352515,
-          -46.313496,
-          -46.637367,
-          -18.041924,
-          -18.929783,
-          -38.786,
-          -18.44551,
-          -45.789707,
-          -9.525661,
-          12.873272,
-          47.481384,
-          16.33122,
-          22.366423,
-          -35.619858,
-          54.362545,
-          2.4414933,
-          25.421625,
-          53.08307,
-          -29.50228,
-          -34.186226,
-          -37.5602,
-          -36.813686,
-          20.893494,
-          19.51864,
-          -5.632542,
-          11.30494,
-          2.9794881,
-          -45.209023,
-          -31.500145,
-          12.285144,
-          55.395947,
-          32.21779,
-          3.3651476,
-          -51.390118,
-          36.722115,
-          58.705086,
-          30.618706,
-          -16.802534,
-          2.6427522,
-          -42.6501,
-          18.079544,
-          -6.2927465,
-          -46.257027,
-          -23.344019,
-          -44.347576,
-          23.218187,
-          48.1655,
-          -8.361857,
-          2.7036908,
-          6.7110343,
-          -1.3755705,
-          -17.157036,
-          39.944633,
-          51.72719,
-          -18.672327,
-          57.632236,
-          18.106745,
-          10.5324745,
-          40.575005,
-          -23.71305,
-          -55.86017,
-          18.966919,
-          31.810251,
-          -34.78124,
-          49.25058,
-          52.102192,
-          17.243034,
-          45.8365,
-          4.507162,
-          41.15665,
-          21.953882,
-          45.06367,
-          50.470036,
-          12.895756,
-          13.899155,
-          -18.132378,
-          -35.732872,
-          -8.266737,
-          55.406406,
-          -34.572502,
-          -5.21674,
-          34.643066,
-          9.645002,
-          -39.5287,
-          -21.22969,
-          8.84193,
-          -6.6976542,
-          -26.256298,
-          -42.24456,
-          44.60481,
-          -34.82042,
-          -45.549995,
-          -48.911743,
-          7.766448,
-          40.65631,
-          -7.7231383,
-          -46.522186,
-          49.13915,
-          10.753302,
-          -36.61156,
-          60.835865,
-          29.961258,
-          -37.112934,
-          -10.257471,
-          31.980536,
-          27.892096,
-          45.230713,
-          -16.951935,
-          29.803865,
-          -5.4085217,
-          25.779589,
-          -19.065458,
-          -22.693665,
-          56.531708,
-          -44.68482,
-          23.273722,
-          2.6259706,
-          37.571487,
-          -29.42919,
-          -30.674974,
-          65.59185,
-          -16.563955,
-          38.63354,
-          3.1031818,
-          -43.12336,
-          -57.728573,
-          13.034079,
-          46.481388,
-          -48.13403,
-          -27.2014,
-          -10.165841,
-          46.68557,
-          49.08016,
-          -15.232134,
-          -53.29632,
-          -7.2577205,
-          14.032702,
-          -31.430248,
-          23.928396,
-          12.880273,
-          -27.285727,
-          -42.180077,
-          -15.3164215,
-          -6.620774,
-          -47.9015,
-          11.016033,
-          -37.857563,
-          45.88543,
-          35.342182,
-          -30.674488,
-          -23.828165,
-          -37.931133,
-          -31.504562,
-          -47.091602,
-          17.860275,
-          -6.3850884,
-          -16.122215,
-          -3.119768,
-          47.523766,
-          -28.833778,
-          12.732019,
-          -7.503495,
-          47.32294,
-          -26.526276,
-          16.701687,
-          34.786186,
-          -42.6552,
-          14.009928,
-          18.774673,
-          -37.64758,
-          43.796356,
-          -14.742917,
-          49.697426,
-          -19.793585,
-          -53.133896,
-          37.340225,
-          -22.841238,
-          2.979671,
-          -51.962658,
-          54.74676,
-          41.444393,
-          -15.730567,
-          30.604837,
-          -44.145668,
-          8.863162,
-          60.995483,
-          -44.98284,
-          9.040379,
-          24.042429,
-          25.076736,
-          30.519775,
-          -47.514927,
-          -40.143944,
-          -29.305222,
-          12.896586,
-          -30.795404,
-          25.85091,
-          19.948092,
-          20.974108,
-          -19.33182,
-          66.21081,
-          -49.376717,
-          35.24333,
-          18.678154,
-          -43.173016,
-          57.111607,
-          48.019886,
-          -4.780475,
-          49.229675,
-          52.86177,
-          -32.70729,
-          -13.887877,
-          19.741331,
-          52.435543,
-          -34.81799,
-          -22.524883,
-          -12.82885,
-          -46.24378,
-          -29.501112,
-          -5.0456986,
-          31.022472,
-          -36.60279,
-          -47.141144,
-          -11.186273,
-          -36.80437,
-          18.250782,
-          -8.335074,
-          -34.644447,
-          -11.501718,
-          4.836007,
-          -9.537627,
-          24.104692,
-          51.07264,
-          61.549442,
-          1.9518297,
-          -42.394825,
-          42.282997,
-          -11.57566,
-          15.377659,
-          -29.24355,
-          -47.198746,
-          33.828228,
-          14.915583,
-          56.65421,
-          -53.3065,
-          19.173527,
-          43.26525,
-          62.865932,
-          -37.63518,
-          -42.896793,
-          -15.898649,
-          1.5646982,
-          -46.367523,
-          -51.349506,
-          -47.68558,
-          -10.65396,
-          -49.790844,
-          39.05222,
-          -27.663815,
-          -7.4475813,
-          41.410755,
-          38.42368,
-          -45.67376,
-          -20.76551,
-          -29.445877,
-          -23.031208,
-          -37.19868,
-          4.37751,
-          -31.336668,
-          8.212411,
-          -45.453674,
-          5.134725,
-          14.638772,
-          -6.1798644,
-          1.3949758,
-          15.7138605,
-          -50.869877,
-          56.985188,
-          -44.030884,
-          -44.016224,
-          57.739395,
-          -24.544922,
-          17.170551,
-          50.66318,
-          48.850945,
-          -50.093754,
-          -24.092436,
-          17.347712,
-          -19.335144,
-          36.300686,
-          39.32889,
-          -6.3253975,
-          -25.326218,
-          31.211935,
-          -6.78382,
-          -50.14104,
-          -49.846096,
-          39.84183,
-          24.028929,
-          40.939545,
-          48.37629,
-          25.452175,
-          -37.92231,
-          -20.485857,
-          51.559708,
-          -52.251915,
-          -33.647213,
-          -9.488163,
-          5.1724906,
-          46.41191,
-          -14.337521,
-          52.77315,
-          27.314432,
-          -29.272839,
-          -42.127716,
-          -45.652252,
-          -43.886417,
-          12.80685,
-          -32.545635,
-          4.3835373,
-          -26.112938,
-          -39.891853,
-          55.190277,
-          -24.499039,
-          -43.219402,
-          -9.765382,
-          12.646676,
-          17.87465,
-          38.03023,
-          -42.07617,
-          9.909096,
-          59.759964,
-          -46.420776,
-          22.181377,
-          48.908253,
-          29.485273,
-          -1.1384851,
-          -36.030876,
-          49.40172,
-          24.128727,
-          49.71215,
-          -16.348925,
-          -31.277052,
-          40.702366,
-          -16.921326,
-          57.916637,
-          16.221085,
-          -9.602789,
-          -13.009839,
-          51.67792,
-          30.202019,
-          -35.251965,
-          57.654526,
-          34.585587,
-          -9.096614,
-          25.097984,
-          2.5471764,
-          61.278408,
-          -16.914656,
-          8.574884,
-          23.422081,
-          39.786133,
-          -44.31037,
-          -28.402678,
-          21.295237,
-          -18.734745,
-          -28.94602,
-          25.800558,
-          -42.23089,
-          33.389534,
-          -23.825924,
-          -37.813118,
-          -45.167847,
-          5.8968763,
-          -22.952112,
-          24.184378,
-          -45.96224,
-          54.46313,
-          -36.155823,
-          -37.039566,
-          -54.980534,
-          -33.989525,
-          -15.194927,
-          46.068615,
-          -28.049438,
-          -30.086702,
-          48.63991,
-          35.595135,
-          20.787077,
-          29.313784,
-          -1.0110728,
-          8.255305,
-          50.553566,
-          -17.443365,
-          -12.567652,
-          -42.189774,
-          -40.062756,
-          -52.438923,
-          -24.236567,
-          -35.002357,
-          54.101334,
-          -54.033554,
-          -24.72687,
-          31.629358,
-          15.709119,
-          -25.166414,
-          -7.6725793,
-          51.79524,
-          -51.84964,
-          -27.801344,
-          -26.129557,
-          -52.71393,
-          10.710161,
-          -13.981046,
-          42.513103,
-          -6.9841313,
-          39.504147,
-          20.738512,
-          47.29459,
-          -10.861444,
-          -48.87469,
-          -50.175316,
-          -35.826897,
-          -31.892145,
-          51.208797,
-          61.06654,
-          23.318872,
-          -35.0245,
-          -3.1801224,
-          59.059566,
-          41.391323,
-          56.262905,
-          -31.190088,
-          -35.842033,
-          -44.238426,
-          -46.75248,
-          46.51155,
-          -24.869604,
-          -48.693672,
-          27.989025,
-          57.75085,
-          35.379726,
-          34.078384,
-          40.129883,
-          51.36741,
-          44.124233,
-          38.459312,
-          -19.088882,
-          42.09723,
-          -32.190376,
-          20.918581,
-          -25.71062,
-          -44.228165,
-          -22.265373,
-          54.85633,
-          -31.057253,
-          11.446291,
-          48.645084,
-          33.95719,
-          10.624376,
-          34.440483,
-          13.654009,
-          -52.42964,
-          23.009165,
-          0.9160498,
-          -33.267147,
-          1.6248351,
-          -36.05716,
-          -7.2311153,
-          45.367435,
-          -12.550289,
-          15.268804,
-          57.216434,
-          20.570063,
-          16.519796,
-          -20.162544,
-          -39.967007,
-          -7.045784,
-          -13.788036,
-          -6.436385,
-          -21.87981,
-          49.150986,
-          -31.409056,
-          40.020714,
-          1.7450867,
-          -37.63322,
-          36.398586,
-          -31.830273,
-          -16.392036,
-          19.578056,
-          -30.145031,
-          9.273592,
-          -22.6749,
-          49.763367,
-          44.87128,
-          -31.353453,
-          -45.900715,
-          -54.722725,
-          -9.91315,
-          -33.41616,
-          -29.682985,
-          27.913883,
-          5.769484,
-          -21.902475,
-          -28.206575,
-          34.063007,
-          -38.86974,
-          -19.676825,
-          -27.176733,
-          -49.362682,
-          -44.44146,
-          5.3805246,
-          2.333401,
-          14.209792,
-          29.130596,
-          40.65309,
-          7.33986,
-          33.885105,
-          -38.69257,
-          42.74865,
-          -51.24567,
-          46.39128,
-          63.1983,
-          -1.2716205,
-          2.7853732,
-          26.978062,
-          18.276062,
-          20.191584,
-          25.01299,
-          10.248553,
-          4.6009235,
-          9.839586,
-          11.750173,
-          7.9382405,
-          -10.997008,
-          21.737896,
-          49.79338,
-          -29.136082,
-          -29.750324,
-          54.410885,
-          -35.14978,
-          63.605362,
-          -51.056225,
-          39.934895,
-          17.519335,
-          17.778656,
-          15.492881,
-          7.7321296,
-          8.952756,
-          -19.130821,
-          40.63617,
-          -37.452244,
-          20.371246,
-          30.811249,
-          -9.127035,
-          -5.5860677,
-          1.1558152,
-          47.465935,
-          -24.740665,
-          -47.064148,
-          -54.69983,
-          47.272655,
-          -27.990711,
-          63.177612,
-          -7.06102,
-          -43.44754,
-          24.795843,
-          -4.7836714,
-          41.66488,
-          1.8769449,
-          -24.956768,
-          51.543095,
-          12.356418,
-          -53.22971,
-          38.820065,
-          4.2263513,
-          -7.9959974,
-          -23.705156,
-          -6.0662427,
-          -37.926384,
-          -41.1264,
-          -27.350927,
-          31.053217,
-          -9.149289,
-          -37.36757,
-          -16.533398,
-          40.088383,
-          7.0387945,
-          -22.092422,
-          -30.736622,
-          -44.570576,
-          60.45724,
-          52.433907,
-          9.723743,
-          -15.802876,
-          -49.361073,
-          -25.432766,
-          38.667847,
-          -28.812906,
-          -22.672857,
-          -35.77931,
-          -16.137821,
-          27.65755,
-          57.766346,
-          42.41823,
-          26.112234,
-          -39.176956,
-          16.072603,
-          -48.2029,
-          19.677572,
-          17.410772,
-          -6.2585354,
-          7.9719267,
-          -53.251343,
-          12.662249,
-          -9.297528,
-          -36.831997,
-          -44.267094,
-          -42.660313,
-          18.940567,
-          20.549877,
-          -19.017382,
-          33.992294,
-          -34.603184,
-          56.381645,
-          -15.977553,
-          53.579098,
-          7.4309235,
-          -35.853523,
-          -15.548051,
-          -44.87483,
-          -51.507732,
-          19.506048,
-          -52.502518,
-          59.620773,
-          8.936648,
-          48.37667,
-          -32.07786,
-          14.902041,
-          35.445507,
-          46.157833,
-          49.838924,
-          -48.87661,
-          -45.17925,
-          29.182852,
-          -22.362936,
-          38.542347,
-          -10.216267,
-          22.10423,
-          -31.37848,
-          -2.6893454,
-          51.905163,
-          21.657618,
-          -5.704888,
-          -20.502497,
-          30.625587,
-          -24.823088,
-          13.691204,
-          28.035511,
-          23.045893,
-          -50.661304,
-          43.841885,
-          -50.370255,
-          -47.05539,
-          56.74711,
-          30.591192,
-          51.738125,
-          -11.594388,
-          17.440117,
-          51.774147,
-          -23.063238,
-          -9.929121,
-          43.796253,
-          -38.724506,
-          47.406204,
-          7.212067,
-          -41.108536,
-          -21.799944,
-          14.5572,
-          -36.380856,
-          -22.186844,
-          -33.03146,
-          -47.564026,
-          -6.8207917,
-          -0.203547,
-          26.660809,
-          -45.418346,
-          -32.97913,
-          -29.1495,
-          41.08887,
-          2.4019308,
-          -34.859055,
-          14.605348,
-          5.080946,
-          62.321815,
-          30.915781,
-          49.839912,
-          -13.132145,
-          -12.614871,
-          48.11404,
-          -33.125538,
-          37.93922,
-          -30.265446,
-          4.331932,
-          -24.302145,
-          -38.971054,
-          -6.6933794,
-          32.7655,
-          58.07306,
-          50.09836,
-          23.97021,
-          -44.289158,
-          -16.34018,
-          -42.824986,
-          -37.11219,
-          54.922394,
-          -38.334126,
-          22.242004,
-          -12.324585,
-          -28.60194,
-          -35.730442,
-          52.352432,
-          14.265632,
-          -36.50344,
-          -27.018137,
-          -30.541101,
-          53.529724,
-          -7.2380333,
-          -40.239014,
-          7.0784307,
-          20.74278,
-          2.5284033,
-          25.636118,
-          4.454403,
-          -49.050774,
-          -23.530384,
-          -23.313187,
-          38.338932,
-          9.910433,
-          -22.21815,
-          -25.737848,
-          51.55675,
-          37.103165,
-          -17.621637,
-          -31.606474,
-          -46.921032,
-          -12.631271,
-          -34.711258,
-          14.978659,
-          -43.354763,
-          -22.281115,
-          45.54423,
-          -33.235416,
-          11.338411,
-          -43.594814,
-          53.86991,
-          -15.313636,
-          47.012283,
-          -21.579958,
-          -46.839928,
-          -45.437263,
-          60.093002,
-          11.213355,
-          32.56739,
-          -27.061964,
-          -20.385843,
-          15.526145,
-          -8.932405,
-          60.606064,
-          9.335806,
-          -38.67932,
-          -8.953644,
-          39.772743,
-          18.62211,
-          -6.674851,
-          -41.675705,
-          -6.503544,
-          23.033293,
-          -5.5465455,
-          -36.837105,
-          -4.2590623,
-          48.95457,
-          -42.01228,
-          10.529721,
-          13.965547,
-          -3.9804885,
-          44.68764,
-          48.906673,
-          47.63983,
-          21.258057,
-          62.788,
-          -6.2482433,
-          -48.024345,
-          -12.530503,
-          -39.613857,
-          10.181149,
-          -34.855972,
-          17.598188,
-          -46.561874,
-          -17.363302,
-          1.3672223,
-          32.536667,
-          10.24864,
-          5.8206697,
-          -45.638084,
-          -0.31910038,
-          -10.62197,
-          -21.206648,
-          38.030407,
-          -34.547794,
-          21.86292,
-          56.60054,
-          20.400032,
-          27.48848,
-          2.2426317,
-          5.0682087,
-          -18.876629,
-          27.914957,
-          -17.48441,
-          -20.422543,
-          16.509165,
-          -27.667318,
-          -48.115654,
-          40.073948,
-          60.232296,
-          9.352251,
-          14.155432,
-          56.806816,
-          2.808305,
-          -16.641712,
-          -19.632275,
-          -41.143227,
-          6.707939,
-          45.64992,
-          19.51436,
-          -41.17226,
-          39.266872,
-          -6.392582,
-          62.91453,
-          18.935217,
-          46.280994,
-          50.306213,
-          53.805332,
-          -13.137335,
-          50.443317,
-          53.03957,
-          44.309578,
-          -30.403149,
-          -33.03263,
-          -30.970875,
-          -14.373312,
-          8.379798,
-          54.42772,
-          2.4920332,
-          1.7612854,
-          34.023724,
-          -28.959257,
-          61.473892,
-          50.651646,
-          -42.69843,
-          -18.173891,
-          27.97626,
-          -11.489995,
-          59.39454,
-          -50.46992,
-          47.18665,
-          -22.095016,
-          -0.99369574,
-          -48.586517,
-          -28.31348,
-          2.79127,
-          -32.614243,
-          16.340908,
-          20.619595,
-          32.39917,
-          59.94177,
-          23.400663,
-          42.23158,
-          -40.497093,
-          14.445518,
-          -43.79571,
-          56.222717,
-          26.900372,
-          -34.05016,
-          59.36177,
-          -48.04673,
-          57.550297,
-          -10.504851,
-          -45.725693,
-          12.496445,
-          60.801098,
-          -49.58257,
-          -20.070473,
-          57.966537,
-          28.753572,
-          -35.82806,
-          55.964886,
-          -44.020023,
-          -23.90992,
-          45.870426,
-          21.319304,
-          -27.236769,
-          -37.01328,
-          -19.117485,
-          38.638237,
-          49.729176,
-          -39.115543,
-          17.625916,
-          11.094263,
-          7.11425,
-          -29.740028,
-          18.546873,
-          58.080826,
-          -34.482994,
-          37.20064,
-          9.897873,
-          -27.855904,
-          24.480858,
-          -52.830154,
-          58.289707,
-          -48.07056,
-          -19.067713,
-          -21.63138,
-          -40.71425,
-          -4.696033,
-          -4.852559,
-          -17.729515,
-          8.527567,
-          -29.865084,
-          25.88273,
-          -46.45139,
-          -9.0318775,
-          63.36231,
-          50.890648,
-          -8.188348,
-          16.88663,
-          13.06387,
-          -25.576069,
-          -26.325634,
-          -23.095638,
-          29.025854,
-          -40.87854,
-          45.88053,
-          -38.34742,
-          -13.60535,
-          3.984353,
-          -1.1919637,
-          -50.887096,
-          50.78542,
-          -34.409237,
-          -46.677288,
-          5.320594,
-          14.373686,
-          -45.882183,
-          -32.426746,
-          43.456127,
-          2.8495433,
-          28.731657,
-          -2.2277532,
-          50.339493,
-          61.357586,
-          11.930037,
-          -42.132465,
-          56.755314,
-          -18.868166,
-          -14.928126,
-          13.779188,
-          23.310764,
-          -42.33495,
-          19.120626,
-          18.960714,
-          25.783823,
-          17.941885,
-          55.462612,
-          10.820086,
-          58.314003,
-          -45.8806,
-          -21.790516,
-          53.49091,
-          -51.873066,
-          -8.934254,
-          -35.644184,
-          -43.46856,
-          -26.787775,
-          -12.61641,
-          11.278602,
-          -12.760466,
-          -35.958366,
-          -9.973649,
-          -5.3010283,
-          8.342169,
-          58.012913,
-          7.6059,
-          -7.4377956,
-          -46.84005,
-          49.449314,
-          37.930157,
-          12.515653,
-          -54.239532,
-          -39.886326,
-          -43.70516,
-          57.86416,
-          8.195707,
-          52.26376,
-          -40.78544,
-          -46.046387,
-          1.8771796,
-          -8.241421,
-          47.072803,
-          -12.890557,
-          -23.360226,
-          -23.913462,
-          -10.10402,
-          -33.456993,
-          48.17513,
-          -34.200912,
-          22.029692,
-          -34.14632,
-          -40.844006,
-          44.906193,
-          -29.91782,
-          4.4929285,
-          56.61765,
-          56.60834,
-          -17.537066,
-          -30.420895,
-          56.066643,
-          -19.92304,
-          -2.2965894,
-          56.162464,
-          -41.66086,
-          -57.68235,
-          3.6962993,
-          11.67213,
-          -19.05618,
-          5.52023,
-          -48.503033,
-          -18.99317,
-          53.77512,
-          -14.034199,
-          47.758217,
-          -29.327738,
-          -27.266224,
-          50.96032,
-          -49.10616,
-          -4.6537275,
-          58.05466,
-          -8.695738,
-          15.926025,
-          -35.493626,
-          -52.898724,
-          4.0713243,
-          -16.14875,
-          -40.76337,
-          -36.11573,
-          41.446438,
-          -3.7340183,
-          -15.154654,
-          58.41072,
-          11.970405,
-          -16.320389,
-          -19.673914,
-          11.040503,
-          -36.72977,
-          -9.829185,
-          35.8429,
-          47.047108,
-          -37.2606,
-          54.494556,
-          -52.1362,
-          13.273838,
-          7.288217,
-          47.79968,
-          -20.01322,
-          -18.065994,
-          8.75742,
-          -54.428818,
-          18.142248,
-          -9.159126,
-          29.14241,
-          -46.200623,
-          17.28087,
-          13.877883,
-          -13.831901,
-          -21.605253,
-          21.1013,
-          59.32574,
-          13.981468,
-          40.920834,
-          55.53207,
-          44.559975,
-          -10.860374,
-          10.2113,
-          28.748735,
-          10.333969,
-          -37.78618,
-          -45.533035,
-          53.77833,
-          -8.867661,
-          12.468114,
-          3.0369818,
-          32.079,
-          47.351242,
-          -55.4472,
-          5.742987,
-          24.300056,
-          -21.27348,
-          -8.906268,
-          -34.02309,
-          -0.9226989,
-          32.861256,
-          -5.918376,
-          -30.542126,
-          38.30059,
-          48.4094,
-          33.499294,
-          1.5139743,
-          -5.9578004,
-          22.857521,
-          -42.396126,
-          -16.095537,
-          29.347134,
-          4.3284388,
-          45.721344,
-          26.680521,
-          45.999187,
-          49.048878,
-          -21.678917,
-          -48.91647,
-          -11.771681,
-          -10.15981,
-          39.29256,
-          8.132189,
-          32.81585,
-          11.17274,
-          22.79567,
-          2.0400486,
-          19.547178,
-          -4.0862207,
-          -9.854177,
-          -23.889015,
-          26.376568,
-          -54.596252,
-          -22.090435,
-          32.12724,
-          -50.986782,
-          -34.252632,
-          59.9222,
-          45.969334,
-          47.935875,
-          -4.5817585,
-          17.717125,
-          32.523216,
-          19.772266,
-          57.007023,
-          34.043217,
-          30.42877,
-          10.665481,
-          -16.827753,
-          -38.59416,
-          -32.974155,
-          15.195456,
-          -36.174,
-          -45.269844,
-          11.543438,
-          -19.309122,
-          -28.692097,
-          53.714108,
-          -18.300999,
-          -49.752243,
-          -10.5037985,
-          34.008293,
-          18.401154,
-          33.648438,
-          -44.20961,
-          -39.52826,
-          -27.136961,
-          59.613667,
-          31.749115,
-          7.0795293,
-          -34.181965,
-          -37.106304,
-          19.923655,
-          14.908174,
-          52.849945,
-          10.556734,
-          -48.20029,
-          9.239984,
-          15.951407,
-          -7.4418893,
-          -28.779457,
-          -35.19683,
-          -54.1994,
-          20.179276,
-          31.14273,
-          0.258186,
-          -2.1609035,
-          61.664543,
-          14.35011,
-          -26.758255,
-          -54.634964,
-          14.368874,
-          -43.92253,
-          -42.005432,
-          -39.611347,
-          9.892005,
-          -39.611637,
-          -24.87918,
-          -22.471472,
-          -38.19811,
-          30.838337,
-          -36.996124,
-          -4.4758306,
-          -46.204945,
-          43.08786,
-          -24.678703,
-          -50.613956,
-          49.605602,
-          6.150114,
-          63.165108,
-          -20.649567,
-          47.894882,
-          51.314476,
-          44.60029,
-          6.031961,
-          8.659726,
-          -15.612729,
-          -9.729161,
-          -28.362564,
-          10.755605,
-          -36.588448,
-          8.7123785,
-          -12.811854,
-          -0.94040644,
-          -45.534595,
-          12.619259,
-          -44.44866,
-          -4.227074,
-          44.015842,
-          -22.860474,
-          -30.753082,
-          39.41502,
-          0.080250725,
-          -15.496077,
-          20.854275,
-          -10.390649,
-          -35.993237,
-          -36.425526,
-          -5.6656046,
-          -36.567635,
-          59.81665,
-          -11.675889,
-          14.897927,
-          41.209156,
-          8.117931,
-          6.539579,
-          -12.951042,
-          -30.48289,
-          47.579025,
-          56.48261,
-          -38.7589,
-          46.025146,
-          -36.49073,
-          -6.355229,
-          58.74744,
-          46.206974,
-          -52.00866,
-          -31.978811,
-          -43.13706,
-          -7.6462755,
-          -31.936037,
-          -19.532629,
-          53.145702,
-          7.7298007,
-          -36.42381,
-          12.733178,
-          23.083542,
-          60.687424,
-          -38.00677,
-          38.102413,
-          39.646805,
-          -46.434704,
-          -42.961407,
-          52.38563,
-          -16.082205,
-          -50.200237,
-          -29.59413,
-          -10.404932,
-          -27.002981,
-          -20.752146,
-          34.14185,
-          -18.822731,
-          -38.39936,
-          -34.192577,
-          -23.879477,
-          -49.73623,
-          -20.585733,
-          31.320894,
-          6.8278956,
-          14.610548,
-          40.573475,
-          -19.3257,
-          -32.563313,
-          7.079915,
-          -7.734347,
-          21.593582,
-          41.94092,
-          22.709345,
-          -8.220228,
-          30.75048,
-          23.351994,
-          10.662044,
-          6.3287606,
-          -44.1901,
-          20.248484,
-          39.690254,
-          34.33151,
-          -21.206255,
-          17.894573,
-          53.560726,
-          18.915913,
-          -50.147823,
-          -56.14451,
-          50.696335,
-          19.135786,
-          0.011293956,
-          -41.132812,
-          -7.490298,
-          -6.7789235,
-          21.208382,
-          5.4172053,
-          -44.169758,
-          -47.881756,
-          -28.388693,
-          -12.397968,
-          29.16581,
-          -0.9005222,
-          58.507614,
-          40.03086,
-          -17.01861,
-          -49.997864,
-          -11.5951185,
-          -38.691113,
-          24.29299,
-          48.50645,
-          38.79774,
-          -53.174366,
-          15.59622,
-          -8.326396,
-          0.79674417,
-          10.643132,
-          -44.02579,
-          5.560217,
-          0.5841107,
-          24.635311,
-          -28.108793,
-          13.113659,
-          62.77733,
-          -20.166492,
-          47.435825,
-          -15.611658,
-          18.401346,
-          -38.040787,
-          -8.663238,
-          -30.962019,
-          -8.084352,
-          43.003845,
-          -39.750137,
-          46.27362,
-          14.899461,
-          -45.082096,
-          -47.16861,
-          24.252523,
-          -4.7970433,
-          5.36986,
-          -16.89367,
-          -26.904469,
-          31.625498,
-          10.970106,
-          51.867313,
-          -17.731619,
-          -34.483925,
-          -43.073074,
-          -6.7949033,
-          -27.989662,
-          2.5174408,
-          34.368248,
-          12.8087,
-          35.39813,
-          -25.524998,
-          -46.526306,
-          53.752186,
-          55.804855,
-          -54.849133,
-          -40.10975,
-          -11.253943,
-          15.975605,
-          -24.282412,
-          -36.69884,
-          -9.612953,
-          27.581682,
-          1.6741688,
-          -53.5042,
-          -27.687584,
-          16.295555,
-          3.6958573,
-          -28.30938,
-          -35.854397,
-          26.508045,
-          17.794357,
-          30.6338,
-          47.806313,
-          10.886147,
-          56.805237,
-          -40.808376,
-          18.907486,
-          49.249695,
-          -38.4294,
-          -5.0891867,
-          -45.114822,
-          -46.690304,
-          49.522606,
-          -25.18432,
-          -36.175987,
-          -41.517033,
-          -33.290382,
-          -15.035485,
-          61.757652,
-          3.8529873,
-          61.630924,
-          -54.139446,
-          -25.219833,
-          39.668633,
-          10.995691,
-          23.637348,
-          33.6961,
-          51.79226,
-          14.72486,
-          -53.989174,
-          28.194004,
-          53.427227,
-          45.15016,
-          36.015182,
-          -34.2908,
-          43.020264,
-          7.9172506,
-          54.577732,
-          -48.755344,
-          -49.55056,
-          -39.571285,
-          -40.278057,
-          -51.21703,
-          18.002365,
-          -3.3571925,
-          19.580015,
-          -8.731081,
-          -6.0078135,
-          31.860546,
-          -28.372087,
-          -0.10420398,
-          19.054085,
-          37.094307,
-          -11.813869,
-          -28.535112,
-          -1.1245881,
-          58.735332,
-          -40.870914,
-          26.428055,
-          -52.076916,
-          -16.299625,
-          12.898047,
-          -51.801567,
-          35.940807,
-          30.280912,
-          -27.921608,
-          -36.991142,
-          63.004868,
-          -23.981367,
-          47.676117,
-          43.803253,
-          -35.73722,
-          52.02361,
-          0.08228831,
-          57.569775,
-          -31.23627,
-          4.8372564,
-          2.4959075,
-          6.9097495,
-          24.6171,
-          -36.47172,
-          -11.448383,
-          -3.8125634,
-          -20.261177,
-          51.3331,
-          -4.775729,
-          40.77166,
-          -24.145273,
-          -0.46443436,
-          48.259228,
-          -45.570045,
-          -29.613533,
-          -40.73366,
-          -19.412077,
-          -11.283554,
-          -47.05097,
-          49.969627,
-          -48.772636,
-          25.599476,
-          36.618427,
-          -10.298156,
-          14.019283,
-          -43.35723,
-          55.361397,
-          -10.978807,
-          51.953743,
-          -53.829735,
-          -8.411927,
-          15.602155,
-          -13.247851,
-          -15.053305,
-          40.71827,
-          -13.399857,
-          -47.515026,
-          62.178337,
-          -4.658773,
-          1.1374025,
-          -8.963649,
-          25.336575,
-          -29.961985,
-          -12.003402,
-          -17.52331,
-          -50.23115,
-          27.973917,
-          -48.06655,
-          39.666965,
-          -9.277499,
-          -7.6838555,
-          23.369677,
-          6.171623,
-          26.484608,
-          7.0410976,
-          19.369898,
-          -33.914284,
-          33.43409,
-          -15.22937,
-          -21.86168,
-          20.71207,
-          -7.6405187,
-          12.614038,
-          17.452501,
-          55.207115,
-          -31.572515,
-          32.183567,
-          -50.991158,
-          -38.40225,
-          16.695406,
-          -52.86785,
-          -35.325897,
-          18.572897,
-          -51.80827,
-          -35.83179,
-          -41.270184,
-          -36.710674,
-          6.0333753,
-          55.5641,
-          -49.167038,
-          -21.823997,
-          -1.3200667,
-          5.044943,
-          -40.638805,
-          51.27627,
-          47.339336,
-          16.012442,
-          -27.684992,
-          63.347527,
-          39.062187,
-          -12.411886,
-          -41.362526,
-          9.572269,
-          -24.7866,
-          26.459038,
-          -17.990955,
-          -40.258007,
-          -2.3985894,
-          54.67712,
-          2.9941561,
-          65.51466,
-          -37.48171,
-          17.726252,
-          -23.877874,
-          -34.57765,
-          -0.9994553,
-          45.10427,
-          17.785444,
-          -34.842422,
-          -51.40557,
-          -39.0015,
-          -14.16722,
-          -31.760511,
-          -16.35767,
-          -36.74732,
-          47.36583,
-          35.328148,
-          20.736986,
-          -50.34398,
-          -5.775708,
-          -32.659416,
-          30.716692,
-          24.382677,
-          58.147617,
-          -19.314493,
-          -3.8920984,
-          16.1644,
-          64.86492,
-          -10.574449,
-          19.621206,
-          8.682678,
-          -17.94723,
-          -24.707636,
-          -20.651194,
-          -5.6782784,
-          -13.584895,
-          -52.063236,
-          32.677113,
-          55.061314,
-          -26.427645,
-          -33.76177,
-          -50.93683,
-          38.546684,
-          -14.214475,
-          43.151165,
-          1.4400622,
-          -35.708652,
-          26.161028,
-          -41.237144,
-          44.980778,
-          25.263475,
-          16.929596,
-          -50.64484,
-          -48.196377,
-          -10.817454,
-          -2.0928724,
-          -25.303522,
-          47.840103,
-          39.76294,
-          -23.521646,
-          49.251343,
-          52.69105,
-          -43.41168,
-          0.50536364,
-          -41.631573,
-          19.154146,
-          49.939175,
-          46.95092,
-          26.26559,
-          19.381176,
-          12.624142,
-          13.547113,
-          -15.368924,
-          -44.33141,
-          17.735638,
-          -49.86946,
-          -25.189764,
-          -41.6564,
-          5.6944747,
-          28.887644,
-          54.523384,
-          11.9049635,
-          64.17483,
-          19.661798,
-          -40.866665,
-          7.287593,
-          -48.861267,
-          22.103119,
-          27.097654,
-          58.47151,
-          12.937629,
-          -37.111736,
-          -49.37285,
-          -0.5269812,
-          50.23622,
-          -37.09859,
-          -33.893284,
-          18.126286,
-          -41.025192,
-          19.819803,
-          -2.1707618,
-          14.775703,
-          -27.523653,
-          39.812546,
-          -37.509644,
-          -48.43532,
-          59.636997,
-          57.34273,
-          -37.623196,
-          -40.202778,
-          -55.58907,
-          -41.903214,
-          16.772926,
-          3.6852949,
-          25.670559,
-          26.078526,
-          -49.322422,
-          -9.049681,
-          -18.721113,
-          48.26851,
-          17.1552,
-          -16.408047,
-          9.536311,
-          21.02507,
-          -42.958614,
-          12.836097,
-          6.9077144,
-          13.885367,
-          -52.688995,
-          -29.522964,
-          25.294838,
-          0.9785223,
-          42.70037,
-          15.134995,
-          -42.372177,
-          -30.956533,
-          1.8828108,
-          -15.489649,
-          49.12623,
-          59.67211,
-          10.278181,
-          -45.431026,
-          -21.36634,
-          47.292377,
-          47.805153,
-          -32.821945,
-          3.350846,
-          10.675423,
-          46.018627,
-          -27.676836,
-          -30.13521,
-          -31.987688,
-          2.7699895,
-          29.804829,
-          -4.7174063,
-          8.834031,
-          -30.901245,
-          -20.815348,
-          57.51465,
-          37.074707,
-          14.13684,
-          -47.19078,
-          -45.82224,
-          -36.344696,
-          64.22567,
-          -46.568104,
-          -2.3207862,
-          10.008406,
-          40.90623,
-          -45.59506,
-          42.02211,
-          36.001675,
-          -13.1443,
-          -43.422806
-         ],
-         "xaxis": "x",
-         "y": [
-          -0.25818,
-          -20.803589,
-          -22.326504,
-          -8.559602,
-          22.728033,
-          7.8286805,
-          23.284092,
-          21.800117,
-          -20.467894,
-          22.159718,
-          -3.7095485,
-          -16.367886,
-          34.67725,
-          29.896206,
-          6.133116,
-          -10.627376,
-          0.20705454,
-          8.674217,
-          25.905638,
-          -3.9541492,
-          9.192532,
-          25.749458,
-          39.722248,
-          13.600263,
-          7.8999453,
-          18.938295,
-          -7.791385,
-          -2.1101115,
-          -17.816854,
-          -27.949192,
-          10.707973,
-          -5.9476533,
-          -0.62792206,
-          21.421028,
-          17.02401,
-          3.4177885,
-          23.633503,
-          9.072081,
-          2.5558534,
-          -10.392384,
-          -21.783358,
-          -12.137919,
-          8.247171,
-          -23.29184,
-          -18.170088,
-          -27.218586,
-          -29.326565,
-          12.92886,
-          7.4292397,
-          11.001149,
-          -35.47235,
-          0.2254613,
-          26.266212,
-          -12.614066,
-          -32.542274,
-          6.058426,
-          14.819815,
-          25.03953,
-          4.199548,
-          -0.6994232,
-          -29.048313,
-          8.901868,
-          -3.3929446,
-          -18.953293,
-          -16.318848,
-          1.29799,
-          24.970749,
-          14.150794,
-          0.27214336,
-          7.6804514,
-          -22.118223,
-          4.9480743,
-          -22.427275,
-          0.9335098,
-          26.755693,
-          26.929127,
-          -26.440922,
-          9.1828,
-          1.5617585,
-          -19.087698,
-          -14.938796,
-          -2.3146381,
-          13.022359,
-          -21.471975,
-          25.554472,
-          2.532362,
-          23.373753,
-          -13.859794,
-          -25.318462,
-          22.522005,
-          -32.54127,
-          -10.261337,
-          2.3437028,
-          -11.51763,
-          24.106895,
-          -28.920532,
-          -2.2139447,
-          -14.537146,
-          9.316687,
-          9.6741905,
-          12.820546,
-          4.9088416,
-          -28.30168,
-          -17.468342,
-          -17.185091,
-          10.214211,
-          -20.446613,
-          -11.397742,
-          8.161042,
-          27.62886,
-          26.281322,
-          -29.872732,
-          5.007877,
-          6.2455893,
-          5.951754,
-          -19.64737,
-          -1.2898456,
-          -8.973769,
-          0.16790108,
-          12.575957,
-          15.638516,
-          9.72588,
-          13.993413,
-          22.678474,
-          -17.482075,
-          14.391562,
-          -19.213398,
-          17.073126,
-          30.481924,
-          20.813839,
-          32.03464,
-          -26.55557,
-          12.0553255,
-          -16.22469,
-          -18.176107,
-          -3.6315196,
-          -19.35426,
-          20.519714,
-          4.681029,
-          -24.165535,
-          -17.097263,
-          -23.540205,
-          -22.659904,
-          -30.161833,
-          28.830767,
-          14.3665,
-          0.061168052,
-          -32.789925,
-          4.0007343,
-          -27.456821,
-          23.813591,
-          -30.553509,
-          -24.490698,
-          -19.611755,
-          29.56973,
-          21.227903,
-          7.7406225,
-          8.52158,
-          -10.852377,
-          5.442065,
-          9.661537,
-          22.864084,
-          4.1424494,
-          7.6243353,
-          4.249151,
-          31.043804,
-          -10.734537,
-          3.844936,
-          1.4751459,
-          -12.852704,
-          -20.392239,
-          -6.189112,
-          -4.5837173,
-          1.4175098,
-          -21.713743,
-          -13.330445,
-          12.867583,
-          -10.440891,
-          3.6453905,
-          8.166061,
-          -11.337284,
-          16.828537,
-          -8.8150835,
-          -16.43065,
-          9.330847,
-          20.16529,
-          9.5765,
-          -22.28117,
-          -9.1425705,
-          -23.877768,
-          -10.817816,
-          5.1117396,
-          7.9826016,
-          11.228575,
-          17.663988,
-          2.542931,
-          -1.3406546,
-          -23.981632,
-          12.972686,
-          4.730411,
-          30.063469,
-          3.6004014,
-          18.804445,
-          -13.418971,
-          30.71818,
-          -14.152756,
-          -24.45379,
-          -11.355663,
-          6.520791,
-          -9.840589,
-          21.164257,
-          -8.373115,
-          -8.409088,
-          9.545558,
-          4.881303,
-          30.134317,
-          -32.61165,
-          -17.390278,
-          32.50385,
-          19.963877,
-          8.090675,
-          31.114712,
-          30.646704,
-          21.478413,
-          14.554468,
-          20.755419,
-          11.230936,
-          6.923768,
-          -13.468946,
-          23.0764,
-          20.141148,
-          -15.70016,
-          8.499566,
-          -19.558147,
-          -10.837732,
-          7.830664,
-          24.00407,
-          6.959669,
-          -17.884281,
-          24.8098,
-          -24.985989,
-          -12.053112,
-          8.462659,
-          18.15951,
-          -5.462048,
-          2.4064643,
-          8.999294,
-          -12.727203,
-          -13.069021,
-          -6.154228,
-          14.864804,
-          1.5735915,
-          -25.217607,
-          -11.249722,
-          27.957365,
-          -0.7906725,
-          19.460798,
-          -2.3412774,
-          6.4599543,
-          2.4203362,
-          32.717518,
-          28.99686,
-          -18.920874,
-          -7.624435,
-          -23.937035,
-          -15.694869,
-          2.3350112,
-          9.491719,
-          -25.943512,
-          0.82049704,
-          -3.9954906,
-          -16.211517,
-          -10.548126,
-          33.583965,
-          22.352716,
-          -0.7140172,
-          28.585188,
-          20.132593,
-          10.375427,
-          -18.380714,
-          -21.956186,
-          18.302557,
-          8.7813,
-          27.98141,
-          5.231712,
-          -1.274212,
-          -17.928478,
-          -17.166925,
-          5.588625,
-          1.8213869,
-          -20.784616,
-          -9.940092,
-          -11.329836,
-          1.3020672,
-          -5.6699047,
-          2.9951952,
-          7.513018,
-          18.828894,
-          -8.567718,
-          -11.798271,
-          -2.4976819,
-          -25.911339,
-          22.716187,
-          -10.770047,
-          15.819128,
-          -15.446808,
-          -32.171726,
-          5.0620914,
-          12.743932,
-          7.1431947,
-          20.908062,
-          27.65378,
-          -29.32608,
-          -12.216588,
-          3.5037541,
-          -35.429436,
-          -8.023369,
-          19.798025,
-          -4.302394,
-          16.329193,
-          -23.965172,
-          8.796663,
-          16.477135,
-          -11.357406,
-          32.09736,
-          26.441679,
-          21.586815,
-          30.292624,
-          -14.503349,
-          19.197943,
-          -14.683218,
-          -3.407611,
-          23.7153,
-          -14.726069,
-          -17.214022,
-          15.711783,
-          -8.98979,
-          -22.324871,
-          0.59863055,
-          16.493795,
-          -27.750652,
-          -28.93897,
-          -5.3719177,
-          -23.418943,
-          -9.659326,
-          -23.277813,
-          16.425425,
-          -19.531103,
-          18.54026,
-          0.31460643,
-          31.197924,
-          -14.720505,
-          -0.26035935,
-          -21.057713,
-          -27.277906,
-          -7.310227,
-          -15.416589,
-          -1.605775,
-          -8.874298,
-          -13.5169735,
-          -26.390093,
-          0.7872089,
-          -7.2581453,
-          22.63779,
-          28.57203,
-          -23.089176,
-          -19.599855,
-          -21.929888,
-          -10.379873,
-          -11.895842,
-          -17.141865,
-          -16.003376,
-          -14.515779,
-          10.840164,
-          -26.575148,
-          3.1463404,
-          -3.7059593,
-          -8.936446,
-          -23.257317,
-          30.278105,
-          15.54324,
-          -31.523523,
-          -15.298813,
-          -29.652391,
-          -9.050367,
-          18.134205,
-          -14.212201,
-          10.717227,
-          19.883846,
-          21.597916,
-          -19.211506,
-          28.315454,
-          -11.721406,
-          16.122732,
-          -6.269737,
-          -14.575271,
-          -20.626392,
-          -9.711501,
-          20.470428,
-          -8.267473,
-          33.287487,
-          25.027699,
-          15.167711,
-          12.847039,
-          -22.223913,
-          -13.995945,
-          -28.966488,
-          14.344031,
-          7.419209,
-          -21.779205,
-          24.548212,
-          23.27041,
-          -17.763275,
-          -27.218397,
-          -36.186253,
-          5.0752234,
-          0.31401816,
-          -0.48519766,
-          9.704817,
-          -22.044197,
-          28.721743,
-          14.702273,
-          18.21779,
-          16.7961,
-          9.027207,
-          21.439281,
-          25.772839,
-          5.9104095,
-          18.049044,
-          11.854107,
-          25.408955,
-          -1.7761685,
-          7.837817,
-          -11.143075,
-          -25.348227,
-          20.674139,
-          -15.303513,
-          34.420277,
-          -6.806543,
-          2.799256,
-          -27.043676,
-          32.15406,
-          6.988793,
-          -29.502745,
-          5.2307787,
-          24.185543,
-          17.168627,
-          -6.9711366,
-          28.700588,
-          -16.839674,
-          -6.9957857,
-          19.155857,
-          22.57425,
-          4.2664466,
-          10.645888,
-          -2.8677607,
-          17.716654,
-          33.268223,
-          13.592724,
-          35.533974,
-          35.79897,
-          -9.217092,
-          -7.505608,
-          5.3443413,
-          16.755838,
-          19.649885,
-          -13.013833,
-          2.553211,
-          5.488912,
-          25.960653,
-          -14.678428,
-          -6.362675,
-          15.933173,
-          -25.562366,
-          -7.9709535,
-          -19.333553,
-          5.761818,
-          5.2738123,
-          14.799318,
-          0.9805258,
-          -30.191147,
-          -8.254407,
-          -9.329842,
-          24.331854,
-          -1.1096494,
-          -27.81828,
-          -23.302309,
-          10.189425,
-          -0.9053779,
-          14.969123,
-          -12.578425,
-          -16.734713,
-          -25.194714,
-          34.912987,
-          -36.29533,
-          -0.7015533,
-          -21.124685,
-          33.794212,
-          -20.977274,
-          -19.704374,
-          23.483368,
-          -15.128482,
-          8.0363655,
-          2.2579987,
-          -16.33133,
-          31.233051,
-          22.297411,
-          -11.6483135,
-          3.5171926,
-          23.886812,
-          12.337329,
-          -19.59588,
-          -30.116133,
-          27.538383,
-          -19.748474,
-          -4.7339125,
-          19.465944,
-          -18.429428,
-          -24.985508,
-          -24.043522,
-          26.484413,
-          16.774218,
-          5.9628015,
-          -14.398376,
-          -23.032887,
-          -16.154268,
-          -11.766295,
-          -27.591204,
-          20.015493,
-          -20.486948,
-          7.6020126,
-          -13.656402,
-          14.815331,
-          -33.948692,
-          -33.920197,
-          -9.174384,
-          20.629124,
-          16.143784,
-          8.925708,
-          7.7047353,
-          -21.596968,
-          16.84247,
-          11.881365,
-          -22.970503,
-          24.66648,
-          1.9238061,
-          25.418554,
-          -17.758942,
-          3.5172246,
-          23.261137,
-          -8.986503,
-          28.923544,
-          -7.5245304,
-          -15.130549,
-          5.0646152,
-          21.07103,
-          -5.8668604,
-          -14.940109,
-          -6.4981833,
-          -20.06512,
-          23.290081,
-          -11.591567,
-          -27.786598,
-          20.645449,
-          -5.3597302,
-          -11.159512,
-          -13.735753,
-          18.798145,
-          -32.18803,
-          8.9016,
-          -22.157974,
-          26.788364,
-          -16.650103,
-          18.377977,
-          -18.147429,
-          -24.88111,
-          21.901451,
-          -14.823587,
-          -0.6368593,
-          3.2132275,
-          31.100603,
-          16.802742,
-          20.371767,
-          -28.899687,
-          0.73946625,
-          0.94949424,
-          -14.675726,
-          -24.362509,
-          31.862827,
-          23.13797,
-          35.12017,
-          -18.907366,
-          24.827017,
-          31.66899,
-          -18.148087,
-          -24.660992,
-          9.816621,
-          16.572128,
-          25.328583,
-          -15.456796,
-          1.9859632,
-          5.658062,
-          -5.2393093,
-          9.180699,
-          7.721218,
-          3.9763682,
-          -14.759153,
-          8.72019,
-          -12.5096655,
-          4.320076,
-          2.0307107,
-          -12.368451,
-          -11.865506,
-          16.297318,
-          0.7318651,
-          -13.755454,
-          -21.899122,
-          -11.081378,
-          -19.075409,
-          -13.679028,
-          10.51185,
-          -10.045945,
-          -2.6716044,
-          13.364902,
-          20.333702,
-          5.9486156,
-          -30.512154,
-          -1.8922254,
-          -14.551722,
-          -13.595177,
-          24.951237,
-          15.502925,
-          -26.033178,
-          -15.84722,
-          -0.48769227,
-          5.509095,
-          25.674028,
-          23.005444,
-          12.414623,
-          -7.935221,
-          24.642124,
-          -22.191689,
-          -19.237648,
-          16.660208,
-          5.5806613,
-          9.362999,
-          16.740986,
-          -14.059228,
-          -9.914337,
-          -20.576859,
-          -10.982109,
-          31.096636,
-          -11.43558,
-          -17.933233,
-          -22.175861,
-          -14.856947,
-          26.15921,
-          -23.924995,
-          6.894826,
-          4.1693807,
-          5.6076837,
-          -17.656506,
-          15.090964,
-          1.2161766,
-          -9.937122,
-          -27.618727,
-          -3.5818095,
-          -14.13704,
-          25.846468,
-          19.352674,
-          -22.007416,
-          23.278618,
-          11.748135,
-          -22.37126,
-          -22.028944,
-          -10.037108,
-          -25.306404,
-          -7.7222157,
-          3.5807598,
-          -6.6086307,
-          -19.699232,
-          -15.10728,
-          -17.251148,
-          10.148522,
-          -0.68818355,
-          7.5768538,
-          -17.733555,
-          -23.194473,
-          9.637636,
-          -2.6014824,
-          9.428179,
-          -10.8705435,
-          8.272561,
-          18.622755,
-          8.240764,
-          7.8728004,
-          13.976609,
-          21.211613,
-          10.388335,
-          -13.317306,
-          -0.20468314,
-          -0.7534798,
-          16.867065,
-          -22.69967,
-          22.19843,
-          29.903488,
-          -29.479254,
-          14.083497,
-          0.6598771,
-          -8.660773,
-          -7.2729115,
-          -11.945698,
-          23.76637,
-          -16.428364,
-          -28.303225,
-          -11.955685,
-          -30.203144,
-          -4.9588523,
-          26.250034,
-          19.381159,
-          -16.469437,
-          -14.535694,
-          -24.852484,
-          12.103588,
-          7.8694215,
-          -8.026257,
-          -6.199936,
-          9.750696,
-          -14.905879,
-          -22.042368,
-          2.0052595,
-          15.873175,
-          -11.668809,
-          7.235856,
-          -21.42294,
-          14.838855,
-          16.791052,
-          -21.904455,
-          -23.169117,
-          -20.787516,
-          9.315685,
-          34.738625,
-          10.819606,
-          20.726511,
-          -10.898081,
-          31.885904,
-          11.005908,
-          15.028398,
-          -3.1344242,
-          -3.9499974,
-          14.654819,
-          8.201109,
-          17.144817,
-          -19.819767,
-          -19.525257,
-          -4.076858,
-          -24.730019,
-          11.900147,
-          -1.3390135,
-          26.11797,
-          -2.478072,
-          -23.535704,
-          27.143415,
-          0.81385136,
-          17.844543,
-          19.694197,
-          30.822157,
-          11.223421,
-          17.761076,
-          13.325627,
-          -13.261404,
-          2.2092547,
-          -13.576142,
-          -11.716383,
-          27.541485,
-          -18.290712,
-          -25.388409,
-          -15.495678,
-          -32.85601,
-          34.832695,
-          15.818021,
-          12.122141,
-          33.150494,
-          -0.5336322,
-          -13.886067,
-          28.821224,
-          20.72354,
-          -33.77542,
-          3.162032,
-          17.181808,
-          34.996464,
-          -22.37821,
-          -4.1373553,
-          -20.077517,
-          -16.791988,
-          -33.790863,
-          4.8909636,
-          -23.158052,
-          13.435741,
-          -22.73552,
-          -0.6918705,
-          27.578976,
-          -23.911886,
-          -0.9915625,
-          0.41720697,
-          -28.11098,
-          -15.606873,
-          -21.062717,
-          -15.843517,
-          7.1253057,
-          -12.007193,
-          -23.275118,
-          15.710144,
-          -13.556541,
-          -15.989742,
-          1.5220636,
-          15.600531,
-          3.0372694,
-          -13.601137,
-          -7.148113,
-          -24.879805,
-          -0.8274632,
-          -11.567605,
-          19.323282,
-          -7.7168093,
-          -27.03218,
-          5.8135962,
-          -7.6383777,
-          1.1989386,
-          3.9182017,
-          -0.47444645,
-          -25.135891,
-          22.896002,
-          0.94497335,
-          9.556583,
-          -4.4569497,
-          21.02248,
-          -25.89945,
-          -18.168903,
-          17.865675,
-          22.459995,
-          12.360714,
-          -24.076357,
-          -15.80312,
-          21.917862,
-          21.659195,
-          33.719093,
-          19.704102,
-          -2.2529974,
-          31.99901,
-          -29.042156,
-          -26.121319,
-          33.52397,
-          23.902458,
-          7.067429,
-          26.534893,
-          9.6071,
-          29.210163,
-          -23.639217,
-          3.7444665,
-          1.8415234,
-          -4.9220414,
-          22.216219,
-          21.501694,
-          -17.915682,
-          -17.60881,
-          19.686275,
-          16.870352,
-          -16.338673,
-          -2.4079158,
-          10.431047,
-          -11.452592,
-          20.084156,
-          -34.98855,
-          -30.50168,
-          -1.8533841,
-          13.475318,
-          22.79436,
-          -23.127438,
-          -2.6888435,
-          -26.898434,
-          32.299854,
-          9.865102,
-          -15.889842,
-          -7.1564,
-          14.4235935,
-          10.5956135,
-          16.942707,
-          -17.442066,
-          -6.0696855,
-          0.2748501,
-          33.509598,
-          2.4050539,
-          7.209693,
-          12.352939,
-          -0.83113074,
-          -16.57776,
-          26.730667,
-          -13.937987,
-          5.5682783,
-          8.4994335,
-          -12.461162,
-          24.32622,
-          -25.814455,
-          -19.692043,
-          8.181132,
-          -25.507462,
-          -16.080286,
-          -1.2937344,
-          18.989775,
-          16.529331,
-          11.700205,
-          -25.712864,
-          24.65294,
-          -5.132745,
-          24.787573,
-          19.01329,
-          -9.251707,
-          -2.7055879,
-          14.609039,
-          27.475252,
-          14.475491,
-          0.96339697,
-          -11.8820095,
-          7.1217036,
-          31.858027,
-          16.848389,
-          32.03336,
-          -13.837845,
-          -33.480656,
-          -20.987251,
-          30.462563,
-          -16.143095,
-          6.7093077,
-          -15.854709,
-          -24.921698,
-          16.484713,
-          -1.7420386,
-          -23.097334,
-          18.896671,
-          34.8398,
-          10.520301,
-          3.5488389,
-          -18.068623,
-          30.076416,
-          -29.86582,
-          -8.282391,
-          -8.46684,
-          13.576438,
-          3.0699391,
-          -16.238358,
-          2.9773757,
-          -14.182415,
-          17.441216,
-          -25.85015,
-          9.083556,
-          22.073168,
-          19.385956,
-          8.168441,
-          13.999631,
-          -13.918425,
-          19.32553,
-          -19.83609,
-          29.535501,
-          31.019588,
-          -6.5198464,
-          -16.273378,
-          31.29178,
-          -20.836182,
-          8.972529,
-          14.504229,
-          -22.65874,
-          24.289896,
-          0.45974386,
-          -8.057026,
-          7.783574,
-          -12.477235,
-          3.8825731,
-          -3.5055225,
-          15.380986,
-          22.033895,
-          3.7059414,
-          -1.0848922,
-          0.16963075,
-          -5.582006,
-          11.250292,
-          21.913166,
-          -1.632514,
-          -23.06022,
-          -13.376665,
-          -5.6566067,
-          -5.0115275,
-          33.256733,
-          -27.384535,
-          22.36791,
-          -23.036457,
-          3.1787782,
-          -11.463062,
-          16.85544,
-          17.925854,
-          26.127491,
-          34.042473,
-          3.7194152,
-          11.578919,
-          -3.056115,
-          8.806574,
-          -12.564382,
-          26.605755,
-          21.529955,
-          25.043688,
-          17.78518,
-          25.579552,
-          27.044067,
-          -29.090658,
-          21.886444,
-          -29.44567,
-          -3.69288,
-          7.423554,
-          19.89922,
-          -13.892162,
-          -9.352621,
-          -23.756565,
-          -17.759132,
-          21.111221,
-          -15.3389635,
-          20.052608,
-          8.306711,
-          -6.695091,
-          -0.2840251,
-          29.565565,
-          6.3890157,
-          20.825033,
-          -15.78091,
-          -3.9792998,
-          8.250312,
-          -4.315795,
-          33.91667,
-          31.587502,
-          -4.7497973,
-          0.70931256,
-          22.03959,
-          -1.3183376,
-          -13.819872,
-          -8.057265,
-          2.5191355,
-          -6.09211,
-          -1.2537154,
-          1.041188,
-          6.271001,
-          15.563097,
-          3.0869732,
-          19.476908,
-          -7.959283,
-          -20.58928,
-          17.528534,
-          -34.817635,
-          26.520325,
-          -7.863438,
-          -13.616495,
-          34.081158,
-          14.279812,
-          -23.899826,
-          19.227066,
-          -0.1847365,
-          21.436638,
-          -21.634756,
-          27.98984,
-          -9.426962,
-          17.888885,
-          18.802984,
-          -12.24037,
-          25.563747,
-          -18.85435,
-          20.995552,
-          -25.321373,
-          11.024011,
-          -19.68378,
-          30.48236,
-          -26.103676,
-          10.497953,
-          3.9857144,
-          -11.662108,
-          14.603634,
-          7.0568976,
-          -4.4100275,
-          2.030001,
-          -22.706993,
-          19.098873,
-          31.796051,
-          -2.4754145,
-          -26.096392,
-          -21.39815,
-          3.600532,
-          28.98958,
-          -24.192507,
-          -22.364601,
-          24.713762,
-          -16.769764,
-          21.682661,
-          -1.3566388,
-          16.40951,
-          8.210962,
-          -15.716439,
-          -34.972008,
-          26.949068,
-          21.239998,
-          12.173473,
-          20.502365,
-          -12.030829,
-          -28.317688,
-          4.4826207,
-          -4.760545,
-          -10.980467,
-          30.730364,
-          20.87726,
-          -17.78651,
-          22.801989,
-          -5.3119135,
-          -20.541088,
-          12.556309,
-          1.3681566,
-          -15.915366,
-          23.323511,
-          -7.8275642,
-          1.0861593,
-          8.230685,
-          -17.60057,
-          4.390221,
-          9.649646,
-          -16.683647,
-          -22.447065,
-          -10.756376,
-          27.087646,
-          2.2553952,
-          5.474195,
-          6.01643,
-          14.907442,
-          -19.740395,
-          -14.250181,
-          -28.855429,
-          -21.907415,
-          -6.474749,
-          26.200584,
-          23.3236,
-          5.0985155,
-          23.742764,
-          -23.47392,
-          10.961509,
-          -9.009804,
-          10.729193,
-          -16.08439,
-          24.293411,
-          -14.420636,
-          -0.6379835,
-          -7.351985,
-          4.601816,
-          -21.606695,
-          10.600249,
-          -19.460848,
-          -1.0193497,
-          -5.6577854,
-          1.2037258,
-          -19.941338,
-          -17.019722,
-          32.26841,
-          -20.533716,
-          -23.794706,
-          2.3137836,
-          35.702885,
-          -2.6479704,
-          21.060795,
-          -4.315942,
-          -22.034695,
-          0.85024196,
-          13.542582,
-          -8.745571,
-          6.832896,
-          -10.188763,
-          -13.390235,
-          -0.5990197,
-          -23.021431,
-          -5.876716,
-          -11.976225,
-          4.2575808,
-          27.501059,
-          11.98244,
-          26.565365,
-          -1.931646,
-          24.216267,
-          -16.869408,
-          -8.099275,
-          -14.887161,
-          2.2845645,
-          11.149261,
-          -15.141055,
-          27.739674,
-          -3.0804467,
-          5.0789285,
-          -17.30228,
-          -3.2769468,
-          -17.239506,
-          4.583181,
-          -19.281757,
-          -3.5722063,
-          28.793531,
-          -16.723783,
-          25.030203,
-          9.832679,
-          20.863323,
-          -19.392942,
-          -15.235338,
-          11.71164,
-          -24.406261,
-          -15.53886,
-          -16.890417,
-          -19.303434,
-          -12.302218,
-          -21.589676,
-          -14.588415,
-          15.091036,
-          -17.137983,
-          -23.051016,
-          -11.65064,
-          -1.327813,
-          4.7823358,
-          -19.877468,
-          29.76316,
-          -3.8284235,
-          21.326263,
-          -17.971964,
-          -2.6890767,
-          -8.098414,
-          -20.775913,
-          11.0288925,
-          -15.161179,
-          -13.708067,
-          6.9839473,
-          9.420364,
-          15.523962,
-          -1.839738,
-          18.062141,
-          35.796543,
-          -26.4286,
-          4.53065,
-          -3.197111,
-          15.938968,
-          -5.59304,
-          -9.126152,
-          -23.904675,
-          8.384921,
-          -3.4012072,
-          -5.3693423,
-          32.041183,
-          -33.521553,
-          9.530565,
-          15.937399,
-          -27.414234,
-          -24.713099,
-          24.769993,
-          -8.645808,
-          -13.032957,
-          -23.740261,
-          8.2281,
-          -20.86936,
-          -5.3864436,
-          -13.534582,
-          -1.0408515,
-          3.6773765,
-          26.929934,
-          16.484713,
-          -3.2705798,
-          -22.339233,
-          -17.725012,
-          6.1994753,
-          -13.713904,
-          8.064646,
-          -8.887762,
-          -27.97785,
-          8.281391,
-          -14.383507,
-          1.1649175,
-          -17.226963,
-          23.824167,
-          -0.03827765,
-          21.001068,
-          -1.6157911,
-          1.0350281,
-          23.757103,
-          -2.2386749,
-          -12.003306,
-          -5.807004,
-          5.4682074,
-          3.4183521,
-          -18.329607,
-          10.1421995,
-          21.500256,
-          20.873947,
-          14.622503,
-          20.323536,
-          -22.500238,
-          -5.1817036,
-          26.616285,
-          -10.172258,
-          -14.895687,
-          7.471235,
-          4.855366,
-          8.929348,
-          3.4454656,
-          24.15315,
-          33.191727,
-          -17.779476,
-          13.368094,
-          -16.79903,
-          -1.2212269,
-          29.02862,
-          1.353517,
-          33.686493,
-          -9.61028,
-          -10.290435,
-          17.499424,
-          -18.92016,
-          10.638852,
-          -4.0155163,
-          -29.874123,
-          -23.89452,
-          17.025469,
-          12.36343,
-          25.982975,
-          -5.359385,
-          -20.511335,
-          26.314108,
-          -14.478729,
-          20.105099,
-          10.390779,
-          -2.7448454,
-          -21.707514,
-          2.8463974,
-          20.082417,
-          39.494793,
-          23.544054,
-          33.45021,
-          1.2731425,
-          7.00291,
-          20.49504,
-          11.026453,
-          -14.920918,
-          21.672586,
-          -24.179169,
-          -22.502762,
-          -18.470171,
-          -5.233647,
-          15.536683,
-          7.5924697,
-          31.43023,
-          -10.685339,
-          -5.5552483,
-          30.057226,
-          2.6354103,
-          17.865553,
-          -25.625107,
-          -23.603718,
-          16.79463,
-          -21.343506,
-          24.513098,
-          -22.31949,
-          -13.1784725,
-          14.572172,
-          -21.927172,
-          -0.43766883,
-          26.446459,
-          7.797492,
-          27.607801,
-          -14.08771,
-          28.953205,
-          -1.2875158,
-          -17.776453,
-          1.3350589,
-          -0.14630945,
-          -12.744574,
-          -5.8219385,
-          6.380316,
-          -24.39855,
-          1.6557639,
-          -25.33089,
-          -10.88375,
-          -5.4497714,
-          -3.2008982,
-          3.516546,
-          3.7044208,
-          -14.088412,
-          1.8123101,
-          -2.0853994,
-          -12.914869,
-          -14.570528,
-          6.286185,
-          29.915886,
-          18.577192,
-          -19.750566,
-          -4.8032465,
-          -14.996935,
-          9.808406,
-          3.1115727,
-          10.539988,
-          -0.25747964,
-          7.8065777,
-          -9.5224,
-          22.650063,
-          -8.527657,
-          25.720367,
-          27.335323,
-          -27.719013,
-          -27.493273,
-          -28.8183,
-          16.676228,
-          15.222469,
-          -6.1142654,
-          23.31772,
-          6.885112,
-          -21.120987,
-          31.183216,
-          16.581377,
-          -1.3270321,
-          -3.024608,
-          -24.535004,
-          -35.037914,
-          27.32407,
-          2.2356973,
-          16.557335,
-          8.043718,
-          4.2089057,
-          24.168753,
-          -0.42459357,
-          26.167639,
-          -19.28855,
-          -16.932995,
-          0.031842478,
-          11.079847,
-          23.264338,
-          11.247658,
-          28.108557,
-          -17.26478,
-          23.26528,
-          -5.613793,
-          -12.292187,
-          -13.964472,
-          21.349566,
-          21.782167,
-          26.02513,
-          -30.554207,
-          -20.807219,
-          -22.266432,
-          -16.260057,
-          13.463569,
-          -20.409258,
-          5.911049,
-          -3.838907,
-          -30.899261,
-          -25.502863,
-          17.450424,
-          4.5370917,
-          7.3130083,
-          29.060263,
-          -1.2906566,
-          -9.992426,
-          9.496942,
-          19.615667,
-          -15.057436,
-          -14.524883,
-          -5.6858554,
-          -8.944074,
-          30.993462,
-          -18.399357,
-          4.312004,
-          -12.452006,
-          11.88096,
-          -26.893,
-          10.486003,
-          -14.269513,
-          13.904057,
-          -14.193346,
-          -17.597988,
-          -13.744734,
-          19.081799,
-          7.1376367,
-          -20.63535,
-          0.17712176,
-          26.276295,
-          -4.0243726,
-          18.80954,
-          8.85504,
-          -11.71116,
-          10.333615,
-          -33.28943,
-          -13.433018,
-          25.406893,
-          -21.37861,
-          -30.53585,
-          -0.6449607,
-          -17.676962,
-          -33.109673,
-          6.502574,
-          25.979095,
-          13.889341,
-          24.452019,
-          -11.330729,
-          -14.508683,
-          7.7211857,
-          30.14757,
-          -15.281551,
-          25.445856,
-          23.137957,
-          2.9930232,
-          -11.392148,
-          -3.4584122,
-          -17.335155,
-          32.249325,
-          1.1835473,
-          0.4309157,
-          -1.922125,
-          18.76773,
-          12.763572,
-          -5.1183553,
-          -19.383118,
-          -11.329933,
-          -9.979049,
-          -19.62514,
-          14.371391,
-          -9.079416,
-          17.039936,
-          12.198028,
-          17.744976,
-          -27.767008,
-          4.7606173,
-          20.943676,
-          -2.7953665,
-          34.946663,
-          21.359537,
-          23.354967,
-          32.181087,
-          10.895949,
-          -23.63617,
-          16.164768,
-          -21.386267,
-          -0.20407373,
-          18.747564,
-          -8.708449,
-          26.564816,
-          -20.358099,
-          3.6623113,
-          2.833431,
-          -2.406363,
-          -7.6430187,
-          30.990358,
-          -1.6160171,
-          22.291674,
-          14.2712755,
-          8.649531,
-          -22.09123,
-          -3.9283407,
-          -15.144995,
-          -5.257486,
-          16.290205,
-          24.053005,
-          -5.443865,
-          29.637974,
-          -30.894657,
-          10.8514185,
-          -19.329512,
-          -1.7249132,
-          -27.617838,
-          12.135396,
-          -20.576097,
-          -32.521618,
-          -17.759117,
-          14.102587,
-          -1.4501517,
-          -17.441105,
-          22.34238,
-          -1.5771652,
-          -3.4706712,
-          19.873198,
-          17.654528,
-          14.297588,
-          35.126564,
-          3.530811,
-          22.92706,
-          1.305536,
-          -5.8584995,
-          -3.4917607,
-          -25.70212,
-          15.667845,
-          -13.110925,
-          1.5236746,
-          1.27955,
-          26.836803,
-          22.695467,
-          -7.542444,
-          -24.459936,
-          -4.085233,
-          -24.834877,
-          -13.123537,
-          13.346765,
-          3.3096304,
-          5.8128743,
-          -9.243302,
-          -22.380308,
-          24.534492,
-          32.18937,
-          0.7944149,
-          -17.298498,
-          -7.3226933,
-          23.025293,
-          -0.33986145,
-          14.641378,
-          -32.17766,
-          9.108203,
-          -15.654366,
-          -3.2708795,
-          1.7839518,
-          4.667992,
-          -21.404385,
-          33.032204,
-          0.07473384,
-          -8.874142,
-          19.918457,
-          2.485261,
-          -26.038076,
-          13.791234,
-          19.88417,
-          26.989523,
-          6.4794717,
-          -8.599584,
-          26.08512,
-          35.79187,
-          -3.0957053,
-          1.5328475,
-          -15.78256,
-          14.641849,
-          0.75382006,
-          13.353416,
-          -20.758772,
-          27.588259,
-          -8.591754,
-          7.6756034,
-          -32.257572,
-          -3.6816385,
-          -8.807442,
-          -23.705658,
-          26.69215,
-          5.574528,
-          -3.3590631,
-          -16.991213,
-          -18.813177,
-          20.353582,
-          -8.202672,
-          -2.241037,
-          -22.663652,
-          -10.86935,
-          22.6146,
-          0.538039,
-          -11.617886,
-          -7.3185177,
-          5.459471,
-          -20.510658,
-          14.793362,
-          -15.245933,
-          2.8498745,
-          30.176495,
-          25.41137,
-          12.340705,
-          -14.110134,
-          20.984993,
-          -20.736963,
-          -21.078281,
-          -16.38932,
-          -10.101326,
-          -29.059853,
-          -14.522557,
-          -31.21759,
-          11.320027,
-          -1.3346295,
-          19.095402,
-          3.5003624,
-          -0.27149853,
-          23.530079,
-          -1.4504046,
-          -20.799906,
-          26.357058,
-          25.323908,
-          21.914633,
-          19.832611,
-          -14.345478,
-          -12.780764,
-          -15.090428,
-          0.40740138,
-          -16.226871,
-          22.365917,
-          24.898293,
-          -22.19336,
-          -17.027992,
-          -19.892523,
-          23.981928,
-          -11.016326,
-          -16.473738,
-          -20.647305,
-          -18.943878,
-          -34.179035,
-          -14.075991,
-          1.9298484,
-          20.942158,
-          -15.682211,
-          -9.76076,
-          -23.77744,
-          2.101532,
-          -25.935007,
-          8.422051,
-          -21.395668,
-          -12.298222,
-          2.824297,
-          12.158624,
-          15.439734,
-          -5.986609,
-          22.680363,
-          -19.286484,
-          30.605867,
-          -0.7899231,
-          18.014528,
-          -18.204716,
-          -18.893454,
-          -2.6403008,
-          -26.197563,
-          0.6461262,
-          -17.935425,
-          21.006203,
-          19.50926,
-          -25.124516,
-          19.076454,
-          -13.34786,
-          -20.217596,
-          -18.721956,
-          13.471852,
-          10.719515,
-          -6.343975,
-          -4.427436,
-          2.1415112,
-          0.124456935,
-          9.154357,
-          15.850318,
-          14.106509,
-          18.979578,
-          -25.880474,
-          15.075585,
-          20.326845,
-          -15.592323,
-          -16.127396,
-          19.439365,
-          -18.178284,
-          -7.721521,
-          18.546848,
-          1.3289208,
-          -21.118057,
-          15.136754,
-          -8.462077,
-          -6.078381,
-          0.24295494,
-          -14.893564,
-          -3.098876,
-          -22.965818,
-          -2.973772,
-          -10.412807,
-          36.82579,
-          0.043326903,
-          -0.730605,
-          20.569399,
-          20.47704,
-          34.56152,
-          -12.61784,
-          -22.44099,
-          -13.279965,
-          -28.35139,
-          -9.076381,
-          -14.49968,
-          11.381456,
-          27.552359,
-          10.113919,
-          4.322983,
-          -16.923988,
-          18.366398,
-          4.072649,
-          -18.502573,
-          14.2359915,
-          1.2205616,
-          34.52153,
-          -13.276994,
-          16.888266,
-          -17.09381,
-          26.655972,
-          12.712044,
-          -22.337847,
-          -18.344118,
-          -21.796993,
-          -2.695157,
-          33.12794,
-          20.795307,
-          5.892835,
-          -30.008844,
-          13.092032,
-          -12.617298,
-          -26.583797,
-          -12.331805,
-          -25.788994,
-          18.527788,
-          -5.358728,
-          -20.973848,
-          21.975595,
-          3.6332028,
-          21.49163,
-          -24.02265,
-          -1.2270886,
-          31.648344,
-          -26.34871,
-          28.852188,
-          11.337199,
-          16.580437,
-          6.917111,
-          -2.6463892,
-          -13.808859,
-          27.402872,
-          31.668863,
-          10.09489,
-          -9.203751,
-          -4.5927486,
-          -19.010218,
-          7.268004,
-          27.96568,
-          -32.725826,
-          -12.638194,
-          -9.072612,
-          0.687024,
-          -24.00849,
-          -16.797096,
-          -13.887938,
-          21.008837,
-          -20.714098,
-          4.003382,
-          -5.864986,
-          6.308118,
-          -18.954786,
-          -14.093458,
-          14.5252905,
-          -10.20566,
-          -5.714998,
-          -7.6352305,
-          -11.445573,
-          28.259352,
-          -7.4210625,
-          -14.774667,
-          8.2712965,
-          -14.246153,
-          -23.317041,
-          0.21726441,
-          -20.630865,
-          -24.174063,
-          -15.430166,
-          -22.63233,
-          -5.336508,
-          -0.4162142,
-          -17.627256,
-          -12.0516205,
-          -10.120339,
-          22.627249,
-          17.18417,
-          -24.923342,
-          20.119074,
-          -11.128392,
-          -23.75025,
-          -22.75563,
-          -18.194794,
-          -2.677447,
-          5.6336102,
-          -8.593113,
-          -27.35188,
-          30.831476,
-          6.842084,
-          -23.006275,
-          -2.1064568,
-          -31.873516,
-          -21.917208,
-          11.057577,
-          21.760345,
-          31.105818,
-          -7.2484465,
-          27.442217,
-          27.198599,
-          -5.4786696,
-          20.937487,
-          -15.238694,
-          -22.516329,
-          16.441422,
-          -27.548603,
-          -0.95101047,
-          -5.9703918,
-          -20.764137,
-          9.63625,
-          25.318214,
-          -4.7924676,
-          22.43602,
-          -29.857277,
-          -8.804195,
-          -16.590578,
-          6.1655693,
-          -6.229835,
-          9.825396,
-          3.6917143,
-          -25.044327,
-          -15.101339,
-          7.166533,
-          18.591246,
-          -25.983875,
-          27.819729,
-          24.170658,
-          5.3510475,
-          6.549803,
-          -32.0242,
-          27.198914,
-          -3.37324,
-          -14.339118,
-          -28.126497,
-          22.221628,
-          -13.358003,
-          -16.78678,
-          -32.53302,
-          15.152627,
-          13.393224,
-          19.411095,
-          23.425772,
-          20.027725,
-          24.710947,
-          17.26326,
-          -27.410538,
-          26.30866,
-          -4.510418,
-          5.3038287,
-          7.526191,
-          -15.999681,
-          -2.2162335,
-          31.378555,
-          6.302167,
-          15.184932,
-          -21.060045,
-          14.10122,
-          5.90295,
-          -27.716919,
-          -16.625145,
-          -10.241354,
-          6.1585164,
-          7.223655,
-          -11.634907,
-          -21.870625,
-          -21.870728,
-          6.634295,
-          -6.066459,
-          -17.1438,
-          -32.103767,
-          -10.273103,
-          15.137199,
-          7.232844,
-          21.119562,
-          1.9282136,
-          12.128642,
-          12.653392,
-          9.936496,
-          21.916615,
-          9.071596,
-          27.73088,
-          14.497267,
-          -4.162361,
-          -25.22734,
-          -22.694798,
-          -10.849964,
-          -8.824205,
-          20.774977,
-          20.526009,
-          28.81767,
-          -15.895552,
-          -11.81379,
-          11.597373,
-          -10.619046,
-          -12.564632,
-          -21.738821,
-          -13.048038,
-          -23.010983,
-          -1.3630763,
-          19.897066
-         ],
-         "yaxis": "y"
-        },
-        {
-         "customdata": [
-          [
-           "PC World - Updated antivirus<br>software for businesses adds<br>intrusion prevention features."
-          ],
-          [
-           "PC World - Send your video<br>throughout your house--<br>wirelessly--with new gateways<br>and media adapters."
-          ],
-          [
-           "Ziff Davis - The company this<br>week will unveil more programs<br>and technologies designed to<br>ease users of its high-end<br>servers onto its Integrity<br>line, which uses Intel's<br>64-bit Itanium processor."
-          ],
-          [
-           "PC World - Symantec, McAfee<br>hope raising virus-definition<br>fees will move users to\\<br>suites."
-          ],
-          [
-           "PC World - The one-time World<br>Class Product of the Year PDA<br>gets a much-needed upgrade."
-          ]
-         ],
-         "hovertemplate": "label=Nearest neighbor (top 5)<br>Component 0=%{x}<br>Component 1=%{y}<br>string=%{customdata[0]}<extra></extra>",
-         "legendgroup": "Nearest neighbor (top 5)",
-         "marker": {
-          "color": "#EF553B",
-          "size": 5,
-          "symbol": "diamond"
-         },
-         "mode": "markers",
-         "name": "Nearest neighbor (top 5)",
-         "showlegend": true,
-         "type": "scattergl",
-         "x": [
-          -50.323666,
-          -50.141148,
-          -38.19549,
-          -50.138874,
-          -50.261745
-         ],
-         "xaxis": "x",
-         "y": [
-          -10.1600275,
-          -11.487356,
-          -10.464009,
-          -9.688497,
-          -10.61583
-         ],
-         "yaxis": "y"
-        },
-        {
-         "customdata": [
-          [
-           "PC World - Upcoming chip set<br>will include built-in security<br>features for your PC."
-          ]
-         ],
-         "hovertemplate": "label=Source<br>Component 0=%{x}<br>Component 1=%{y}<br>string=%{customdata[0]}<extra></extra>",
-         "legendgroup": "Source",
-         "marker": {
-          "color": "#00cc96",
-          "size": 5,
-          "symbol": "square"
-         },
-         "mode": "markers",
-         "name": "Source",
-         "showlegend": true,
-         "type": "scattergl",
-         "x": [
-          -50.70537
-         ],
-         "xaxis": "x",
-         "y": [
-          -10.254759
-         ],
-         "yaxis": "y"
-        }
-       ],
-       "layout": {
-        "height": 500,
-        "legend": {
-         "title": {
-          "text": "label"
-         },
-         "tracegroupgap": 0
-        },
-        "template": {
-         "data": {
-          "bar": [
-           {
-            "error_x": {
-             "color": "#2a3f5f"
-            },
-            "error_y": {
-             "color": "#2a3f5f"
-            },
-            "marker": {
-             "line": {
-              "color": "#E5ECF6",
-              "width": 0.5
-             },
-             "pattern": {
-              "fillmode": "overlay",
-              "size": 10,
-              "solidity": 0.2
-             }
-            },
-            "type": "bar"
-           }
-          ],
-          "barpolar": [
-           {
-            "marker": {
-             "line": {
-              "color": "#E5ECF6",
-              "width": 0.5
-             },
-             "pattern": {
-              "fillmode": "overlay",
-              "size": 10,
-              "solidity": 0.2
-             }
-            },
-            "type": "barpolar"
-           }
-          ],
-          "carpet": [
-           {
-            "aaxis": {
-             "endlinecolor": "#2a3f5f",
-             "gridcolor": "white",
-             "linecolor": "white",
-             "minorgridcolor": "white",
-             "startlinecolor": "#2a3f5f"
-            },
-            "baxis": {
-             "endlinecolor": "#2a3f5f",
-             "gridcolor": "white",
-             "linecolor": "white",
-             "minorgridcolor": "white",
-             "startlinecolor": "#2a3f5f"
-            },
-            "type": "carpet"
-           }
-          ],
-          "choropleth": [
-           {
-            "colorbar": {
-             "outlinewidth": 0,
-             "ticks": ""
-            },
-            "type": "choropleth"
-           }
-          ],
-          "contour": [
-           {
-            "colorbar": {
-             "outlinewidth": 0,
-             "ticks": ""
-            },
-            "colorscale": [
-             [
-              0,
-              "#0d0887"
-             ],
-             [
-              0.1111111111111111,
-              "#46039f"
-             ],
-             [
-              0.2222222222222222,
-              "#7201a8"
-             ],
-             [
-              0.3333333333333333,
-              "#9c179e"
-             ],
-             [
-              0.4444444444444444,
-              "#bd3786"
-             ],
-             [
-              0.5555555555555556,
-              "#d8576b"
-             ],
-             [
-              0.6666666666666666,
-              "#ed7953"
-             ],
-             [
-              0.7777777777777778,
-              "#fb9f3a"
-             ],
-             [
-              0.8888888888888888,
-              "#fdca26"
-             ],
-             [
-              1,
-              "#f0f921"
-             ]
-            ],
-            "type": "contour"
-           }
-          ],
-          "contourcarpet": [
-           {
-            "colorbar": {
-             "outlinewidth": 0,
-             "ticks": ""
-            },
-            "type": "contourcarpet"
-           }
-          ],
-          "heatmap": [
-           {
-            "colorbar": {
-             "outlinewidth": 0,
-             "ticks": ""
-            },
-            "colorscale": [
-             [
-              0,
-              "#0d0887"
-             ],
-             [
-              0.1111111111111111,
-              "#46039f"
-             ],
-             [
-              0.2222222222222222,
-              "#7201a8"
-             ],
-             [
-              0.3333333333333333,
-              "#9c179e"
-             ],
-             [
-              0.4444444444444444,
-              "#bd3786"
-             ],
-             [
-              0.5555555555555556,
-              "#d8576b"
-             ],
-             [
-              0.6666666666666666,
-              "#ed7953"
-             ],
-             [
-              0.7777777777777778,
-              "#fb9f3a"
-             ],
-             [
-              0.8888888888888888,
-              "#fdca26"
-             ],
-             [
-              1,
-              "#f0f921"
-             ]
-            ],
-            "type": "heatmap"
-           }
-          ],
-          "heatmapgl": [
-           {
-            "colorbar": {
-             "outlinewidth": 0,
-             "ticks": ""
-            },
-            "colorscale": [
-             [
-              0,
-              "#0d0887"
-             ],
-             [
-              0.1111111111111111,
-              "#46039f"
-             ],
-             [
-              0.2222222222222222,
-              "#7201a8"
-             ],
-             [
-              0.3333333333333333,
-              "#9c179e"
-             ],
-             [
-              0.4444444444444444,
-              "#bd3786"
-             ],
-             [
-              0.5555555555555556,
-              "#d8576b"
-             ],
-             [
-              0.6666666666666666,
-              "#ed7953"
-             ],
-             [
-              0.7777777777777778,
-              "#fb9f3a"
-             ],
-             [
-              0.8888888888888888,
-              "#fdca26"
-             ],
-             [
-              1,
-              "#f0f921"
-             ]
-            ],
-            "type": "heatmapgl"
-           }
-          ],
-          "histogram": [
-           {
-            "marker": {
-             "pattern": {
-              "fillmode": "overlay",
-              "size": 10,
-              "solidity": 0.2
-             }
-            },
-            "type": "histogram"
-           }
-          ],
-          "histogram2d": [
-           {
-            "colorbar": {
-             "outlinewidth": 0,
-             "ticks": ""
-            },
-            "colorscale": [
-             [
-              0,
-              "#0d0887"
-             ],
-             [
-              0.1111111111111111,
-              "#46039f"
-             ],
-             [
-              0.2222222222222222,
-              "#7201a8"
-             ],
-             [
-              0.3333333333333333,
-              "#9c179e"
-             ],
-             [
-              0.4444444444444444,
-              "#bd3786"
-             ],
-             [
-              0.5555555555555556,
-              "#d8576b"
-             ],
-             [
-              0.6666666666666666,
-              "#ed7953"
-             ],
-             [
-              0.7777777777777778,
-              "#fb9f3a"
-             ],
-             [
-              0.8888888888888888,
-              "#fdca26"
-             ],
-             [
-              1,
-              "#f0f921"
-             ]
-            ],
-            "type": "histogram2d"
-           }
-          ],
-          "histogram2dcontour": [
-           {
-            "colorbar": {
-             "outlinewidth": 0,
-             "ticks": ""
-            },
-            "colorscale": [
-             [
-              0,
-              "#0d0887"
-             ],
-             [
-              0.1111111111111111,
-              "#46039f"
-             ],
-             [
-              0.2222222222222222,
-              "#7201a8"
-             ],
-             [
-              0.3333333333333333,
-              "#9c179e"
-             ],
-             [
-              0.4444444444444444,
-              "#bd3786"
-             ],
-             [
-              0.5555555555555556,
-              "#d8576b"
-             ],
-             [
-              0.6666666666666666,
-              "#ed7953"
-             ],
-             [
-              0.7777777777777778,
-              "#fb9f3a"
-             ],
-             [
-              0.8888888888888888,
-              "#fdca26"
-             ],
-             [
-              1,
-              "#f0f921"
-             ]
-            ],
-            "type": "histogram2dcontour"
-           }
-          ],
-          "mesh3d": [
-           {
-            "colorbar": {
-             "outlinewidth": 0,
-             "ticks": ""
-            },
-            "type": "mesh3d"
-           }
-          ],
-          "parcoords": [
-           {
-            "line": {
-             "colorbar": {
-              "outlinewidth": 0,
-              "ticks": ""
-             }
-            },
-            "type": "parcoords"
-           }
-          ],
-          "pie": [
-           {
-            "automargin": true,
-            "type": "pie"
-           }
-          ],
-          "scatter": [
-           {
-            "marker": {
-             "colorbar": {
-              "outlinewidth": 0,
-              "ticks": ""
-             }
-            },
-            "type": "scatter"
-           }
-          ],
-          "scatter3d": [
-           {
-            "line": {
-             "colorbar": {
-              "outlinewidth": 0,
-              "ticks": ""
-             }
-            },
-            "marker": {
-             "colorbar": {
-              "outlinewidth": 0,
-              "ticks": ""
-             }
-            },
-            "type": "scatter3d"
-           }
-          ],
-          "scattercarpet": [
-           {
-            "marker": {
-             "colorbar": {
-              "outlinewidth": 0,
-              "ticks": ""
-             }
-            },
-            "type": "scattercarpet"
-           }
-          ],
-          "scattergeo": [
-           {
-            "marker": {
-             "colorbar": {
-              "outlinewidth": 0,
-              "ticks": ""
-             }
-            },
-            "type": "scattergeo"
-           }
-          ],
-          "scattergl": [
-           {
-            "marker": {
-             "colorbar": {
-              "outlinewidth": 0,
-              "ticks": ""
-             }
-            },
-            "type": "scattergl"
-           }
-          ],
-          "scattermapbox": [
-           {
-            "marker": {
-             "colorbar": {
-              "outlinewidth": 0,
-              "ticks": ""
-             }
-            },
-            "type": "scattermapbox"
-           }
-          ],
-          "scatterpolar": [
-           {
-            "marker": {
-             "colorbar": {
-              "outlinewidth": 0,
-              "ticks": ""
-             }
-            },
-            "type": "scatterpolar"
-           }
-          ],
-          "scatterpolargl": [
-           {
-            "marker": {
-             "colorbar": {
-              "outlinewidth": 0,
-              "ticks": ""
-             }
-            },
-            "type": "scatterpolargl"
-           }
-          ],
-          "scatterternary": [
-           {
-            "marker": {
-             "colorbar": {
-              "outlinewidth": 0,
-              "ticks": ""
-             }
-            },
-            "type": "scatterternary"
-           }
-          ],
-          "surface": [
-           {
-            "colorbar": {
-             "outlinewidth": 0,
-             "ticks": ""
-            },
-            "colorscale": [
-             [
-              0,
-              "#0d0887"
-             ],
-             [
-              0.1111111111111111,
-              "#46039f"
-             ],
-             [
-              0.2222222222222222,
-              "#7201a8"
-             ],
-             [
-              0.3333333333333333,
-              "#9c179e"
-             ],
-             [
-              0.4444444444444444,
-              "#bd3786"
-             ],
-             [
-              0.5555555555555556,
-              "#d8576b"
-             ],
-             [
-              0.6666666666666666,
-              "#ed7953"
-             ],
-             [
-              0.7777777777777778,
-              "#fb9f3a"
-             ],
-             [
-              0.8888888888888888,
-              "#fdca26"
-             ],
-             [
-              1,
-              "#f0f921"
-             ]
-            ],
-            "type": "surface"
-           }
-          ],
-          "table": [
-           {
-            "cells": {
-             "fill": {
-              "color": "#EBF0F8"
-             },
-             "line": {
-              "color": "white"
-             }
-            },
-            "header": {
-             "fill": {
-              "color": "#C8D4E3"
-             },
-             "line": {
-              "color": "white"
-             }
-            },
-            "type": "table"
-           }
-          ]
-         },
-         "layout": {
-          "annotationdefaults": {
-           "arrowcolor": "#2a3f5f",
-           "arrowhead": 0,
-           "arrowwidth": 1
-          },
-          "autotypenumbers": "strict",
-          "coloraxis": {
-           "colorbar": {
-            "outlinewidth": 0,
-            "ticks": ""
-           }
-          },
-          "colorscale": {
-           "diverging": [
-            [
-             0,
-             "#8e0152"
-            ],
-            [
-             0.1,
-             "#c51b7d"
-            ],
-            [
-             0.2,
-             "#de77ae"
-            ],
-            [
-             0.3,
-             "#f1b6da"
-            ],
-            [
-             0.4,
-             "#fde0ef"
-            ],
-            [
-             0.5,
-             "#f7f7f7"
-            ],
-            [
-             0.6,
-             "#e6f5d0"
-            ],
-            [
-             0.7,
-             "#b8e186"
-            ],
-            [
-             0.8,
-             "#7fbc41"
-            ],
-            [
-             0.9,
-             "#4d9221"
-            ],
-            [
-             1,
-             "#276419"
-            ]
-           ],
-           "sequential": [
-            [
-             0,
-             "#0d0887"
-            ],
-            [
-             0.1111111111111111,
-             "#46039f"
-            ],
-            [
-             0.2222222222222222,
-             "#7201a8"
-            ],
-            [
-             0.3333333333333333,
-             "#9c179e"
-            ],
-            [
-             0.4444444444444444,
-             "#bd3786"
-            ],
-            [
-             0.5555555555555556,
-             "#d8576b"
-            ],
-            [
-             0.6666666666666666,
-             "#ed7953"
-            ],
-            [
-             0.7777777777777778,
-             "#fb9f3a"
-            ],
-            [
-             0.8888888888888888,
-             "#fdca26"
-            ],
-            [
-             1,
-             "#f0f921"
-            ]
-           ],
-           "sequentialminus": [
-            [
-             0,
-             "#0d0887"
-            ],
-            [
-             0.1111111111111111,
-             "#46039f"
-            ],
-            [
-             0.2222222222222222,
-             "#7201a8"
-            ],
-            [
-             0.3333333333333333,
-             "#9c179e"
-            ],
-            [
-             0.4444444444444444,
-             "#bd3786"
-            ],
-            [
-             0.5555555555555556,
-             "#d8576b"
-            ],
-            [
-             0.6666666666666666,
-             "#ed7953"
-            ],
-            [
-             0.7777777777777778,
-             "#fb9f3a"
-            ],
-            [
-             0.8888888888888888,
-             "#fdca26"
-            ],
-            [
-             1,
-             "#f0f921"
-            ]
-           ]
-          },
-          "colorway": [
-           "#636efa",
-           "#EF553B",
-           "#00cc96",
-           "#ab63fa",
-           "#FFA15A",
-           "#19d3f3",
-           "#FF6692",
-           "#B6E880",
-           "#FF97FF",
-           "#FECB52"
-          ],
-          "font": {
-           "color": "#2a3f5f"
-          },
-          "geo": {
-           "bgcolor": "white",
-           "lakecolor": "white",
-           "landcolor": "#E5ECF6",
-           "showlakes": true,
-           "showland": true,
-           "subunitcolor": "white"
-          },
-          "hoverlabel": {
-           "align": "left"
-          },
-          "hovermode": "closest",
-          "mapbox": {
-           "style": "light"
-          },
-          "paper_bgcolor": "white",
-          "plot_bgcolor": "#E5ECF6",
-          "polar": {
-           "angularaxis": {
-            "gridcolor": "white",
-            "linecolor": "white",
-            "ticks": ""
-           },
-           "bgcolor": "#E5ECF6",
-           "radialaxis": {
-            "gridcolor": "white",
-            "linecolor": "white",
-            "ticks": ""
-           }
-          },
-          "scene": {
-           "xaxis": {
-            "backgroundcolor": "#E5ECF6",
-            "gridcolor": "white",
-            "gridwidth": 2,
-            "linecolor": "white",
-            "showbackground": true,
-            "ticks": "",
-            "zerolinecolor": "white"
-           },
-           "yaxis": {
-            "backgroundcolor": "#E5ECF6",
-            "gridcolor": "white",
-            "gridwidth": 2,
-            "linecolor": "white",
-            "showbackground": true,
-            "ticks": "",
-            "zerolinecolor": "white"
-           },
-           "zaxis": {
-            "backgroundcolor": "#E5ECF6",
-            "gridcolor": "white",
-            "gridwidth": 2,
-            "linecolor": "white",
-            "showbackground": true,
-            "ticks": "",
-            "zerolinecolor": "white"
-           }
-          },
-          "shapedefaults": {
-           "line": {
-            "color": "#2a3f5f"
-           }
-          },
-          "ternary": {
-           "aaxis": {
-            "gridcolor": "white",
-            "linecolor": "white",
-            "ticks": ""
-           },
-           "baxis": {
-            "gridcolor": "white",
-            "linecolor": "white",
-            "ticks": ""
-           },
-           "bgcolor": "#E5ECF6",
-           "caxis": {
-            "gridcolor": "white",
-            "linecolor": "white",
-            "ticks": ""
-           }
-          },
-          "title": {
-           "x": 0.05
-          },
-          "xaxis": {
-           "automargin": true,
-           "gridcolor": "white",
-           "linecolor": "white",
-           "ticks": "",
-           "title": {
-            "standoff": 15
-           },
-           "zerolinecolor": "white",
-           "zerolinewidth": 2
-          },
-          "yaxis": {
-           "automargin": true,
-           "gridcolor": "white",
-           "linecolor": "white",
-           "ticks": "",
-           "title": {
-            "standoff": 15
-           },
-           "zerolinecolor": "white",
-           "zerolinewidth": 2
-          }
-         }
-        },
-        "title": {
-         "text": "Nearest neighbors of the chipset security article"
-        },
-        "width": 600,
-        "xaxis": {
-         "anchor": "y",
-         "domain": [
-          0,
-          1
-         ],
-         "title": {
-          "text": "Component 0"
-         }
-        },
-        "yaxis": {
-         "anchor": "x",
-         "domain": [
-          0,
-          1
-         ],
-         "title": {
-          "text": "Component 1"
-         }
-        }
-       }
-      }
-     },
-     "metadata": {},
-     "output_type": "display_data"
-    }
-   ],
-   "source": [
-    "# a 2D chart of nearest neighbors of the chipset security article\n",
-    "chart_from_components(\n",
-    "    components=tsne_components,\n",
-    "    labels=chipset_security_labels,\n",
-    "    strings=article_descriptions,\n",
-    "    width=600,\n",
-    "    height=500,\n",
-    "    title=\"Nearest neighbors of the chipset security article\",\n",
-    "    category_orders={\"label\": [\"Other\", \"Nearest neighbor (top 5)\", \"Source\"]},\n",
-    ")"
-   ]
-  },
-  {
-   "cell_type": "markdown",
-   "metadata": {},
-   "source": [
-    "For the chipset security example, the 4 closest nearest neighbors in the full embedding space remain nearest neighbors in this compressed 2D visualization. The fifth is displayed as more distant, despite being closer in the full embedding space."
-   ]
-  },
-  {
-   "cell_type": "markdown",
-   "metadata": {},
-   "source": [
-    "Should you want to, you can also make an interactive 3D plot of the embeddings with the function `chart_from_components_3D`. (Doing so will require recomputing the t-SNE components with `n_components=3`.)"
+    "This code example has moved. You can now find it in the [OpenAI Cookbook](https://github.com/openai/openai-cookbook) at [examples/Recommendation_using_embeddings.ipynb](https://github.com/openai/openai-cookbook/blob/main/examples/Recommendation_using_embeddings.ipynb)."
    ]
   }
  ],
examples/embeddings/Regression.ipynb
@@ -4,90 +4,14 @@
    "cell_type": "markdown",
    "metadata": {},
    "source": [
-    "## Regression using the embeddings\n",
-    "\n",
-    "Regression means predicting a number, rather than one of the categories. We will predict the score based on the embedding of the review's text. We split the dataset into a training and a testing set for all of the following tasks, so we can realistically evaluate performance on unseen data. The dataset is created in the [Obtain_dataset Notebook](Obtain_dataset.ipynb).\n",
-    "\n",
-    "We're predicting the score of the review, which is a number between 1 and 5 (1-star being negative and 5-star positive)."
-   ]
-  },
-  {
-   "cell_type": "code",
-   "execution_count": 2,
-   "metadata": {},
-   "outputs": [
-    {
-     "name": "stdout",
-     "output_type": "stream",
-     "text": [
-      "Babbage similarity embedding performance on 1k Amazon reviews: mse=0.38, mae=0.39\n"
-     ]
-    }
-   ],
-   "source": [
-    "import pandas as pd\n",
-    "import numpy as np\n",
-    "\n",
-    "from sklearn.ensemble import RandomForestRegressor\n",
-    "from sklearn.model_selection import train_test_split\n",
-    "from sklearn.metrics import mean_squared_error, mean_absolute_error\n",
-    "\n",
-    "df = pd.read_csv('output/embedded_1k_reviews.csv')\n",
-    "df['babbage_similarity'] = df.babbage_similarity.apply(eval).apply(np.array)\n",
-    "\n",
-    "X_train, X_test, y_train, y_test = train_test_split(list(df.babbage_similarity.values), df.Score, test_size = 0.2, random_state=42)\n",
-    "\n",
-    "rfr = RandomForestRegressor(n_estimators=100)\n",
-    "rfr.fit(X_train, y_train)\n",
-    "preds = rfr.predict(X_test)\n",
-    "\n",
-    "\n",
-    "mse = mean_squared_error(y_test, preds)\n",
-    "mae = mean_absolute_error(y_test, preds)\n",
-    "\n",
-    "print(f\"Babbage similarity embedding performance on 1k Amazon reviews: mse={mse:.2f}, mae={mae:.2f}\")"
-   ]
-  },
-  {
-   "cell_type": "code",
-   "execution_count": 26,
-   "metadata": {},
-   "outputs": [
-    {
-     "name": "stdout",
-     "output_type": "stream",
-     "text": [
-      "Dummy mean prediction performance on Amazon reviews: mse=1.77, mae=1.04\n"
-     ]
-    }
-   ],
-   "source": [
-    "bmse = mean_squared_error(y_test, np.repeat(y_test.mean(), len(y_test)))\n",
-    "bmae = mean_absolute_error(y_test, np.repeat(y_test.mean(), len(y_test)))\n",
-    "print(f\"Dummy mean prediction performance on Amazon reviews: mse={bmse:.2f}, mae={bmae:.2f}\")"
-   ]
-  },
-  {
-   "cell_type": "markdown",
-   "metadata": {},
-   "source": [
-    "We can see that the embeddings are able to predict the scores with an average error of 0.39 per score prediction. This is roughly equivalent to predicting 2 out of 3 reviews perfectly, and 1 out of three reviews by a one star error."
-   ]
-  },
-  {
-   "cell_type": "markdown",
-   "metadata": {},
-   "source": [
-    "You could also train a classifier to predict the label, or use the embeddings within an existing ML model to encode free text features."
+    "This code example has moved. You can now find it in the [OpenAI Cookbook](https://github.com/openai/openai-cookbook) at [examples/Regression_using_embeddings.ipynb](https://github.com/openai/openai-cookbook/blob/main/examples/Regression_using_embeddings.ipynb)."
    ]
   }
  ],
  "metadata": {
-  "interpreter": {
-   "hash": "be4b5d5b73a21c599de40d6deb1129796d12dc1cc33a738f7bac13269cfcafe8"
-  },
   "kernelspec": {
-   "display_name": "Python 3.7.3 64-bit ('base': conda)",
+   "display_name": "Python 3.9.9 ('openai')",
+   "language": "python",
    "name": "python3"
   },
   "language_info": {
@@ -100,9 +24,14 @@
    "name": "python",
    "nbconvert_exporter": "python",
    "pygments_lexer": "ipython3",
-   "version": "3.7.3"
+   "version": "3.9.9"
   },
-  "orig_nbformat": 4
+  "orig_nbformat": 4,
+  "vscode": {
+   "interpreter": {
+    "hash": "365536dcbde60510dc9073d6b991cd35db2d9bac356a11f5b64279a5e6708b97"
+   }
+  }
  },
  "nbformat": 4,
  "nbformat_minor": 2
examples/embeddings/Semantic_text_search_using_embeddings.ipynb
@@ -4,166 +4,14 @@
    "cell_type": "markdown",
    "metadata": {},
    "source": [
-    "## Semantic text search using embeddings\n",
-    "\n",
-    "We can search through all our reviews semantically in a very efficient manner and at very low cost, by simply embedding our search query, and then finding the most similar reviews. The dataset is created in the [Obtain_dataset Notebook](Obtain_dataset.ipynb)."
-   ]
-  },
-  {
-   "cell_type": "code",
-   "execution_count": 1,
-   "metadata": {},
-   "outputs": [],
-   "source": [
-    "import pandas as pd\n",
-    "import numpy as np\n",
-    "\n",
-    "\n",
-    "df = pd.read_csv('output/embedded_1k_reviews.csv')\n",
-    "df['babbage_search'] = df.babbage_search.apply(eval).apply(np.array)"
-   ]
-  },
-  {
-   "cell_type": "markdown",
-   "metadata": {},
-   "source": [
-    "Remember to use the documents embedding engine for documents (in this case reviews), and query embedding engine for queries. Note that here we just compare the cosine similarity of the embeddings of the query and the documents, and show top_n best matches."
-   ]
-  },
-  {
-   "cell_type": "code",
-   "execution_count": 2,
-   "metadata": {},
-   "outputs": [
-    {
-     "name": "stdout",
-     "output_type": "stream",
-     "text": [
-      "Jamaican Blue beans:  Excellent coffee bean for roasting. Our family just purchased another 5 pounds for more roasting. Plenty of flavor and mild on acidity when roasted to a dark brown bean and befor\n",
-      "\n",
-      "Good Buy:  I liked the beans. They were vacuum sealed, plump and moist. Would recommend them for any use. I personally split and stuck them in some vodka to make vanilla extract. Yum!\n",
-      "\n",
-      "Fantastic Instant Refried beans:  Fantastic Instant Refried Beans have been a staple for my family now for nearly 20 years.  All 7 of us love it and my grown kids are passing on the tradition.\n",
-      "\n"
-     ]
-    }
-   ],
-   "source": [
-    "from openai.embeddings_utils import get_embedding, cosine_similarity\n",
-    "\n",
-    "# search through the reviews for a specific product\n",
-    "def search_reviews(df, product_description, n=3, pprint=True):\n",
-    "    embedding = get_embedding(product_description, engine='text-search-babbage-query-001')\n",
-    "    df['similarities'] = df.babbage_search.apply(lambda x: cosine_similarity(x, embedding))\n",
-    "\n",
-    "    res = df.sort_values('similarities', ascending=False).head(n).combined.str.replace('Title: ','').str.replace('; Content:', ': ')\n",
-    "    if pprint:\n",
-    "        for r in res:\n",
-    "            print(r[:200])\n",
-    "            print()\n",
-    "    return res\n",
-    "res = search_reviews(df, 'delicious beans', n=3)\n"
-   ]
-  },
-  {
-   "cell_type": "code",
-   "execution_count": 3,
-   "metadata": {},
-   "outputs": [
-    {
-     "name": "stdout",
-     "output_type": "stream",
-     "text": [
-      "Rustichella ROCKS!:  Anything this company makes is worthwhile eating! My favorite is their Trenne.<br />Their whole wheat pasta is the best I have ever had.\n",
-      "\n",
-      "sooo good:  tastes so good. Worth the money. My boyfriend hates wheat pasta and LOVES this. cooks fast tastes great.I love this brand and started buying more of their pastas. Bulk is best.\n",
-      "\n",
-      "Wonderful:  Came quickly. Was plentiful and delicious and cheaper than in the store. You will enjoy it if you like thick pasta.\n",
-      "\n"
-     ]
-    }
-   ],
-   "source": [
-    "res = search_reviews(df, 'whole wheat pasta', n=3)"
-   ]
-  },
-  {
-   "cell_type": "markdown",
-   "metadata": {},
-   "source": [
-    "We can search through these reviews easily. To speed up computation, we can use a special algorithm, aimed at faster search through embeddings."
-   ]
-  },
-  {
-   "cell_type": "code",
-   "execution_count": 4,
-   "metadata": {},
-   "outputs": [
-    {
-     "name": "stdout",
-     "output_type": "stream",
-     "text": [
-      "great product, poor delivery:  The coffee is excellent and I am a repeat buyer.  Problem this time was with the UPS delivery.  They left the box in front of my garage door in the middle of the drivewa\n",
-      "\n"
-     ]
-    }
-   ],
-   "source": [
-    "res = search_reviews(df, 'bad delivery', n=1)"
-   ]
-  },
-  {
-   "cell_type": "markdown",
-   "metadata": {},
-   "source": [
-    "As we can see, this can immediately deliver a lot of value. In this example we show being able to quickly find the examples of delivery failures."
-   ]
-  },
-  {
-   "cell_type": "code",
-   "execution_count": 5,
-   "metadata": {},
-   "outputs": [
-    {
-     "name": "stdout",
-     "output_type": "stream",
-     "text": [
-      "Extremely dissapointed:  Hi,<br />I am very disappointed with the past shipment I received of the ONE coconut water. 3 of the boxes were leaking and the coconut water was spoiled.<br /><br />Thanks.<b\n",
-      "\n"
-     ]
-    }
-   ],
-   "source": [
-    "res = search_reviews(df, 'spoilt', n=1)"
-   ]
-  },
-  {
-   "cell_type": "code",
-   "execution_count": 6,
-   "metadata": {},
-   "outputs": [
-    {
-     "name": "stdout",
-     "output_type": "stream",
-     "text": [
-      "Good food:  The only dry food my queen cat will eat. Helps prevent hair balls. Good packaging. Arrives promptly. Recommended by a friend who sells pet food.\n",
-      "\n",
-      "A great deal on Greenies:  Paid only $22 with free shipping for 96 teenies compared to about $35 at the pet store. How can you go wrong with a deal like that?  The dog begs for his daily Greenie. Got \n",
-      "\n"
-     ]
-    }
-   ],
-   "source": [
-    "res = search_reviews(df, 'pet food', n=2)"
+    "This code example has moved. You can now find it in the [OpenAI Cookbook](https://github.com/openai/openai-cookbook) at [examples/Semantic_text_search_using_embeddings.ipynb](https://github.com/openai/openai-cookbook/blob/main/examples/Semantic_text_search_using_embeddings.ipynb)."
    ]
   }
  ],
  "metadata": {
-  "interpreter": {
-   "hash": "be4b5d5b73a21c599de40d6deb1129796d12dc1cc33a738f7bac13269cfcafe8"
-  },
   "kernelspec": {
-   "display_name": "Python 3.7.3 64-bit ('base': conda)",
+   "display_name": "Python 3.9.9 ('openai')",
+   "language": "python",
    "name": "python3"
   },
   "language_info": {
@@ -176,9 +24,14 @@
    "name": "python",
    "nbconvert_exporter": "python",
    "pygments_lexer": "ipython3",
-   "version": "3.7.3"
+   "version": "3.9.9"
   },
-  "orig_nbformat": 4
+  "orig_nbformat": 4,
+  "vscode": {
+   "interpreter": {
+    "hash": "365536dcbde60510dc9073d6b991cd35db2d9bac356a11f5b64279a5e6708b97"
+   }
+  }
  },
  "nbformat": 4,
  "nbformat_minor": 2
examples/embeddings/User_and_product_embeddings.ipynb
@@ -4,155 +4,14 @@
    "cell_type": "markdown",
    "metadata": {},
    "source": [
-    "## User and product embeddings\n",
-    "\n",
-    "We calculate user and product embeddings based on the training set, and evaluate the results on the unseen test set. We will evaluate the results by plotting the user and product similarity versus the review score. The dataset is created in the [Obtain_dataset Notebook](Obtain_dataset.ipynb)."
-   ]
-  },
-  {
-   "cell_type": "markdown",
-   "metadata": {},
-   "source": [
-    "### 1. Calculate user and product embeddings\n",
-    "\n",
-    "We calculate these embeddings simply by averaging all the reviews about the same product or written by the same user within the training set."
-   ]
-  },
-  {
-   "cell_type": "code",
-   "execution_count": 2,
-   "metadata": {},
-   "outputs": [
-    {
-     "data": {
-      "text/plain": [
-       "(24502, 19035)"
-      ]
-     },
-     "execution_count": 2,
-     "metadata": {},
-     "output_type": "execute_result"
-    }
-   ],
-   "source": [
-    "import pandas as pd\n",
-    "import numpy as np\n",
-    "from sklearn.model_selection import train_test_split\n",
-    "\n",
-    "df = pd.read_csv('output/embedded_babbage_similarity_50k.csv', index_col=0)\n",
-    "df['babbage_similarity'] = df.babbage_similarity.apply(eval).apply(np.array)\n",
-    "X_train, X_test, y_train, y_test = train_test_split(df, df.Score, test_size = 0.2, random_state=42)\n",
-    "\n",
-    "user_embeddings = X_train.groupby('UserId').babbage_similarity.apply(np.mean)\n",
-    "prod_embeddings = X_train.groupby('ProductId').babbage_similarity.apply(np.mean)\n",
-    "len(user_embeddings), len(prod_embeddings)\n"
-   ]
-  },
-  {
-   "cell_type": "markdown",
-   "metadata": {},
-   "source": [
-    "We can see that most of the users and products appear within the 50k examples only once."
-   ]
-  },
-  {
-   "cell_type": "markdown",
-   "metadata": {},
-   "source": [
-    "### 2. Evaluate the embeddings\n",
-    "\n",
-    "To evaluate the recommendations, we look at the similarity of the user and product embeddings amongst the reviews in the unseen test set. We calculate the cosine distance between the user and product embeddings, which gives us a similarity score between 0 and 1. We then normalize the scores to be evenly split between 0 and 1, by calculating the percentile of the similarity score amongst all predicted scores."
-   ]
-  },
-  {
-   "cell_type": "code",
-   "execution_count": 3,
-   "metadata": {},
-   "outputs": [],
-   "source": [
-    "from openai.embeddings_utils import cosine_similarity\n",
-    "\n",
-    "# evaluate embeddings as recommendations on X_test\n",
-    "def evaluate_single_match(row):\n",
-    "    user_id = row.UserId\n",
-    "    product_id = row.ProductId\n",
-    "    try:\n",
-    "        user_embedding = user_embeddings[user_id]\n",
-    "        product_embedding = prod_embeddings[product_id]\n",
-    "        similarity = cosine_similarity(user_embedding, product_embedding)\n",
-    "        return similarity\n",
-    "    except Exception as e:\n",
-    "        return np.nan\n",
-    "\n",
-    "X_test['cosine_similarity'] = X_test.apply(evaluate_single_match, axis=1)\n",
-    "X_test['percentile_cosine_similarity'] = X_test.cosine_similarity.rank(pct=True)\n"
-   ]
-  },
-  {
-   "cell_type": "markdown",
-   "metadata": {},
-   "source": [
-    "#### 2.1 Visualize cosine similarity by review score\n",
-    "\n",
-    "We group the cosine similarity scores by the review score, and plot the distribution of cosine similarity scores for each review score."
-   ]
-  },
-  {
-   "cell_type": "code",
-   "execution_count": 18,
-   "metadata": {},
-   "outputs": [
-    {
-     "name": "stdout",
-     "output_type": "stream",
-     "text": [
-      "Correlation between user&vector similarity percentile metric and review number of stars (score): 22.11%\n"
-     ]
-    },
-    {
-     "data": {
-      "image/png": "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",
-      "text/plain": [
-       "<Figure size 432x288 with 1 Axes>"
-      ]
-     },
-     "metadata": {
-      "needs_background": "light"
-     },
-     "output_type": "display_data"
-    }
-   ],
-   "source": [
-    "import matplotlib.pyplot as plt\n",
-    "import statsmodels.api as sm\n",
-    "\n",
-    "\n",
-    "correlation = X_test[['percentile_cosine_similarity', 'Score']].corr().values[0,1]\n",
-    "print('Correlation between user & vector similarity percentile metric and review number of stars (score): %.2f%%' % (100*correlation))\n",
-    "\n",
-    "# boxplot of cosine similarity for each score\n",
-    "X_test.boxplot(column='percentile_cosine_similarity', by='Score')\n",
-    "plt.title('')\n",
-    "plt.show()\n",
-    "plt.close()"
-   ]
-  },
-  {
-   "cell_type": "markdown",
-   "metadata": {},
-   "source": [
-    "We can observe a weak trend, showing that the higher the similarity score between the user and the product embedding, the higher the review score. Therefore, the user and product embeddings can weakly predict the review score - even before the user receives the product!\n",
-    "\n",
-    "Because this signal works in a different way than the more commonly used collaborative filtering, it can act as an additional feature to slightly improve the performance on existing problems."
+    "This code example has moved. You can now find it in the [OpenAI Cookbook](https://github.com/openai/openai-cookbook) at [examples/User_and_product_embeddings.ipynb](https://github.com/openai/openai-cookbook/blob/main/examples/User_and_product_embeddings.ipynb)."
    ]
   }
  ],
  "metadata": {
-  "interpreter": {
-   "hash": "be4b5d5b73a21c599de40d6deb1129796d12dc1cc33a738f7bac13269cfcafe8"
-  },
   "kernelspec": {
-   "display_name": "Python 3.7.3 64-bit ('base': conda)",
+   "display_name": "Python 3.9.9 ('openai')",
+   "language": "python",
    "name": "python3"
   },
   "language_info": {
@@ -165,9 +24,14 @@
    "name": "python",
    "nbconvert_exporter": "python",
    "pygments_lexer": "ipython3",
-   "version": "3.7.3"
+   "version": "3.9.9"
   },
-  "orig_nbformat": 4
+  "orig_nbformat": 4,
+  "vscode": {
+   "interpreter": {
+    "hash": "365536dcbde60510dc9073d6b991cd35db2d9bac356a11f5b64279a5e6708b97"
+   }
+  }
  },
  "nbformat": 4,
  "nbformat_minor": 2
examples/embeddings/Visualize_in_2d.ipynb
@@ -4,123 +4,14 @@
    "cell_type": "markdown",
    "metadata": {},
    "source": [
-    "## Visualizing the embeddings in 2D\n",
-    "\n",
-    "We will use t-SNE to reduce the dimensionality of the embeddings from 2048 to 2. Once the embeddings are reduced to two dimensions, we can plot them in a 2D scatter plot. The dataset is created in the [Obtain_dataset Notebook](Obtain_dataset.ipynb)."
-   ]
-  },
-  {
-   "cell_type": "markdown",
-   "metadata": {},
-   "source": [
-    "### 1. Reduce dimensionality\n",
-    "\n",
-    "We reduce the dimensionality to 2 dimensions using t-SNE decomposition."
-   ]
-  },
-  {
-   "cell_type": "code",
-   "execution_count": 19,
-   "metadata": {},
-   "outputs": [
-    {
-     "data": {
-      "text/plain": [
-       "(1000, 2)"
-      ]
-     },
-     "execution_count": 19,
-     "metadata": {},
-     "output_type": "execute_result"
-    }
-   ],
-   "source": [
-    "import pandas as pd\n",
-    "from sklearn.manifold import TSNE\n",
-    "\n",
-    "# Load the embeddings\n",
-    "df = pd.read_csv('output/embedded_1k_reviews.csv')\n",
-    "\n",
-    "# Convert to a list of lists of floats\n",
-    "matrix = df.babbage_similarity.apply(eval).to_list()\n",
-    "\n",
-    "# Create a t-SNE model and transform the data\n",
-    "tsne = TSNE(n_components=2, perplexity=15, random_state=42, init='random', learning_rate=200)\n",
-    "vis_dims = tsne.fit_transform(matrix)\n",
-    "vis_dims.shape"
-   ]
-  },
-  {
-   "cell_type": "markdown",
-   "metadata": {},
-   "source": [
-    "### 2. Plotting the embeddings\n",
-    "\n",
-    "We colour each review by its star rating, ranging from red to green."
-   ]
-  },
-  {
-   "cell_type": "markdown",
-   "metadata": {},
-   "source": [
-    "We can observe a decent data separation even in the reduced 2 dimensions. There seems to be a cluster of mostly negative reviews."
-   ]
-  },
-  {
-   "cell_type": "code",
-   "execution_count": 20,
-   "metadata": {},
-   "outputs": [
-    {
-     "data": {
-      "text/plain": [
-       "Text(0.5, 1.0, 'Amazon ratings visualized in language using t-SNE')"
-      ]
-     },
-     "execution_count": 20,
-     "metadata": {},
-     "output_type": "execute_result"
-    },
-    {
-     "data": {
-      "image/png": "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",
-      "text/plain": [
-       "<Figure size 432x288 with 1 Axes>"
-      ]
-     },
-     "metadata": {
-      "needs_background": "light"
-     },
-     "output_type": "display_data"
-    }
-   ],
-   "source": [
-    "import matplotlib.pyplot as plt\n",
-    "import matplotlib\n",
-    "import numpy as np\n",
-    "\n",
-    "colors = [\"red\", \"darkorange\", \"gold\", \"turquoise\", \"darkgreen\"]\n",
-    "x = [x for x,y in vis_dims]\n",
-    "y = [y for x,y in vis_dims]\n",
-    "color_indices = df.Score.values - 1\n",
-    "\n",
-    "colormap = matplotlib.colors.ListedColormap(colors)\n",
-    "plt.scatter(x, y, c=color_indices, cmap=colormap, alpha=0.3)\n",
-    "for score in [0,1,2,3,4]:\n",
-    "    avg_x = np.array(x)[df.Score-1==score].mean()\n",
-    "    avg_y = np.array(y)[df.Score-1==score].mean()\n",
-    "    color = colors[score]\n",
-    "    plt.scatter(avg_x, avg_y, marker='x', color=color, s=100)\n",
-    "plt.title(\"Amazon ratings visualized in language using t-SNE\")"
+    "This code example has moved. You can now find it in the [OpenAI Cookbook](https://github.com/openai/openai-cookbook) at [examples/Visualizing_embeddings_in_2D.ipynb](https://github.com/openai/openai-cookbook/blob/main/examples/Visualizing_embeddings_in_2D.ipynb)."
    ]
   }
  ],
  "metadata": {
-  "interpreter": {
-   "hash": "be4b5d5b73a21c599de40d6deb1129796d12dc1cc33a738f7bac13269cfcafe8"
-  },
   "kernelspec": {
-   "display_name": "Python 3.7.3 64-bit ('base': conda)",
+   "display_name": "Python 3.9.9 ('openai')",
+   "language": "python",
    "name": "python3"
   },
   "language_info": {
@@ -133,9 +24,14 @@
    "name": "python",
    "nbconvert_exporter": "python",
    "pygments_lexer": "ipython3",
-   "version": "3.7.3"
+   "version": "3.9.9"
   },
-  "orig_nbformat": 4
+  "orig_nbformat": 4,
+  "vscode": {
+   "interpreter": {
+    "hash": "365536dcbde60510dc9073d6b991cd35db2d9bac356a11f5b64279a5e6708b97"
+   }
+  }
  },
  "nbformat": 4,
  "nbformat_minor": 2
examples/embeddings/Visualize_in_3d.ipynb
@@ -2,251 +2,16 @@
  "cells": [
   {
    "cell_type": "markdown",
-   "id": "983ef639-fbf4-4912-b593-9cf08aeb11cd",
+   "id": "b87d69b2",
    "metadata": {},
    "source": [
-    "# Visualizing the embeddings in 3D"
+    "This code example has moved. You can now find it in the [OpenAI Cookbook](https://github.com/openai/openai-cookbook) at [examples/Visualizing_embeddings_in_3D.ipynb](https://github.com/openai/openai-cookbook/blob/main/examples/Visualizing_embeddings_in_3D.ipynb)."
    ]
-  },
-  {
-   "cell_type": "markdown",
-   "id": "9c9ea9a8-675d-4e3a-a8f7-6f4563df84ad",
-   "metadata": {},
-   "source": [
-    "The example uses [PCA](https://scikit-learn.org/stable/modules/generated/sklearn.decomposition.PCA.html) to reduce the dimensionality fo the embeddings from 2048 to 3. Then we can visualize the data points in a 3D plot. The small dataset `dbpedia_samples.jsonl` is curated by randomly sampling 200 samples from [DBpedia validation dataset](https://www.kaggle.com/danofer/dbpedia-classes?select=DBPEDIA_val.csv)."
-   ]
-  },
-  {
-   "cell_type": "markdown",
-   "id": "8df5f2c3-ddbb-4cc4-9205-4c0af1670562",
-   "metadata": {},
-   "source": [
-    "### 1. Load the dataset and query embeddings"
-   ]
-  },
-  {
-   "cell_type": "code",
-   "execution_count": 1,
-   "id": "133dfc2a-9dbd-4a5a-96fa-477272f7af5a",
-   "metadata": {},
-   "outputs": [
-    {
-     "name": "stdout",
-     "output_type": "stream",
-     "text": [
-      "Categories of DBpedia samples: Artist                    21\n",
-      "Film                      19\n",
-      "Plant                     19\n",
-      "OfficeHolder              18\n",
-      "Company                   17\n",
-      "NaturalPlace              16\n",
-      "Athlete                   16\n",
-      "Village                   12\n",
-      "WrittenWork               11\n",
-      "Building                  11\n",
-      "Album                     11\n",
-      "Animal                    11\n",
-      "EducationalInstitution    10\n",
-      "MeanOfTransportation       8\n",
-      "Name: category, dtype: int64\n"
-     ]
-    },
-    {
-     "data": {
-      "text/html": [
-       "<div>\n",
-       "<style scoped>\n",
-       "    .dataframe tbody tr th:only-of-type {\n",
-       "        vertical-align: middle;\n",
-       "    }\n",
-       "\n",
-       "    .dataframe tbody tr th {\n",
-       "        vertical-align: top;\n",
-       "    }\n",
-       "\n",
-       "    .dataframe thead th {\n",
-       "        text-align: right;\n",
-       "    }\n",
-       "</style>\n",
-       "<table border=\"1\" class=\"dataframe\">\n",
-       "  <thead>\n",
-       "    <tr style=\"text-align: right;\">\n",
-       "      <th></th>\n",
-       "      <th>text</th>\n",
-       "      <th>category</th>\n",
-       "    </tr>\n",
-       "  </thead>\n",
-       "  <tbody>\n",
-       "    <tr>\n",
-       "      <th>0</th>\n",
-       "      <td>Morada Limited is a textile company based in ...</td>\n",
-       "      <td>Company</td>\n",
-       "    </tr>\n",
-       "    <tr>\n",
-       "      <th>1</th>\n",
-       "      <td>The Armenian Mirror-Spectator is a newspaper ...</td>\n",
-       "      <td>WrittenWork</td>\n",
-       "    </tr>\n",
-       "    <tr>\n",
-       "      <th>2</th>\n",
-       "      <td>Mt. Kinka (้‡‘่ฏๅฑฑ Kinka-zan) also known as Kinka...</td>\n",
-       "      <td>NaturalPlace</td>\n",
-       "    </tr>\n",
-       "    <tr>\n",
-       "      <th>3</th>\n",
-       "      <td>Planning the Play of a Bridge Hand is a book ...</td>\n",
-       "      <td>WrittenWork</td>\n",
-       "    </tr>\n",
-       "    <tr>\n",
-       "      <th>4</th>\n",
-       "      <td>Wang Yuanping (born 8 December 1976) is a ret...</td>\n",
-       "      <td>Athlete</td>\n",
-       "    </tr>\n",
-       "  </tbody>\n",
-       "</table>\n",
-       "</div>"
-      ],
-      "text/plain": [
-       "                                                text      category\n",
-       "0   Morada Limited is a textile company based in ...       Company\n",
-       "1   The Armenian Mirror-Spectator is a newspaper ...   WrittenWork\n",
-       "2   Mt. Kinka (้‡‘่ฏๅฑฑ Kinka-zan) also known as Kinka...  NaturalPlace\n",
-       "3   Planning the Play of a Bridge Hand is a book ...   WrittenWork\n",
-       "4   Wang Yuanping (born 8 December 1976) is a ret...       Athlete"
-      ]
-     },
-     "execution_count": 1,
-     "metadata": {},
-     "output_type": "execute_result"
-    }
-   ],
-   "source": [
-    "import pandas as pd\n",
-    "samples = pd.read_json(\"dbpedia_samples.jsonl\", lines=True)\n",
-    "categories = sorted(samples[\"category\"].unique())\n",
-    "print(\"Categories of DBpedia samples:\", samples[\"category\"].value_counts())\n",
-    "samples.head()"
-   ]
-  },
-  {
-   "cell_type": "code",
-   "execution_count": 2,
-   "id": "19874e3e-a216-48cc-a27b-acb73854d832",
-   "metadata": {},
-   "outputs": [],
-   "source": [
-    "from openai.embeddings_utils import get_embeddings\n",
-    "# NOTE: The following code will send a query of batch size 200 to /embeddings, cost about $0.2\n",
-    "matrix = get_embeddings(samples[\"text\"].to_list(), engine=\"text-similarity-babbage-001\")"
-   ]
-  },
-  {
-   "cell_type": "markdown",
-   "id": "d410c268-d8a7-4979-887c-45b1d382dda9",
-   "metadata": {},
-   "source": [
-    "### 2. Reduce the embedding dimensionality"
-   ]
-  },
-  {
-   "cell_type": "code",
-   "execution_count": 3,
-   "id": "f5410068-f3da-490c-8576-48e84a8728de",
-   "metadata": {},
-   "outputs": [],
-   "source": [
-    "from sklearn.decomposition import PCA\n",
-    "pca = PCA(n_components=3)\n",
-    "vis_dims = pca.fit_transform(matrix)\n",
-    "samples[\"embed_vis\"] = vis_dims.tolist()"
-   ]
-  },
-  {
-   "cell_type": "markdown",
-   "id": "b6565f57-59c6-4d36-a094-3cbbd9ddeb4c",
-   "metadata": {},
-   "source": [
-    "### 3. Plot the embeddings of lower dimensionality"
-   ]
-  },
-  {
-   "cell_type": "code",
-   "execution_count": 4,
-   "id": "b17caad3-f0de-4115-83eb-55434a132acc",
-   "metadata": {},
-   "outputs": [
-    {
-     "data": {
-      "text/plain": [
-       "<matplotlib.legend.Legend at 0x14b5df760>"
-      ]
-     },
-     "execution_count": 4,
-     "metadata": {},
-     "output_type": "execute_result"
-    },
-    {
-     "data": {
-      "application/vnd.jupyter.widget-view+json": {
-       "model_id": "864488447fdd46b4ae1f338d3b0afded",
-       "version_major": 2,
-       "version_minor": 0
-      },
-      "image/png": "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",
-      "text/html": [
-       "\n",
-       "            <div style=\"display: inline-block;\">\n",
-       "                <div class=\"jupyter-widgets widget-label\" style=\"text-align: center;\">\n",
-       "                    Figure\n",
-       "                </div>\n",
-       "                <img src='data:image/png;base64,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' width=1000.0/>\n",
-       "            </div>\n",
-       "        "
-      ],
-      "text/plain": [
-       "Canvas(toolbar=Toolbar(toolitems=[('Home', 'Reset original view', 'home', 'home'), ('Back', 'Back to previous โ€ฆ"
-      ]
-     },
-     "metadata": {},
-     "output_type": "display_data"
-    }
-   ],
-   "source": [
-    "%matplotlib widget\n",
-    "import matplotlib.pyplot as plt\n",
-    "import numpy as np\n",
-    "\n",
-    "fig = plt.figure(figsize=(10, 5))\n",
-    "ax = fig.add_subplot(projection='3d')\n",
-    "cmap = plt.get_cmap(\"tab20\")\n",
-    "\n",
-    "# Plot each sample category individually such that we can set label name.\n",
-    "for i, cat in enumerate(categories):\n",
-    "    sub_matrix = np.array(samples[samples[\"category\"] == cat][\"embed_vis\"].to_list())\n",
-    "    x=sub_matrix[:, 0]\n",
-    "    y=sub_matrix[:, 1]\n",
-    "    z=sub_matrix[:, 2]\n",
-    "    colors = [cmap(i/len(categories))] * len(sub_matrix)\n",
-    "    ax.scatter(x, y, zs=z, zdir='z', c=colors, label=cat)\n",
-    "\n",
-    "ax.set_xlabel('x')\n",
-    "ax.set_ylabel('y')\n",
-    "ax.set_zlabel('z')\n",
-    "ax.legend(bbox_to_anchor=(1.1, 1))"
-   ]
-  },
-  {
-   "cell_type": "code",
-   "execution_count": null,
-   "id": "a8868043-9889-4a0b-b23d-79bb3823bdc7",
-   "metadata": {},
-   "outputs": [],
-   "source": []
   }
  ],
  "metadata": {
   "kernelspec": {
-   "display_name": "Python 3 (ipykernel)",
+   "display_name": "Python 3.9.9 ('openai')",
    "language": "python",
    "name": "python3"
   },
@@ -261,6 +26,11 @@
    "nbconvert_exporter": "python",
    "pygments_lexer": "ipython3",
    "version": "3.9.9"
+  },
+  "vscode": {
+   "interpreter": {
+    "hash": "365536dcbde60510dc9073d6b991cd35db2d9bac356a11f5b64279a5e6708b97"
+   }
   }
  },
  "nbformat": 4,
examples/embeddings/Zero-shot_classification.ipynb
@@ -4,205 +4,14 @@
    "cell_type": "markdown",
    "metadata": {},
    "source": [
-    "## Zero-shot classification using the embeddings\n",
-    "\n",
-    "In this notebook we will classify the sentiment of reviews using embeddings and zero labeled data! The dataset is created in the [Obtain_dataset Notebook](Obtain_dataset.ipynb).\n",
-    "\n",
-    "We'll define positive sentiment to be 4 and 5-star reviews, and negative sentiment to be 1 and 2-star reviews. 3-star reviews are considered neutral and we won't use them for this example.\n",
-    "\n",
-    "We will perform zero-shot classification by embedding descriptions of each class and then comparing new samples to those class embeddings."
-   ]
-  },
-  {
-   "cell_type": "code",
-   "execution_count": 1,
-   "metadata": {},
-   "outputs": [],
-   "source": [
-    "import pandas as pd\n",
-    "import numpy as np\n",
-    "\n",
-    "from sklearn.metrics import classification_report\n",
-    "\n",
-    "df = pd.read_csv('output/embedded_1k_reviews.csv')\n",
-    "df['babbage_similarity'] = df.babbage_similarity.apply(eval).apply(np.array)\n",
-    "df['babbage_search'] = df.babbage_search.apply(eval).apply(np.array)\n",
-    "\n",
-    "df= df[df.Score!=3]\n",
-    "df['sentiment'] = df.Score.replace({1:'negative', 2:'negative', 4:'positive', 5:'positive'})"
-   ]
-  },
-  {
-   "cell_type": "markdown",
-   "metadata": {},
-   "source": [
-    "### Zero-Shot Classification\n",
-    "To perform zero shot classification, we want to predict labels for our samples without any training. To do this, we can simply embed short descriptions of each label, such as positive and negative, and then compare the cosine distance between embeddings of samples and label descriptions. \n",
-    "\n",
-    "The highest similarity label to the sample input is the predicted label. We can also define a prediction score to be the difference between the cosine distance to the positive and to the negative label. This score can be used for plotting a precision-recall curve, which can be used to select a different tradeoff between precision and recall, by selecting a different threshold."
-   ]
-  },
-  {
-   "cell_type": "code",
-   "execution_count": 16,
-   "metadata": {},
-   "outputs": [
-    {
-     "name": "stdout",
-     "output_type": "stream",
-     "text": [
-      "              precision    recall  f1-score   support\n",
-      "\n",
-      "    negative       0.67      0.88      0.76       136\n",
-      "    positive       0.98      0.93      0.95       789\n",
-      "\n",
-      "    accuracy                           0.92       925\n",
-      "   macro avg       0.82      0.90      0.86       925\n",
-      "weighted avg       0.93      0.92      0.92       925\n",
-      "\n"
-     ]
-    },
-    {
-     "data": {
-      "image/png": "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FzscsyqVfP0tAHO/WcZWrVrW+PkbdBPT0qVLad26tZODZSaJ1q1bu9Zp9cI7M+YCMGzylwU5f4NOEICTg601/5ux+uLRc/cp6PkbfIIwM2uoWjQr7Ee4E0SBff7555xyyil06dKFPffck6OOOoopU6Ywc+ZMdt111xq7Tv/+/XnttdcAGDlyJN26daNHjx6UlJRw0kknrde5I4KDDjqIhQsXrlr37LPPIokPP/xw1bqZM2ey4YYb0qNHD7p27cpFF11EWVnZel37zTffZI899qBZs2YMHjy40v3GjBnDD37wA3bccUcuv/xyIpJZcefNm8ehhx7KTjvtxKGHHsrXX38NwIsvvkj//v3XKzazhs4JooAiguOPP57evXszffp0xowZw0033cQXX3xR49caMGAAhxxyCACPPfYY1157LePGjaN9+/ZVfrBWtHLlmg/Nv/zyy3Tv3p1NN/3u2chBgwax//77M2jQoNX27dKlC+PGjWPChAl88MEHPPvss+tWoFTHjh156KGHOO2006rc7+KLL+Yvf/kLU6dOZerUqbz66qsA3HzzzRx88MFMnTqVgw8+mJtvvhmAPn368MILL7BkyZL1is+sIWvQdzHluuGFSXzw2cLqd1wLXbfdlF8d3a3S7cOHD6d58+ZcdNFFq9Z1794dSL5tl5s5cyZnnnkm33yTTLdx11130atXL2bPns3JJ5/MwoULWblyJffccw+9evXi3HPPZfTo0UjinHPO4Re/+AX9+vWjb9++zJ8/n6eeeoohQ4bwyiuvcOONN9K3b18mTpxIaWkp11xzDSNGjGDZsmVceumlXHjhhYwYMYLrr7+eLbbYgg8//JApU6asVo7HHnuMCy64YNXy4sWLeeuttxg+fDhHH300N9xwwxplb9asGb169WLatGnr9N6W69SpEwBNmlT+XWb27NksXLiQH/7whwCcddZZPPvssxx55JE899xzjBgxAoCzzz6b3r17c8sttyCJ3r178+KLL/LTn/50vWI0a6gaTYIohokTJ7LnnntWu99WW23F0KFDadmyJVOnTuXUU09l9OjRPP744xx++OFcd911lJaWsmTJEsaNG0dJSQkTJ04EYP78+aud67zzzuOtt96ib9++nHTSSaslogceeIDNNtuMUaNGsWzZMvbbbz8OO+wwAMaOHcvEiRPz3tr59ttvc999961afu655zjiiCPYeeedad26NWPGjFmjnEuWLGHYsGEMGDBgjfMdcMABLFq0aI31t91226pa0NooKSmhQ4cOq5Y7dOhASUkJAF988QXt2rUDYJtttlmt9tazZ09GjhzpBGFWiUaTIKr6pl9sK1as4LLLLmPcuHE0bdp01Tf4vfbai3POOYcVK1Zw3HHH0aNHD3bYYQdmzJjBz3/+c/r06bPqAz6Lf/zjH0yYMGFVk9OCBQuYOnUqLVq0YO+99670vv958+bRqlWrVcuDBg3iiiuuAOCUU05h0KBBqxLE9OnT6dGjB5I49thjOfLII9c438iRIzPHXJMkrXaH0lZbbcVnn31WlFjM6oNGkyCKoVu3bpna///whz+w9dZbM378eMrKymjZMnng5Uc/+hFvvvkmL730Ev369ePKK6/krLPOYvz48QwZMoR7772Xp556igcffDBTPBHBn/70Jw4//PDV1o8YMYKNN9640uOaNWtGWVkZTZo0Yd68ebz++uu8//77SKK0tBRJ3HrrrcB3fRBVqekaRPv27Zk1a9aq5VmzZtG+fXsAtt56a2bPnk27du2YPXs2W2211ar9li5dyoYbbrjW1zNrLNxJXUAHHXQQy5Yt4/7771+1bsKECWt8g16wYAHt2rWjSZMmPPLII5SWlgLw8ccfs/XWW3P++edz3nnnMXbsWL766ivKyso48cQT+e1vf8vYsWMzx3P44Ydzzz33sGJFMpL7lClTVvV7VOV73/seM2bMAGDw4MGceeaZfPzxx8ycOZNPP/2Uzp07r1WtYOTIkYwbN26Nn3VJDgDt2rVj00035d133yUiePjhhzn22GMBOOaYYxg4cCAAAwcOXLUekvLX5J1kZsXyzbLCzMjgBFFAkvj73//Oa6+9RpcuXejWrRvXXnst22yzzWr7XXLJJQwcOJDu3bvz4Ycfrvo2P2LECLp3787uu+/Ok08+yRVXXEFJSQm9e/emR48enHHGGdx0002Z4znvvPPo2rUre+yxB7vuuisXXnhh3ruWKurTp8+qjt5BgwZx/PHHr7b9xBNPXONuppoyatQoOnTowNNPP82FF15It27fNRX26NFj1eu7776b8847jx133JEuXbqsatq65pprGDp0KDvttBOvvfYa11xzzapjhg8fTp8+fQoSt1ltWLI8+f/725cmF+T8Kr9fvL7r2bNnjB49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",
-      "text/plain": [
-       "<Figure size 432x288 with 1 Axes>"
-      ]
-     },
-     "metadata": {
-      "needs_background": "light"
-     },
-     "output_type": "display_data"
-    }
-   ],
-   "source": [
-    "from openai.embeddings_utils import cosine_similarity, get_embedding\n",
-    "from sklearn.metrics import PrecisionRecallDisplay\n",
-    "\n",
-    "def evaluate_emeddings_approach(\n",
-    "    labels = ['negative', 'positive'], \n",
-    "    engine = 'text-similarity-babbage-001',\n",
-    "):\n",
-    "    label_embeddings = [get_embedding(label, engine=engine) for label in labels]\n",
-    "\n",
-    "    def label_score(review_embedding, label_embeddings):\n",
-    "        return cosine_similarity(review_embedding, label_embeddings[1]) - cosine_similarity(review_embedding, label_embeddings[0])\n",
-    "\n",
-    "    engine_col_name = engine.replace('-','_').replace('_query','')\n",
-    "    probas = df[engine_col_name].apply(lambda x: label_score(x, label_embeddings))\n",
-    "    preds = probas.apply(lambda x: 'positive' if x>0 else 'negative')\n",
-    "\n",
-    "    report = classification_report(df.sentiment, preds)\n",
-    "    print(report)\n",
-    "\n",
-    "    display = PrecisionRecallDisplay.from_predictions(df.sentiment, probas, pos_label='positive')\n",
-    "    _ = display.ax_.set_title(\"2-class Precision-Recall curve\")\n",
-    "\n",
-    "evaluate_emeddings_approach(labels=['negative', 'positive'], engine='text-similarity-babbage-001')"
-   ]
-  },
-  {
-   "cell_type": "markdown",
-   "metadata": {},
-   "source": [
-    "We can see that this classifier already performs extremely well. We used similarity embeddings, and the simplest possible label name. Let's try to improve on this by using more descriptive label names, and search embeddings."
-   ]
-  },
-  {
-   "cell_type": "code",
-   "execution_count": 17,
-   "metadata": {},
-   "outputs": [
-    {
-     "name": "stdout",
-     "output_type": "stream",
-     "text": [
-      "              precision    recall  f1-score   support\n",
-      "\n",
-      "    negative       0.65      0.93      0.76       136\n",
-      "    positive       0.99      0.91      0.95       789\n",
-      "\n",
-      "    accuracy                           0.92       925\n",
-      "   macro avg       0.82      0.92      0.86       925\n",
-      "weighted avg       0.94      0.92      0.92       925\n",
-      "\n"
-     ]
-    },
-    {
-     "data": {
-      "image/png": "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3fn+97/Pe++9x+zZs9lpp53q7DxXXnklzzzzDADjx4+nT58+9OvXj3nz5nH88cfX6tgRwf7778/SpUsryh5++GEk8c4771SUzZ49m9atW9OvXz969+7NueeeS1nZN+Z5WicvvPACu+22G82bN2fUqKpHfp84cSI777wz2267LRdeeCERyay4Cxcu5KCDDmK77bbjoIMOYtGiRQA8/vjjXHnllVUez8ycIAoqIjjmmGMYNGgQs2bNYuLEiVxzzTV88skndX6u4cOHc+CBBwJw7733ctlllzF58mS6dOlS7QdrZWvWfPOh+SeffJK+ffvStu3Xz0aOHDmSfffdl5EjR661b69evZg8eTJTp07lrbfe4uGHH16/CqW6devGXXfdxcknn1ztfueddx5/+ctfmDFjBjNmzODpp58G4Nprr+WAAw5gxowZHHDAAVx77bUADB48mMcee4zly5fXKj6zpqxJ38WU6+rHpvPWR0tr3nEd9N6qLb88ok+V28eOHUuLFi0499xzK8r69u0LJN+2y82ePZtTTz2VL79Mptu4+eabGTBgAPPnz+fEE09k6dKlrFmzhltuuYUBAwbwox/9iAkTJiCJM888k5/97GcMHTqUww8/nMWLF/PAAw8wevRonnrqKX7zm99w+OGHM23aNEpLS7n00ksZN24cq1at4ic/+QnnnHMO48aN44orrmCzzTbjnXfe4b333lurHvfeey9nn312xfqyZct48cUXGTt2LEcccQRXX331N+revHlzBgwYwMyZM9frvS3Xo0cPAJo1q/q7zPz581m6dCl77bUXAKeddhoPP/wwhx12GI888gjjxo0D4PTTT2fQoEFcd911SGLQoEE8/vjjnHDCCbWK0ayp2mASRDFMmzaN3Xffvcb9tthiC8aMGUOrVq2YMWMGQ4YMYcKECfztb3/jkEMO4fLLL6e0tJTly5czefJk5s2bx7Rp0wBYvHjxWsc666yzePHFFzn88MM5/vjj10pEd9xxB+3ateP1119n1apV7LPPPhx88MEATJo0iWnTpuW9tfOll17itttuq1h/5JFHOPTQQ9l+++3p0KEDEydO/EY9ly9fzrPPPsvw4cO/cbyBAwfyxRdffKP8hhtuqLgKWhfz5s2ja9euFetdu3Zl3rxkdttPPvmEzp07A7DllluudfXWv39/xo8f7wRhVoUNJkFU902/2FavXs3555/P5MmTKSkpqfgGv8cee3DmmWeyevVqjj76aPr168c222zD+++/zwUXXMDgwYMrPuCz+Oc//8nUqVMrmpyWLFnCjBkzaNmyJXvuuWeV9/0vXLiQTTfdtGJ95MiR/PSnPwXgpJNOYuTIkRUJYtasWfTr1w9JHHXUURx22GHfON748eMzx1yXJK11h9IWW2zBRx99VJRYzBqDDSZBFEOfPn0ytf//4Q9/oFOnTkyZMoWysjJatWoFwHe/+11eeOEFnnjiCYYOHcpFF13EaaedxpQpUxg9ejS33norDzzwAHfeeWemeCKCP/7xjxxyyCFrlY8bN442bdpU+brmzZtTVlZGs2bNWLhwIc899xxvvvkmkigtLUUS119/PfB1H0R16voKokuXLsydO7dife7cuXTp0gWATp06MX/+fDp37sz8+fPZYostKvZbuXIlrVu3XufzmTUUf/vXHADGvvMpB/buVOfHdyd1Ae2///6sWrWK22+/vaJs6tSp3/gGvWTJEjp37kyzZs245557KC0tBeCDDz6gU6dODBs2jLPOOotJkybx2WefUVZWxnHHHcevf/1rJk2alDmeQw45hFtuuYXVq5OR3N97772Kfo/qfPvb3+b9998HYNSoUZx66ql88MEHzJ49mw8//JCePXuu01XB+PHjmTx58jd+1ic5AHTu3Jm2bdvy6quvEhHcfffdHHXUUQAceeSRjBgxAoARI0ZUlENS/7q8k8ysvp2//7YAzP685v/H68MJooAk8Y9//INnnnmGXr160adPHy677DK23HLLtfb78Y9/zIgRI+jbty/vvPNOxbf5cePG0bdvX3bddVfuv/9+fvrTnzJv3jwGDRpEv379OOWUU7jmmmsyx3PWWWfRu3dvdtttN3baaSfOOeecvHctVTZ48OCKjt6RI0dyzDHHrLX9uOOO+8bdTHXl9ddfp2vXrjz44IOcc8459OnzdVNhv379Kpb//Oc/c9ZZZ7HtttvSq1eviqatSy+9lDFjxrDddtvxzDPPcOmll1a8ZuzYsQwePLggcZvVhwG9OgDw6yfeLsjxVX6/eGPXv3//mDBhwlplb7/9NjvuuGORImo65s+fz2mnncaYMWOKHUqd+eSTTzj55JN59tln8273vx1rDMrKgm3+60mGDezJ5YN7r9cxJE2MiP75trkPwmrUuXNn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",
-      "text/plain": [
-       "<Figure size 432x288 with 1 Axes>"
-      ]
-     },
-     "metadata": {
-      "needs_background": "light"
-     },
-     "output_type": "display_data"
-    }
-   ],
-   "source": [
-    "evaluate_emeddings_approach(labels=['An Amazon review with a negative sentiment.', 'An Amazon review with a positive sentiment.'], engine='text-similarity-babbage-001')"
-   ]
-  },
-  {
-   "cell_type": "markdown",
-   "metadata": {},
-   "source": [
-    "Using the search embeddings and descriptive names leads to an additional improvement in performance."
-   ]
-  },
-  {
-   "cell_type": "code",
-   "execution_count": 11,
-   "metadata": {},
-   "outputs": [
-    {
-     "name": "stdout",
-     "output_type": "stream",
-     "text": [
-      "              precision    recall  f1-score   support\n",
-      "\n",
-      "    negative       0.77      0.79      0.78       136\n",
-      "    positive       0.96      0.96      0.96       789\n",
-      "\n",
-      "    accuracy                           0.94       925\n",
-      "   macro avg       0.87      0.88      0.87       925\n",
-      "weighted avg       0.94      0.94      0.94       925\n",
-      "\n"
-     ]
-    },
-    {
-     "data": {
-      "image/png": "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oZhVafbCpYx+77Oinb9eJ4hZs2bRokULOnXqhKRSh2N1QETwxRdfMGvWLDp37lzqcMwKmv/1ClavCRo3qv7PuHrdxLRs2TJatWrl5GCZSaJVq1audVqdcMCubYt6/nqdIAAnB1tv/puxuqLndlsV9fz1PkGYmdmGcYIosk8++YSTTz6ZLl26sOeee3LEEUcwdepUZs6cyW677VZt17nuuut44YUXABg7dizdunWjZ8+ezJ49mxNOOGGjzh0RHHDAASxevLh82xNPPIEk3n333fJtM2fOZLPNNqNnz5507dqVAQMGsGbNxg1F/PLLL7PHHnvQpEkThg6tfFiu8ePHs/vuu7PTTjtx+eWXExEAzJ8/n4MPPpidd96Zgw8+mAULFgDw9NNPc91111V6PjNzgiiqiODYY4+lb9++vP/++4wfP55bbrmFTz/9tNqvNXDgQA466CAAHnnkEa655homTJhAhw4dqvxgrWjVqlXrbBs+fDg9evSgZcuW5duGDBnC97//fYYMGbLWsV26dGHChAlMmjSJt99+myeeeGLDCpTafvvtefDBBzn11FOrPO6iiy7ij3/8I9OmTWPatGk899xzANx6660ceOCBTJs2jQMPPJBbb70VgH79+vHUU0+xZMmSjYrPrD6r13cx5brxqSm8PWdx4QPXQ9dtW3L9kd0q3T969GiaNm3KgAEDyrf16NEDSL5tl5k5cyZnnHEGX3/9NQC/+93v6NOnD3PnzuWkk05i8eLFrFq1ij/84Q/06dOHc889l3HjxiGJc845h5/85CecddZZ9O/fn4ULF/LYY48xYsQInn32WX7xi1/Qv39/Jk+ezOrVq7n66qsZM2YMy5cv55JLLuHCCy9kzJgxXHvttWy99da8++67TJ06da1yPPLII1xwwQXl61999RWvvPIKo0eP5sgjj+TGG29cp+xNmjShT58+TJ8+fYPe2zKdOnUCoFGjyr/LzJ07l8WLF7P33nsDcOaZZ/LEE09w+OGH8+STTzJmzBgAfvzjH9O3b19uu+02JNG3b1+efvppTjzxxI2K0ay+ajAJohQmT57MnnvuWfC4tm3bMnLkSJo1a8a0adM45ZRTGDduHH/5y1849NBD+fnPf87q1atZsmQJEyZMYPbs2UyePBmAhQsXrnWu8847j1deeYX+/ftzwgknrJWIHnjgAbbccktef/11li9fzr777sshhxwCwBtvvMHkyZPz3tr5z3/+k/vuu698/cknn+Swww5jl112oVWrVowfP36dci5ZsoQXX3yRgQMHrnO+/fbbjy+//HKd7XfccUd5LWh9zJ49m44dO5avd+zYkdmzk6lHPv30U9q3bw/ANttss1btrVevXowdO9YJwqwSDSZBVPVNv9RWrlzJpZdeyoQJE2jcuHH5N/i99tqLc845h5UrV3LMMcfQs2dPdtxxR2bMmMFll11Gv379yj/gs3j++eeZNGlSeZPTokWLmDZtGptssgm9e/eu9L7/+fPn06JFi/L1IUOGcMUVVwBw8sknM2TIkPIE8f7779OzZ08kcfTRR3P44Yevc76xY8dmjrk6SVrrDqW2bdsyZ86cksRiVhc0mARRCt26dcvU/v/rX/+adu3aMXHiRNasWUOzZskUgj/4wQ94+eWXeeaZZzjrrLO48sorOfPMM5k4cSIjRozg3nvv5bHHHmPQoEGZ4okI7r77bg499NC1to8ZM4Ytttii0tc1adKENWvW0KhRI+bPn8+oUaN46623kMTq1auRxO233w580wdRlequQXTo0IFZs2aVr8+aNYsOHZLpz9u1a8fcuXNp3749c+fOpW3bb+4bX7ZsGZttttl6X8+soXAndREdcMABLF++nPvvv79826RJk9b5Br1o0SLat29Po0aNePjhh1m9OpmW+8MPP6Rdu3acf/75nHfeebzxxht8/vnnrFmzhuOPP56bb76ZN954I3M8hx56KH/4wx9YuXIlAFOnTi3v96jKt7/9bWbMmAHA0KFDOeOMM/jwww+ZOXMmH3/8MZ07d16vWsHYsWOZMGHCOj8bkhwA2rdvT8uWLXn11VeJCB566CGOPvpoAI466igGDx4MwODBg8u3Q1L+6ryTzKxUxn+4oCjndYIoIkn84x//4IUXXqBLly5069aNa665hm222Wat4y6++GIGDx5Mjx49ePfdd8u/zY8ZM4YePXrw3e9+l0cffZQrrriC2bNn07dvX3r27Mnpp5/OLbfckjme8847j65du7LHHnuw2267ceGFF+a9a6mifv36lXf0DhkyhGOPPXat/ccff/w6dzNVl9dff52OHTvyt7/9jQsvvJBu3b5pKuzZs2f58u9//3vOO+88dtppJ7p06VLetHX11VczcuRIdt55Z1544QWuvvrq8teM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",
-      "text/plain": [
-       "<Figure size 432x288 with 1 Axes>"
-      ]
-     },
-     "metadata": {
-      "needs_background": "light"
-     },
-     "output_type": "display_data"
-    }
-   ],
-   "source": [
-    "evaluate_emeddings_approach(labels=['An Amazon review with a negative sentiment.', 'An Amazon review with a positive sentiment.'], engine='text-similarity-babbage-001')"
-   ]
-  },
-  {
-   "cell_type": "markdown",
-   "metadata": {},
-   "source": [
-    "As shown above, zero-shot classification with embeddings can lead to great results, especially when the labels are more descriptive than just simple words."
+    "This code example has moved. You can now find it in the [OpenAI Cookbook](https://github.com/openai/openai-cookbook) at [examples/Zero-shot_classification_with_embeddings.ipynb](https://github.com/openai/openai-cookbook/blob/main/examples/Zero-shot_classification_with_embeddings.ipynb)."
    ]
   }
  ],
  "metadata": {
-  "interpreter": {
-   "hash": "be4b5d5b73a21c599de40d6deb1129796d12dc1cc33a738f7bac13269cfcafe8"
-  },
   "kernelspec": {
-   "display_name": "Python 3.7.3 64-bit ('base': conda)",
+   "display_name": "Python 3.9.9 ('openai')",
+   "language": "python",
    "name": "python3"
   },
   "language_info": {
@@ -215,9 +24,14 @@
    "name": "python",
    "nbconvert_exporter": "python",
    "pygments_lexer": "ipython3",
-   "version": "3.7.3"
+   "version": "3.9.9"
   },
-  "orig_nbformat": 4
+  "orig_nbformat": 4,
+  "vscode": {
+   "interpreter": {
+    "hash": "365536dcbde60510dc9073d6b991cd35db2d9bac356a11f5b64279a5e6708b97"
+   }
+  }
  },
  "nbformat": 4,
  "nbformat_minor": 2
examples/finetuning/answers_with_ft.py
@@ -1,150 +1,2 @@
-import argparse
-
-import openai
-
-
-def create_context(
-    question, search_file_id, max_len=1800, search_model="ada", max_rerank=10
-):
-    """
-    Create a context for a question by finding the most similar context from the search file.
-    :param question: The question
-    :param search_file_id: The file id of the search file
-    :param max_len: The maximum length of the returned context (in tokens)
-    :param search_model: The search model to use
-    :param max_rerank: The maximum number of reranking
-    :return: The context
-    """
-    results = openai.Engine(search_model).search(
-        search_model=search_model,
-        query=question,
-        max_rerank=max_rerank,
-        file=search_file_id,
-        return_metadata=True,
-    )
-    returns = []
-    cur_len = 0
-    for result in results["data"]:
-        cur_len += int(result["metadata"]) + 4
-        if cur_len > max_len:
-            break
-        returns.append(result["text"])
-    return "\n\n###\n\n".join(returns)
-
-
-def answer_question(
-    search_file_id="<SEARCH_FILE_ID>",
-    fine_tuned_qa_model="<FT_QA_MODEL_ID>",
-    question="Which country won the European Football championship in 2021?",
-    max_len=1800,
-    search_model="ada",
-    max_rerank=10,
-    debug=False,
-    stop_sequence=["\n", "."],
-    max_tokens=100,
-):
-    """
-    Answer a question based on the most similar context from the search file, using your fine-tuned model.
-    :param question: The question
-    :param fine_tuned_qa_model: The fine tuned QA model
-    :param search_file_id: The file id of the search file
-    :param max_len: The maximum length of the returned context (in tokens)
-    :param search_model: The search model to use
-    :param max_rerank: The maximum number of reranking
-    :param debug: Whether to output debug information
-    :param stop_sequence: The stop sequence for Q&A model
-    :param max_tokens: The maximum number of tokens to return
-    :return: The answer
-    """
-    context = create_context(
-        question,
-        search_file_id,
-        max_len=max_len,
-        search_model=search_model,
-        max_rerank=max_rerank,
-    )
-    if debug:
-        print("Context:\n" + context)
-        print("\n\n")
-    try:
-        # fine-tuned models requires model parameter, whereas other models require engine parameter
-        model_param = (
-            {"model": fine_tuned_qa_model}
-            if ":" in fine_tuned_qa_model
-            and fine_tuned_qa_model.split(":")[1].startswith("ft")
-            else {"engine": fine_tuned_qa_model}
-        )
-        response = openai.Completion.create(
-            prompt=f"Answer the question based on the context below\n\nText: {context}\n\n---\n\nQuestion: {question}\nAnswer:",
-            temperature=0,
-            max_tokens=max_tokens,
-            top_p=1,
-            frequency_penalty=0,
-            presence_penalty=0,
-            stop=stop_sequence,
-            **model_param,
-        )
-        return response["choices"][0]["text"]
-    except Exception as e:
-        print(e)
-        return ""
-
-
-if __name__ == "__main__":
-    parser = argparse.ArgumentParser(
-        description="Rudimentary functionality of the answers endpoint with a fine-tuned Q&A model.",
-        formatter_class=argparse.ArgumentDefaultsHelpFormatter,
-    )
-    parser.add_argument(
-        "--search_file_id", help="Search file id", required=True, type=str
-    )
-    parser.add_argument(
-        "--fine_tuned_qa_model", help="Fine-tuned QA model id", required=True, type=str
-    )
-    parser.add_argument(
-        "--question", help="Question to answer", required=True, type=str
-    )
-    parser.add_argument(
-        "--max_len",
-        help="Maximum length of the returned context (in tokens)",
-        default=1800,
-        type=int,
-    )
-    parser.add_argument(
-        "--search_model", help="Search model to use", default="ada", type=str
-    )
-    parser.add_argument(
-        "--max_rerank",
-        help="Maximum number of reranking for the search",
-        default=10,
-        type=int,
-    )
-    parser.add_argument(
-        "--debug", help="Print debug information (context used)", action="store_true"
-    )
-    parser.add_argument(
-        "--stop_sequence",
-        help="Stop sequences for the Q&A model",
-        default=["\n", "."],
-        nargs="+",
-        type=str,
-    )
-    parser.add_argument(
-        "--max_tokens",
-        help="Maximum number of tokens to return",
-        default=100,
-        type=int,
-    )
-    args = parser.parse_args()
-    response = answer_question(
-        search_file_id=args.search_file_id,
-        fine_tuned_qa_model=args.fine_tuned_qa_model,
-        question=args.question,
-        max_len=args.max_len,
-        search_model=args.search_model,
-        max_rerank=args.max_rerank,
-        debug=args.debug,
-        stop_sequence=args.stop_sequence,
-        max_tokens=args.max_tokens,
-    )
-    print(f"Answer:{response}")
+# This code example has moved. You can now find it in the [OpenAI Cookbook](https://github.com/openai/openai-cookbook)
+# at [examples/fine-tuned_qa](https://github.com/openai/openai-cookbook/tree/main/examples/fine-tuned_qa)
examples/finetuning/finetuning-classification.ipynb
@@ -2,737 +2,35 @@
  "cells": [
   {
    "cell_type": "markdown",
+   "metadata": {},
    "source": [
-    "# Fine tuning classification example\n",
-    "\n",
-    "We will fine-tune an ada classifier to distinguish between the two sports: Baseball and Hockey."
-   ],
-   "metadata": {}
-  },
-  {
-   "cell_type": "code",
-   "execution_count": 1,
-   "source": [
-    "from sklearn.datasets import fetch_20newsgroups\n",
-    "import pandas as pd\n",
-    "import openai\n",
-    "\n",
-    "categories = ['rec.sport.baseball', 'rec.sport.hockey']\n",
-    "sports_dataset = fetch_20newsgroups(subset='train', shuffle=True, random_state=42, categories=categories)"
-   ],
-   "outputs": [],
-   "metadata": {}
-  },
-  {
-   "cell_type": "markdown",
-   "source": [
-    " ## Data exploration\n",
-    " The newsgroup dataset can be loaded using sklearn. First we will look at the data itself:"
-   ],
-   "metadata": {}
-  },
-  {
-   "cell_type": "code",
-   "execution_count": 2,
-   "source": [
-    "print(sports_dataset['data'][0])"
-   ],
-   "outputs": [
-    {
-     "output_type": "stream",
-     "name": "stdout",
-     "text": [
-      "From: dougb@comm.mot.com (Doug Bank)\n",
-      "Subject: Re: Info needed for Cleveland tickets\n",
-      "Reply-To: dougb@ecs.comm.mot.com\n",
-      "Organization: Motorola Land Mobile Products Sector\n",
-      "Distribution: usa\n",
-      "Nntp-Posting-Host: 145.1.146.35\n",
-      "Lines: 17\n",
-      "\n",
-      "In article <1993Apr1.234031.4950@leland.Stanford.EDU>, bohnert@leland.Stanford.EDU (matthew bohnert) writes:\n",
-      "\n",
-      "|> I'm going to be in Cleveland Thursday, April 15 to Sunday, April 18.\n",
-      "|> Does anybody know if the Tribe will be in town on those dates, and\n",
-      "|> if so, who're they playing and if tickets are available?\n",
-      "\n",
-      "The tribe will be in town from April 16 to the 19th.\n",
-      "There are ALWAYS tickets available! (Though they are playing Toronto,\n",
-      "and many Toronto fans make the trip to Cleveland as it is easier to\n",
-      "get tickets in Cleveland than in Toronto.  Either way, I seriously\n",
-      "doubt they will sell out until the end of the season.)\n",
-      "\n",
-      "-- \n",
-      "Doug Bank                       Private Systems Division\n",
-      "dougb@ecs.comm.mot.com          Motorola Communications Sector\n",
-      "dougb@nwu.edu                   Schaumburg, Illinois\n",
-      "dougb@casbah.acns.nwu.edu       708-576-8207                    \n",
-      "\n"
-     ]
-    }
-   ],
-   "metadata": {}
-  },
-  {
-   "cell_type": "code",
-   "execution_count": 3,
-   "source": [
-    "sports_dataset.target_names[sports_dataset['target'][0]]\n"
-   ],
-   "outputs": [
-    {
-     "output_type": "execute_result",
-     "data": {
-      "text/plain": [
-       "'rec.sport.baseball'"
-      ]
-     },
-     "metadata": {},
-     "execution_count": 3
-    }
-   ],
-   "metadata": {}
-  },
-  {
-   "cell_type": "code",
-   "execution_count": 4,
-   "source": [
-    "len_all, len_baseball, len_hockey = len(sports_dataset.data), len([e for e in sports_dataset.target if e == 0]), len([e for e in sports_dataset.target if e == 1])\n",
-    "print(f\"Total examples: {len_all}, Baseball examples: {len_baseball}, Hockey examples: {len_hockey}\")"
-   ],
-   "outputs": [
-    {
-     "output_type": "stream",
-     "name": "stdout",
-     "text": [
-      "Total examples: 1197, Baseball examples: 597, Hockey examples: 600\n"
-     ]
-    }
-   ],
-   "metadata": {}
-  },
-  {
-   "cell_type": "markdown",
-   "source": [
-    "One sample from the baseball category can be seen above. It is an email to a mailing list. We can observe that we have 1197 examples in total, which are evenly split between the two sports."
-   ],
-   "metadata": {}
-  },
-  {
-   "cell_type": "markdown",
-   "source": [
-    "## Data Preparation\n",
-    "We transform the dataset into a pandas dataframe, with a column for prompt and completion. The prompt contains the email from the mailing list, and the completion is a name of the sport, either hockey or baseball. For demonstration purposes only and speed of fine-tuning we take only 300 examples. In a real use case the more examples the better the performance."
-   ],
-   "metadata": {}
-  },
-  {
-   "cell_type": "code",
-   "execution_count": 5,
-   "source": [
-    "import pandas as pd\n",
-    "\n",
-    "labels = [sports_dataset.target_names[x].split('.')[-1] for x in sports_dataset['target']]\n",
-    "texts = [text.strip() for text in sports_dataset['data']]\n",
-    "df = pd.DataFrame(zip(texts, labels), columns = ['prompt','completion']) #[:300]\n",
-    "df.head()"
-   ],
-   "outputs": [
-    {
-     "output_type": "execute_result",
-     "data": {
-      "text/plain": [
-       "                                              prompt completion\n",
-       "0  From: dougb@comm.mot.com (Doug Bank)\\nSubject:...   baseball\n",
-       "1  From: gld@cunixb.cc.columbia.edu (Gary L Dare)...     hockey\n",
-       "2  From: rudy@netcom.com (Rudy Wade)\\nSubject: Re...   baseball\n",
-       "3  From: monack@helium.gas.uug.arizona.edu (david...     hockey\n",
-       "4  Subject: Let it be Known\\nFrom: <ISSBTL@BYUVM....   baseball"
-      ],
-      "text/html": [
-       "<div>\n",
-       "<style scoped>\n",
-       "    .dataframe tbody tr th:only-of-type {\n",
-       "        vertical-align: middle;\n",
-       "    }\n",
-       "\n",
-       "    .dataframe tbody tr th {\n",
-       "        vertical-align: top;\n",
-       "    }\n",
-       "\n",
-       "    .dataframe thead th {\n",
-       "        text-align: right;\n",
-       "    }\n",
-       "</style>\n",
-       "<table border=\"1\" class=\"dataframe\">\n",
-       "  <thead>\n",
-       "    <tr style=\"text-align: right;\">\n",
-       "      <th></th>\n",
-       "      <th>prompt</th>\n",
-       "      <th>completion</th>\n",
-       "    </tr>\n",
-       "  </thead>\n",
-       "  <tbody>\n",
-       "    <tr>\n",
-       "      <th>0</th>\n",
-       "      <td>From: dougb@comm.mot.com (Doug Bank)\\nSubject:...</td>\n",
-       "      <td>baseball</td>\n",
-       "    </tr>\n",
-       "    <tr>\n",
-       "      <th>1</th>\n",
-       "      <td>From: gld@cunixb.cc.columbia.edu (Gary L Dare)...</td>\n",
-       "      <td>hockey</td>\n",
-       "    </tr>\n",
-       "    <tr>\n",
-       "      <th>2</th>\n",
-       "      <td>From: rudy@netcom.com (Rudy Wade)\\nSubject: Re...</td>\n",
-       "      <td>baseball</td>\n",
-       "    </tr>\n",
-       "    <tr>\n",
-       "      <th>3</th>\n",
-       "      <td>From: monack@helium.gas.uug.arizona.edu (david...</td>\n",
-       "      <td>hockey</td>\n",
-       "    </tr>\n",
-       "    <tr>\n",
-       "      <th>4</th>\n",
-       "      <td>Subject: Let it be Known\\nFrom: &lt;ISSBTL@BYUVM....</td>\n",
-       "      <td>baseball</td>\n",
-       "    </tr>\n",
-       "  </tbody>\n",
-       "</table>\n",
-       "</div>"
-      ]
-     },
-     "metadata": {},
-     "execution_count": 5
-    }
-   ],
-   "metadata": {}
-  },
-  {
-   "cell_type": "markdown",
-   "source": [
-    "Both baseball and hockey are single tokens. We save the dataset as a jsonl file."
-   ],
-   "metadata": {}
-  },
-  {
-   "cell_type": "code",
-   "execution_count": 6,
-   "source": [
-    "df.to_json(\"sport2.jsonl\", orient='records', lines=True)"
-   ],
-   "outputs": [],
-   "metadata": {}
-  },
-  {
-   "cell_type": "markdown",
-   "source": [
-    "### Data Preparation tool\n",
-    "We can now use a data preparation tool which will suggest a few improvements to our dataset before fine-tuning. Before launching the tool we update the openai library to ensure we're using the latest data preparation tool. We additionally specify `-q` which auto-accepts all suggestions."
-   ],
-   "metadata": {}
-  },
-  {
-   "cell_type": "code",
-   "execution_count": 7,
-   "source": [
-    "!pip install --upgrade openai"
-   ],
-   "outputs": [],
-   "metadata": {}
-  },
-  {
-   "cell_type": "code",
-   "execution_count": 8,
-   "source": [
-    "!openai tools fine_tunes.prepare_data -f sport2.jsonl -q"
-   ],
-   "outputs": [
-    {
-     "output_type": "stream",
-     "name": "stdout",
-     "text": [
-      "Analyzing...\n",
-      "\n",
-      "- Your file contains 1197 prompt-completion pairs\n",
-      "- Based on your data it seems like you're trying to fine-tune a model for classification\n",
-      "- For classification, we recommend you try one of the faster and cheaper models, such as `ada`\n",
-      "- For classification, you can estimate the expected model performance by keeping a held out dataset, which is not used for training\n",
-      "- There are 11 examples that are very long. These are rows: [134, 200, 281, 320, 404, 595, 704, 838, 1113, 1139, 1174]\n",
-      "For conditional generation, and for classification the examples shouldn't be longer than 2048 tokens.\n",
-      "- Your data does not contain a common separator at the end of your prompts. Having a separator string appended to the end of the prompt makes it clearer to the fine-tuned model where the completion should begin. See https://beta.openai.com/docs/guides/fine-tuning/preparing-your-dataset for more detail and examples. If you intend to do open-ended generation, then you should leave the prompts empty\n",
-      "- The completion should start with a whitespace character (` `). This tends to produce better results due to the tokenization we use. See https://beta.openai.com/docs/guides/fine-tuning/preparing-your-dataset for more details\n",
-      "\n",
-      "Based on the analysis we will perform the following actions:\n",
-      "- [Recommended] Remove 11 long examples [Y/n]: Y\n",
-      "- [Recommended] Add a suffix separator `\\n\\n###\\n\\n` to all prompts [Y/n]: Y\n",
-      "- [Recommended] Add a whitespace character to the beginning of the completion [Y/n]: Y\n",
-      "- [Recommended] Would you like to split into training and validation set? [Y/n]: Y\n",
-      "\n",
-      "\n",
-      "Your data will be written to a new JSONL file. Proceed [Y/n]: Y\n",
-      "\n",
-      "Wrote modified files to `sport2_prepared_train.jsonl` and `sport2_prepared_valid.jsonl`\n",
-      "Feel free to take a look!\n",
-      "\n",
-      "Now use that file when fine-tuning:\n",
-      "> openai api fine_tunes.create -t \"sport2_prepared_train.jsonl\" -v \"sport2_prepared_valid.jsonl\" --compute_classification_metrics --classification_positive_class \" baseball\"\n",
-      "\n",
-      "After youโ€™ve fine-tuned a model, remember that your prompt has to end with the indicator string `\\n\\n###\\n\\n` for the model to start generating completions, rather than continuing with the prompt.\n",
-      "Once your model starts training, it'll approximately take 30.8 minutes to train a `curie` model, and less for `ada` and `babbage`. Queue will approximately take half an hour per job ahead of you.\n"
-     ]
-    }
-   ],
-   "metadata": {}
-  },
-  {
-   "cell_type": "markdown",
-   "source": [
-    "The tool helpfully suggests a few improvements to the dataset and splits the dataset into training and validation set.\n",
-    "\n",
-    "A suffix between a prompt and a completion is necessary to tell the model that the input text has stopped, and that it now needs to predict the class. Since we use the same separator in each example, the model is able to learn that it is meant to predict either baseball or hockey following the separator.\n",
-    "A whitespace prefix in completions is useful, as most word tokens are tokenized with a space prefix.\n",
-    "The tool also recognized that this is likely a classification task, so it suggested to split the dataset into training and validation datasets. This will allow us to easily measure expected performance on new data."
-   ],
-   "metadata": {}
-  },
-  {
-   "cell_type": "markdown",
-   "source": [
-    "## Fine-tuning\n",
-    "The tool suggests we run the following command to train the dataset. Since this is a classification task, we would like to know what the generalization performance on the provided validation set is for our classification use case. The tool suggests to add `--compute_classification_metrics --classification_positive_class \" baseball\"` in order to compute the classification metrics.\n",
-    "\n",
-    "We can simply copy the suggested command from the CLI tool. We specifically add `-m ada` to fine-tune a cheaper and faster ada model, which is usually comperable in performance to slower and more expensive models on classification use cases. "
-   ],
-   "metadata": {}
-  },
-  {
-   "cell_type": "code",
-   "execution_count": 9,
-   "source": [
-    "!openai api fine_tunes.create -t \"sport2_prepared_train.jsonl\" -v \"sport2_prepared_valid.jsonl\" --compute_classification_metrics --classification_positive_class \" baseball\" -m ada"
-   ],
-   "outputs": [
-    {
-     "output_type": "stream",
-     "name": "stdout",
-     "text": [
-      "Upload progress: 100%|โ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆ| 1.52M/1.52M [00:00<00:00, 1.81Mit/s]\n",
-      "Uploaded file from sport2_prepared_train.jsonl: file-Dxx2xJqyjcwlhfDHpZdmCXlF\n",
-      "Upload progress: 100%|โ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆ| 388k/388k [00:00<00:00, 507kit/s]\n",
-      "Uploaded file from sport2_prepared_valid.jsonl: file-Mvb8YAeLnGdneSAFcfiVcgcN\n",
-      "Created fine-tune: ft-2zaA7qi0rxJduWQpdvOvmGn3\n",
-      "Streaming events until fine-tuning is complete...\n",
-      "\n",
-      "(Ctrl-C will interrupt the stream, but not cancel the fine-tune)\n",
-      "[2021-07-30 13:15:50] Created fine-tune: ft-2zaA7qi0rxJduWQpdvOvmGn3\n",
-      "[2021-07-30 13:15:52] Fine-tune enqueued. Queue number: 0\n",
-      "[2021-07-30 13:15:56] Fine-tune started\n",
-      "[2021-07-30 13:18:55] Completed epoch 1/4\n",
-      "[2021-07-30 13:20:47] Completed epoch 2/4\n",
-      "[2021-07-30 13:22:40] Completed epoch 3/4\n",
-      "[2021-07-30 13:24:31] Completed epoch 4/4\n",
-      "[2021-07-30 13:26:22] Uploaded model: ada:ft-openai-2021-07-30-12-26-20\n",
-      "[2021-07-30 13:26:27] Uploaded result file: file-6Ki9RqLQwkChGsr9CHcr1ncg\n",
-      "[2021-07-30 13:26:28] Fine-tune succeeded\n",
-      "\n",
-      "Job complete! Status: succeeded ๐ŸŽ‰\n",
-      "Try out your fine-tuned model:\n",
-      "\n",
-      "openai api completions.create -m ada:ft-openai-2021-07-30-12-26-20 -p <YOUR_PROMPT>\n"
-     ]
-    }
-   ],
-   "metadata": {}
-  },
-  {
-   "cell_type": "markdown",
-   "source": [
-    "The model is successfully trained in about ten minutes. We can see the model name is `ada:ft-openai-2021-07-30-12-26-20`, which we can use for doing inference."
-   ],
-   "metadata": {}
-  },
-  {
-   "cell_type": "markdown",
-   "source": [
-    "### [Advanced] Results and expected model performance\n",
-    "We can now download the results file to observe the expected performance on a held out validation set."
-   ],
-   "metadata": {}
-  },
-  {
-   "cell_type": "code",
-   "execution_count": 10,
-   "source": [
-    "!openai api fine_tunes.results -i ft-2zaA7qi0rxJduWQpdvOvmGn3 > result.csv"
-   ],
-   "outputs": [],
-   "metadata": {}
-  },
-  {
-   "cell_type": "code",
-   "execution_count": 11,
-   "source": [
-    "results = pd.read_csv('result.csv')\n",
-    "results[results['classification/accuracy'].notnull()].tail(1)"
-   ],
-   "outputs": [
-    {
-     "output_type": "execute_result",
-     "data": {
-      "text/plain": [
-       "     step  elapsed_tokens  elapsed_examples  training_loss  \\\n",
-       "929   930         3027688              3720       0.044408   \n",
-       "\n",
-       "     training_sequence_accuracy  training_token_accuracy  \\\n",
-       "929                         1.0                      1.0   \n",
-       "\n",
-       "     classification/accuracy  classification/precision  classification/recall  \\\n",
-       "929                 0.991597                  0.983471                    1.0   \n",
-       "\n",
-       "     classification/auroc  classification/auprc  classification/f1.0  \\\n",
-       "929                   1.0                   1.0             0.991667   \n",
-       "\n",
-       "     validation_loss  validation_sequence_accuracy  validation_token_accuracy  \n",
-       "929              NaN                           NaN                        NaN  "
-      ],
-      "text/html": [
-       "<div>\n",
-       "<style scoped>\n",
-       "    .dataframe tbody tr th:only-of-type {\n",
-       "        vertical-align: middle;\n",
-       "    }\n",
-       "\n",
-       "    .dataframe tbody tr th {\n",
-       "        vertical-align: top;\n",
-       "    }\n",
-       "\n",
-       "    .dataframe thead th {\n",
-       "        text-align: right;\n",
-       "    }\n",
-       "</style>\n",
-       "<table border=\"1\" class=\"dataframe\">\n",
-       "  <thead>\n",
-       "    <tr style=\"text-align: right;\">\n",
-       "      <th></th>\n",
-       "      <th>step</th>\n",
-       "      <th>elapsed_tokens</th>\n",
-       "      <th>elapsed_examples</th>\n",
-       "      <th>training_loss</th>\n",
-       "      <th>training_sequence_accuracy</th>\n",
-       "      <th>training_token_accuracy</th>\n",
-       "      <th>classification/accuracy</th>\n",
-       "      <th>classification/precision</th>\n",
-       "      <th>classification/recall</th>\n",
-       "      <th>classification/auroc</th>\n",
-       "      <th>classification/auprc</th>\n",
-       "      <th>classification/f1.0</th>\n",
-       "      <th>validation_loss</th>\n",
-       "      <th>validation_sequence_accuracy</th>\n",
-       "      <th>validation_token_accuracy</th>\n",
-       "    </tr>\n",
-       "  </thead>\n",
-       "  <tbody>\n",
-       "    <tr>\n",
-       "      <th>929</th>\n",
-       "      <td>930</td>\n",
-       "      <td>3027688</td>\n",
-       "      <td>3720</td>\n",
-       "      <td>0.044408</td>\n",
-       "      <td>1.0</td>\n",
-       "      <td>1.0</td>\n",
-       "      <td>0.991597</td>\n",
-       "      <td>0.983471</td>\n",
-       "      <td>1.0</td>\n",
-       "      <td>1.0</td>\n",
-       "      <td>1.0</td>\n",
-       "      <td>0.991667</td>\n",
-       "      <td>NaN</td>\n",
-       "      <td>NaN</td>\n",
-       "      <td>NaN</td>\n",
-       "    </tr>\n",
-       "  </tbody>\n",
-       "</table>\n",
-       "</div>"
-      ]
-     },
-     "metadata": {},
-     "execution_count": 11
-    }
-   ],
-   "metadata": {}
-  },
-  {
-   "cell_type": "markdown",
-   "source": [
-    "The accuracy reaches 99.6%. On the plot below we can see how accuracy on the validation set increases during the training run. "
-   ],
-   "metadata": {}
-  },
-  {
-   "cell_type": "code",
-   "execution_count": 12,
-   "source": [
-    "results[results['classification/accuracy'].notnull()]['classification/accuracy'].plot()"
-   ],
-   "outputs": [
-    {
-     "output_type": "execute_result",
-     "data": {
-      "text/plain": [
-       "<AxesSubplot:>"
-      ]
-     },
-     "metadata": {},
-     "execution_count": 12
-    },
-    {
-     "output_type": "display_data",
-     "data": {
-      "text/plain": [
-       "<Figure size 432x288 with 1 Axes>"
-      ],
-      "image/png": "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"
-     },
-     "metadata": {
-      "needs_background": "light"
-     }
-    }
-   ],
-   "metadata": {}
-  },
-  {
-   "cell_type": "markdown",
-   "source": [
-    "## Using the model\n",
-    "We can now call the model to get the predictions."
-   ],
-   "metadata": {}
-  },
-  {
-   "cell_type": "code",
-   "execution_count": 13,
-   "source": [
-    "test = pd.read_json('sport2_prepared_valid.jsonl', lines=True)\n",
-    "test.head()"
-   ],
-   "outputs": [
-    {
-     "output_type": "execute_result",
-     "data": {
-      "text/plain": [
-       "                                              prompt completion\n",
-       "0  From: gld@cunixb.cc.columbia.edu (Gary L Dare)...     hockey\n",
-       "1  From: smorris@venus.lerc.nasa.gov (Ron Morris ...     hockey\n",
-       "2  From: golchowy@alchemy.chem.utoronto.ca (Geral...     hockey\n",
-       "3  From: krattige@hpcc01.corp.hp.com (Kim Krattig...   baseball\n",
-       "4  From: warped@cs.montana.edu (Doug Dolven)\\nSub...   baseball"
-      ],
-      "text/html": [
-       "<div>\n",
-       "<style scoped>\n",
-       "    .dataframe tbody tr th:only-of-type {\n",
-       "        vertical-align: middle;\n",
-       "    }\n",
-       "\n",
-       "    .dataframe tbody tr th {\n",
-       "        vertical-align: top;\n",
-       "    }\n",
-       "\n",
-       "    .dataframe thead th {\n",
-       "        text-align: right;\n",
-       "    }\n",
-       "</style>\n",
-       "<table border=\"1\" class=\"dataframe\">\n",
-       "  <thead>\n",
-       "    <tr style=\"text-align: right;\">\n",
-       "      <th></th>\n",
-       "      <th>prompt</th>\n",
-       "      <th>completion</th>\n",
-       "    </tr>\n",
-       "  </thead>\n",
-       "  <tbody>\n",
-       "    <tr>\n",
-       "      <th>0</th>\n",
-       "      <td>From: gld@cunixb.cc.columbia.edu (Gary L Dare)...</td>\n",
-       "      <td>hockey</td>\n",
-       "    </tr>\n",
-       "    <tr>\n",
-       "      <th>1</th>\n",
-       "      <td>From: smorris@venus.lerc.nasa.gov (Ron Morris ...</td>\n",
-       "      <td>hockey</td>\n",
-       "    </tr>\n",
-       "    <tr>\n",
-       "      <th>2</th>\n",
-       "      <td>From: golchowy@alchemy.chem.utoronto.ca (Geral...</td>\n",
-       "      <td>hockey</td>\n",
-       "    </tr>\n",
-       "    <tr>\n",
-       "      <th>3</th>\n",
-       "      <td>From: krattige@hpcc01.corp.hp.com (Kim Krattig...</td>\n",
-       "      <td>baseball</td>\n",
-       "    </tr>\n",
-       "    <tr>\n",
-       "      <th>4</th>\n",
-       "      <td>From: warped@cs.montana.edu (Doug Dolven)\\nSub...</td>\n",
-       "      <td>baseball</td>\n",
-       "    </tr>\n",
-       "  </tbody>\n",
-       "</table>\n",
-       "</div>"
-      ]
-     },
-     "metadata": {},
-     "execution_count": 13
-    }
-   ],
-   "metadata": {}
-  },
-  {
-   "cell_type": "markdown",
-   "source": [
-    "We need to use the same separator following the prompt which we used during fine-tuning. In this case it is `\\n\\n###\\n\\n`. Since we're concerned with classification, we want the temperature to be as low as possible, and we only require one token completion to determine the prediction of the model."
-   ],
-   "metadata": {}
-  },
-  {
-   "cell_type": "code",
-   "execution_count": 14,
-   "source": [
-    "ft_model = 'ada:ft-openai-2021-07-30-12-26-20'\n",
-    "res = openai.Completion.create(model=ft_model, prompt=test['prompt'][0] + '\\n\\n###\\n\\n', max_tokens=1, temperature=0)\n",
-    "res['choices'][0]['text']\n"
-   ],
-   "outputs": [
-    {
-     "output_type": "execute_result",
-     "data": {
-      "text/plain": [
-       "' hockey'"
-      ]
-     },
-     "metadata": {},
-     "execution_count": 14
-    }
-   ],
-   "metadata": {}
-  },
-  {
-   "cell_type": "markdown",
-   "source": [
-    "To get the log probabilities, we can specify logprobs parameter on the completion request"
-   ],
-   "metadata": {}
-  },
-  {
-   "cell_type": "code",
-   "execution_count": 15,
-   "source": [
-    "res = openai.Completion.create(model=ft_model, prompt=test['prompt'][0] + '\\n\\n###\\n\\n', max_tokens=1, temperature=0, logprobs=2)\n",
-    "res['choices'][0]['logprobs']['top_logprobs'][0]"
-   ],
-   "outputs": [
-    {
-     "output_type": "execute_result",
-     "data": {
-      "text/plain": [
-       "<OpenAIObject at 0x7fe114e435c8> JSON: {\n",
-       "  \" baseball\": -7.6311407,\n",
-       "  \" hockey\": -0.0006307676\n",
-       "}"
-      ]
-     },
-     "metadata": {},
-     "execution_count": 15
-    }
-   ],
-   "metadata": {}
-  },
-  {
-   "cell_type": "markdown",
-   "source": [
-    "We can see that the model predicts hockey as a lot more likely than baseball, which is the correct prediction. By requesting log_probs, we can see the prediction (log) probability for each class."
-   ],
-   "metadata": {}
-  },
-  {
-   "cell_type": "markdown",
-   "source": [
-    "### Generalization\n",
-    "Interestingly, our fine-tuned classifier is quite versatile. Despite being trained on emails to different mailing lists, it also successfully predicts tweets."
-   ],
-   "metadata": {}
-  },
-  {
-   "cell_type": "code",
-   "execution_count": 16,
-   "source": [
-    "sample_hockey_tweet = \"\"\"Thank you to the \n",
-    "@Canes\n",
-    " and all you amazing Caniacs that have been so supportive! You guys are some of the best fans in the NHL without a doubt! Really excited to start this new chapter in my career with the \n",
-    "@DetroitRedWings\n",
-    " !!\"\"\"\n",
-    "res = openai.Completion.create(model=ft_model, prompt=sample_hockey_tweet + '\\n\\n###\\n\\n', max_tokens=1, temperature=0, logprobs=2)\n",
-    "res['choices'][0]['text']"
-   ],
-   "outputs": [
-    {
-     "output_type": "execute_result",
-     "data": {
-      "text/plain": [
-       "' hockey'"
-      ]
-     },
-     "metadata": {},
-     "execution_count": 16
-    }
-   ],
-   "metadata": {}
-  },
-  {
-   "cell_type": "code",
-   "execution_count": 17,
-   "source": [
-    "sample_baseball_tweet=\"\"\"BREAKING: The Tampa Bay Rays are finalizing a deal to acquire slugger Nelson Cruz from the Minnesota Twins, sources tell ESPN.\"\"\"\n",
-    "res = openai.Completion.create(model=ft_model, prompt=sample_baseball_tweet + '\\n\\n###\\n\\n', max_tokens=1, temperature=0, logprobs=2)\n",
-    "res['choices'][0]['text']"
-   ],
-   "outputs": [
-    {
-     "output_type": "execute_result",
-     "data": {
-      "text/plain": [
-       "' baseball'"
-      ]
-     },
-     "metadata": {},
-     "execution_count": 17
-    }
-   ],
-   "metadata": {}
+    "This code example has moved. You can now find it in the [OpenAI Cookbook](https://github.com/openai/openai-cookbook) at [examples/Fine-tuned_classification.ipynb](https://github.com/openai/openai-cookbook/blob/main/examples/Fine-tuned_classification.ipynb)."
+   ]
   }
  ],
  "metadata": {
-  "orig_nbformat": 4,
+  "kernelspec": {
+   "display_name": "Python 3.9.9 ('openai')",
+   "language": "python",
+   "name": "python3"
+  },
   "language_info": {
-   "name": "python",
-   "version": "3.7.3",
-   "mimetype": "text/x-python",
    "codemirror_mode": {
     "name": "ipython",
     "version": 3
    },
-   "pygments_lexer": "ipython3",
+   "file_extension": ".py",
+   "mimetype": "text/x-python",
+   "name": "python",
    "nbconvert_exporter": "python",
-   "file_extension": ".py"
-  },
-  "kernelspec": {
-   "name": "python3",
-   "display_name": "Python 3.7.3 64-bit ('base': conda)"
+   "pygments_lexer": "ipython3",
+   "version": "3.9.9"
   },
-  "interpreter": {
-   "hash": "3b138a8faad971cc852f62bcf00f59ea0e31721743ea2c5a866ca26adf572e75"
+  "orig_nbformat": 4,
+  "vscode": {
+   "interpreter": {
+    "hash": "365536dcbde60510dc9073d6b991cd35db2d9bac356a11f5b64279a5e6708b97"
+   }
   }
  },
  "nbformat": 4,
examples/finetuning/olympics-1-collect-data.ipynb
@@ -4,494 +4,14 @@
    "cell_type": "markdown",
    "metadata": {},
    "source": [
-    "# 1. Collect Wikipedia data about Olympic Games 2020\n",
-    "\n",
-    "The idea of this project is to create a question answering model, based on a few paragraphs of provided text. Base GPT-3 models do a good job at answering questions when the answer is contained within the paragraph, however if the answer isn't contained, the base models tend to try their best to answer anyway, often leading to confabulated answers. \n",
-    "\n",
-    "To create a model which answers questions only if there is sufficient context for doing so, we first create a dataset of questions and answers based on paragraphs of text. In order to train the model to answer only when the answer is present, we also add adversarial examples, where the question doesn't match the context. In those cases, we ask the model to output \"No sufficient context for answering the question\". \n",
-    "\n",
-    "We will perform this task in three notebooks:\n",
-    "1. The first (this) notebook focuses on collecting recent data, which GPT-3 didn't see during it's pre-training. We picked the topic of Olympic Games 2020 (which actually took place in the summer of 2021), and downloaded 713 unique pages. We organized the dataset by individual sections, which will serve as context for asking and answering the questions.\n",
-    "2. The [second notebook](olympics-2-create-qa.ipynb) will utilize Davinci-instruct to ask a few questions based on a Wikipedia section, as well as answer those questions, based on that section.\n",
-    "3. The [third notebook](olympics-3-train-qa.ipynb) will utilize the dataset of context, question and answer pairs to additionally create adversarial questions and context pairs, where the question was not generated on that context. In those cases the model will be prompted to answer \"No sufficient context for answering the question\". We will also train a discriminator model, which predicts whether the question can be answered based on the context or not."
-   ]
-  },
-  {
-   "cell_type": "markdown",
-   "metadata": {},
-   "source": [
-    "## 1.1 Data extraction using the wikipedia API\n",
-    "Extracting the data will take about half an hour, and processing will likely take about as much."
-   ]
-  },
-  {
-   "cell_type": "code",
-   "execution_count": 1,
-   "metadata": {},
-   "outputs": [
-    {
-     "data": {
-      "text/plain": [
-       "909"
-      ]
-     },
-     "execution_count": 1,
-     "metadata": {},
-     "output_type": "execute_result"
-    }
-   ],
-   "source": [
-    "import pandas as pd\n",
-    "import wikipedia\n",
-    "\n",
-    "\n",
-    "def filter_olympic_2020_titles(titles):\n",
-    "    \"\"\"\n",
-    "    Get the titles which are related to Olympic games hosted in 2020, given a list of titles\n",
-    "    \"\"\"\n",
-    "    titles = [title for title in titles if '2020' in title and 'olympi' in title.lower()]\n",
-    "    \n",
-    "    return titles\n",
-    "\n",
-    "def get_wiki_page(title):\n",
-    "    \"\"\"\n",
-    "    Get the wikipedia page given a title\n",
-    "    \"\"\"\n",
-    "    try:\n",
-    "        return wikipedia.page(title)\n",
-    "    except wikipedia.exceptions.DisambiguationError as e:\n",
-    "        return wikipedia.page(e.options[0])\n",
-    "    except wikipedia.exceptions.PageError as e:\n",
-    "        return None\n",
-    "\n",
-    "def recursively_find_all_pages(titles, titles_so_far=set()):\n",
-    "    \"\"\"\n",
-    "    Recursively find all the pages that are linked to the Wikipedia titles in the list\n",
-    "    \"\"\"\n",
-    "    all_pages = []\n",
-    "    \n",
-    "    titles = list(set(titles) - titles_so_far)\n",
-    "    titles = filter_olympic_2020_titles(titles)\n",
-    "    titles_so_far.update(titles)\n",
-    "    for title in titles:\n",
-    "        page = get_wiki_page(title)\n",
-    "        if page is None:\n",
-    "            continue\n",
-    "        all_pages.append(page)\n",
-    "\n",
-    "        new_pages = recursively_find_all_pages(page.links, titles_so_far)\n",
-    "        for pg in new_pages:\n",
-    "            if pg.title not in [p.title for p in all_pages]:\n",
-    "                all_pages.append(pg)\n",
-    "        titles_so_far.update(page.links)\n",
-    "    return all_pages\n",
-    "\n",
-    "\n",
-    "pages = recursively_find_all_pages([\"2020 Summer Olympics\"])\n",
-    "len(pages)"
-   ]
-  },
-  {
-   "cell_type": "markdown",
-   "metadata": {},
-   "source": [
-    "## 1.2 Filtering the Wikipedia pages and splitting them into sections by headings\n",
-    "We remove sections unlikely to contain textual information, and ensure that each section is not longer than the token limit"
-   ]
-  },
-  {
-   "cell_type": "code",
-   "execution_count": 2,
-   "metadata": {},
-   "outputs": [
-    {
-     "data": {
-      "text/plain": [
-       "('Bermuda at the 2020 Summer Olympics',\n",
-       " 'Equestrian',\n",
-       " \"Bermuda entered one dressage rider into the Olympic competition by finishing in the top four, outside the group selection, of the individual FEI Olympic Rankings for Groups D and E (North, Central, and South America), marking the country's recurrence to the sport after an eight-year absence. The quota was later withdrawn, following an injury of Annabelle Collins' main horse Joyero and a failure to obtain minimum eligibility requirements (MER) aboard a new horse Chuppy Checker.\",\n",
-       " 104)"
-      ]
-     },
-     "execution_count": 2,
-     "metadata": {},
-     "output_type": "execute_result"
-    }
-   ],
-   "source": [
-    "\n",
-    "import re\n",
-    "from typing import Set\n",
-    "from transformers import GPT2TokenizerFast\n",
-    "\n",
-    "import numpy as np\n",
-    "from nltk.tokenize import sent_tokenize\n",
-    "\n",
-    "tokenizer = GPT2TokenizerFast.from_pretrained(\"gpt2\")\n",
-    "\n",
-    "def count_tokens(text: str) -> int:\n",
-    "    \"\"\"count the number of tokens in a string\"\"\"\n",
-    "    return len(tokenizer.encode(text))\n",
-    "\n",
-    "def reduce_long(\n",
-    "    long_text: str, long_text_tokens: bool = False, max_len: int = 590\n",
-    ") -> str:\n",
-    "    \"\"\"\n",
-    "    Reduce a long text to a maximum of `max_len` tokens by potentially cutting at a sentence end\n",
-    "    \"\"\"\n",
-    "    if not long_text_tokens:\n",
-    "        long_text_tokens = count_tokens(long_text)\n",
-    "    if long_text_tokens > max_len:\n",
-    "        sentences = sent_tokenize(long_text.replace(\"\\n\", \" \"))\n",
-    "        ntokens = 0\n",
-    "        for i, sentence in enumerate(sentences):\n",
-    "            ntokens += 1 + count_tokens(sentence)\n",
-    "            if ntokens > max_len:\n",
-    "                return \". \".join(sentences[:i][:-1]) + \".\"\n",
-    "\n",
-    "    return long_text\n",
-    "\n",
-    "discard_categories = ['See also', 'References', 'External links', 'Further reading', \"Footnotes\",\n",
-    "    \"Bibliography\", \"Sources\", \"Citations\", \"Literature\", \"Footnotes\", \"Notes and references\",\n",
-    "    \"Photo gallery\", \"Works cited\", \"Photos\", \"Gallery\", \"Notes\", \"References and sources\",\n",
-    "    \"References and notes\",]\n",
-    "\n",
-    "\n",
-    "def extract_sections(\n",
-    "    wiki_text: str,\n",
-    "    title: str,\n",
-    "    max_len: int = 1500,\n",
-    "    discard_categories: Set[str] = discard_categories,\n",
-    ") -> str:\n",
-    "    \"\"\"\n",
-    "    Extract the sections of a Wikipedia page, discarding the the references and other low information sections\n",
-    "    \"\"\"\n",
-    "    if len(wiki_text) == 0:\n",
-    "        return []\n",
-    "\n",
-    "    # find all headings and the coresponding contents\n",
-    "    headings = re.findall(\"==+ .* ==+\", wiki_text)\n",
-    "    for heading in headings:\n",
-    "        wiki_text = wiki_text.replace(heading, \"==+ !! ==+\")\n",
-    "    contents = wiki_text.split(\"==+ !! ==+\")\n",
-    "    contents = [c.strip() for c in contents]\n",
-    "    assert len(headings) == len(contents) - 1\n",
-    "\n",
-    "    cont = contents.pop(0).strip()\n",
-    "    outputs = [(title, \"Summary\", cont, count_tokens(cont)+4)]\n",
-    "    \n",
-    "    # discard the discard categories, accounting for a tree structure\n",
-    "    max_level = 100\n",
-    "    keep_group_level = max_level\n",
-    "    remove_group_level = max_level\n",
-    "    nheadings, ncontents = [], []\n",
-    "    for heading, content in zip(headings, contents):\n",
-    "        plain_heading = \" \".join(heading.split(\" \")[1:-1])\n",
-    "        num_equals = len(heading.split(\" \")[0])\n",
-    "        if num_equals <= keep_group_level:\n",
-    "            keep_group_level = max_level\n",
-    "\n",
-    "        if num_equals > remove_group_level:\n",
-    "            if (\n",
-    "                num_equals <= keep_group_level\n",
-    "            ):\n",
-    "                continue\n",
-    "        keep_group_level = max_level\n",
-    "        if plain_heading in discard_categories:\n",
-    "            remove_group_level = num_equals\n",
-    "            keep_group_level = max_level\n",
-    "            continue\n",
-    "        nheadings.append(heading.replace(\"=\", \"\").strip())\n",
-    "        ncontents.append(content)\n",
-    "        remove_group_level = max_level\n",
-    "\n",
-    "    # count the tokens of each section\n",
-    "    ncontent_ntokens = [\n",
-    "        count_tokens(c)\n",
-    "        + 3\n",
-    "        + count_tokens(\" \".join(h.split(\" \")[1:-1]))\n",
-    "        - (1 if len(c) == 0 else 0)\n",
-    "        for h, c in zip(nheadings, ncontents)\n",
-    "    ]\n",
-    "\n",
-    "    # Create a tuple of (title, section_name, content, number of tokens)\n",
-    "    outputs += [(title, h, c, t) if t<max_len \n",
-    "                else (title, h, reduce_long(c, max_len), count_tokens(reduce_long(c,max_len))) \n",
-    "                    for h, c, t in zip(nheadings, ncontents, ncontent_ntokens)]\n",
-    "    \n",
-    "    return outputs\n",
-    "\n",
-    "# Example page being processed into sections\n",
-    "bermuda_page = get_wiki_page('Bermuda at the 2020 Summer Olympics')\n",
-    "ber = extract_sections(bermuda_page.content, bermuda_page.title)\n",
-    "\n",
-    "# Example section\n",
-    "ber[-1]\n"
-   ]
-  },
-  {
-   "cell_type": "markdown",
-   "metadata": {},
-   "source": [
-    "### 1.2.1 We create a dataset and filter out any sections with fewer than 40 tokens, as those are unlikely to contain enough context to ask a good question."
-   ]
-  },
-  {
-   "cell_type": "code",
-   "execution_count": 3,
-   "metadata": {},
-   "outputs": [
-    {
-     "name": "stderr",
-     "output_type": "stream",
-     "text": [
-      "Token indices sequence length is longer than the specified maximum sequence length for this model (1060 > 1024). Running this sequence through the model will result in indexing errors\n"
-     ]
-    },
-    {
-     "data": {
-      "text/html": [
-       "<div>\n",
-       "<style scoped>\n",
-       "    .dataframe tbody tr th:only-of-type {\n",
-       "        vertical-align: middle;\n",
-       "    }\n",
-       "\n",
-       "    .dataframe tbody tr th {\n",
-       "        vertical-align: top;\n",
-       "    }\n",
-       "\n",
-       "    .dataframe thead th {\n",
-       "        text-align: right;\n",
-       "    }\n",
-       "</style>\n",
-       "<table border=\"1\" class=\"dataframe\">\n",
-       "  <thead>\n",
-       "    <tr style=\"text-align: right;\">\n",
-       "      <th></th>\n",
-       "      <th>title</th>\n",
-       "      <th>heading</th>\n",
-       "      <th>content</th>\n",
-       "      <th>tokens</th>\n",
-       "    </tr>\n",
-       "  </thead>\n",
-       "  <tbody>\n",
-       "    <tr>\n",
-       "      <th>0</th>\n",
-       "      <td>2020 Summer Olympics</td>\n",
-       "      <td>Summary</td>\n",
-       "      <td>The 2020 Summer Olympics (Japanese: 2020ๅนดๅคๅญฃใ‚ชใƒชใƒณ...</td>\n",
-       "      <td>713</td>\n",
-       "    </tr>\n",
-       "    <tr>\n",
-       "      <th>1</th>\n",
-       "      <td>2020 Summer Olympics</td>\n",
-       "      <td>Host city selection</td>\n",
-       "      <td>The International Olympic Committee (IOC) vote...</td>\n",
-       "      <td>126</td>\n",
-       "    </tr>\n",
-       "    <tr>\n",
-       "      <th>2</th>\n",
-       "      <td>2020 Summer Olympics</td>\n",
-       "      <td>Impact of the COVID-19 pandemic</td>\n",
-       "      <td>In January 2020, concerns were raised about th...</td>\n",
-       "      <td>369</td>\n",
-       "    </tr>\n",
-       "    <tr>\n",
-       "      <th>3</th>\n",
-       "      <td>2020 Summer Olympics</td>\n",
-       "      <td>Qualifying event cancellation and postponement</td>\n",
-       "      <td>Concerns about the pandemic began to affect qu...</td>\n",
-       "      <td>298</td>\n",
-       "    </tr>\n",
-       "    <tr>\n",
-       "      <th>4</th>\n",
-       "      <td>2020 Summer Olympics</td>\n",
-       "      <td>Effect on doping tests</td>\n",
-       "      <td>Mandatory doping tests were being severely res...</td>\n",
-       "      <td>163</td>\n",
-       "    </tr>\n",
-       "  </tbody>\n",
-       "</table>\n",
-       "</div>"
-      ],
-      "text/plain": [
-       "                  title                                         heading  \\\n",
-       "0  2020 Summer Olympics                                         Summary   \n",
-       "1  2020 Summer Olympics                             Host city selection   \n",
-       "2  2020 Summer Olympics                 Impact of the COVID-19 pandemic   \n",
-       "3  2020 Summer Olympics  Qualifying event cancellation and postponement   \n",
-       "4  2020 Summer Olympics                          Effect on doping tests   \n",
-       "\n",
-       "                                             content  tokens  \n",
-       "0  The 2020 Summer Olympics (Japanese: 2020ๅนดๅคๅญฃใ‚ชใƒชใƒณ...     713  \n",
-       "1  The International Olympic Committee (IOC) vote...     126  \n",
-       "2  In January 2020, concerns were raised about th...     369  \n",
-       "3  Concerns about the pandemic began to affect qu...     298  \n",
-       "4  Mandatory doping tests were being severely res...     163  "
-      ]
-     },
-     "execution_count": 3,
-     "metadata": {},
-     "output_type": "execute_result"
-    }
-   ],
-   "source": [
-    "res = []\n",
-    "for page in pages:\n",
-    "    res += extract_sections(page.content, page.title)\n",
-    "df = pd.DataFrame(res, columns=[\"title\", \"heading\", \"content\", \"tokens\"])\n",
-    "df = df[df.tokens>40]\n",
-    "df = df.drop_duplicates(['title','heading'])\n",
-    "df = df.reset_index().drop('index',axis=1) # reset index\n",
-    "df.head()"
-   ]
-  },
-  {
-   "cell_type": "markdown",
-   "metadata": {},
-   "source": [
-    "### Save the section dataset\n",
-    "We will save the section dataset, for the [next notebook](olympics-2-create-qa.ipynb)"
-   ]
-  },
-  {
-   "cell_type": "code",
-   "execution_count": 4,
-   "metadata": {},
-   "outputs": [],
-   "source": [
-    "df.to_csv('olympics-data/olympics_sections.csv', index=False)"
-   ]
-  },
-  {
-   "cell_type": "markdown",
-   "metadata": {},
-   "source": [
-    "## 1.3 (Optional) Exploring the data "
-   ]
-  },
-  {
-   "cell_type": "code",
-   "execution_count": 5,
-   "metadata": {},
-   "outputs": [
-    {
-     "data": {
-      "text/plain": [
-       "Concerns and controversies at the 2020 Summer Olympics    51\n",
-       "United States at the 2020 Summer Olympics                 46\n",
-       "Great Britain at the 2020 Summer Olympics                 42\n",
-       "Canada at the 2020 Summer Olympics                        39\n",
-       "Olympic Games                                             39\n",
-       "Name: title, dtype: int64"
-      ]
-     },
-     "execution_count": 5,
-     "metadata": {},
-     "output_type": "execute_result"
-    }
-   ],
-   "source": [
-    "df.title.value_counts().head()"
-   ]
-  },
-  {
-   "cell_type": "markdown",
-   "metadata": {},
-   "source": [
-    "There appear to be winter and summer Olympics 2020. We chose to leave a little ambiguity and noise in the dataset, even though we were interested in only Summer Olympics 2020."
-   ]
-  },
-  {
-   "cell_type": "code",
-   "execution_count": 6,
-   "metadata": {},
-   "outputs": [
-    {
-     "data": {
-      "text/plain": [
-       "True     3567\n",
-       "False     305\n",
-       "Name: title, dtype: int64"
-      ]
-     },
-     "execution_count": 6,
-     "metadata": {},
-     "output_type": "execute_result"
-    }
-   ],
-   "source": [
-    "df.title.str.contains('Summer').value_counts()"
-   ]
-  },
-  {
-   "cell_type": "code",
-   "execution_count": 7,
-   "metadata": {},
-   "outputs": [
-    {
-     "data": {
-      "text/plain": [
-       "False    3774\n",
-       "True       98\n",
-       "Name: title, dtype: int64"
-      ]
-     },
-     "execution_count": 7,
-     "metadata": {},
-     "output_type": "execute_result"
-    }
-   ],
-   "source": [
-    "df.title.str.contains('Winter').value_counts()"
-   ]
-  },
-  {
-   "cell_type": "code",
-   "execution_count": 8,
-   "metadata": {},
-   "outputs": [
-    {
-     "data": {
-      "image/png": "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",
-      "text/plain": [
-       "<Figure size 432x288 with 1 Axes>"
-      ]
-     },
-     "metadata": {
-      "needs_background": "light"
-     },
-     "output_type": "display_data"
-    }
-   ],
-   "source": [
-    "import pandas as pd\n",
-    "from matplotlib import pyplot as plt\n",
-    "\n",
-    "df = pd.read_csv('olympics-data/olympics_sections.csv')\n",
-    "df[['tokens']].hist()\n",
-    "# add axis descriptions and title\n",
-    "plt.xlabel('Number of tokens')\n",
-    "plt.ylabel('Number of Wikipedia sections')\n",
-    "plt.title('Distribution of number of tokens in Wikipedia sections')\n",
-    "plt.show()"
-   ]
-  },
-  {
-   "cell_type": "markdown",
-   "metadata": {},
-   "source": [
-    "We can see that the majority of section are fairly short (less than 500 tokens)."
+    "This code example has moved. You can now find it in the [OpenAI Cookbook](https://github.com/openai/openai-cookbook) at [examples/fine-tuned_qa/](https://github.com/openai/openai-cookbook/tree/main/examples/fine-tuned_qa)."
    ]
   }
  ],
  "metadata": {
-  "interpreter": {
-   "hash": "be4b5d5b73a21c599de40d6deb1129796d12dc1cc33a738f7bac13269cfcafe8"
-  },
   "kernelspec": {
-   "display_name": "Python 3.7.3 64-bit ('base': conda)",
+   "display_name": "Python 3.9.9 ('openai')",
+   "language": "python",
    "name": "python3"
   },
   "language_info": {
@@ -504,9 +24,14 @@
    "name": "python",
    "nbconvert_exporter": "python",
    "pygments_lexer": "ipython3",
-   "version": "3.7.3"
+   "version": "3.9.9"
   },
-  "orig_nbformat": 4
+  "orig_nbformat": 4,
+  "vscode": {
+   "interpreter": {
+    "hash": "365536dcbde60510dc9073d6b991cd35db2d9bac356a11f5b64279a5e6708b97"
+   }
+  }
  },
  "nbformat": 4,
  "nbformat_minor": 2
examples/finetuning/olympics-2-create-qa.ipynb
@@ -4,732 +4,14 @@
    "cell_type": "markdown",
    "metadata": {},
    "source": [
-    "# 2. Creating a synthetic Q&A dataset\n",
-    "We use [`davinci-instruct-beta-v2`](https://beta.openai.com/docs/engines/instruct-series-beta), a model specialized in following instructions, to create questions based on the given context. Then we also use [`davinci-instruct-beta-v2`](https://beta.openai.com/docs/engines/instruct-series-beta) to answer those questions, given the same context. \n",
-    "\n",
-    "This is expensive, and will also take a long time, as we call the davinci engine for each section. You can simply download the final dataset instead.\n",
-    "\n",
-    "We're using the dataset created using the [previous notebook](olympics-1-collect-data.ipynb)"
-   ]
-  },
-  {
-   "cell_type": "markdown",
-   "metadata": {},
-   "source": [
-    "## 2.1 Read in the data, and create a context\n",
-    "Create a context by concatenating the title, the heading and the content of that section"
-   ]
-  },
-  {
-   "cell_type": "code",
-   "execution_count": 1,
-   "metadata": {},
-   "outputs": [
-    {
-     "data": {
-      "text/html": [
-       "<div>\n",
-       "<style scoped>\n",
-       "    .dataframe tbody tr th:only-of-type {\n",
-       "        vertical-align: middle;\n",
-       "    }\n",
-       "\n",
-       "    .dataframe tbody tr th {\n",
-       "        vertical-align: top;\n",
-       "    }\n",
-       "\n",
-       "    .dataframe thead th {\n",
-       "        text-align: right;\n",
-       "    }\n",
-       "</style>\n",
-       "<table border=\"1\" class=\"dataframe\">\n",
-       "  <thead>\n",
-       "    <tr style=\"text-align: right;\">\n",
-       "      <th></th>\n",
-       "      <th>title</th>\n",
-       "      <th>heading</th>\n",
-       "      <th>content</th>\n",
-       "      <th>tokens</th>\n",
-       "      <th>context</th>\n",
-       "    </tr>\n",
-       "  </thead>\n",
-       "  <tbody>\n",
-       "    <tr>\n",
-       "      <th>0</th>\n",
-       "      <td>2020 Summer Olympics</td>\n",
-       "      <td>Summary</td>\n",
-       "      <td>The 2020 Summer Olympics (Japanese: 2020ๅนดๅคๅญฃใ‚ชใƒชใƒณ...</td>\n",
-       "      <td>713</td>\n",
-       "      <td>2020 Summer Olympics\\nSummary\\n\\nThe 2020 Summ...</td>\n",
-       "    </tr>\n",
-       "    <tr>\n",
-       "      <th>1</th>\n",
-       "      <td>2020 Summer Olympics</td>\n",
-       "      <td>Host city selection</td>\n",
-       "      <td>The International Olympic Committee (IOC) vote...</td>\n",
-       "      <td>126</td>\n",
-       "      <td>2020 Summer Olympics\\nHost city selection\\n\\nT...</td>\n",
-       "    </tr>\n",
-       "    <tr>\n",
-       "      <th>2</th>\n",
-       "      <td>2020 Summer Olympics</td>\n",
-       "      <td>Impact of the COVID-19 pandemic</td>\n",
-       "      <td>In January 2020, concerns were raised about th...</td>\n",
-       "      <td>369</td>\n",
-       "      <td>2020 Summer Olympics\\nImpact of the COVID-19 p...</td>\n",
-       "    </tr>\n",
-       "    <tr>\n",
-       "      <th>3</th>\n",
-       "      <td>2020 Summer Olympics</td>\n",
-       "      <td>Qualifying event cancellation and postponement</td>\n",
-       "      <td>Concerns about the pandemic began to affect qu...</td>\n",
-       "      <td>298</td>\n",
-       "      <td>2020 Summer Olympics\\nQualifying event cancell...</td>\n",
-       "    </tr>\n",
-       "    <tr>\n",
-       "      <th>4</th>\n",
-       "      <td>2020 Summer Olympics</td>\n",
-       "      <td>Effect on doping tests</td>\n",
-       "      <td>Mandatory doping tests were being severely res...</td>\n",
-       "      <td>163</td>\n",
-       "      <td>2020 Summer Olympics\\nEffect on doping tests\\n...</td>\n",
-       "    </tr>\n",
-       "  </tbody>\n",
-       "</table>\n",
-       "</div>"
-      ],
-      "text/plain": [
-       "                  title                                         heading  \\\n",
-       "0  2020 Summer Olympics                                         Summary   \n",
-       "1  2020 Summer Olympics                             Host city selection   \n",
-       "2  2020 Summer Olympics                 Impact of the COVID-19 pandemic   \n",
-       "3  2020 Summer Olympics  Qualifying event cancellation and postponement   \n",
-       "4  2020 Summer Olympics                          Effect on doping tests   \n",
-       "\n",
-       "                                             content  tokens  \\\n",
-       "0  The 2020 Summer Olympics (Japanese: 2020ๅนดๅคๅญฃใ‚ชใƒชใƒณ...     713   \n",
-       "1  The International Olympic Committee (IOC) vote...     126   \n",
-       "2  In January 2020, concerns were raised about th...     369   \n",
-       "3  Concerns about the pandemic began to affect qu...     298   \n",
-       "4  Mandatory doping tests were being severely res...     163   \n",
-       "\n",
-       "                                             context  \n",
-       "0  2020 Summer Olympics\\nSummary\\n\\nThe 2020 Summ...  \n",
-       "1  2020 Summer Olympics\\nHost city selection\\n\\nT...  \n",
-       "2  2020 Summer Olympics\\nImpact of the COVID-19 p...  \n",
-       "3  2020 Summer Olympics\\nQualifying event cancell...  \n",
-       "4  2020 Summer Olympics\\nEffect on doping tests\\n...  "
-      ]
-     },
-     "execution_count": 1,
-     "metadata": {},
-     "output_type": "execute_result"
-    }
-   ],
-   "source": [
-    "import pandas as pd\n",
-    "df = pd.read_csv('olympics-data/olympics_sections.csv')\n",
-    "df['context'] = df.title + \"\\n\" + df.heading + \"\\n\\n\" + df.content\n",
-    "df.head()"
-   ]
-  },
-  {
-   "cell_type": "markdown",
-   "metadata": {},
-   "source": [
-    "## 2.2 Create questions based on the context\n",
-    "Use davinci-instruct to generate a number of plausible questions relating to the Wikipedia section contents.\n",
-    "\n",
-    "Note: We have used temperature=0, but it may be beneficial to experiment with a higher temperature to get a higher diversity of questions.\n",
-    "\n",
-    "<span style=\"color:orange\">**WARNING: This step will last a long time, and consume a lot of tokens, as it calls davinci-instruct for every section to generate a number of questions.**</span>"
-   ]
-  },
-  {
-   "cell_type": "code",
-   "execution_count": 2,
-   "metadata": {},
-   "outputs": [
-    {
-     "name": "stdout",
-     "output_type": "stream",
-     "text": [
-      "1. What is the 2020 Summer Olympics?\n",
-      "2. When did the 2020 Summer Olympics take place?\n",
-      "3. Who won the most medals at the 2020 Summer Olympics?\n",
-      "4. Who won the most gold medals at the 2020 Summer Olympics?\n",
-      "5. Who won the most medals at the 2020 Summer Olympics?\n"
-     ]
-    }
-   ],
-   "source": [
-    "import openai\n",
-    "\n",
-    "def get_questions(context):\n",
-    "    try:\n",
-    "        response = openai.Completion.create(\n",
-    "            engine=\"davinci-instruct-beta-v2\",\n",
-    "            prompt=f\"Write questions based on the text below\\n\\nText: {context}\\n\\nQuestions:\\n1.\",\n",
-    "            temperature=0,\n",
-    "            max_tokens=257,\n",
-    "            top_p=1,\n",
-    "            frequency_penalty=0,\n",
-    "            presence_penalty=0,\n",
-    "            stop=[\"\\n\\n\"]\n",
-    "        )\n",
-    "        return response['choices'][0]['text']\n",
-    "    except:\n",
-    "        return \"\"\n",
-    "\n",
-    "\n",
-    "df['questions']= df.context.apply(get_questions)\n",
-    "df['questions'] = \"1.\" + df.questions\n",
-    "print(df[['questions']].values[0][0])"
-   ]
-  },
-  {
-   "cell_type": "markdown",
-   "metadata": {},
-   "source": [
-    "The prompt is designed to generate a number of questions. Example questions above were generated based on the summary section of the 2020 Summer Olympics page.\n",
-    "\n",
-    "We can observe that the questions 3 and 5 above repeat. Sometimes the generated questions could be ambiguous without the context. We will show that even despite these limitations we can create a successful model."
-   ]
-  },
-  {
-   "cell_type": "code",
-   "execution_count": 3,
-   "metadata": {},
-   "outputs": [
-    {
-     "name": "stdout",
-     "output_type": "stream",
-     "text": [
-      "The 2020 Summer Olympics (Japanese: 2020ๅนดๅคๅญฃใ‚ชใƒชใƒณใƒ”ใƒƒใ‚ฏ, Hepburn: Nisen Nijลซ-nen Kaki Orinpikku), officially the Games of the XXXII Olympiad (็ฌฌไธ‰ๅไบŒๅ›žใ‚ชใƒชใƒณใƒ”ใƒƒใ‚ฏ็ซถๆŠ€ๅคงไผš, Dai Sanjลซni-kai Orinpikku Kyลgi Taikai) and branded as Tokyo 2020 (ๆฑไบฌ2020, Tลkyล Nii Zero Nii Zero), was an international multi-sport event held from 23 July to 8 August 2021 in Tokyo, Japan, with some preliminary events that began on 21 July.\n",
-      "Tokyo was selected as the host city during the 125th IOC Session in Buenos Aires, Argentina, on 7 September 2013. Originally scheduled to take place from 24 July to 9 August 2020, the event was postponed to 2021 in March 2020 as a result of the COVID-19 pandemic, the first such instance in the history of the Olympic Games (previous games had been cancelled but not rescheduled). However, the event retained the Tokyo 2020 name for marketing and branding purposes. It was largely held behind closed doors with no public spectators permitted due to the declaration of a state of emergency in the Greater Tokyo Area in response to the pandemic. The Summer Paralympics were held between 24 August and 5 September 2021, 16 days after the completion of the Olympics.The 2020 Games were the fourth Olympic Games to be held in Japan, following the Tokyo 1964 (Summer), Sapporo 1972 (Winter) and Nagano 1998 (Winter) games. Tokyo is the first city in Asia to hold the Summer Games twice. The 2020 Games were the second of three consecutive Olympics to be held in East Asia, following the 2018 Winter Olympics in Pyeongchang, South Korea and preceding the 2022 Winter Olympics in Beijing, China.\n",
-      "New events were introduced in existing sports for 2020, including 3x3 basketball, freestyle BMX and mixed gender team events in a number of existing sports, as well as the return of madison cycling for men and an introduction of the same event for women. New IOC policies also allowed the host organizing committee to add new sports to the Olympic program for just one Games. The disciplines added by the Japanese Olympic Committee were baseball and softball, karate, sport climbing, surfing and skateboarding, the last four of which made their Olympic debuts, and the last three of which will remain on the Olympic program.The United States topped the medal count by both total golds (39) and total medals (113), with China finishing second by both respects (38 and 88). Host nation Japan finished third, setting a record for the most gold medals and total medals ever won by their delegation at an Olympic Games with 27 and 58. Great Britain finished fourth, with a total of 22 gold and 65 medals, becoming the first nation at the Summer Olympics to increase or equal their total medals won in the two Games subsequent to hosting them. The Russian delegation competing as the ROC (not to be confused with the Republic of China (Taiwan) which competed as Chinese Taipei, not ROC) finished fifth with 20 gold medals and third in the overall medal count, with 71 medals. Bermuda, the Philippines and Qatar won their first-ever Olympic gold medals. Burkina Faso, San Marino and Turkmenistan won their first-ever Olympic medals.\n"
-     ]
-    }
-   ],
-   "source": [
-    "print(df.content.values[0])"
-   ]
-  },
-  {
-   "cell_type": "markdown",
-   "metadata": {},
-   "source": [
-    "## 2.3 Create answers based on the context\n",
-    "Use davinci-instruct to answer the questions given the relevant Wikipedia section contents\n",
-    "\n",
-    "Note: We have used temperature=0, but it may be beneficial to experiment with a higher temperature to get a higher diversity of questions.\n",
-    "\n",
-    "<span style=\"color:orange\">**WARNING: This step will last a long time, and consume a lot of tokens, as it calls davinci-instruct for every section to answer all the questions.**</span>"
-   ]
-  },
-  {
-   "cell_type": "code",
-   "execution_count": 4,
-   "metadata": {},
-   "outputs": [
-    {
-     "name": "stdout",
-     "output_type": "stream",
-     "text": [
-      "1. The 2020 Summer Olympics is an international multi-sport event held from 23 July to 8 August 2021 in Tokyo, Japan.\n",
-      "2. The 2020 Summer Olympics took place from 23 July to 8 August 2021.\n",
-      "3. The United States topped the medal count by both total golds (39) and total medals (113), with China finishing second by both respects (38 and 88).\n",
-      "4. The United States topped the medal count by both total golds (39) and total medals (113), with China finishing second by both respects (38 and 88).\n",
-      "5. The United States topped the medal count by both total golds (39) and total medals (113), with China finishing second by both respects (38 and 88).\n"
-     ]
-    }
-   ],
-   "source": [
-    "def get_answers(row):\n",
-    "    try:\n",
-    "        response = openai.Completion.create(\n",
-    "            engine=\"davinci-instruct-beta-v2\",\n",
-    "            prompt=f\"Write questions based on the text below\\n\\nText: {row.context}\\n\\nQuestions:\\n{row.questions}\\n\\nAnswers:\\n1.\",\n",
-    "            temperature=0,\n",
-    "            max_tokens=257,\n",
-    "            top_p=1,\n",
-    "            frequency_penalty=0,\n",
-    "            presence_penalty=0\n",
-    "        )\n",
-    "        return response['choices'][0]['text']\n",
-    "    except Exception as e:\n",
-    "        print (e)\n",
-    "        return \"\"\n",
-    "\n",
-    "\n",
-    "df['answers']= df.apply(get_answers, axis=1)\n",
-    "df['answers'] = \"1.\" + df.answers\n",
-    "df = df.dropna().reset_index().drop('index',axis=1)\n",
-    "print(df[['answers']].values[0][0])"
-   ]
-  },
-  {
-   "cell_type": "markdown",
-   "metadata": {},
-   "source": [
-    "These are the answers to the questions above based on the context around the host city selection. \n",
-    "\n",
-    "We can see that answers 3-5 contain the correct answer, but instead of answering the question directly, the answer is a verbatim extraction. Despite these occasional lower quality answers, we will show that the model can learn the task reasonably well, given a high number of examples."
-   ]
-  },
-  {
-   "cell_type": "markdown",
-   "metadata": {},
-   "source": [
-    "## 2.4 Save the Olympics Q&A dataset based on Wikipedia sections\n",
-    "We save the file for use in the [next notebook](olympics-3-train-qa.ipynb)"
-   ]
-  },
-  {
-   "cell_type": "code",
-   "execution_count": 5,
-   "metadata": {},
-   "outputs": [],
-   "source": [
-    "df.to_csv('olympics-data/olympics_qa.csv', index=False)"
-   ]
-  },
-  {
-   "cell_type": "markdown",
-   "metadata": {},
-   "source": [
-    "## 2.5 Search file\n",
-    "We create a search file ([API reference](https://beta.openai.com/docs/api-reference/files/list)), which can be used to retrieve the relevant context when a question is asked.\n"
-   ]
-  },
-  {
-   "cell_type": "code",
-   "execution_count": 6,
-   "metadata": {},
-   "outputs": [],
-   "source": [
-    "df = df[df.tokens<2000]\n",
-    "df[['context', 'tokens']].rename(columns={'context':'text','tokens':'metadata'}).to_json('olympics-data/olympics_search.jsonl', orient='records', lines=True)\n",
-    "\n",
-    "search_file = openai.File.create(\n",
-    "  file=open(\"olympics-data/olympics_search.jsonl\"),\n",
-    "  purpose='search'\n",
-    ")\n",
-    "olympics_search_fileid = search_file['id']"
-   ]
-  },
-  {
-   "cell_type": "markdown",
-   "metadata": {},
-   "source": [
-    "## 2.6 Answer questions based on the context provided\n",
-    "\n",
-    "We will use a simple implementation of the answers endpoint. This works by simply using the [/search endpoint](https://beta.openai.com/docs/api-reference/searches), which searches over an indexed file to obtain the relevant sections which can be included in the context, following by a question and answering prompt given a specified model."
-   ]
-  },
-  {
-   "cell_type": "code",
-   "execution_count": 7,
-   "metadata": {},
-   "outputs": [
-    {
-     "name": "stdout",
-     "output_type": "stream",
-     "text": [
-      "Athletics at the 2020 Summer Olympics โ€“ Women's 4 ร— 100 metres relay\n",
-      "Summary\n",
-      "\n",
-      "The women's 4 ร— 100 metres relay event at the 2020 Summer Olympics took place on 5 and 6 August 2021 at the Japan National Stadium. There were 16 competing relay teams, with each team having 5 members from which 4 were selected in each round.\n",
-      "\n",
-      "###\n",
-      "\n",
-      "Athletics at the 2020 Summer Olympics โ€“ Men's 4 ร— 100 metres relay\n",
-      "Qualification\n",
-      "\n",
-      "National Olympic Committees (NOCs) could qualify one relay team in one of three following ways:\n",
-      "The top 8 NOCs at the 2019 World Athletics Championships qualified a relay team.\n",
-      "The top 8 NOCs at the 2021 World Athletics Relays qualified a relay team.\n",
-      "Where an NOC placed in the top 8 at both the 2019 World Championships and the 2021 World Relays, the quota place was allocated to the world top list as of 29 June 2021. In this case, 4 teams did so, so there are 4 places available through the world rankings.A total of five athletes may be entered for a relay team. Should a NOC have also entered individual athletes in the corresponding individual event (100 m), the entered individual athletes must be included in the total of five (5) athletes entered for the relay event. In addition of five, NOCs can nominate a maximum of one alternate athlete for each team.\n",
-      "The qualifying period was originally from 1 May 2019 to 29 June 2020. Due to the COVID-19 pandemic, the period was suspended from 6 April 2020 to 30 November 2020, with the end date extended to 29 June 2021. The qualifying time standards could be obtained in various meets during the given period that have the approval of the IAAF. Both indoor and outdoor meets are eligible. The most recent Area Championships may be counted in the ranking, even if not during the qualifying period.\n"
-     ]
-    }
-   ],
-   "source": [
-    "from answers_with_ft import create_context, answer_question\n",
-    "print(create_context(\"Where did women's 4 x 100 metres relay event take place during the 2020 Summer Olympics?\", olympics_search_fileid, max_len=400))"
-   ]
-  },
-  {
-   "cell_type": "code",
-   "execution_count": 8,
-   "metadata": {},
-   "outputs": [
-    {
-     "data": {
-      "text/plain": [
-       "' Japan National Stadium'"
-      ]
-     },
-     "execution_count": 8,
-     "metadata": {},
-     "output_type": "execute_result"
-    }
-   ],
-   "source": [
-    "answer_question(olympics_search_fileid, \"davinci-instruct-beta-v2\", \n",
-    "            \"Where did women's 4 x 100 metres relay event take place during the 2020 Summer Olympics?\")"
-   ]
-  },
-  {
-   "cell_type": "markdown",
-   "metadata": {},
-   "source": [
-    "After we fine-tune the model for Q&A we'll be able to use it instead of [`davinci-instruct-beta-v2`](https://beta.openai.com/docs/engines/instruct-series-beta), to obtain better answers when the question can't be answered based on the context. We see a downside of [`davinci-instruct-beta-v2`](https://beta.openai.com/docs/engines/instruct-series-beta), which always attempts to answer the question, regardless of the relevant context being present or not. (Note the second question is asking about a future event, set in 2024.)"
-   ]
-  },
-  {
-   "cell_type": "code",
-   "execution_count": 9,
-   "metadata": {},
-   "outputs": [
-    {
-     "data": {
-      "text/plain": [
-       "' Japan National Stadium'"
-      ]
-     },
-     "execution_count": 9,
-     "metadata": {},
-     "output_type": "execute_result"
-    }
-   ],
-   "source": [
-    "answer_question(olympics_search_fileid, \"davinci-instruct-beta-v2\", \n",
-    "            \"Where did women's 4 x 100 metres relay event take place during the 2048 Summer Olympics?\", max_len=1000)"
-   ]
-  },
-  {
-   "cell_type": "markdown",
-   "metadata": {},
-   "source": [
-    "We can see that davinci has a tendency to answer the question, even if the question can't be answered given the context provided. Note the question asked regarding 2048 Summer Olympics, which didn't happen yet, and the retrieved content has only returned results for 2020."
-   ]
-  },
-  {
-   "cell_type": "markdown",
-   "metadata": {},
-   "source": [
-    "## 2.7 (Optional) Investigation into how likely the search endpoint is to return the relevant context"
-   ]
-  },
-  {
-   "cell_type": "code",
-   "execution_count": 10,
-   "metadata": {},
-   "outputs": [
-    {
-     "name": "stdout",
-     "output_type": "stream",
-     "text": [
-      "(0, 58)\n"
-     ]
-    }
-   ],
-   "source": [
-    "def check_context(title, heading, question, max_len=1800, search_model='ada', max_rerank=10):\n",
-    "    \"\"\"\n",
-    "    Evaluate the performance of the search model in retrieving the correct context\n",
-    "\n",
-    "    Parameters\n",
-    "    ----------\n",
-    "    title: str\n",
-    "        The title of the Wikipedia page\n",
-    "    heading: str\n",
-    "        The heading of the Wikipedia section\n",
-    "    qusetion: str\n",
-    "        The question\n",
-    "    max_len: int\n",
-    "        The maximum length of the context\n",
-    "    search_model: str\n",
-    "        The search model to use - `ada` is most cost effective\n",
-    "    max_rerank: int\n",
-    "        The maximum number of reranking documents to use the search model on\n",
-    "\n",
-    "    Returns\n",
-    "    -------\n",
-    "    rank: int\n",
-    "        The rank of the correct context\n",
-    "    token_length: int\n",
-    "        The number of tokens needed to obtain the correct context\n",
-    "    \"\"\"\n",
-    "    \n",
-    "    try:\n",
-    "        results = openai.Engine(search_model).search(\n",
-    "            search_model=search_model, \n",
-    "            query=question, \n",
-    "            max_rerank=max_rerank,\n",
-    "            file=olympics_search_fileid,\n",
-    "            return_metadata=True\n",
-    "        )\n",
-    "        index=-1\n",
-    "        returns = []\n",
-    "        cur_len = 0\n",
-    "        for result in results['data']:\n",
-    "            cur_len += int(result['metadata']) + 4 # we add 4 tokens for the separator `\\n\\n###\\n\\n`\n",
-    "            if cur_len > max_len:\n",
-    "                break\n",
-    "            returns.append(result['text'])\n",
-    "            res = result['text'].split('\\n')\n",
-    "            if res[0] == title and res[1] == heading:\n",
-    "                index = len(returns) - 1\n",
-    "                break\n",
-    "        return index, cur_len\n",
-    "    except Exception as e:\n",
-    "        #print (e)\n",
-    "        return []\n",
-    "print(check_context(\"Athletics at the 2020 Summer Olympics โ€“ Women's 4 ร— 100 metres relay\", \"Summary\", \"Where did women's 4 x 100 metres relay event take place during the 2020 Summer Olympics?\", max_len=10000))"
-   ]
-  },
-  {
-   "cell_type": "markdown",
-   "metadata": {},
-   "source": [
-    "We utilize the generated questions based on context to estimate how often we can retrieve the original context. These questions are noisy, so this is not a perfect estimate.\n",
-    "\n",
-    "Our questions and answers are prefixed with numbered bullet points, however due to the way they were generated, they are missing the first number, hence we add \"1.\" to the list of questions (and answers).\n",
-    "\n",
-    "We calculate the rank of the section retrieved using ada search, and the number of tokens in the context needed to retrieve the relevant section in full."
-   ]
-  },
-  {
-   "cell_type": "code",
-   "execution_count": 11,
-   "metadata": {},
-   "outputs": [
-    {
-     "data": {
-      "text/plain": [
-       "0    [(132, 27104), (-1, 22939), (8, 2151), (2, 121...\n",
-       "1    [(4, 1737), (0, 130), (8, 744), (96, 17208), (...\n",
-       "2          [(0, 373), (0, 373), (-1, 40610), (1, 570)]\n",
-       "3            [(0, 302), (0, 302), (5, 968), (8, 1425)]\n",
-       "4                      [(0, 167), (0, 167), (2, 1442)]\n",
-       "Name: ada, dtype: object"
-      ]
-     },
-     "execution_count": 12,
-     "metadata": {},
-     "output_type": "execute_result"
-    }
-   ],
-   "source": [
-    "ada_results = df.apply(lambda x: [\n",
-    "                    check_context( x.title, \n",
-    "                                   x.heading, \n",
-    "                                   q[3:],     # remove the number prefix\n",
-    "                                   max_len=1000000, # set a large number to get the full context \n",
-    "                                   search_model='ada', \n",
-    "                                   max_rerank=200,\n",
-    "                                 ) \n",
-    "                    for q in (x.questions).split('\\n') # split the questions\n",
-    "                    if len(q) >10 # remove the empty questions\n",
-    "                ], axis=1)\n",
-    "ada_results.head()"
-   ]
-  },
-  {
-   "cell_type": "code",
-   "execution_count": 13,
-   "metadata": {},
-   "outputs": [],
-   "source": [
-    "out = pd.concat([ada_results], axis=1)\n",
-    "out.columns = ['ada']\n",
-    "out.to_csv('olympics-data/search_engine_results.csv')"
-   ]
-  },
-  {
-   "cell_type": "code",
-   "execution_count": 14,
-   "metadata": {},
-   "outputs": [],
-   "source": [
-    "def expand_lists(out):\n",
-    "    \"\"\"\n",
-    "    Expand a pandas series containing lists into a series, where each list element becomes a value on its own\n",
-    "\n",
-    "    Input is a row per paragraph, which has multiple questions\n",
-    "    Output is a row per question\n",
-    "    \"\"\"\n",
-    "    cols = [pd.DataFrame(out[name].tolist()).stack().reset_index(level=1, drop=True).rename(name) for name in out.columns] \n",
-    "    return pd.concat(cols, axis=1)\n",
-    "\n",
-    "out_expanded = expand_lists(out)\n",
-    "out_expanded['rank'] = out_expanded.ada.apply(lambda x: x[0] if x != [] else -2)\n",
-    "out_expanded['tokens'] = out_expanded.ada.apply(lambda x: x[1] if x != [] else -2)\n"
-   ]
-  },
-  {
-   "cell_type": "code",
-   "execution_count": 15,
-   "metadata": {},
-   "outputs": [
-    {
-     "name": "stdout",
-     "output_type": "stream",
-     "text": [
-      "74.3% of relevant paragraphs are retrieved within the first 2k tokens\n"
-     ]
-    }
-   ],
-   "source": [
-    "within_2k = (out_expanded.tokens < 2000).mean()\n",
-    "print(f\"{within_2k*100:.1f}% of relevant paragraphs are retrieved within the first 2k tokens\")"
-   ]
-  },
-  {
-   "cell_type": "markdown",
-   "metadata": {},
-   "source": [
-    "The relevant context can be obtained 74% of the time on this dataset"
-   ]
-  },
-  {
-   "cell_type": "code",
-   "execution_count": 16,
-   "metadata": {},
-   "outputs": [
-    {
-     "name": "stdout",
-     "output_type": "stream",
-     "text": [
-      "7.4% of relevant paragraphs are not retrieved within the first 200 results\n"
-     ]
-    }
-   ],
-   "source": [
-    "outside_200 = (out_expanded['rank'] == -1).mean()\n",
-    "print(f\"{outside_200*100:.1f}% of relevant paragraphs are not retrieved within the first 200 results\")"
-   ]
-  },
-  {
-   "cell_type": "markdown",
-   "metadata": {},
-   "source": [
-    "7.4% of the time, this is due to the keyword search part of the search algorithm not retrieving the relevant context within the first 200 results.\n",
-    "18.3% of the time this is due to the semantic search not placing the relevant context within the first 2000 tokens."
-   ]
-  },
-  {
-   "cell_type": "code",
-   "execution_count": 17,
-   "metadata": {},
-   "outputs": [
-    {
-     "data": {
-      "image/png": "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",
-      "text/plain": [
-       "<Figure size 432x288 with 1 Axes>"
-      ]
-     },
-     "metadata": {
-      "needs_background": "light"
-     },
-     "output_type": "display_data"
-    }
-   ],
-   "source": [
-    "import matplotlib.pyplot as plt\n",
-    "\n",
-    "# plot a histogram, and add axis descriptions and title\n",
-    "out_expanded[(out_expanded['rank'] >=0)&(out_expanded['rank'] <30)]['rank'].hist(bins=29)\n",
-    "plt.xlabel('rank')\n",
-    "plt.ylabel('count')\n",
-    "plt.title('Histogram of ranks of retrieved paragraphs')\n",
-    "plt.show()"
-   ]
-  },
-  {
-   "cell_type": "code",
-   "execution_count": 18,
-   "metadata": {},
-   "outputs": [
-    {
-     "data": {
-      "image/png": "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",
-      "text/plain": [
-       "<Figure size 432x288 with 1 Axes>"
-      ]
-     },
-     "metadata": {
-      "needs_background": "light"
-     },
-     "output_type": "display_data"
-    }
-   ],
-   "source": [
-    "out_expanded[(out_expanded.tokens>=0)&(out_expanded.tokens < 2000)]['tokens'].hist(bins=29)\n",
-    "plt.xlabel('tokens')\n",
-    "plt.ylabel('count')\n",
-    "plt.title('Histogram of the number of minimum tokens needed')\n",
-    "plt.show()"
-   ]
-  },
-  {
-   "cell_type": "markdown",
-   "metadata": {},
-   "source": [
-    "We can observe that the context is most likely to be returned as one of the first results, and most likely to be returned within the first 200-500 tokens."
-   ]
-  },
-  {
-   "cell_type": "code",
-   "execution_count": 19,
-   "metadata": {},
-   "outputs": [
-    {
-     "data": {
-      "text/plain": [
-       "-2     0.000063\n",
-       "-1     0.074428\n",
-       " 0     0.453420\n",
-       " 1     0.089515\n",
-       " 2     0.047146\n",
-       " 3     0.032437\n",
-       " 4     0.024139\n",
-       " 5     0.019676\n",
-       " 6     0.015967\n",
-       " 7     0.013452\n",
-       " 8     0.011189\n",
-       " 9     0.009869\n",
-       " 10    0.009178\n",
-       "Name: rank, dtype: float64"
-      ]
-     },
-     "execution_count": 20,
-     "metadata": {},
-     "output_type": "execute_result"
-    }
-   ],
-   "source": [
-    "# normalized value_counts\n",
-    "out_expanded['rank'].value_counts(normalize=True).sort_index()[:13]"
-   ]
-  },
-  {
-   "cell_type": "markdown",
-   "metadata": {},
-   "source": [
-    "probabilities of the relevant context being returned at each rank. (-2 means a processing error, -1 means the rank is >200)"
+    "This code example has moved. You can now find it in the [OpenAI Cookbook](https://github.com/openai/openai-cookbook) at [examples/fine-tuned_qa/](https://github.com/openai/openai-cookbook/tree/main/examples/fine-tuned_qa)."
    ]
   }
  ],
  "metadata": {
-  "interpreter": {
-   "hash": "be4b5d5b73a21c599de40d6deb1129796d12dc1cc33a738f7bac13269cfcafe8"
-  },
   "kernelspec": {
-   "display_name": "Python 3.7.3 64-bit ('base': conda)",
+   "display_name": "Python 3.9.9 ('openai')",
+   "language": "python",
    "name": "python3"
   },
   "language_info": {
@@ -742,9 +24,14 @@
    "name": "python",
    "nbconvert_exporter": "python",
    "pygments_lexer": "ipython3",
-   "version": "3.7.3"
+   "version": "3.9.9"
   },
-  "orig_nbformat": 4
+  "orig_nbformat": 4,
+  "vscode": {
+   "interpreter": {
+    "hash": "365536dcbde60510dc9073d6b991cd35db2d9bac356a11f5b64279a5e6708b97"
+   }
+  }
  },
  "nbformat": 4,
  "nbformat_minor": 2
examples/finetuning/olympics-3-train-qa.ipynb
@@ -4,618 +4,14 @@
    "cell_type": "markdown",
    "metadata": {},
    "source": [
-    "# 3. Train a fine-tuning model specialized for Q&A\n",
-    "This notebook will utilize the dataset of context, question and answer pairs to additionally create adversarial questions and context pairs, where the question was not generated on that context. In those cases the model will be prompted to answer \"No sufficient context for answering the question\". We will also train a discriminator model, which predicts whether the question can be answered based on the context or not.\n",
-    "\n",
-    "We will add hard adversarial examples as well, which will be based either on semantically similar sections, or neighbouring sections, originating from the same article."
-   ]
-  },
-  {
-   "cell_type": "code",
-   "execution_count": 1,
-   "metadata": {},
-   "outputs": [
-    {
-     "data": {
-      "text/html": [
-       "<div>\n",
-       "<style scoped>\n",
-       "    .dataframe tbody tr th:only-of-type {\n",
-       "        vertical-align: middle;\n",
-       "    }\n",
-       "\n",
-       "    .dataframe tbody tr th {\n",
-       "        vertical-align: top;\n",
-       "    }\n",
-       "\n",
-       "    .dataframe thead th {\n",
-       "        text-align: right;\n",
-       "    }\n",
-       "</style>\n",
-       "<table border=\"1\" class=\"dataframe\">\n",
-       "  <thead>\n",
-       "    <tr style=\"text-align: right;\">\n",
-       "      <th></th>\n",
-       "      <th>title</th>\n",
-       "      <th>heading</th>\n",
-       "      <th>content</th>\n",
-       "      <th>tokens</th>\n",
-       "      <th>context</th>\n",
-       "      <th>questions</th>\n",
-       "      <th>answers</th>\n",
-       "    </tr>\n",
-       "  </thead>\n",
-       "  <tbody>\n",
-       "    <tr>\n",
-       "      <th>0</th>\n",
-       "      <td>2020 Summer Olympics</td>\n",
-       "      <td>Summary</td>\n",
-       "      <td>The 2020 Summer Olympics (Japanese: 2020ๅนดๅคๅญฃใ‚ชใƒชใƒณ...</td>\n",
-       "      <td>713</td>\n",
-       "      <td>2020 Summer Olympics\\nSummary\\n\\nThe 2020 Summ...</td>\n",
-       "      <td>1. What is the 2020 Summer Olympics?\\n2. When ...</td>\n",
-       "      <td>1. The 2020 Summer Olympics is an internationa...</td>\n",
-       "    </tr>\n",
-       "    <tr>\n",
-       "      <th>1</th>\n",
-       "      <td>2020 Summer Olympics</td>\n",
-       "      <td>Host city selection</td>\n",
-       "      <td>The International Olympic Committee (IOC) vote...</td>\n",
-       "      <td>126</td>\n",
-       "      <td>2020 Summer Olympics\\nHost city selection\\n\\nT...</td>\n",
-       "      <td>1. \\n2. \\n3. \\n4.</td>\n",
-       "      <td>1. What is the International Olympic Committee...</td>\n",
-       "    </tr>\n",
-       "    <tr>\n",
-       "      <th>2</th>\n",
-       "      <td>2020 Summer Olympics</td>\n",
-       "      <td>Impact of the COVID-19 pandemic</td>\n",
-       "      <td>In January 2020, concerns were raised about th...</td>\n",
-       "      <td>369</td>\n",
-       "      <td>2020 Summer Olympics\\nImpact of the COVID-19 p...</td>\n",
-       "      <td>1. What was the COVID-19 pandemic?\\n2. How did...</td>\n",
-       "      <td>1. The COVID-19 pandemic was a pandemic that o...</td>\n",
-       "    </tr>\n",
-       "    <tr>\n",
-       "      <th>3</th>\n",
-       "      <td>2020 Summer Olympics</td>\n",
-       "      <td>Qualifying event cancellation and postponement</td>\n",
-       "      <td>Concerns about the pandemic began to affect qu...</td>\n",
-       "      <td>298</td>\n",
-       "      <td>2020 Summer Olympics\\nQualifying event cancell...</td>\n",
-       "      <td>1. What was the original location of the Asia ...</td>\n",
-       "      <td>1. The original location of the Asia &amp; Oceania...</td>\n",
-       "    </tr>\n",
-       "    <tr>\n",
-       "      <th>4</th>\n",
-       "      <td>2020 Summer Olympics</td>\n",
-       "      <td>Effect on doping tests</td>\n",
-       "      <td>Mandatory doping tests were being severely res...</td>\n",
-       "      <td>163</td>\n",
-       "      <td>2020 Summer Olympics\\nEffect on doping tests\\n...</td>\n",
-       "      <td>1. What was the COVID-19 pandemic?\\n2. What di...</td>\n",
-       "      <td>1. The COVID-19 pandemic was a pandemic that o...</td>\n",
-       "    </tr>\n",
-       "  </tbody>\n",
-       "</table>\n",
-       "</div>"
-      ],
-      "text/plain": [
-       "                  title                                         heading  \\\n",
-       "0  2020 Summer Olympics                                         Summary   \n",
-       "1  2020 Summer Olympics                             Host city selection   \n",
-       "2  2020 Summer Olympics                 Impact of the COVID-19 pandemic   \n",
-       "3  2020 Summer Olympics  Qualifying event cancellation and postponement   \n",
-       "4  2020 Summer Olympics                          Effect on doping tests   \n",
-       "\n",
-       "                                             content  tokens  \\\n",
-       "0  The 2020 Summer Olympics (Japanese: 2020ๅนดๅคๅญฃใ‚ชใƒชใƒณ...     713   \n",
-       "1  The International Olympic Committee (IOC) vote...     126   \n",
-       "2  In January 2020, concerns were raised about th...     369   \n",
-       "3  Concerns about the pandemic began to affect qu...     298   \n",
-       "4  Mandatory doping tests were being severely res...     163   \n",
-       "\n",
-       "                                             context  \\\n",
-       "0  2020 Summer Olympics\\nSummary\\n\\nThe 2020 Summ...   \n",
-       "1  2020 Summer Olympics\\nHost city selection\\n\\nT...   \n",
-       "2  2020 Summer Olympics\\nImpact of the COVID-19 p...   \n",
-       "3  2020 Summer Olympics\\nQualifying event cancell...   \n",
-       "4  2020 Summer Olympics\\nEffect on doping tests\\n...   \n",
-       "\n",
-       "                                           questions  \\\n",
-       "0  1. What is the 2020 Summer Olympics?\\n2. When ...   \n",
-       "1                                 1. \\n2. \\n3. \\n4.    \n",
-       "2  1. What was the COVID-19 pandemic?\\n2. How did...   \n",
-       "3  1. What was the original location of the Asia ...   \n",
-       "4  1. What was the COVID-19 pandemic?\\n2. What di...   \n",
-       "\n",
-       "                                             answers  \n",
-       "0  1. The 2020 Summer Olympics is an internationa...  \n",
-       "1  1. What is the International Olympic Committee...  \n",
-       "2  1. The COVID-19 pandemic was a pandemic that o...  \n",
-       "3  1. The original location of the Asia & Oceania...  \n",
-       "4  1. The COVID-19 pandemic was a pandemic that o...  "
-      ]
-     },
-     "execution_count": 1,
-     "metadata": {},
-     "output_type": "execute_result"
-    }
-   ],
-   "source": [
-    "import openai\n",
-    "import pandas as pd\n",
-    "df = pd.read_csv('olympics-data/olympics_qa.csv')\n",
-    "olympics_search_fileid = \"file-c3shd8wqF3vSCKaukW4Jr1TT\"\n",
-    "df.head()"
-   ]
-  },
-  {
-   "cell_type": "markdown",
-   "metadata": {},
-   "source": [
-    "Split the sections into a training and testing set"
-   ]
-  },
-  {
-   "cell_type": "code",
-   "execution_count": 2,
-   "metadata": {},
-   "outputs": [
-    {
-     "data": {
-      "text/plain": [
-       "(3014, 754)"
-      ]
-     },
-     "execution_count": 2,
-     "metadata": {},
-     "output_type": "execute_result"
-    }
-   ],
-   "source": [
-    "from sklearn.model_selection import train_test_split\n",
-    "train_df, test_df = train_test_split(df, test_size=0.2, random_state=42)\n",
-    "len(train_df), len(test_df)"
-   ]
-  },
-  {
-   "cell_type": "markdown",
-   "metadata": {},
-   "source": [
-    "we check that he separator we intend to use isn't present within the contexts"
-   ]
-  },
-  {
-   "cell_type": "code",
-   "execution_count": 3,
-   "metadata": {},
-   "outputs": [
-    {
-     "data": {
-      "text/plain": [
-       "0"
-      ]
-     },
-     "execution_count": 3,
-     "metadata": {},
-     "output_type": "execute_result"
-    }
-   ],
-   "source": [
-    "df.context.str.contains('->').sum()"
-   ]
-  },
-  {
-   "cell_type": "markdown",
-   "metadata": {},
-   "source": [
-    "## 3.1 Create the fine-tuning datasets for Q&A and discriminator models\n",
-    "The fine-tuning dataset is created in the following way. For every corresponding question, answer and context pair we create:\n",
-    "- Positive example: correct question, answer, context pair\n",
-    "- Negative examples:\n",
-    "  - random negative example, where the random context is paired with the question \n",
-    "  - two hard negative examples\n",
-    "    - one originating from the same wikipedia article\n",
-    "    - another, which is most similar to the correct context\n",
-    "\n",
-    "This process is noisy, as sometimes the question might be answerable given a different context, but on average we hope this won't affect the peformance too much.\n",
-    "\n",
-    "We apply the same process of dataset creation for both the discriminator, and the Q&A answering model. We apply the process separately for the training and testing set, to ensure that the examples from the traing set don't feature within the test set."
-   ]
-  },
-  {
-   "cell_type": "code",
-   "execution_count": 4,
-   "metadata": {},
-   "outputs": [],
-   "source": [
-    "import random\n",
-    "\n",
-    "def get_random_similar_contexts(question, context, file_id=olympics_search_fileid, search_model='ada', max_rerank=10):\n",
-    "    \"\"\"\n",
-    "    Find similar contexts to the given context using the search file\n",
-    "    \"\"\"\n",
-    "    try:\n",
-    "        results = openai.Engine(search_model).search(\n",
-    "            search_model=search_model, \n",
-    "            query=question, \n",
-    "            max_rerank=max_rerank,\n",
-    "            file=file_id\n",
-    "        )\n",
-    "        candidates = []\n",
-    "        for result in results['data'][:3]:\n",
-    "            if result['text'] == context:\n",
-    "                continue\n",
-    "            candidates.append(result['text'])\n",
-    "        random_candidate = random.choice(candidates)\n",
-    "        return random_candidate\n",
-    "    except Exception as e:\n",
-    "        print(e)\n",
-    "        return \"\"\n",
-    "\n",
-    "def create_fine_tuning_dataset(df, discriminator=False, n_negative=1, add_related=False):\n",
-    "    \"\"\"\n",
-    "    Create a dataset for fine tuning the OpenAI model; either for a discriminator model, \n",
-    "    or a model specializing in Q&A, where it says if no relevant context is found.\n",
-    "\n",
-    "    Parameters\n",
-    "    ----------\n",
-    "    df: pd.DataFrame\n",
-    "        The dataframe containing the question, answer and context pairs\n",
-    "    discriminator: bool\n",
-    "        Whether to create a dataset for the discriminator\n",
-    "    n_negative: int\n",
-    "        The number of random negative samples to add (using a random context)\n",
-    "    add_related: bool\n",
-    "        Whether to add the related contexts to the correct context. These are hard negative examples\n",
-    "\n",
-    "    Returns\n",
-    "    -------\n",
-    "    pd.DataFrame\n",
-    "        The dataframe containing the prompts and completions, ready for fine-tuning\n",
-    "    \"\"\"\n",
-    "    rows = []\n",
-    "    for i, row in df.iterrows():\n",
-    "        for q, a in zip((\"1.\" + row.questions).split('\\n'), (\"1.\" + row.answers).split('\\n')):\n",
-    "            if len(q) >10 and len(a) >10:\n",
-    "                if discriminator:\n",
-    "                    rows.append({\"prompt\":f\"{row.context}\\nQuestion: {q[2:].strip()}\\n Related:\", \"completion\":f\" yes\"})\n",
-    "                else:\n",
-    "                    rows.append({\"prompt\":f\"{row.context}\\nQuestion: {q[2:].strip()}\\nAnswer:\", \"completion\":f\" {a[2:].strip()}\"})\n",
-    "\n",
-    "    for i, row in df.iterrows():\n",
-    "        for q in (\"1.\" + row.questions).split('\\n'):\n",
-    "            if len(q) >10:\n",
-    "                for j in range(n_negative + (2 if add_related else 0)):\n",
-    "                    random_context = \"\"\n",
-    "                    if j == 0 and add_related:\n",
-    "                        # add the related contexts based on originating from the same wikipedia page\n",
-    "                        subset = df[(df.title == row.title) & (df.context != row.context)]\n",
-    "                        \n",
-    "                        if len(subset) < 1:\n",
-    "                            continue\n",
-    "                        random_context = subset.sample(1).iloc[0].context\n",
-    "                    if j == 1 and add_related:\n",
-    "                        # add the related contexts based on the most similar contexts according to the search\n",
-    "                        random_context = get_random_similar_contexts(q[2:].strip(), row.context, search_model='ada', max_rerank=10)\n",
-    "                    else:\n",
-    "                        while True:\n",
-    "                            # add random context, which isn't the correct context\n",
-    "                            random_context = df.sample(1).iloc[0].context\n",
-    "                            if random_context != row.context:\n",
-    "                                break\n",
-    "                    if discriminator:\n",
-    "                        rows.append({\"prompt\":f\"{random_context}\\nQuestion: {q[2:].strip()}\\n Related:\", \"completion\":f\" no\"})\n",
-    "                    else:\n",
-    "                        rows.append({\"prompt\":f\"{random_context}\\nQuestion: {q[2:].strip()}\\nAnswer:\", \"completion\":f\" No appropriate context found to answer the question.\"})\n",
-    "\n",
-    "    return pd.DataFrame(rows) "
-   ]
-  },
-  {
-   "cell_type": "markdown",
-   "metadata": {},
-   "source": [
-    "We apply the same process of dataset creation for both the discriminator, and the Q&A answering model. We apply the process separately for the training and testing set, to ensure that the examples from the traing set don't feature within the test set."
-   ]
-  },
-  {
-   "cell_type": "code",
-   "execution_count": 5,
-   "metadata": {},
-   "outputs": [
-    {
-     "data": {
-      "text/plain": []
-     },
-     "execution_count": 5,
-     "metadata": {},
-     "output_type": "execute_result"
-    }
-   ],
-   "source": [
-    "for name, is_disc in [('discriminator', True), ('qa', False)]:\n",
-    "    for train_test, dt in [('train', train_df), ('test', test_df)]:\n",
-    "        ft = create_fine_tuning_dataset(dt, discriminator=is_disc, n_negative=1, add_related=True)\n",
-    "        ft.to_json(f'{name}_{train_test}.jsonl', orient='records', lines=True)"
-   ]
-  },
-  {
-   "cell_type": "markdown",
-   "metadata": {},
-   "source": [
-    "We formatted the data according to the recommendations from the fine-tuning tool, which is available using\n",
-    "> openai tools fine_tunes.prepare_data -f qa_train.jsonl\n",
-    "\n",
-    "We highly recommend that you use this tool, which suggests improvements in your data formatting for fine-tuning.\n"
-   ]
-  },
-  {
-   "cell_type": "markdown",
-   "metadata": {},
-   "source": [
-    "## 3.2 Submit the datasets for fine-tuning"
-   ]
-  },
-  {
-   "cell_type": "code",
-   "execution_count": 6,
-   "metadata": {},
-   "outputs": [
-    {
-     "data": {
-      "text/plain": []
-     },
-     "execution_count": 6,
-     "metadata": {},
-     "output_type": "execute_result"
-    }
-   ],
-   "source": [
-    "!openai api fine_tunes.create -t \"olympics-data/discriminator_train.jsonl\" -v \"olympics-data/discriminator_test.jsonl\" --batch_size 16  --compute_classification_metrics --classification_positive_class \" yes\" --model ada"
-   ]
-  },
-  {
-   "cell_type": "code",
-   "execution_count": 7,
-   "metadata": {},
-   "outputs": [
-    {
-     "data": {
-      "text/plain": []
-     },
-     "execution_count": 7,
-     "metadata": {},
-     "output_type": "execute_result"
-    }
-   ],
-   "source": [
-    "!openai api fine_tunes.create -t \"olympics-data/qa_train.jsonl\" -v \"olympics-data/qa_test.jsonl\" --batch_size 16"
-   ]
-  },
-  {
-   "cell_type": "markdown",
-   "metadata": {},
-   "source": [
-    "## 3.3 Using the fine-tuned models\n",
-    "\n",
-    "We will now use the fine-tuned discriminator and the fine-tuned Q&A model. By requesting logprobs, we can see how certain the discriminator is in a `yes` vs `no` answer."
-   ]
-  },
-  {
-   "cell_type": "code",
-   "execution_count": 8,
-   "metadata": {},
-   "outputs": [
-    {
-     "data": {
-      "text/plain": [
-       "[<OpenAIObject at 0x7fe812e602b0> JSON: {\n",
-       "   \" no\": -10.819577,\n",
-       "   \" yes\": -2.045765e-05\n",
-       " }]"
-      ]
-     },
-     "execution_count": 8,
-     "metadata": {},
-     "output_type": "execute_result"
-    }
-   ],
-   "source": [
-    "ft_discriminator = \"curie:ft-openai-internal-2021-08-23-23-58-57\"\n",
-    "ft_qa = \"curie:ft-openai-internal-2021-08-23-17-54-10\"\n",
-    "\n",
-    "def apply_ft_discriminator(context, question, discriminator_model):\n",
-    "    \"\"\"\n",
-    "    Apply the fine tuned discriminator to a question, to assess whether it can be answered from the context.\n",
-    "    \"\"\"\n",
-    "    prompt = f\"{context}\\nQuestion: {question}\\n Related:\"\n",
-    "    result = openai.Completion.create(model=discriminator_model, prompt=prompt, max_tokens=1, temperature=0, top_p=1, n=1, logprobs=2)\n",
-    "    return result['choices'][0]['logprobs']['top_logprobs']\n",
-    "\n",
-    "apply_ft_discriminator('The first human-made object in space was the Soviet Union satellite Sputnik 1 on 4 October 1957.', \n",
-    "                        'What was the first human-made object in space?', ft_discriminator)"
-   ]
-  },
-  {
-   "cell_type": "markdown",
-   "metadata": {},
-   "source": [
-    "We can see that the model can generalize well to different contexts and questions. "
-   ]
-  },
-  {
-   "cell_type": "code",
-   "execution_count": 9,
-   "metadata": {},
-   "outputs": [
-    {
-     "data": {
-      "text/plain": [
-       "' The first human-made object in space was the Soviet Union satellite Sputnik 1 on 4 October 1957'"
-      ]
-     },
-     "execution_count": 9,
-     "metadata": {},
-     "output_type": "execute_result"
-    }
-   ],
-   "source": [
-    "def apply_ft_qa_answer(context, question, answering_model):\n",
-    "    \"\"\"\n",
-    "    Apply the fine tuned discriminator to a question\n",
-    "    \"\"\"\n",
-    "    prompt = f\"{context}\\nQuestion: {question}\\nAnswer:\"\n",
-    "    result = openai.Completion.create(model=answering_model, prompt=prompt, max_tokens=30, temperature=0, top_p=1, n=1, stop=['.','\\n'])\n",
-    "    return result['choices'][0]['text']\n",
-    "\n",
-    "apply_ft_qa_answer('The first human-made object in space was the Soviet Union satellite Sputnik 1 on 4 October 1957.', \n",
-    "                    'What was the first human-made object in space?', ft_qa)\n"
-   ]
-  },
-  {
-   "cell_type": "markdown",
-   "metadata": {},
-   "source": [
-    "We can see that the model can answer the question, when the context is appropriate."
-   ]
-  },
-  {
-   "cell_type": "code",
-   "execution_count": 10,
-   "metadata": {},
-   "outputs": [
-    {
-     "data": {
-      "text/plain": [
-       "' The Soviet Union was the first country to successfully launch a satellite into space'"
-      ]
-     },
-     "execution_count": 10,
-     "metadata": {},
-     "output_type": "execute_result"
-    }
-   ],
-   "source": [
-    "apply_ft_qa_answer('The first human-made object in space was the Soviet Union satellite Sputnik 1 on 4 October 1957.',\n",
-    "                    'What is impressive about the Soviet Union?', ft_qa)"
-   ]
-  },
-  {
-   "cell_type": "code",
-   "execution_count": 11,
-   "metadata": {},
-   "outputs": [
-    {
-     "data": {
-      "text/plain": [
-       "' No appropriate context found to answer the question'"
-      ]
-     },
-     "execution_count": 11,
-     "metadata": {},
-     "output_type": "execute_result"
-    }
-   ],
-   "source": [
-    "apply_ft_qa_answer('The first human-made object in space was the Soviet Union satellite Sputnik 1 on 4 October 1957.',\n",
-    "                    'How many cars were produced in the Soviet Union in 1970?', ft_qa)"
-   ]
-  },
-  {
-   "cell_type": "markdown",
-   "metadata": {},
-   "source": [
-    "We can see that the model knows when to answer the question, and when to say that insufficient context is present to answer the question."
-   ]
-  },
-  {
-   "cell_type": "markdown",
-   "metadata": {},
-   "source": [
-    "We can also combine a discriminator and a base model, or a fine-tuned Q&A model. Discriminator can essentially serve as a decision whether the question can be answered given the context or not."
-   ]
-  },
-  {
-   "cell_type": "code",
-   "execution_count": 12,
-   "metadata": {},
-   "outputs": [
-    {
-     "data": {
-      "text/plain": [
-       "' Weather could cause a sport event to have no crowd'"
-      ]
-     },
-     "execution_count": 12,
-     "metadata": {},
-     "output_type": "execute_result"
-    }
-   ],
-   "source": [
-    "def answer_question_conditionally(answering_model, discriminator_model, context, question, discriminator_logprob_yes_modifier=0):\n",
-    "    logprobs = apply_ft_discriminator(context, question, discriminator_model)\n",
-    "    yes_logprob = logprobs[' yes'] if ' yes' in logprobs else -100\n",
-    "    no_logprob = logprobs[' no'] if ' no' in logprobs else -100\n",
-    "    if yes_logprob + discriminator_logprob_yes_modifier < no_logprob:\n",
-    "        return \" No appropriate context found to answer the question based on the discriminator.\"\n",
-    "    return apply_ft_qa_answer(context, question, answering_model)\n",
-    "answer_question_conditionally(ft_qa, ft_discriminator, \n",
-    "                                \"Crowdless games are a rare although not unheard-of occurrence in sports. \\\n",
-    "                                 When they do occur, it is usually the result of events beyond the control \\\n",
-    "                                 of the teams or fans, such as weather-related concerns, public health concerns, \\\n",
-    "                                 or wider civil disturbances unrelated to the game. For instance, \\\n",
-    "                                 the COVID-19 pandemic caused many sports leagues around the world \\\n",
-    "                                 to be played behind closed doors.\",\n",
-    "                                \"Could weather cause a sport event to have no crowd?\")"
-   ]
-  },
-  {
-   "cell_type": "markdown",
-   "metadata": {},
-   "source": [
-    "The above function illustrates how to potentially combine a discriminator and a fine-tuned Q&A model. This gives a more fine-grained control over how certain we want the model to be before it answers the question.\n",
-    "\n",
-    "We'll now take a look on how answers endpoint works - combining search to retrieve the relevant context from a knowledge base, and then using the fine-tuned Q&A model to answer the question."
-   ]
-  },
-  {
-   "cell_type": "markdown",
-   "metadata": {},
-   "source": [
-    "## 3.4 Answering the question based on a knowledge base\n",
-    "Finally we can use a logic similar to the [/answers](https://beta.openai.com/docs/api-reference/answers) endpoint, where we first search for the relevant context, and then ask a Q&A model to answer the question given that context. If you'd like to see the implementation details, check out the [`answers_with_ft.py`](answers_with_ft.py) file."
-   ]
-  },
-  {
-   "cell_type": "code",
-   "execution_count": 13,
-   "metadata": {},
-   "outputs": [
-    {
-     "data": {
-      "text/plain": [
-       "\" Canada won the Women's football tournament at the 2020 Olympic games\""
-      ]
-     },
-     "execution_count": 13,
-     "metadata": {},
-     "output_type": "execute_result"
-    }
-   ],
-   "source": [
-    "from answers_with_ft import answer_question\n",
-    "answer_question(olympics_search_fileid, ft_qa, \"Which country won the Women's football tournament at the 2020 Olympic games?\")"
+    "This code example has moved. You can now find it in the [OpenAI Cookbook](https://github.com/openai/openai-cookbook) at [examples/fine-tuned_qa/](https://github.com/openai/openai-cookbook/tree/main/examples/fine-tuned_qa)."
    ]
   }
  ],
  "metadata": {
-  "interpreter": {
-   "hash": "be4b5d5b73a21c599de40d6deb1129796d12dc1cc33a738f7bac13269cfcafe8"
-  },
   "kernelspec": {
-   "display_name": "Python 3.7.3 64-bit ('base': conda)",
+   "display_name": "Python 3.9.9 ('openai')",
+   "language": "python",
    "name": "python3"
   },
   "language_info": {
@@ -628,9 +24,14 @@
    "name": "python",
    "nbconvert_exporter": "python",
    "pygments_lexer": "ipython3",
-   "version": "3.7.3"
+   "version": "3.9.9"
   },
-  "orig_nbformat": 4
+  "orig_nbformat": 4,
+  "vscode": {
+   "interpreter": {
+    "hash": "365536dcbde60510dc9073d6b991cd35db2d9bac356a11f5b64279a5e6708b97"
+   }
+  }
  },
  "nbformat": 4,
  "nbformat_minor": 2
examples/semanticsearch/README.md
@@ -1,30 +0,0 @@
-# semanticsearch
-
-A client-side implementation of our semantic search endpoint (https://beta.openai.com/docs/api-reference/search).
-
-Our endpoint has a special fast implementation of this logic which
-makes it very fast for calls involving many documents, so we recommend
-using our implementation rather than this one for latency-sensitive
-workloads.
-
-We encourage you to try different variants of this client-side logic
--- we don't think our setup is likely optimal at all!
-
-## Sample usage
-
-The following usage will run a client-side semantic search. This
-formats each document into a prompt asking the API for the document's
-relevance, and then post-processes the logprobs to derive relevance
-scores:
-
-```
-$ ./semanticsearch.py -q 'positive emotion' -d happy -d sad
-[client-side semantic search] {'object': 'list', 'data': [{'object': 'search_result', 'document': 0, 'score': 204.448}, {'object': 'search_result', 'document': 1, 'score': 108.208}], 'model': 'ada:2020-05-03'}
-```
-
-We run the exact same logic server-side:
-
-```
-$ ./semanticsearch.py -q 'positive emotion' -d happy -d sad -s
-[server-side semantic search] {'object': 'list', 'data': [{'object': 'search_result', 'document': 0, 'score': 204.448}, {'object': 'search_result', 'document': 1, 'score': 108.208}], 'model': 'ada:2020-05-03'}
-```
examples/semanticsearch/semanticsearch.py
@@ -1,126 +0,0 @@
-#!/usr/bin/env python
-import argparse
-import logging
-import sys
-from typing import List
-
-import openai
-
-logger = logging.getLogger()
-formatter = logging.Formatter("[%(asctime)s] [%(process)d] %(message)s")
-handler = logging.StreamHandler(sys.stderr)
-handler.setFormatter(formatter)
-logger.addHandler(handler)
-
-DEFAULT_COND_LOGP_TEMPLATE = (
-    "<|endoftext|>{document}\n\n---\n\nThe above passage is related to: {query}"
-)
-SCORE_MULTIPLIER = 100.0
-
-
-class SearchScorer:
-    def __init__(
-        self, *, document, query, cond_logp_template=DEFAULT_COND_LOGP_TEMPLATE
-    ):
-        self.document = document
-        self.query = query
-        self.cond_logp_template = cond_logp_template
-        self.context = self.cond_logp_template.format(
-            document=self.document, query=self.query
-        )
-
-    def get_context(self):
-        return self.context
-
-    def get_score(self, choice) -> float:
-        assert choice.text == self.context
-        logprobs: List[float] = choice.logprobs.token_logprobs
-        text = choice.logprobs.tokens
-        text_len = sum(len(token) for token in text)
-        if text_len != len(self.context):
-            raise RuntimeError(
-                f"text_len={text_len}, len(self.context)={len(self.context)}"
-            )
-        total_len = 0
-        last_used = len(text)
-        while total_len < len(self.query):
-            assert last_used > 0
-            total_len += len(text[last_used - 1])
-            last_used -= 1
-        max_len = len(self.context) - self.cond_logp_template.index("{document}")
-        assert total_len + len(self.document) <= max_len
-        logits: List[float] = logprobs[last_used:]
-        return sum(logits) / len(logits) * SCORE_MULTIPLIER
-
-
-def semantic_search(engine, query, documents):
-    # add empty document as baseline
-    scorers = [
-        SearchScorer(document=document, query=query) for document in [""] + documents
-    ]
-    completion = openai.Completion.create(
-        engine=engine,
-        prompt=[scorer.get_context() for scorer in scorers],
-        max_tokens=0,
-        logprobs=0,
-        echo=True,
-    )
-    # put the documents back in order so we can easily normalize by the empty document 0
-    data = sorted(completion.choices, key=lambda choice: choice.index)
-    assert len(scorers) == len(
-        data
-    ), f"len(scorers)={len(scorers)} len(data)={len(data)}"
-    scores = [scorer.get_score(choice) for scorer, choice in zip(scorers, data)]
-    # subtract score for empty document
-    scores = [score - scores[0] for score in scores][1:]
-    data = {
-        "object": "list",
-        "data": [
-            {
-                "object": "search_result",
-                "document": document_idx,
-                "score": round(score, 3),
-            }
-            for document_idx, score in enumerate(scores)
-        ],
-        "model": completion.model,
-    }
-    return data
-
-
-def main():
-    parser = argparse.ArgumentParser(description=None)
-    parser.add_argument(
-        "-v",
-        "--verbose",
-        action="count",
-        dest="verbosity",
-        default=0,
-        help="Set verbosity.",
-    )
-    parser.add_argument("-e", "--engine", default="ada")
-    parser.add_argument("-q", "--query", required=True)
-    parser.add_argument("-d", "--document", action="append", required=True)
-    parser.add_argument("-s", "--server-side", action="store_true")
-    args = parser.parse_args()
-
-    if args.verbosity == 1:
-        logger.setLevel(logging.INFO)
-    elif args.verbosity >= 2:
-        logger.setLevel(logging.DEBUG)
-
-    if args.server_side:
-        resp = openai.Engine(id=args.engine).search(
-            query=args.query, documents=args.document
-        )
-        resp = resp.to_dict_recursive()
-        print(f"[server-side semantic search] {resp}")
-    else:
-        resp = semantic_search(args.engine, query=args.query, documents=args.document)
-        print(f"[client-side semantic search] {resp}")
-
-    return 0
-
-
-if __name__ == "__main__":
-    sys.exit(main())
examples/README.md
@@ -0,0 +1,7 @@
+# Examples have moved to the [OpenAI Cookbook](https://github.com/openai/openai-cookbook/)
+
+Looking for code examples? Visit the [OpenAI Cookbook](https://github.com/openai/openai-cookbook/), which shares examples of how to use the OpenAI Python library to accomplish common tasks.
+
+Prior to July 2022, code examples were hosted in this examples folder; going forward, code examples will be hosted in the [OpenAI Cookbook](https://github.com/openai/openai-cookbook/).
+
+This separation will help keep the [OpenAI Python library](https://github.com/openai/openai-python) simple and small, without extra files or dependencies.
openai/api_resources/abstract/api_resource.py
@@ -62,7 +62,7 @@ class APIResource(OpenAIObject):
                     self.azure_api_prefix,
                     base,
                     extn,
-                    api_version
+                    api_version,
                 )
 
             return "/%s/%s/%s/%s?api-version=%s" % (
@@ -70,7 +70,7 @@ class APIResource(OpenAIObject):
                 self.azure_deployments_prefix,
                 extn,
                 operation,
-                api_version
+                api_version,
             )
 
         elif self.typed_api_type == ApiType.OPEN_AI:
@@ -78,8 +78,7 @@ class APIResource(OpenAIObject):
             return "%s/%s" % (base, extn)
 
         else:
-            raise error.InvalidAPIType(
-                "Unsupported API type %s" % self.api_type)
+            raise error.InvalidAPIType("Unsupported API type %s" % self.api_type)
 
     # The `method_` and `url_` arguments are suffixed with an underscore to
     # avoid conflicting with actual request parameters in `params`.
@@ -101,7 +100,7 @@ class APIResource(OpenAIObject):
             api_version=api_version,
             organization=organization,
             api_base=api_base,
-            api_type=api_type
+            api_type=api_type,
         )
         response, _, api_key = requestor.request(
             method_, url_, params, request_id=request_id
@@ -111,8 +110,13 @@ class APIResource(OpenAIObject):
         )
 
     @classmethod
-    def _get_api_type_and_version(cls, api_type: Optional[str] = None, api_version: Optional[str] = None):
-        typed_api_type = ApiType.from_str(
-            api_type) if api_type else ApiType.from_str(openai.api_type)
+    def _get_api_type_and_version(
+        cls, api_type: Optional[str] = None, api_version: Optional[str] = None
+    ):
+        typed_api_type = (
+            ApiType.from_str(api_type)
+            if api_type
+            else ApiType.from_str(openai.api_type)
+        )
         typed_api_version = api_version or openai.api_version
         return (typed_api_type, typed_api_version)
openai/api_resources/abstract/createable_api_resource.py
@@ -25,16 +25,16 @@ class CreateableAPIResource(APIResource):
             organization=organization,
         )
         typed_api_type, api_version = cls._get_api_type_and_version(
-            api_type, api_version)
+            api_type, api_version
+        )
 
         if typed_api_type in (ApiType.AZURE, ApiType.AZURE_AD):
             base = cls.class_url()
-            url = "/%s%s?api-version=%s" % (cls.azure_api_prefix,
-                                            base, api_version)
+            url = "/%s%s?api-version=%s" % (cls.azure_api_prefix, base, api_version)
         elif typed_api_type == ApiType.OPEN_AI:
             url = cls.class_url()
         else:
-            raise error.InvalidAPIType('Unsupported API type %s' % api_type)
+            raise error.InvalidAPIType("Unsupported API type %s" % api_type)
 
         response, _, api_key = requestor.request(
             "post", url, params, request_id=request_id
openai/api_resources/abstract/deletable_api_resource.py
@@ -9,20 +9,26 @@ class DeletableAPIResource(APIResource):
     @classmethod
     def delete(cls, sid, api_type=None, api_version=None, **params):
         if isinstance(cls, APIResource):
-            raise ValueError(
-                ".delete may only be called as a class method now.")
+            raise ValueError(".delete may only be called as a class method now.")
 
         base = cls.class_url()
         extn = quote_plus(sid)
 
         typed_api_type, api_version = cls._get_api_type_and_version(
-            api_type, api_version)
+            api_type, api_version
+        )
         if typed_api_type in (ApiType.AZURE, ApiType.AZURE_AD):
             url = "/%s%s/%s?api-version=%s" % (
-                cls.azure_api_prefix, base, extn, api_version)
+                cls.azure_api_prefix,
+                base,
+                extn,
+                api_version,
+            )
         elif typed_api_type == ApiType.OPEN_AI:
             url = "%s/%s" % (base, extn)
         else:
-            raise error.InvalidAPIType('Unsupported API type %s' % api_type)
+            raise error.InvalidAPIType("Unsupported API type %s" % api_type)
 
-        return cls._static_request("delete", url, api_type=api_type, api_version=api_version, **params)
+        return cls._static_request(
+            "delete", url, api_type=api_type, api_version=api_version, **params
+        )
openai/api_resources/abstract/engine_api_resource.py
@@ -29,7 +29,8 @@ class EngineAPIResource(APIResource):
         # with forward slashes (/), so replace the former with the latter.
         base = cls.OBJECT_NAME.replace(".", "/")  # type: ignore
         typed_api_type, api_version = cls._get_api_type_and_version(
-            api_type, api_version)
+            api_type, api_version
+        )
 
         if typed_api_type in (ApiType.AZURE, ApiType.AZURE_AD):
             if not api_version:
@@ -46,7 +47,7 @@ class EngineAPIResource(APIResource):
                 cls.azure_deployments_prefix,
                 extn,
                 base,
-                api_version
+                api_version,
             )
 
         elif typed_api_type == ApiType.OPEN_AI:
@@ -81,12 +82,16 @@ class EngineAPIResource(APIResource):
         if typed_api_type in (util.ApiType.AZURE, util.ApiType.AZURE_AD):
             if deployment_id is None and engine is None:
                 raise error.InvalidRequestError(
-                    "Must provide an 'engine' or 'deployment_id' parameter to create a %s" % cls, "engine"
+                    "Must provide an 'engine' or 'deployment_id' parameter to create a %s"
+                    % cls,
+                    "engine",
                 )
         else:
             if model is None and engine is None:
                 raise error.InvalidRequestError(
-                    "Must provide an 'engine' or 'model' parameter to create a %s" % cls, "engine"
+                    "Must provide an 'engine' or 'model' parameter to create a %s"
+                    % cls,
+                    "engine",
                 )
 
         if timeout is None:
@@ -155,7 +160,7 @@ class EngineAPIResource(APIResource):
             )
 
         extn = quote_plus(id)
-        params_connector = '?'
+        params_connector = "?"
 
         if self.typed_api_type in (ApiType.AZURE, ApiType.AZURE_AD):
             api_version = self.api_version or openai.api_version
@@ -170,17 +175,16 @@ class EngineAPIResource(APIResource):
                 self.engine,
                 base,
                 extn,
-                api_version
+                api_version,
             )
-            params_connector = '&'
+            params_connector = "&"
 
         elif self.typed_api_type == ApiType.OPEN_AI:
             base = self.class_url(self.engine, self.api_type, self.api_version)
             url = "%s/%s" % (base, extn)
 
         else:
-            raise error.InvalidAPIType(
-                "Unsupported API type %s" % self.api_type)
+            raise error.InvalidAPIType("Unsupported API type %s" % self.api_type)
 
         timeout = self.get("timeout")
         if timeout is not None:
openai/api_resources/abstract/listable_api_resource.py
@@ -28,16 +28,16 @@ class ListableAPIResource(APIResource):
         )
 
         typed_api_type, api_version = cls._get_api_type_and_version(
-            api_type, api_version)
+            api_type, api_version
+        )
 
         if typed_api_type in (ApiType.AZURE, ApiType.AZURE_AD):
             base = cls.class_url()
-            url = "/%s%s?api-version=%s" % (cls.azure_api_prefix,
-                                            base, api_version)
+            url = "/%s%s?api-version=%s" % (cls.azure_api_prefix, base, api_version)
         elif typed_api_type == ApiType.OPEN_AI:
             url = cls.class_url()
         else:
-            raise error.InvalidAPIType('Unsupported API type %s' % api_type)
+            raise error.InvalidAPIType("Unsupported API type %s" % api_type)
 
         response, _, api_key = requestor.request(
             "get", url, params, request_id=request_id
openai/api_resources/deployment.py
@@ -1,5 +1,9 @@
 from openai import util
-from openai.api_resources.abstract import DeletableAPIResource, ListableAPIResource, CreateableAPIResource
+from openai.api_resources.abstract import (
+    DeletableAPIResource,
+    ListableAPIResource,
+    CreateableAPIResource,
+)
 from openai.error import InvalidRequestError, APIError
 
 
@@ -12,10 +16,12 @@ class Deployment(CreateableAPIResource, ListableAPIResource, DeletableAPIResourc
         Creates a new deployment for the provided prompt and parameters.
         """
         typed_api_type, _ = cls._get_api_type_and_version(
-            kwargs.get("api_type", None), None)
+            kwargs.get("api_type", None), None
+        )
         if typed_api_type not in (util.ApiType.AZURE, util.ApiType.AZURE_AD):
             raise APIError(
-                "Deployment operations are only available for the Azure API type.")
+                "Deployment operations are only available for the Azure API type."
+            )
 
         if kwargs.get("model", None) is None:
             raise InvalidRequestError(
@@ -30,8 +36,10 @@ class Deployment(CreateableAPIResource, ListableAPIResource, DeletableAPIResourc
                 param="scale_settings",
             )
 
-        if "scale_type" not in scale_settings or \
-                (scale_settings["scale_type"].lower() == 'manual' and "capacity" not in scale_settings):
+        if "scale_type" not in scale_settings or (
+            scale_settings["scale_type"].lower() == "manual"
+            and "capacity" not in scale_settings
+        ):
             raise InvalidRequestError(
                 "The 'scale_settings' parameter contains invalid or incomplete values.",
                 param="scale_settings",
@@ -42,29 +50,35 @@ class Deployment(CreateableAPIResource, ListableAPIResource, DeletableAPIResourc
     @classmethod
     def list(cls, *args, **kwargs):
         typed_api_type, _ = cls._get_api_type_and_version(
-            kwargs.get("api_type", None), None)
+            kwargs.get("api_type", None), None
+        )
         if typed_api_type not in (util.ApiType.AZURE, util.ApiType.AZURE_AD):
             raise APIError(
-                "Deployment operations are only available for the Azure API type.")
+                "Deployment operations are only available for the Azure API type."
+            )
 
         return super().list(*args, **kwargs)
 
     @classmethod
     def delete(cls, *args, **kwargs):
         typed_api_type, _ = cls._get_api_type_and_version(
-            kwargs.get("api_type", None), None)
+            kwargs.get("api_type", None), None
+        )
         if typed_api_type not in (util.ApiType.AZURE, util.ApiType.AZURE_AD):
             raise APIError(
-                "Deployment operations are only available for the Azure API type.")
+                "Deployment operations are only available for the Azure API type."
+            )
 
         return super().delete(*args, **kwargs)
 
     @classmethod
     def retrieve(cls, *args, **kwargs):
         typed_api_type, _ = cls._get_api_type_and_version(
-            kwargs.get("api_type", None), None)
+            kwargs.get("api_type", None), None
+        )
         if typed_api_type not in (util.ApiType.AZURE, util.ApiType.AZURE_AD):
             raise APIError(
-                "Deployment operations are only available for the Azure API type.")
+                "Deployment operations are only available for the Azure API type."
+            )
 
         return super().retrieve(*args, **kwargs)
openai/api_resources/edit.py
@@ -20,7 +20,8 @@ class Edit(EngineAPIResource):
         typed_api_type = cls._get_api_type_and_version(api_type=api_type)[0]
         if typed_api_type in (util.ApiType.AZURE, util.ApiType.AZURE_AD):
             raise error.InvalidAPIType(
-                "This operation is not supported by the Azure OpenAI API yet.")
+                "This operation is not supported by the Azure OpenAI API yet."
+            )
 
         while True:
             try:
openai/api_resources/error_object.py
@@ -10,6 +10,7 @@ class ErrorObject(OpenAIObject):
         values,
         api_key=None,
         api_version=None,
+        api_type=None,
         organization=None,
         response_ms: Optional[int] = None,
     ):
@@ -21,6 +22,7 @@ class ErrorObject(OpenAIObject):
             values=values,
             api_key=api_key,
             api_version=api_version,
+            api_type=api_type,
             organization=organization,
             response_ms=response_ms,
         )
openai/api_resources/file.py
@@ -25,8 +25,7 @@ class File(ListableAPIResource, DeletableAPIResource):
         user_provided_filename=None,
     ):
         if purpose != "search" and model is not None:
-            raise ValueError(
-                "'model' is only meaningful if 'purpose' is 'search'")
+            raise ValueError("'model' is only meaningful if 'purpose' is 'search'")
         requestor = api_requestor.APIRequestor(
             api_key,
             api_base=api_base or openai.api_base,
@@ -35,16 +34,16 @@ class File(ListableAPIResource, DeletableAPIResource):
             organization=organization,
         )
         typed_api_type, api_version = cls._get_api_type_and_version(
-            api_type, api_version)
+            api_type, api_version
+        )
 
         if typed_api_type in (ApiType.AZURE, ApiType.AZURE_AD):
             base = cls.class_url()
-            url = "/%s%s?api-version=%s" % (cls.azure_api_prefix,
-                                            base, api_version)
+            url = "/%s%s?api-version=%s" % (cls.azure_api_prefix, base, api_version)
         elif typed_api_type == ApiType.OPEN_AI:
             url = cls.class_url()
         else:
-            raise error.InvalidAPIType('Unsupported API type %s' % api_type)
+            raise error.InvalidAPIType("Unsupported API type %s" % api_type)
 
         # Set the filename on 'purpose' and 'model' to None so they are
         # interpreted as form data.
@@ -53,9 +52,10 @@ class File(ListableAPIResource, DeletableAPIResource):
             files.append(("model", (None, model)))
         if user_provided_filename is not None:
             files.append(
-                ("file", (user_provided_filename, file, 'application/octet-stream')))
+                ("file", (user_provided_filename, file, "application/octet-stream"))
+            )
         else:
-            files.append(("file", ("file", file, 'application/octet-stream')))
+            files.append(("file", ("file", file, "application/octet-stream")))
         response, _, api_key = requestor.request("post", url, files=files)
         return util.convert_to_openai_object(
             response, api_key, api_version, organization
@@ -69,7 +69,7 @@ class File(ListableAPIResource, DeletableAPIResource):
         api_base=None,
         api_type=None,
         api_version=None,
-        organization=None
+        organization=None,
     ):
         requestor = api_requestor.APIRequestor(
             api_key,
@@ -79,16 +79,21 @@ class File(ListableAPIResource, DeletableAPIResource):
             organization=organization,
         )
         typed_api_type, api_version = cls._get_api_type_and_version(
-            api_type, api_version)
+            api_type, api_version
+        )
 
         if typed_api_type in (ApiType.AZURE, ApiType.AZURE_AD):
             base = cls.class_url()
             url = "/%s%s/%s/content?api-version=%s" % (
-                cls.azure_api_prefix, base, id, api_version)
+                cls.azure_api_prefix,
+                base,
+                id,
+                api_version,
+            )
         elif typed_api_type == ApiType.OPEN_AI:
             url = f"{cls.class_url()}/{id}/content"
         else:
-            raise error.InvalidAPIType('Unsupported API type %s' % api_type)
+            raise error.InvalidAPIType("Unsupported API type %s" % api_type)
 
         result = requestor.request_raw("get", url)
         if not 200 <= result.status_code < 300:
openai/api_resources/fine_tune.py
@@ -23,20 +23,25 @@ class FineTune(ListableAPIResource, CreateableAPIResource, DeletableAPIResource)
         api_type=None,
         request_id=None,
         api_version=None,
-        **params
+        **params,
     ):
         base = cls.class_url()
         extn = quote_plus(id)
 
         typed_api_type, api_version = cls._get_api_type_and_version(
-            api_type, api_version)
+            api_type, api_version
+        )
         if typed_api_type in (ApiType.AZURE, ApiType.AZURE_AD):
             url = "/%s%s/%s/cancel?api-version=%s" % (
-                cls.azure_api_prefix, base, extn, api_version)
+                cls.azure_api_prefix,
+                base,
+                extn,
+                api_version,
+            )
         elif typed_api_type == ApiType.OPEN_AI:
             url = "%s/%s/cancel" % (base, extn)
         else:
-            raise error.InvalidAPIType('Unsupported API type %s' % api_type)
+            raise error.InvalidAPIType("Unsupported API type %s" % api_type)
 
         instance = cls(id, api_key, **params)
         return instance.request("post", url, request_id=request_id)
@@ -65,15 +70,20 @@ class FineTune(ListableAPIResource, CreateableAPIResource, DeletableAPIResource)
         )
 
         typed_api_type, api_version = cls._get_api_type_and_version(
-            api_type, api_version)
+            api_type, api_version
+        )
 
         if typed_api_type in (ApiType.AZURE, ApiType.AZURE_AD):
             url = "/%s%s/%s/events?stream=true&api-version=%s" % (
-                cls.azure_api_prefix, base, extn, api_version)
+                cls.azure_api_prefix,
+                base,
+                extn,
+                api_version,
+            )
         elif typed_api_type == ApiType.OPEN_AI:
             url = "%s/%s/events?stream=true" % (base, extn)
         else:
-            raise error.InvalidAPIType('Unsupported API type %s' % api_type)
+            raise error.InvalidAPIType("Unsupported API type %s" % api_type)
 
         response, _, api_key = requestor.request(
             "get", url, params, stream=True, request_id=request_id
openai/tests/test_url_composition.py
@@ -102,8 +102,7 @@ def test_completions_url_composition_instance_url_open_ai() -> None:
 
 @pytest.mark.url
 def test_completions_url_composition_instance_url_invalid() -> None:
-    completion = Completion(
-        id="test_id", engine="test_engine", api_type="invalid")
+    completion = Completion(id="test_id", engine="test_engine", api_type="invalid")
     with pytest.raises(Exception):
         url = completion.instance_url()
 
@@ -126,8 +125,7 @@ def test_completions_url_composition_instance_url_timeout_azure() -> None:
 
 @pytest.mark.url
 def test_completions_url_composition_instance_url_timeout_openai() -> None:
-    completion = Completion(
-        id="test_id", engine="test_engine", api_type="open_ai")
+    completion = Completion(id="test_id", engine="test_engine", api_type="open_ai")
     completion["timeout"] = 12
     url = completion.instance_url()
     assert url == "/engines/test_engine/completions/test_id?timeout=12"
@@ -135,8 +133,7 @@ def test_completions_url_composition_instance_url_timeout_openai() -> None:
 
 @pytest.mark.url
 def test_engine_search_url_composition_azure() -> None:
-    engine = Engine(id="test_id", api_type="azure",
-                    api_version="2021-11-01-preview")
+    engine = Engine(id="test_id", api_type="azure", api_version="2021-11-01-preview")
     assert engine.api_type == "azure"
     assert engine.typed_api_type == ApiType.AZURE
     url = engine.instance_url("test_operation")
@@ -148,8 +145,7 @@ def test_engine_search_url_composition_azure() -> None:
 
 @pytest.mark.url
 def test_engine_search_url_composition_azure_ad() -> None:
-    engine = Engine(id="test_id", api_type="azure_ad",
-                    api_version="2021-11-01-preview")
+    engine = Engine(id="test_id", api_type="azure_ad", api_version="2021-11-01-preview")
     assert engine.api_type == "azure_ad"
     assert engine.typed_api_type == ApiType.AZURE_AD
     url = engine.instance_url("test_operation")
@@ -170,11 +166,13 @@ def test_engine_search_url_composition_azure_no_version() -> None:
 
 @pytest.mark.url
 def test_engine_search_url_composition_azure_no_operation() -> None:
-    engine = Engine(id="test_id", api_type="azure",
-                    api_version="2021-11-01-preview")
+    engine = Engine(id="test_id", api_type="azure", api_version="2021-11-01-preview")
     assert engine.api_type == "azure"
     assert engine.typed_api_type == ApiType.AZURE
-    assert engine.instance_url() == "/openai/engines/test_id?api-version=2021-11-01-preview"
+    assert (
+        engine.instance_url()
+        == "/openai/engines/test_id?api-version=2021-11-01-preview"
+    )
 
 
 @pytest.mark.url
openai/__init__.py
@@ -32,8 +32,9 @@ api_key_path: Optional[str] = os.environ.get("OPENAI_API_KEY_PATH")
 organization = os.environ.get("OPENAI_ORGANIZATION")
 api_base = os.environ.get("OPENAI_API_BASE", "https://api.openai.com/v1")
 api_type = os.environ.get("OPENAI_API_TYPE", "open_ai")
-api_version = "2022-03-01-preview" if api_type in (
-    "azure", "azure_ad", "azuread") else None
+api_version = (
+    "2022-03-01-preview" if api_type in ("azure", "azure_ad", "azuread") else None
+)
 verify_ssl_certs = True  # No effect. Certificates are always verified.
 proxy = None
 app_info = None
openai/cli.py
@@ -320,7 +320,9 @@ class FineTune:
                 sys.stdout.write(
                     "Found potentially duplicated files with name '{name}', purpose 'fine-tune' and size {size} bytes\n".format(
                         name=os.path.basename(matching_files[0]["filename"]),
-                        size=matching_files[0]["bytes"] if "bytes" in matching_files[0] else matching_files[0]["size"],
+                        size=matching_files[0]["bytes"]
+                        if "bytes" in matching_files[0]
+                        else matching_files[0]["size"],
                     )
                 )
                 sys.stdout.write("\n".join(file_ids))
openai/upload_progress.py
@@ -49,4 +49,4 @@ def progress(total, desc):
 
 
 def MB(i):
-    return int(i // 1024 ** 2)
+    return int(i // 1024**2)
openai/util.py
@@ -178,8 +178,7 @@ def default_api_key() -> str:
         with open(openai.api_key_path, "rt") as k:
             api_key = k.read().strip()
             if not api_key.startswith("sk-"):
-                raise ValueError(
-                    f"Malformed API key in {openai.api_key_path}.")
+                raise ValueError(f"Malformed API key in {openai.api_key_path}.")
             return api_key
     elif openai.api_key is not None:
         return openai.api_key
README.md
@@ -54,7 +54,7 @@ print(completion.choices[0].text)
 
 ### Microsoft Azure Endpoints
 
-In order to use the library with Microsoft Azure endpoints, you need to set the api_type, api_base and api_version in addition to the api_key. The api_type must be set to 'azure' and the others correspond to the properites of your endpoint.
+In order to use the library with Microsoft Azure endpoints, you need to set the api_type, api_base and api_version in addition to the api_key. The api_type must be set to 'azure' and the others correspond to the properties of your endpoint.
 In addition, the deployment name must be passed as the engine parameter.
 
 ```python
@@ -78,8 +78,9 @@ print(search)
 ```
 
 Please note that for the moment, the Microsoft Azure endpoints can only be used for completion, search and fine-tuning operations.
-For a detailed example on how to use fine-tuning and other operations using Azure endpoints, please check out the following Jupyter notebook:
-[Using Azure fine-tuning](https://github.com/openai/openai-python/blob/main/examples/azure/finetuning.ipynb)
+For a detailed example on how to use fine-tuning and other operations using Azure endpoints, please check out the following Jupyter notebooks:
+* [Using Azure fine-tuning](https://github.com/openai/openai-cookbook/tree/main/examples/azure/finetuning.ipynb)
+* [Using Azure embeddings](https://github.com/openai/openai-cookbook/blob/main/examples/azure/embeddings.ipynb)
 
 ### Microsoft Azure Active Directory Authentication
 
@@ -118,7 +119,18 @@ openai api completions.create -e ada -p "Hello world"
 
 ## Example code
 
-Examples of how to use [embeddings](https://github.com/openai/openai-python/tree/main/examples/embeddings), [fine tuning](https://github.com/openai/openai-python/tree/main/examples/finetuning), [semantic search](https://github.com/openai/openai-python/tree/main/examples/semanticsearch), and [codex](https://github.com/openai/openai-python/tree/main/examples/codex) can be found in the [examples folder](https://github.com/openai/openai-python/tree/main/examples).
+Examples of how to use this Python library to accomplish various tasks can be found in the [OpenAI Cookbook](https://github.com/openai/openai-cookbook/). It contains code examples for:
+
+* Classification using fine-tuning
+* Clustering
+* Code search
+* Customizing embeddings
+* Question answering from a corpus of documents
+* Recommendations
+* Visualization of embeddings
+* And more
+
+Prior to July 2022, this OpenAI Python library hosted code examples in its examples folder, but since then all examples have been migrated to the [OpenAI Cookbook](https://github.com/openai/openai-cookbook/).
 
 ### Embeddings
 
@@ -140,17 +152,17 @@ model_id = "text-similarity-davinci-001"
 embedding = openai.Embedding.create(input=text_string, engine=model_id)['data'][0]['embedding']
 ```
 
-An example of how to call the embeddings method is shown in the [get embeddings notebook](https://github.com/openai/openai-python/blob/main/examples/embeddings/Get_embeddings.ipynb).
+An example of how to call the embeddings method is shown in this [get embeddings notebook](https://github.com/openai/openai-cookbook/blob/main/examples/Get_embeddings.ipynb).
 
 Examples of how to use embeddings are shared in the following Jupyter notebooks:
 
-- [Classification using embeddings](https://github.com/openai/openai-python/blob/main/examples/embeddings/Classification.ipynb)
-- [Clustering using embeddings](https://github.com/openai/openai-python/blob/main/examples/embeddings/Clustering.ipynb)
-- [Code search using embeddings](https://github.com/openai/openai-python/blob/main/examples/embeddings/Code_search.ipynb)
-- [Semantic text search using embeddings](https://github.com/openai/openai-python/blob/main/examples/embeddings/Semantic_text_search_using_embeddings.ipynb)
-- [User and product embeddings](https://github.com/openai/openai-python/blob/main/examples/embeddings/User_and_product_embeddings.ipynb)
-- [Zero-shot classification using embeddings](https://github.com/openai/openai-python/blob/main/examples/embeddings/Zero-shot_classification.ipynb)
-- [Recommendation using embeddings](https://github.com/openai/openai-python/blob/main/examples/embeddings/Recommendation.ipynb)
+- [Classification using embeddings](https://github.com/openai/openai-cookbook/blob/main/examples/Classification_using_embeddings.ipynb)
+- [Clustering using embeddings](https://github.com/openai/openai-cookbook/blob/main/examples/Clustering.ipynb)
+- [Code search using embeddings](https://github.com/openai/openai-cookbook/blob/main/examples/Code_search.ipynb)
+- [Semantic text search using embeddings](https://github.com/openai/openai-cookbook/blob/main/examples/Semantic_text_search_using_embeddings.ipynb)
+- [User and product embeddings](https://github.com/openai/openai-cookbook/blob/main/examples/User_and_product_embeddings.ipynb)
+- [Zero-shot classification using embeddings](https://github.com/openai/openai-cookbook/blob/main/examples/Zero-shot_classification_with_embeddings.ipynb)
+- [Recommendation using embeddings](https://github.com/openai/openai-cookbook/blob/main/examples/Recommendation_using_embeddings.ipynb)
 
 For more information on embeddings and the types of embeddings OpenAI offers, read the [embeddings guide](https://beta.openai.com/docs/guides/embeddings) in the OpenAI documentation.
 
@@ -160,11 +172,11 @@ Fine tuning a model on training data can both improve the results (by giving the
 
 Examples of fine tuning are shared in the following Jupyter notebooks:
 
-- [Classification with fine tuning](https://github.com/openai/openai-python/blob/main/examples/finetuning/finetuning-classification.ipynb) (a simple notebook that shows the steps required for fine tuning)
+- [Classification with fine tuning](https://github.com/openai/openai-cookbook/blob/main/examples/Fine-tuned_classification.ipynb) (a simple notebook that shows the steps required for fine tuning)
 - Fine tuning a model that answers questions about the 2020 Olympics
-  - [Step 1: Collecting data](https://github.com/openai/openai-python/blob/main/examples/finetuning/olympics-1-collect-data.ipynb)
-  - [Step 2: Creating a synthetic Q&A dataset](https://github.com/openai/openai-python/blob/main/examples/finetuning/olympics-2-create-qa.ipynb)
-  - [Step 3: Train a fine-tuning model specialized for Q&A](https://github.com/openai/openai-python/blob/main/examples/finetuning/olympics-3-train-qa.ipynb)
+  - [Step 1: Collecting data](https://github.com/openai/openai-cookbook/blob/main/examples/fine-tuned_qa/olympics-1-collect-data.ipynb)
+  - [Step 2: Creating a synthetic Q&A dataset](https://github.com/openai/openai-cookbook/blob/main/examples/fine-tuned_qa/olympics-2-create-qa.ipynb)
+  - [Step 3: Train a fine-tuning model specialized for Q&A](https://github.com/openai/openai-cookbook/blob/main/examples/fine-tuned_qa/olympics-3-train-qa.ipynb)
 
 Sync your fine-tunes to [Weights & Biases](https://wandb.me/openai-docs) to track experiments, models, and datasets in your central dashboard with:
 
setup.py
@@ -18,7 +18,8 @@ setup(
         "tqdm",  # Needed for progress bars
         "pandas>=1.2.3",  # Needed for CLI fine-tuning data preparation tool
         "pandas-stubs>=1.1.0.11",  # Needed for type hints for mypy
-        "openpyxl>=3.0.7"  # Needed for CLI fine-tuning data preparation tool xlsx format
+        "openpyxl>=3.0.7",  # Needed for CLI fine-tuning data preparation tool xlsx format
+        "numpy>=1.22.0",  # To address a vuln in <1.21.6
     ],
     extras_require={
         "dev": ["black~=21.6b0", "pytest==6.*"],